Skip to content

Commit 47f3fef

Browse files
authored
Merge pull request FlexBE#21 from Deleh/fix/version_check
Change `version` to a Development Tag
2 parents 56cf0b2 + dcee567 commit 47f3fef

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "FlexBE App",
3-
"version": "2.3.0",
3+
"version": "2.4.0",
44
"main": "src/main.js",
55
"window": {
66
"icon": "src/img/icon-128.png",

package.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<package format="2">
22
<name>flexbe_app</name>
33
<version>2.4.0</version>
4+
<!-- NOTE: also sync the version in package.json when updating the version -->
45
<description>
56
flexbe_app provides a user interface (editor + runtime control) for the FlexBE behavior engine.
67
</description>

src/ui/ui_feed.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ UI.Feed = new (function() {
33

44
var requestLatestVersion = function(callback) {
55
var xhr = new XMLHttpRequest();
6-
xhr.open("GET", "https://api.github.com/repos/flexbe/flexbe_app/tags", true);
6+
xhr.open("GET", "https://api.github.com/repos/mojin-robotics/flexbe_app/tags", true);
77
xhr.onreadystatechange = function() {
88
if (xhr.readyState == 4) {
99
if (xhr.responseText != "") {
@@ -149,4 +149,4 @@ UI.Feed = new (function() {
149149

150150
this.hideAbout = function() { }
151151

152-
}) ();
152+
}) ();

0 commit comments

Comments
 (0)