Skip to content

Commit

Permalink
Build50-release
Browse files Browse the repository at this point in the history
  • Loading branch information
Hamza417 committed Dec 4, 2022
1 parent b72d920 commit fd11282
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,5 @@
.externalNativeBuild
.cxx
local.properties
/app/github/release/
/app/play/release/
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
android {
compileSdkVersion 33

def appVersionCode = 49
def appVersionCode = 50
def appVersionName = "build_$appVersionCode (alpha)"

buildFeatures {
Expand Down
3 changes: 2 additions & 1 deletion app/src/main/assets/html/changelogs.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ <h1>Change Logs</h1>
<br>

<sub>(Current Version)</sub>
<h2>Build49</h2>
<h2>Build50</h2>

<!-- Write change logs here -->

Expand All @@ -23,6 +23,7 @@ <h4>User Interface</h4>
<li>Added animations to bottom menus.</li>
<li>Redesigned <b>Batch</b> panel menu.</li>
<li>Added disabled/cross icon on the names of disabled apps.</li>
<li>Added new design for <i>Audio Player</i>.</li>
</ul>

<h4>Bug Fixes</h4>
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/app/simple/inure/ui/panels/Notes.kt
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class Notes : ScopedFragment() {

recyclerView.adapter = adapterNotes

bottomMenu?.initBottomMenuWithRecyclerView(arrayListOf(R.drawable.ic_settings, -1, R.drawable.ic_search), recyclerView) { id, view ->
bottomMenu?.initBottomMenuWithRecyclerView(arrayListOf(R.drawable.ic_settings, -1, R.drawable.ic_search), recyclerView) { id, _ ->
when (id) {
R.drawable.ic_settings -> {
NotesMenu.newInstance()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class RecentlyInstalled : ScopedFragment() {
}
})

bottomMenu?.initBottomMenuWithRecyclerView(arrayListOf(R.drawable.ic_settings, -1, R.drawable.ic_search), recyclerView) { id, view ->
bottomMenu?.initBottomMenuWithRecyclerView(arrayListOf(R.drawable.ic_settings, -1, R.drawable.ic_search), recyclerView) { id, _ ->
when (id) {
R.drawable.ic_settings -> {
openFragmentSlide(Preferences.newInstance(), "prefs_screen")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class RecentlyUpdated : ScopedFragment() {
}
})

bottomMenu?.initBottomMenuWithRecyclerView(arrayListOf(R.drawable.ic_settings, -1, R.drawable.ic_search), recyclerView) { id, view ->
bottomMenu?.initBottomMenuWithRecyclerView(arrayListOf(R.drawable.ic_settings, -1, R.drawable.ic_search), recyclerView) { id, _ ->
when (id) {
R.drawable.ic_search -> {
openFragmentSlide(Search.newInstance(true), "search")
Expand Down
3 changes: 3 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/50.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Refer to Change Logs under About section of the app to get the detailed list of all changes in this version.

Feel free to join app's Telegram group to discuss this release: https://t.me/inure_app_manager

0 comments on commit fd11282

Please sign in to comment.