Skip to content
This repository has been archived by the owner on Dec 28, 2022. It is now read-only.

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
Temp workaround to ensure changelog shows on launch for the next beta.
  • Loading branch information
timusus committed Apr 4, 2017
1 parent 3dfa667 commit 1b4c20b
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 2 deletions.
8 changes: 8 additions & 0 deletions app/src/main/assets/web/info.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@
</head>

<body>
<h4>1.6.5-beta8</h4>
<ul>
<li>Show this changelog on startup!</li>
<li>Added option to remove artists & albums from search results</li>
<li>Improved speed & accuracy of search results</li>
<li>Added option to disable fuzzy searching</li>
<li>Fixed an issue where the current playback position made available to 3rd party apps was incorrect after changing tracks</li>
</ul>
<h4>1.6.5-beta7</h4>
<ul>
<li>Fixed an issue with slow loading of library/genres on some devices</li>
Expand Down
8 changes: 8 additions & 0 deletions app/src/main/assets/web/info_dark.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@
</head>

<body>
<h4>1.6.5-beta8</h4>
<ul>
<li>Show this changelog on startup!</li>
<li>Added option to remove artists & albums from search results</li>
<li>Improved speed & accuracy of search results</li>
<li>Added option to disable fuzzy searching</li>
<li>Fixed an issue where the current playback position made available to 3rd party apps was incorrect after changing tracks</li>
</ul>
<h4>1.6.5-beta7</h4>
<ul>
<li>Fixed an issue with slow loading of library/genres on some devices</li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,8 @@ private void showChangelogDialog() {
// If we've stored a version code in the past, and it's lower than the current version code,
// we can show the changelog.
// Don't show the changelog for first time users.
if (storedVersionCode != -1 && storedVersionCode < BuildConfig.VERSION_CODE) {
// Todo: Re-comment this after v1.6.5-beta8 release.
if (/*storedVersionCode != -1 &&*/ storedVersionCode < BuildConfig.VERSION_CODE) {
if (SettingsManager.getInstance().getShowChangelogOnLaunch()) {
DialogUtils.showChangelog(this);
}
Expand Down
2 changes: 1 addition & 1 deletion dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ext.versions = [
// App versions
// /////////////////////////////////////////////////////////////////////////

name : "1.6.5-beta7",
name : "1.6.5-beta8",

// //////////////////////////////////////////////////////////////////////////
// Compile versions
Expand Down

0 comments on commit 1b4c20b

Please sign in to comment.