Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
waozixyz committed Jan 3, 2024
1 parent 19baa7d commit f273881
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/flutter_build_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,14 @@ jobs:
flutter build apk --release
- name: Rename APK
run: mv build/app/outputs/flutter-apk/app-release.apk build/app/outputs/flutter-apk/InnerBreeze-${{ env.RELEASE_TAG }}.apk
run: mv build/app/outputs/flutter-apk/app-release.apk build/app/outputs/flutter-apk/InnerBreeze.apk

- name: Upload APKs as Artifact
uses: actions/upload-artifact@v2
with:
name: apk-artifacts
path: |
build/app/outputs/flutter-apk/InnerBreeze-${{ env.RELEASE_TAG }}.apk
build/app/outputs/flutter-apk/InnerBreeze.apk
ios:
needs: cancel
Expand Down Expand Up @@ -317,7 +317,7 @@ jobs:
prerelease: "${{ env.IS_PRERELEASE }}"
title: "${{ env.RELEASE_TAG }}"
files: |
build/app/outputs/flutter-apk/InnerBreeze-${{ env.RELEASE_TAG }}.apk
build/app/outputs/flutter-apk/InnerBreeze.apk
build/ios/iphoneos/ios_unsigned.app.tar.gz
build/linux/InnerBreeze-Linux-x86_64.tar.gz
build/linux/InnerBreeze-x86_64.AppImage
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Changelog
## [1.2.4] - 2024-01-03
- Added italian translations contributed by @albanobattistella

## [1.2.3] - 2024-01-02
- Added snap build

Expand Down
4 changes: 2 additions & 2 deletions lib/i18n/it_IT.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@
"guide_method_personalize": "Le pagine successive ti permetteranno di personalizzare la tua esperienza.",

"guide_step1_title": "Passo 1: Dentro & Fuori",
"guide_step1_description": "Riempi i polmoni con un respiro completo, iniziando dalla pancia, poi dal petto.\e\mLascia che il respiro esca naturalmente senza sforzo.\on\Ripeti l'operazione per circa 20-40 respiri a un ritmo costante.",
"guide_step1_description": "Riempi i polmoni con un respiro completo, iniziando dalla pancia, poi dal petto.\n\nLascia che il respiro esca naturalmente senza sforzo.\n\nRipeti l'operazione per circa 20-40 respiri a un ritmo costante.",
"breathing_circle": "Cerchio di respirazione",

"guide_step2_title": "Passo 2: Espira & trattieni",
"guide_step2_description": "Espira normalmente e trattieni il respiro.\nIl tempo di trattenimento aumenterà con più pratica e con ogni round.\n\nIl cerchio al centro indica per quanto tempo hai trattenuto il respiro e la durata dell'ultima trattenuta del respiro.\n\nRilascia quando senti il bisogno di respirare, evita di allungarti eccessivamente. Il tuo corpo segnala quando è il momento di respirare.",

"guide_step3_title": "Passo 3: Inspira & trattieni",
"guide_step3_description": "Inspira completamente e trattieni il respiro per 15 secondi.\Dopo espira, completando il primo ciclo\Con ogni ciclo puoi trattenere il respiro più a lungo e andare più in profondità.",
"guide_step3_description": "Inspira completamente e trattieni il respiro per 15 secondi.\nDopo espira, completando il primo ciclo\nCon ogni ciclo puoi trattenere il respiro più a lungo e andare più in profondità.",

"back_button": "Indietro",
"continue_button": "Continua",
Expand Down
3 changes: 2 additions & 1 deletion lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,9 @@ class _AppState extends State<App> {
],
supportedLocales: [
Locale('en', 'US'),
Locale('es', 'ES'),
Locale('de', 'DE'),
Locale('es', 'ES'),
Locale('it', 'IT')
],
locale: _currentLocale,
title: title,
Expand Down
3 changes: 2 additions & 1 deletion lib/widgets/language_selector.dart
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ class _LanguageSelectorState extends State<LanguageSelector> {

final Map<String, String> languageOptions = {
'en': 'English',
'es': 'Español',
'de': 'Deutsch',
'es': 'Español',
'it': 'Italiano',
};

@override
Expand Down
2 changes: 2 additions & 0 deletions metadata/en-US/changelogs/23.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
* Added italian translations contributed by @albanobattistella

7 changes: 7 additions & 0 deletions metadata/flatpak/io.naox.InnerBreeze.metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,13 @@
<icon type="remote" height="144" width="144">https://raw.githubusercontent.com/naoxio/inner_breeze/main/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png</icon>
<update_contact>[email protected]</update_contact>
<releases>
<release version="1.2.4" date="2024-01-03">
<description>
<ul>
<li>Added italian translations contributed by @albanobattistella</li>
</ul>
</description>
</release>
<release version="1.2.3" date="2024-01-02">
<description>
<ul>
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: A meditation and breathing guide app

publish_to: 'none'

version: 1.2.3+22
version: 1.2.4+23

environment:
sdk: '>=2.19.4 <4.0.0'
Expand Down

0 comments on commit f273881

Please sign in to comment.