Signed-off-by: Marcel Klehr <mklehr@gmx.net>
This commit is contained in:
Marcel Klehr 2025-02-05 12:47:32 +01:00
parent db818e5497
commit 4e4f69b72d
7 changed files with 12 additions and 8 deletions

View File

@ -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]

View File

@ -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.

View File

@ -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/**',

View File

@ -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",

View File

@ -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",

View File

@ -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",

View File

@ -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",