release: 2.0.0-beta.14
Some checks failed
Deploy Nightly / Deploy nightly (push) Has been cancelled

This commit is contained in:
aimok04
2025-12-14 23:04:47 +01:00
parent cd166fd97e
commit 3a9471714b
5 changed files with 33 additions and 26 deletions

View File

@@ -23,8 +23,8 @@ val prop =
val date = LocalDate.now().toString()
// Android/linux version name can contain more information
val kitshnVersionName = "2.0.0-beta.13"
val kitshnVersionCode = 19130
val kitshnVersionName = "2.0.0-beta.14"
val kitshnVersionCode = 19140
// iOS, dmg and MSI are limited to [Major].[Minor].[Patch] format
val kitshnAlternateVersionName = "2.0.0"

View File

@@ -0,0 +1,6 @@
This release mostly includes big fixes, especially for social media and AI import.
1. Increased timeout values for multipart requests (e.g. AI import) (#301).
2. Fixed issue where AI / social media import fails, when there is no servings value given (#295).
3. Fixed issue where post content couldn't be fetched from instagram posts (#302).
4. Fixed issue where recipe books wouldn't show some recipes when exceeding 50 recipes (#297).

View File

@@ -6,24 +6,22 @@ Feel free to comment on #95 or create **a new issue** if you **encounter any iss
---
New releases will include `.flatpak` bundles for x86_64 and aarch64 architectures.
The flatpak/ jvm releases of kitshn is far from perfect and might be broken. Feel free to report any issues! :)
This release mostly includes *big fixes*, especially for *social media* and *AI import*.
1. Hide **ingredients list** when recipe has only one step (#294).
2. Replacing **servings text** in import when it is smaller than 6 characters (#296).
3. Checked **compatibility** with Tandoor **version 2.3.3** to **version 2.3.6**.
Thank you for **500 stars** on GitHub! 🥳
1. Increased *timeout values* for multipart requests (e.g. AI import) (#301).
2. Fixed issue where **AI / social media import** fails, when there is no *servings* value given (#295).
3. Fixed issue where **post content** couldn't be fetched from **instagram** posts (#302).
4. Fixed issue where **recipe books** wouldn't show some recipes when exceeding *50 recipes* (#297).
## Commits
- feat(commonMain/import): replace servingsText when smaller than 6 characters (resolved #296)
- feat(commonMain/dialog): added "ignore" button to version compatibility dialog (#293)
- feat(commonMain/recipes): don't show merged ingredient list when recipe has only one step (resolved #294)
- feat(flatpak): added new flatpak directory with metadata
- feat(build.gradle): added appImage to targetFormats (for non Mac devices)
- fix(flatpak): added .java/.userPrefs as persistent folder
- fix(flatpak): changed socket to x11
- fix(commonMain/api): increased timeout values for multipart requests to 60s (#301)
- fix(commonMain/import): improved fetching post content for instagram posts (resolved #302)
- fix(commonMain/books): issue when recipe book has more than 50 books (resolved #297)
- fix(commonMain/import): allow interaction with webview in RecipeImportSocialMediaDialog.kt (resolved #278)
- fix(commonMain/import): improved animation in RecipeImportSocialMediaDialog.kt (#278)
- fix(commonMain/utils): disable "day_after_tomorrow" and "day_before_yesterday" labels in english
- fix(commonMain/import): replace servings value with 1 if null (#295)
- chore(libs): version bumps
- chore(libs): version bumps
- chore(gradle): bump compileSdk and targetSdk to 36
- github(workflows): added "Build flatpak on new version tag" workflow
- github(workflows): added "Build flatpak manually" workflow

View File

@@ -1,3 +1,6 @@
1. Hide ingredients list when recipe has only one step.
2. Replacing servings text in import when it is smaller than 6 characters.
3. Checked compatibility with Tandoor version 2.3.3 to version 2.3.6.
This release mostly includes big fixes, especially for social media and AI import.
1. Increased timeout values for multipart requests (e.g. AI import) (#301).
2. Fixed issue where AI / social media import fails, when there is no servings value given (#295).
3. Fixed issue where post content couldn't be fetched from instagram posts (#302).
4. Fixed issue where recipe books wouldn't show some recipes when exceeding 50 recipes (#297).

View File

@@ -299,7 +299,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 19130;
CURRENT_PROJECT_VERSION = 19140;
DEVELOPMENT_TEAM = 7C29XH34W5;
ENABLE_USER_SCRIPT_SANDBOXING = YES;
GCC_C_LANGUAGE_STANDARD = gnu17;
@@ -331,7 +331,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 19130;
CURRENT_PROJECT_VERSION = 19140;
DEVELOPMENT_TEAM = 7C29XH34W5;
ENABLE_USER_SCRIPT_SANDBOXING = YES;
GCC_C_LANGUAGE_STANDARD = gnu17;
@@ -477,7 +477,7 @@
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CODE_SIGN_ENTITLEMENTS = iosApp/iosApp.entitlements;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 19130;
CURRENT_PROJECT_VERSION = 19140;
DEVELOPMENT_ASSET_PATHS = "\"iosApp/Preview Content\"";
DEVELOPMENT_TEAM = 7C29XH34W5;
ENABLE_PREVIEWS = YES;
@@ -510,7 +510,7 @@
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CODE_SIGN_ENTITLEMENTS = iosApp/iosApp.entitlements;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 19130;
CURRENT_PROJECT_VERSION = 19140;
DEVELOPMENT_ASSET_PATHS = "\"iosApp/Preview Content\"";
DEVELOPMENT_TEAM = 7C29XH34W5;
ENABLE_PREVIEWS = YES;