File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 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" ,
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff 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+ } ) ( ) ;
You can’t perform that action at this time.
0 commit comments