-
-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Bump version number, add changelogs
- Loading branch information
1 parent
3193da5
commit 162d50b
Showing
5 changed files
with
14 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |