Skip to content

Commit

Permalink
Merge pull request #30 from QuantumPhysique/prepare_v0.5.0
Browse files Browse the repository at this point in the history
Prepare v0.5.0
  • Loading branch information
braniii committed Jan 25, 2024
2 parents cd6a2e2 + 4b80056 commit 7599f03
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 6 deletions.
10 changes: 7 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,12 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
[//]: # (### Other changes:)

## [Unreleased]


## [0.5.0] - 2024-01-25
### Added Features and Improvements 🙌:
- Improved readme
- Improved app description (fastlane)
- Hello World! Thx to the community, the app is now available in Czech, Korean, Norwegian, and Polish 🎉
- Improved readme, screenshots, and app description (fastlane)


## [0.4.7] - 2024-01-18
Expand Down Expand Up @@ -140,7 +143,8 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
- initial release


[Unreleased]: https://github.com/quantumphysique/trale/compare/v0.4.7...main
[Unreleased]: https://github.com/quantumphysique/trale/compare/v0.5.0...main
[0.5.0]: https://github.com/quantumphysique/trale/compare/v0.4.7...v0.5.0
[0.4.7]: https://github.com/quantumphysique/trale/compare/v0.4.6...v0.4.7
[0.4.6]: https://github.com/quantumphysique/trale/compare/v0.4.4...v0.4.6
[0.4.4]: https://github.com/quantumphysique/trale/compare/v0.4.3...v0.4.4
Expand Down
6 changes: 5 additions & 1 deletion app/lib/core/language.dart
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,12 @@ class Language {
/// get language name
String languageLong(BuildContext context) => <String, String>{
systemDefault: AppLocalizations.of(context)!.defaultLang,
'en': AppLocalizations.of(context)!.english,
'cs': AppLocalizations.of(context)!.czech,
'de': AppLocalizations.of(context)!.german,
'en': AppLocalizations.of(context)!.english,
'ko': AppLocalizations.of(context)!.korean,
'nb': AppLocalizations.of(context)!.norwegian,
'pl': AppLocalizations.of(context)!.polish,
}[language] ?? 'error';

@override
Expand Down
16 changes: 16 additions & 0 deletions app/lib/l10n/app_en.arb
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,22 @@
"@english": {
"description": "English"
},
"czech": "Czech",
"@czech": {
"description": "Czech"
},
"korean": "Korean",
"@korean": {
"description": "Korean"
},
"polish": "Polish",
"@polish": {
"description": "Polish"
},
"norwegian": "Norwegian",
"@norwegian": {
"description": "Norwegian"
},
"defaultLang": "System default",
"@defaultLang": {
"description": "System default language."
Expand Down
4 changes: 2 additions & 2 deletions app/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: trale
description: trale - an android app to track your weight.
description: trale - privacy-respecting body weight-diary

# The following line prevents the package from being accidentally published to
# pub.dev using `pub publish`. This is preferred for private packages.
Expand All @@ -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: 0.4.7+13
version: 0.5.0+14

environment:
sdk: ">=3.2.0 <4.0.0"
Expand Down
2 changes: 2 additions & 0 deletions fastlane/metadata/android/de/changelogs/143.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- Dank der Community unterstützt die App nun Tschechisch, Koreanisch, Norwegisch und Polnisch 🎉
- Verbessertes Readme, Screenshots und Appbeschreibungen
2 changes: 2 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/143.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- Thx to the community, the app is now available in Czech, Korean, Norwegian, and Polish 🎉
- Improved readme, screenshots, and app description (fastlane)

0 comments on commit 7599f03

Please sign in to comment.