diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3cf70b69..845a5cd3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,17 +11,15 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Setup build tool version variable + - name: Setup last build tool version shell: bash run: | BUILD_TOOL_VERSION=$(ls /usr/local/lib/android/sdk/build-tools/ | tail -n 1) echo "BUILD_TOOL_VERSION=$BUILD_TOOL_VERSION" >> $GITHUB_ENV echo Last build tool version is: $BUILD_TOOL_VERSION - - name: Access GOOGLE_API_KEY - env: - GOOGLE_API_KEY: $ - run: echo GOOGLE_API_KEY=\"$GOOGLE_API_KEY\" >> ./local.properties + - name: Set GOOGLE_API_KEY in local properties + run: echo 'GOOGLE_API_KEY=${{ secrets.GOOGLE_API_KEY }}' >> ./local.properties - name: set up JDK 17 uses: actions/setup-java@v3 diff --git a/app/build.gradle b/app/build.gradle index 2d4f9bdf..9827a89f 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -27,8 +27,8 @@ android { applicationId "com.starry.myne" minSdk 26 targetSdk 34 - versionCode 290 - versionName "2.9.0" + versionCode 300 + versionName "3.0.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" vectorDrawables { diff --git a/fastlane/metadata/android/en-US/changelogs/300.txt b/fastlane/metadata/android/en-US/changelogs/300.txt new file mode 100644 index 00000000..42545501 --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/300.txt @@ -0,0 +1,4 @@ +- Added appropriate labels for talkback in bottom navigation bar. +- Resolved the issue of certain books' metadata occasionally failing to load. +- Added some caching and fixed the issue where the search bar or language menu would remain open after navigating away from and returning to home screen. +- Some other minor bug fixes and improvements. \ No newline at end of file