Signed-off-by: Marcel Klehr <mklehr@gmx.net>
This commit is contained in:
Marcel Klehr 2024-07-02 19:11:26 +02:00
Родитель f61f1c0dba
Коммит 42135dd73b
7 изменённых файлов: 74 добавлений и 60 удалений

Просмотреть файл

@ -1,5 +1,19 @@
# Changelog
## [5.2.4] - 2024-07-02
### Fixed
* fix(Account): Use exponential backoff instead of disabling profile after 10 errors
* [native] fix(font-size): set default font-size using cm
* fix(imports): Don't allow importing actions definitions from store/index
* [native] fix(Options): Avoid importing browser-only module
* fix(Folder#traverse)
* fix typo in README.md in git repos
* fix(Default#executeAction): fix ordering when doing bulkImport in Unidirectional strategy
* fix(NextcloudBookmarks): Make sure folder exists before appending children
## [5.2.3] - 2024-06-21
### Fixed

Просмотреть файл

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

Просмотреть файл

@ -2,7 +2,7 @@
"manifest_version": 3,
"name": "floccus bookmarks sync",
"short_name": "floccus",
"version": "5.2.3",
"version": "5.2.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.2.3",
"version": "5.2.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.2.3",
"version": "5.2.4",
"description": "__MSG_DescriptionExtension__",
"icons": {
"48": "icons/logo.png",

108
package-lock.json сгенерированный
Просмотреть файл

@ -1,12 +1,12 @@
{
"name": "floccus",
"version": "5.2.3",
"version": "5.2.4",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "floccus",
"version": "5.2.3",
"version": "5.2.4",
"license": "MPL-2.0",
"dependencies": {
"@byteowls/capacitor-oauth2": "5.x",
@ -2402,9 +2402,9 @@
}
},
"node_modules/@sentry/babel-plugin-component-annotate": {
"version": "2.16.1",
"resolved": "https://registry.npmjs.org/@sentry/babel-plugin-component-annotate/-/babel-plugin-component-annotate-2.16.1.tgz",
"integrity": "sha512-pJka66URsqQbk6hTs9H1XFpUeI0xxuqLYf9Dy5pRGNHSJMtfv91U+CaYSWt03aRRMGDXMduh62zAAY7Wf0HO+A==",
"version": "2.20.1",
"resolved": "https://registry.npmjs.org/@sentry/babel-plugin-component-annotate/-/babel-plugin-component-annotate-2.20.1.tgz",
"integrity": "sha512-4mhEwYTK00bIb5Y9UWIELVUfru587Vaeg0DQGswv4aIRHIiMKLyNqCEejaaybQ/fNChIZOKmvyqXk430YVd7Qg==",
"engines": {
"node": ">= 14"
}
@ -2472,12 +2472,12 @@
}
},
"node_modules/@sentry/bundler-plugin-core": {
"version": "2.16.1",
"resolved": "https://registry.npmjs.org/@sentry/bundler-plugin-core/-/bundler-plugin-core-2.16.1.tgz",
"integrity": "sha512-n6z8Ts3T9HROLuY7tVEYpBKvS+P7+b8NdqxP7QBcwp2nuPUlN5Ola1ivFjk1p5a7wRYeN9zM8orGe4l2HeNfYA==",
"version": "2.20.1",
"resolved": "https://registry.npmjs.org/@sentry/bundler-plugin-core/-/bundler-plugin-core-2.20.1.tgz",
"integrity": "sha512-6ipbmGzHekxeRCbp7eoefr6bdd/lW4cNA9eNnrmd9+PicubweGaZZbH2NjhFHsaxzgOezwipDHjrTaap2kTHgw==",
"dependencies": {
"@babel/core": "^7.18.5",
"@sentry/babel-plugin-component-annotate": "2.16.1",
"@sentry/babel-plugin-component-annotate": "2.20.1",
"@sentry/cli": "^2.22.3",
"dotenv": "^16.3.1",
"find-up": "^5.0.0",
@ -2537,9 +2537,9 @@
}
},
"node_modules/@sentry/cli": {
"version": "2.31.2",
"resolved": "https://registry.npmjs.org/@sentry/cli/-/cli-2.31.2.tgz",
"integrity": "sha512-2aKyUx6La2P+pplL8+2vO67qJ+c1C79KYWAyQBE0JIT5kvKK9JpwtdNoK1F0/2mRpwhhYPADCz3sVIRqmL8cQQ==",
"version": "2.32.1",
"resolved": "https://registry.npmjs.org/@sentry/cli/-/cli-2.32.1.tgz",
"integrity": "sha512-MWkbkzZfnlE7s2pPbg4VozRSAeMlIObfZlTIou9ye6XnPt6ZmmxCLOuOgSKMv4sXg6aeqKNzMNiadThxCWyvPg==",
"hasInstallScript": true,
"dependencies": {
"https-proxy-agent": "^5.0.0",
@ -2555,19 +2555,19 @@
"node": ">= 10"
},
"optionalDependencies": {
"@sentry/cli-darwin": "2.31.2",
"@sentry/cli-linux-arm": "2.31.2",
"@sentry/cli-linux-arm64": "2.31.2",
"@sentry/cli-linux-i686": "2.31.2",
"@sentry/cli-linux-x64": "2.31.2",
"@sentry/cli-win32-i686": "2.31.2",
"@sentry/cli-win32-x64": "2.31.2"
"@sentry/cli-darwin": "2.32.1",
"@sentry/cli-linux-arm": "2.32.1",
"@sentry/cli-linux-arm64": "2.32.1",
"@sentry/cli-linux-i686": "2.32.1",
"@sentry/cli-linux-x64": "2.32.1",
"@sentry/cli-win32-i686": "2.32.1",
"@sentry/cli-win32-x64": "2.32.1"
}
},
"node_modules/@sentry/cli-darwin": {
"version": "2.31.2",
"resolved": "https://registry.npmjs.org/@sentry/cli-darwin/-/cli-darwin-2.31.2.tgz",
"integrity": "sha512-BHA/JJXj1dlnoZQdK4efRCtHRnbBfzbIZUKAze7oRR1RfNqERI84BVUQeKateD3jWSJXQfEuclIShc61KOpbKw==",
"version": "2.32.1",
"resolved": "https://registry.npmjs.org/@sentry/cli-darwin/-/cli-darwin-2.32.1.tgz",
"integrity": "sha512-z/lEwANTYPCzbWTZ2+eeeNYxRLllC8knd0h+vtAKlhmGw/fyc/N39cznIFyFu+dLJ6tTdjOWOeikHtKuS/7onw==",
"optional": true,
"os": [
"darwin"
@ -2577,9 +2577,9 @@
}
},
"node_modules/@sentry/cli-linux-arm": {
"version": "2.31.2",
"resolved": "https://registry.npmjs.org/@sentry/cli-linux-arm/-/cli-linux-arm-2.31.2.tgz",
"integrity": "sha512-W8k5mGYYZz/I/OxZH65YAK7dCkQAl+wbuoASGOQjUy5VDgqH0QJ8kGJufXvFPM+f3ZQGcKAnVsZ6tFqZXETBAw==",
"version": "2.32.1",
"resolved": "https://registry.npmjs.org/@sentry/cli-linux-arm/-/cli-linux-arm-2.32.1.tgz",
"integrity": "sha512-m0lHkn+o4YKBq8KptGZvpT64FAwSl9mYvHZO9/ChnEGIJ/WyJwiN1X1r9JHVaW4iT5lD0Y5FAyq3JLkk0m0XHg==",
"cpu": [
"arm"
],
@ -2593,9 +2593,9 @@
}
},
"node_modules/@sentry/cli-linux-arm64": {
"version": "2.31.2",
"resolved": "https://registry.npmjs.org/@sentry/cli-linux-arm64/-/cli-linux-arm64-2.31.2.tgz",
"integrity": "sha512-FLVKkJ/rWvPy/ka7OrUdRW63a/z8HYI1Gt8Pr6rWs50hb7YJja8lM8IO10tYmcFE/tODICsnHO9HTeUg2g2d1w==",
"version": "2.32.1",
"resolved": "https://registry.npmjs.org/@sentry/cli-linux-arm64/-/cli-linux-arm64-2.32.1.tgz",
"integrity": "sha512-hsGqHYuecUl1Yhq4MhiRejfh1gNlmhyNPcQEoO/DDRBnGnJyEAdiDpKXJcc2e/lT9k40B55Ob2CP1SeY040T2w==",
"cpu": [
"arm64"
],
@ -2609,9 +2609,9 @@
}
},
"node_modules/@sentry/cli-linux-i686": {
"version": "2.31.2",
"resolved": "https://registry.npmjs.org/@sentry/cli-linux-i686/-/cli-linux-i686-2.31.2.tgz",
"integrity": "sha512-A64QtzaPi3MYFpZ+Fwmi0mrSyXgeLJ0cWr4jdeTGrzNpeowSteKgd6tRKU+LVq0k5shKE7wdnHk+jXnoajulMA==",
"version": "2.32.1",
"resolved": "https://registry.npmjs.org/@sentry/cli-linux-i686/-/cli-linux-i686-2.32.1.tgz",
"integrity": "sha512-SuMLN1/ceFd3Q/B0DVyh5igjetTAF423txiABAHASenEev0lG0vZkRDXFclfgDtDUKRPmOXW7VDMirM3yZWQHQ==",
"cpu": [
"x86",
"ia32"
@ -2626,9 +2626,9 @@
}
},
"node_modules/@sentry/cli-linux-x64": {
"version": "2.31.2",
"resolved": "https://registry.npmjs.org/@sentry/cli-linux-x64/-/cli-linux-x64-2.31.2.tgz",
"integrity": "sha512-YL/r+15R4mOEiU3mzn7iFQOeFEUB6KxeKGTTrtpeOGynVUGIdq4nV5rHow5JDbIzOuBS3SpOmcIMluvo1NCh0g==",
"version": "2.32.1",
"resolved": "https://registry.npmjs.org/@sentry/cli-linux-x64/-/cli-linux-x64-2.32.1.tgz",
"integrity": "sha512-x4FGd6xgvFddz8V/dh6jii4wy9qjWyvYLBTz8Fhi9rIP+b8wQ3oxwHIdzntareetZP7C1ggx+hZheiYocNYVwA==",
"cpu": [
"x64"
],
@ -2642,9 +2642,9 @@
}
},
"node_modules/@sentry/cli-win32-i686": {
"version": "2.31.2",
"resolved": "https://registry.npmjs.org/@sentry/cli-win32-i686/-/cli-win32-i686-2.31.2.tgz",
"integrity": "sha512-Az/2bmW+TFI059RE0mSBIxTBcoShIclz7BDebmIoCkZ+retrwAzpmBnBCDAHow+Yi43utOow+3/4idGa2OxcLw==",
"version": "2.32.1",
"resolved": "https://registry.npmjs.org/@sentry/cli-win32-i686/-/cli-win32-i686-2.32.1.tgz",
"integrity": "sha512-i6aZma9mFzR+hqMY5VliQZEX6ypP/zUjPK0VtIMYWs5cC6PsQLRmuoeJmy3Z7d4nlh0CdK5NPC813Ej6RY6/vg==",
"cpu": [
"x86",
"ia32"
@ -2658,9 +2658,9 @@
}
},
"node_modules/@sentry/cli-win32-x64": {
"version": "2.31.2",
"resolved": "https://registry.npmjs.org/@sentry/cli-win32-x64/-/cli-win32-x64-2.31.2.tgz",
"integrity": "sha512-XIzyRnJu539NhpFa+JYkotzVwv3NrZ/4GfHB/JWA2zReRvsk39jJG8D5HOmm0B9JA63QQT7Dt39RW8g3lkmb6w==",
"version": "2.32.1",
"resolved": "https://registry.npmjs.org/@sentry/cli-win32-x64/-/cli-win32-x64-2.32.1.tgz",
"integrity": "sha512-B58w/lRHLb4MUSjJNfMMw2cQykfimDCMLMmeK+1EiT2RmSeNQliwhhBxYcKk82a8kszH6zg3wT2vCea7LyPUyA==",
"cpu": [
"x64"
],
@ -2874,11 +2874,11 @@
}
},
"node_modules/@sentry/webpack-plugin": {
"version": "2.16.1",
"resolved": "https://registry.npmjs.org/@sentry/webpack-plugin/-/webpack-plugin-2.16.1.tgz",
"integrity": "sha512-Cou9HeqxUhRUyEjn9ApXjJ87qMylJ1DH6+4Zx21QZ0p4zXohl7rvesYngVdy8N+RdSNMIryPmj+WZKRmI8CpJQ==",
"version": "2.20.1",
"resolved": "https://registry.npmjs.org/@sentry/webpack-plugin/-/webpack-plugin-2.20.1.tgz",
"integrity": "sha512-U6LzoE09Ndt0OCWROoRaZqqIHGxyMRdKpBhbqoBqyyfVwXN/zGW3I/cWZ1e8rreiKFj+2+c7+X0kOS+NGMTUrg==",
"dependencies": {
"@sentry/bundler-plugin-core": "2.16.1",
"@sentry/bundler-plugin-core": "2.20.1",
"unplugin": "1.0.1",
"uuid": "^9.0.0"
},
@ -18048,9 +18048,9 @@
}
},
"node_modules/unplugin/node_modules/acorn": {
"version": "8.11.3",
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz",
"integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==",
"version": "8.12.0",
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.0.tgz",
"integrity": "sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw==",
"bin": {
"acorn": "bin/acorn"
},
@ -18082,11 +18082,11 @@
}
},
"node_modules/unplugin/node_modules/braces": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
"integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
"integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
"dependencies": {
"fill-range": "^7.0.1"
"fill-range": "^7.1.1"
},
"engines": {
"node": ">=8"
@ -18116,9 +18116,9 @@
}
},
"node_modules/unplugin/node_modules/fill-range": {
"version": "7.0.1",
"resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
"integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
"version": "7.1.1",
"resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
"integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
"dependencies": {
"to-regex-range": "^5.0.1"
},

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "floccus",
"version": "5.2.3",
"version": "5.2.4",
"description": "Sync your bookmarks privately across browsers and devices",
"scripts": {
"build": "gulp",