Skip to content

Commit

Permalink
0.4.2 cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
berkaytumal committed Oct 29, 2024
1 parent fdd96fe commit 30996b2
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 13 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ android {
applicationId = "web.bmdominatezz.gravy"
minSdk = 21
targetSdk = 34
versionCode = 40
versionName = "0.4.0-beta.4"
versionCode = 42
versionName = "0.4.2-beta.4"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
7 changes: 7 additions & 0 deletions src/apps/groove.internal.settings/pages/00_home+theme.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ document.querySelectorAll("div.accent-color-catalogue-item").forEach(e => e.addE
}, 500);
appViewEvents.setAccentColor(grooveColors[e.target.style.background.slice(18).slice(0, -1)])
document.querySelector("div.color-picker > div.picker-option").innerText = e.target.style.background.slice(18).slice(0, -1)
document.querySelector("#home-tab > div:nth-child(1) > div > div:nth-child(1) > p.groove-list-view-item-description").innerText = e.target.style.background.slice(18).slice(0, -1)

}))

document.getElementById("choose-wallpaper").querySelector("input").addEventListener('change', (event) => {
Expand Down Expand Up @@ -112,3 +114,8 @@ setTimeout(() => {
}

}, 500);

if (!!localStorage['accentColor']) {
const colorName = Object.keys(grooveColors).find(key => grooveColors[key] == localStorage['accentColor']) || "custom color";
document.querySelector("#home-tab > div:nth-child(1) > div > div:nth-child(1) > p.groove-list-view-item-description").innerText = colorName
}
2 changes: 1 addition & 1 deletion src/scripts/grooveMock.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class GrooveMock {
window.open(url, "_blank")
}
getAppVersion() {
return "web-test"
return "0.4.2-beta.4"
}
getWebViewVersion() {
return "chrome"
Expand Down
12 changes: 2 additions & 10 deletions www/welcome.html
Original file line number Diff line number Diff line change
Expand Up @@ -167,16 +167,8 @@ <h1>What's New?</h1>
<div class="scroller" style="overflow: hidden; position: relative; margin: 0px;">
<div>
<ul>
<li><strong>New and Improved Animations:</strong> Smoother animations throughout the
launcher.</li>
<li><strong>Fixed Animation Hiccups:</strong> Fluid animations with no interruptions.
</li>
<li><strong>Expanded Icon Pack Support:</strong> More OEMs now supported.</li>
<li><strong>New Categorized Settings Page:</strong> A list view to simplify navigation.
</li>
<li><strong>Check Updates Button:</strong> Quickly check for updates in settings.
<em>(Bug Fix)</em> Resolved an issue where it would reinstall the current version if
it was the latest.</li>
<li><strong>Weather Icon Fix:</strong> The weather icon now displays correctly.</li>
<li><strong>Improved Settings Page Load Time:</strong> Settings page now launches swiftly without delays.</li>
</ul>
</div>
</div>
Expand Down

0 comments on commit 30996b2

Please sign in to comment.