Skip to content

Commit

Permalink
Merge pull request #97 from QuantumPhysique/prepare_v0.7.0
Browse files Browse the repository at this point in the history
Prepare new version
  • Loading branch information
braniii committed May 29, 2024
2 parents 6d8b8b9 + 5ad8c99 commit 6e6f9f7
Show file tree
Hide file tree
Showing 11 changed files with 108 additions and 83 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-flutter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: ⚙️ Setup Java
uses: actions/setup-java@v4
with:
java-version: "11.x"
java-version: "17.x"
cache: 'gradle'
distribution: 'adopt'
id: java
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/flutter-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: ⚙️ Setup Java
uses: actions/setup-java@v4
with:
java-version: "11.x"
java-version: "17.x"
cache: 'gradle'
distribution: 'adopt'
id: java
Expand Down
14 changes: 12 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,15 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]


## [0.7.0] - 2024-05-29
### Added Features and Improvements 🙌:
- Hello World! Thx to the community, the app is now available in French, Finnish, and Italian 🎉
- Using the latest flutter 3.22 with upgraded deps

### Other changes:
- Improved translations


## [0.6.2] - 2024-04-02
### Bugfix 🐛:
- Fix bug that prevents app to start, #70
Expand All @@ -25,7 +34,7 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
- All new and improved interpolation API, the predictions are now more reliable
- Using the latest flutter 3.19 with upgraded deps
- Compile against Android 14 (SDK34)
- Hello World! Thx to the community, the app is now available in Lithuanian, Chinese and Spanish 🎉
- Hello World! Thx to the community, the app is now available in Lithuanian, Chinese, and Spanish 🎉

### Bugfix 🐛:
- Fix bug, when reloading theme
Expand Down Expand Up @@ -173,7 +182,8 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
- initial release


[Unreleased]: https://github.com/quantumphysique/trale/compare/v0.6.2...main
[Unreleased]: https://github.com/quantumphysique/trale/compare/v0.7.0...main
[0.7.0]: https://github.com/quantumphysique/trale/compare/v0.6.2...v0.7.0
[0.6.2]: https://github.com/quantumphysique/trale/compare/v0.6.1...v0.6.2
[0.6.1]: https://github.com/quantumphysique/trale/compare/v0.5.0...v0.6.1
[0.5.0]: https://github.com/quantumphysique/trale/compare/v0.4.7...v0.5.0
Expand Down
12 changes: 10 additions & 2 deletions app/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ if (keystorePropertiesFile.exists()) {

android {
compileSdkVersion 34
ndkVersion "25.1.8937393"
ndkVersion "26.1.10909125"

sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}

defaultConfig {
applicationId "de.quantumphysique.trale"
minSdkVersion 19
minSdkVersion flutter.minSdkVersion
targetSdkVersion 34
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
Expand Down Expand Up @@ -79,6 +79,14 @@ android {
'proguard-rules.pro'
}
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = '17'
}
namespace 'de.quantumphysique.trale'
}

Expand Down
2 changes: 1 addition & 1 deletion app/android/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-all.zip
2 changes: 1 addition & 1 deletion app/android/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ pluginManagement {

plugins {
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
id "com.android.application" version "7.3.1" apply false
id "com.android.application" version "8.2.2" apply false
id "org.jetbrains.kotlin.android" version "2.0.0" apply false
}

Expand Down
3 changes: 3 additions & 0 deletions app/lib/core/language.dart
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ class Language {
'de': 'Deutsch',
'en': 'English',
'es': 'Español',
'fi': 'Suomi',
'fr': 'Français',
'it': 'Italiano',
'ko': '조선말',
'lt': 'Lietuvių',
'nb': 'Bokmål',
Expand Down
Loading

0 comments on commit 6e6f9f7

Please sign in to comment.