feat: Bump version number, add changelogs

This commit is contained in:
Anton Stubenbord
2023-10-10 17:06:48 +02:00
parent 3193da50bf
commit 162d50bf70
5 changed files with 14 additions and 4 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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';

View File

@@ -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"

View File

@@ -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