Skip to content

Commit

Permalink
version 0.5.0
Browse files Browse the repository at this point in the history
- Android's cloud backup support
- Android's adaptive icon feature support
- Minor dependency updates
  • Loading branch information
besdar committed Oct 2, 2024
1 parent 02b8784 commit 316d1e7
Show file tree
Hide file tree
Showing 7 changed files with 144 additions and 65 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Wordum is currently in public beta. Any contributions to expand the app to other
- There is a possibility to press the system's back button on an android phone
- An android keyboard suggests words for autocompletion during writing practice
- Values in selects are not translated
- app's icon (is too generic and also) doesn't support Android Adaptive icons
- app's icon is too generic
- translation script is incompatible with text formattings/links
- no accessibility support
- [you name it](https://github.com/besdar/wordum/issues)
Expand All @@ -36,7 +36,6 @@ Wordum is currently in public beta. Any contributions to expand the app to other
- automatic github release pipeline
- F-Droid publication
- random emotional support cards during exercises
- cloud backup support
- web support
- predefined collections after installations like "100 most popular words"
- [you name it](https://github.com/besdar/wordum/issues) 😉
Expand Down
2 changes: 1 addition & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ android {
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 1
versionName "1.0"
versionName "0.5.0"
}
signingConfigs {
debug {
Expand Down
2 changes: 1 addition & 1 deletion android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
android:label="@string/app_name"
android:icon="@mipmap/ic_launcher"
android:roundIcon="@mipmap/ic_launcher_round"
android:allowBackup="false"
android:allowBackup="true"
android:theme="@style/AppTheme"
android:supportsRtl="true">
<activity
Expand Down
2 changes: 2 additions & 0 deletions android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background"/>
<foreground android:drawable="@drawable/ic_launcher_foreground"/>

<monochrome android:drawable="@drawable/ic_launcher_foreground"/>
</adaptive-icon>
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background"/>
<foreground android:drawable="@drawable/ic_launcher_foreground"/>

<monochrome android:drawable="@drawable/ic_launcher_foreground"/>
</adaptive-icon>
Loading

0 comments on commit 316d1e7

Please sign in to comment.