mirror of
https://github.com/floccusaddon/floccus
synced 2025-04-29 15:47:21 +08:00
v5.4.4
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
This commit is contained in:
parent
db818e5497
commit
4e4f69b72d
@ -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]
|
||||
|
||||
|
@ -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.
|
||||
|
@ -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/**',
|
||||
|
@ -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",
|
||||
|
@ -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",
|
||||
|
@ -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",
|
||||
|
@ -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",
|
||||
|
Loading…
x
Reference in New Issue
Block a user