Signed-off-by: Marcel Klehr <mklehr@gmx.net>
This commit is contained in:
Marcel Klehr 2024-09-03 09:58:15 +02:00
Родитель 7ebfb02f2f
Коммит b8a0932788
6 изменённых файлов: 18 добавлений и 8 удалений

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

@ -1,11 +1,21 @@
# Changelog
## [5.2.7] - 2024-09-03
### Fixed
* fix: Filter out "file:" URLs when syncing tabs on firefox
* fix: Log error from google API when retrieving access token
* [native] fix: Tree comparison on RELOAD_TREE_FROM_DISK was broken
* [native] fix: make builds reproducible again
* fix(Html): Encode unsafe characters as HTML entities
## [5.2.6] - 2024-08-11
### Fixed
* chore: update capacitor/core Marcel Klehr 2 minutes ago
* fix(Update): Show floccus logo on update page Marcel Klehr Today 10:32
* chore: update capacitor/core
* fix(Update): Show floccus logo on update page
* fix: Refactor sync algorithm introducing location types (fixed 6 correctness bugs along the way)
## [5.2.5] - 2024-07-25

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

@ -7,8 +7,8 @@ android {
applicationId "org.handmadeideas.floccus"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 5002006
versionName "5.2.6"
versionCode 5002007
versionName "5.2.7"
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.6",
"version": "5.2.7",
"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.6",
"version": "5.2.7",
"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.6",
"version": "5.2.7",
"description": "__MSG_DescriptionExtension__",
"icons": {
"48": "icons/logo.png",

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

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