Skip to content

Commit

Permalink
use custom url for version checks
Browse files Browse the repository at this point in the history
  • Loading branch information
Deleh committed Sep 20, 2023
1 parent 5daf2f0 commit 28f4e5f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "FlexBE App",
"version": "4am-dev",
"version": "2.2.2",
"main": "src/main.js",
"window": {
"icon": "src/img/icon-128.png",
Expand Down
4 changes: 2 additions & 2 deletions src/ui/ui_feed.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ UI.Feed = new (function() {

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

this.hideAbout = function() { }

}) ();
}) ();

0 comments on commit 28f4e5f

Please sign in to comment.