From 162d50bf706bc13d929f4ba45f98a8b9bf84e656 Mon Sep 17 00:00:00 2001 From: Anton Stubenbord Date: Tue, 10 Oct 2023 17:06:48 +0200 Subject: [PATCH] feat: Bump version number, add changelogs --- .../fastlane/metadata/android/de-DE/changelogs/52.txt | 3 +++ .../fastlane/metadata/android/en-US/changelogs/52.txt | 3 +++ lib/routes/typed/shells/authenticated_route.dart | 1 - pubspec.yaml | 2 +- scripts/update_translations.sh | 9 +++++++-- 5 files changed, 14 insertions(+), 4 deletions(-) create mode 100644 android/fastlane/metadata/android/de-DE/changelogs/52.txt create mode 100644 android/fastlane/metadata/android/en-US/changelogs/52.txt diff --git a/android/fastlane/metadata/android/de-DE/changelogs/52.txt b/android/fastlane/metadata/android/de-DE/changelogs/52.txt new file mode 100644 index 00000000..98dbb7a5 --- /dev/null +++ b/android/fastlane/metadata/android/de-DE/changelogs/52.txt @@ -0,0 +1,3 @@ +* Gespeicherte Ansichten können wieder bearbeitet und erstellt werden +* Titel von Dokumenten können nun auch leer sein +* Kleinere Änderungen an Korrespondenten, Dokumenttyp, Speicherpfad und Tag Eingabefeldern \ No newline at end of file diff --git a/android/fastlane/metadata/android/en-US/changelogs/52.txt b/android/fastlane/metadata/android/en-US/changelogs/52.txt new file mode 100644 index 00000000..fc7950f5 --- /dev/null +++ b/android/fastlane/metadata/android/en-US/changelogs/52.txt @@ -0,0 +1,3 @@ +* Saved views can be edited and created again +* Allow document titles to be empty +* Small changes to inputs of correspondents, document types, storage paths and tags \ No newline at end of file diff --git a/lib/routes/typed/shells/authenticated_route.dart b/lib/routes/typed/shells/authenticated_route.dart index 8d830107..b1a2ebca 100644 --- a/lib/routes/typed/shells/authenticated_route.dart +++ b/lib/routes/typed/shells/authenticated_route.dart @@ -10,7 +10,6 @@ import 'package:paperless_mobile/core/database/tables/global_settings.dart'; import 'package:paperless_mobile/core/database/tables/local_user_account.dart'; import 'package:paperless_mobile/core/factory/paperless_api_factory.dart'; import 'package:paperless_mobile/features/home/view/home_shell_widget.dart'; -import 'package:paperless_mobile/features/home/view/scaffold_with_navigation_bar.dart'; import 'package:paperless_mobile/features/sharing/cubit/receive_share_cubit.dart'; import 'package:paperless_mobile/features/sharing/view/widgets/event_listener_shell.dart'; import 'package:paperless_mobile/routes/navigation_keys.dart'; diff --git a/pubspec.yaml b/pubspec.yaml index 5b621900..d26efbe4 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -15,7 +15,7 @@ publish_to: "none" # Remove this line if you wish to publish to pub.dev # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. # Read more about iOS versioning at # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html -version: 3.0.4+51 +version: 3.0.5+52 environment: sdk: ">=3.0.0 <4.0.0" diff --git a/scripts/update_translations.sh b/scripts/update_translations.sh index 2035a795..ec3d50b0 100644 --- a/scripts/update_translations.sh +++ b/scripts/update_translations.sh @@ -1,8 +1,13 @@ -#!/bin/bash +#!/usr/bin/env bash +set -Eeuo pipefail + +__script_dir=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd ) +readonly __script_dir + echo "Updating source language..." crowdin download sources --identity=../crowdin_credentials.yml --config ../crowdin.yml --preserve-hierarchy echo "Updating translations..." crowdin download --identity=../crowdin_credentials.yml --config ../crowdin.yml -pushd .. +pushd "$__script_dir/../" flutter gen-l10n popd \ No newline at end of file