From 4e4f69b72d430833a7a85eb4011b9d9bd1b7e10c Mon Sep 17 00:00:00 2001 From: Marcel Klehr Date: Wed, 5 Feb 2025 12:47:32 +0100 Subject: [PATCH] v5.4.4 Signed-off-by: Marcel Klehr --- CHANGELOG.md | 6 +++++- android/app/build.gradle | 4 ++-- gulpfile.js | 2 +- manifest.chrome.json | 2 +- manifest.firefox.json | 2 +- manifest.json | 2 +- package.json | 2 +- 7 files changed, 12 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index febae48ba9..b117ca27a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,11 @@ ## [5.4.4] ### Fixed -* fix(SyncProcess): When creating dummy bookmarks representing separators, make sure to use vertical lines on the Toolbar, and horizontal lines otherwise. +* fix(SyncProcess): When creating dummy bookmarks representing separators, make sure to use vertical lines on the Toolbar, and horizontal lines otherwise. (thanks to @macrogreg) +* fix(Xbel): Don't parse tag values +* fix: Throw nice error for when gdrive search fails +* fix: Clean up dependencies (#1851) +* fix(messages): Specify that the file path doesn't matter for Google Drive ## [5.4.3] diff --git a/android/app/build.gradle b/android/app/build.gradle index 0d7e8c7adb..ee41eec108 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -7,8 +7,8 @@ android { applicationId "org.handmadeideas.floccus" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 5004003 - versionName "5.4.3" + versionCode 5004004 + versionName "5.4.4" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" aaptOptions { // Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps. diff --git a/gulpfile.js b/gulpfile.js index ce35e8241f..c6f9e51270 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -33,7 +33,7 @@ try { const VERSION = require('./package.json').version const paths = { zip: [ - (process.env['CI'] ? './' : '!') + 'dist/js/test.js', + (process.env['CI'] ? './' : '!') + './dist/js/test.js', './dist/**', './icons/**', './lib/**', diff --git a/manifest.chrome.json b/manifest.chrome.json index e1848cfef2..908967e23f 100644 --- a/manifest.chrome.json +++ b/manifest.chrome.json @@ -2,7 +2,7 @@ "manifest_version": 3, "name": "floccus bookmarks sync", "short_name": "floccus", - "version": "5.4.3", + "version": "5.4.4", "description": "__MSG_DescriptionExtension__", "icons": { "48": "icons/logo.png", diff --git a/manifest.firefox.json b/manifest.firefox.json index 94cdbc659b..7747698a66 100644 --- a/manifest.firefox.json +++ b/manifest.firefox.json @@ -2,7 +2,7 @@ "manifest_version": 2, "name": "floccus bookmarks sync", "short_name": "floccus", - "version": "5.4.3", + "version": "5.4.4", "description": "__MSG_DescriptionExtension__", "icons": { "48": "icons/logo.png", diff --git a/manifest.json b/manifest.json index e1848cfef2..908967e23f 100644 --- a/manifest.json +++ b/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 3, "name": "floccus bookmarks sync", "short_name": "floccus", - "version": "5.4.3", + "version": "5.4.4", "description": "__MSG_DescriptionExtension__", "icons": { "48": "icons/logo.png", diff --git a/package.json b/package.json index 47c8dc8e8f..71fb52a1e6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "floccus", - "version": "5.4.3", + "version": "5.4.4", "description": "Sync your bookmarks privately across browsers and devices", "scripts": { "build": "NODE_OPTIONS=--max-old-space-size=5000 gulp",