mirror of
https://github.com/Doodle3D/doodle3d-client.git
synced 2024-11-21 17:07:55 +01:00
Include links to release notes in update panel, both for current version and for updateable version.
Bump package version.
This commit is contained in:
parent
aa585236b8
commit
d0806a0ea1
2
Makefile
2
Makefile
@ -4,7 +4,7 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME := doodle3d-client
|
||||
PKG_VERSION := 0.9.2
|
||||
PKG_VERSION := 0.9.3
|
||||
PKG_RELEASE := 1
|
||||
|
||||
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
|
||||
|
@ -219,13 +219,15 @@ function UpdatePanel() {
|
||||
this.statusDisplay.html(text);
|
||||
}
|
||||
this.updateInfoDisplay = function() {
|
||||
var text = "Current version: "+self.currentVersion+". ";
|
||||
var html = 'Current version: ' + self.currentVersion +
|
||||
' (<a target="d3d-curr-relnotes" href="ReleaseNotes.html">release notes</a>). ';
|
||||
if(self.canUpdate) {
|
||||
text += "Latest version: "+self.newestVersion+".";
|
||||
html += 'Latest version: ' + self.newestVersion +
|
||||
' (<a target="d3d-new-relnotes" href="http://doodle3d.com/updates/images/ReleaseNotes.md">release notes</a>).';
|
||||
}
|
||||
self.infoDisplay.text(text);
|
||||
self.infoDisplay.html(html);
|
||||
}
|
||||
this.setNetworkMode = function(networkMode) {
|
||||
self.networkMode = networkMode;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user