Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version #116

Merged
merged 2 commits into from
Feb 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
4 changes: 4 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/300.txt
Original file line number Diff line number Diff line change
@@ -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.
Loading