Skip to content

Commit

Permalink
feat: Bump version number, add changelogs
Browse files Browse the repository at this point in the history
  • Loading branch information
astubenbord committed Oct 10, 2023
1 parent 3193da5 commit 162d50b
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 4 deletions.
3 changes: 3 additions & 0 deletions android/fastlane/metadata/android/de-DE/changelogs/52.txt
Original file line number Diff line number Diff line change
@@ -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
3 changes: 3 additions & 0 deletions android/fastlane/metadata/android/en-US/changelogs/52.txt
Original file line number Diff line number Diff line change
@@ -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
1 change: 0 additions & 1 deletion lib/routes/typed/shells/authenticated_route.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
9 changes: 7 additions & 2 deletions scripts/update_translations.sh
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 162d50b

Please sign in to comment.