mirror of https://github.com/espruino/BangleApps
Version number now clickable even when you're at the latest version (fix #291)
parent
1d371db916
commit
9f8747a797
|
@ -6,5 +6,6 @@ Changed for individual apps are listed in `apps/appname/ChangeLog`
|
||||||
* `Remove All Apps` now doesn't perform a reset before erase - fixes inability to update firmware if settings are wrong
|
* `Remove All Apps` now doesn't perform a reset before erase - fixes inability to update firmware if settings are wrong
|
||||||
* Added optional `README.md` file for apps
|
* Added optional `README.md` file for apps
|
||||||
* Remove 2v04 version warning, add links in About to official/developer versions
|
* Remove 2v04 version warning, add links in About to official/developer versions
|
||||||
* Fix issue removing an app that was just installed (Fix #253)
|
* Fix issue removing an app that was just installed (fix #253)
|
||||||
* Add `Favourite` functionality
|
* Add `Favourite` functionality
|
||||||
|
* Version number now clickable even when you're at the latest version (fix #291)
|
||||||
|
|
|
@ -56,7 +56,7 @@ function getVersionInfo(appListing, appInstalled) {
|
||||||
if (appListing.version)
|
if (appListing.version)
|
||||||
versionText = clicky("v"+appListing.version);
|
versionText = clicky("v"+appListing.version);
|
||||||
} else {
|
} else {
|
||||||
versionText = (appInstalled.version ? ("v"+appInstalled.version) : "Unknown version");
|
versionText = (appInstalled.version ? (clicky("v"+appInstalled.version)) : "Unknown version");
|
||||||
if (appListing.version != appInstalled.version) {
|
if (appListing.version != appInstalled.version) {
|
||||||
if (appListing.version) versionText += ", latest "+clicky("v"+appListing.version);
|
if (appListing.version) versionText += ", latest "+clicky("v"+appListing.version);
|
||||||
canUpdate = true;
|
canUpdate = true;
|
||||||
|
|
Loading…
Reference in New Issue