Skip to content

Commit

Permalink
Merge pull request leonlatsch#129 from leonlatsch/master
Browse files Browse the repository at this point in the history
Finish Release 1.3.3
  • Loading branch information
leonlatsch authored Aug 5, 2021
2 parents ca5a74a + 28ed198 commit 4ad4d95
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/create-rc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
java-version: 11

- name: Update Version
run: ./gradlew updateVersion -Pversion=x.x.x
run: ./gradlew updateVersion -Pversion=${{ github.event.inputs.version }}

- name: Commit and Push
uses: actions-x/commit@v2
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 1.3.3
- Update dependencies
- New app icon

### 1.3.2
- Gifs are now being played

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,16 @@ fun Window.addSystemUIVisibilityListener(visibilityListener: (Boolean) -> Unit)
}
}

/**
* Set the color of the windows status bar.
*/
fun Window.setStatusBarColorRes(@ColorRes colorRes: Int) {
statusBarColor = ContextCompat.getColor(context, colorRes)
}

/**
* Set the color of the windows navigation bar.
*/
fun Window.setNavBarColorRes(@ColorRes colorRes: Int) {
navigationBarColor = ContextCompat.getColor(context, colorRes)
}
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#Sun Jul 18 17:00:06 CEST 2021
#Thu Aug 05 18:33:16 UTC 2021
kotlin.code.style=official
kapt.incremental.apt=true
photokVersionName=1.3.2
photokVersionCode=16
photokVersionName=1.3.3
photokVersionCode=17
android.databinding.incremental=true
org.gradle.jvmargs=-Xmx2048m
android.useAndroidX=true
Expand Down

0 comments on commit 4ad4d95

Please sign in to comment.