Skip to content

Commit

Permalink
Update version and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
sarsamurmu committed Jul 1, 2023
1 parent 8748a9c commit db16c00
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 15 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,16 @@

[Donnnno]: https://github.com/Donnnno

# v3.18.0

- Improved initial load speed. Now loads 30000 icons under 5 seconds.
- Fixed memory leak in icon search, uses less memory.
- Fixed unable to download offline wallpapers.

# v3.17.5

- Fix issue related to restore purchases
- Probably fix issue with icon search when navigating back
- Fix the issue related to "Restore purchases"
- Probably fix the issue with icon search when navigating back
- Minor fixes

# v3.17.4
Expand Down
15 changes: 4 additions & 11 deletions app/src/main/res/values/changelog.xml
Original file line number Diff line number Diff line change
@@ -1,18 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="changelog_date" translatable="false">July 1, 2023</string>

<!-- Leave empty if you don't want to show changelog date -->
<string name="changelog_date" translatable="false">June 26, 2023</string>

<!-- Changelog support html formatting
* <b> for Bold
* <i> for Italic
* <u> for Underline
* <a href="linkUrl">Link Text</a> for links -->
<string-array name="changelog">
<item>Fix issue related to restore purchases</item>
<item>Probably fix issue with icon search when navigating back</item>
<item>Minor fixes</item>
<item>Improved initial load speed. Now loads all icons under 5 seconds.</item>
<item>Fixed memory leak in icon search, uses less memory.</item>
<item>Fixed unable to download offline wallpapers.</item>
</string-array>

</resources>
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ allprojects {

rootProject.ext {
def major = 3
def minor = 17
def patch = 5
def minor = 18
def patch = 0

VersionCode = major * 10000 + minor * 100 + patch
VersionName = "$major.$minor.$patch"
Expand Down

0 comments on commit db16c00

Please sign in to comment.