Signed-off-by: Marcel Klehr <mklehr@gmx.net>
This commit is contained in:
Marcel Klehr 2025-04-16 09:59:27 +02:00
parent 041b6e458d
commit 1dd9820981
5 changed files with 13 additions and 5 deletions

View File

@ -1,5 +1,13 @@
# Changelog
## [5.5.2] - 2025-04-16
### Fixed
* fix(IndexedDB): Delete up to the last hour of logs
* fix(storage): Add checkStorage method to freeStorage regularly
* fix(IndexedDB): Don't store more than 50MB of logs
## [5.5.1] - 2025-04-09
### Fixed

View File

@ -7,8 +7,8 @@ android {
applicationId "org.handmadeideas.floccus"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 5005001
versionName "5.5.1"
versionCode 5005002
versionName "5.5.2"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
aaptOptions {
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.

View File

@ -2,7 +2,7 @@
"manifest_version": 3,
"name": "floccus bookmarks sync",
"short_name": "floccus",
"version": "5.5.1",
"version": "5.5.2",
"description": "__MSG_DescriptionExtension__",
"icons": {
"48": "icons/logo.png",

View File

@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "floccus bookmarks sync",
"short_name": "floccus",
"version": "5.5.1",
"version": "5.5.2",
"description": "__MSG_DescriptionExtension__",
"icons": {
"48": "icons/logo.png",

View File

@ -1,6 +1,6 @@
{
"name": "floccus",
"version": "5.5.1",
"version": "5.5.2",
"description": "Sync your bookmarks privately across browsers and devices",
"scripts": {
"build": "NODE_OPTIONS=--max-old-space-size=5000 gulp",