diff --git a/changelog.html b/changelog.html index 1ba0884e15..06d6b0d0c1 100644 --- a/changelog.html +++ b/changelog.html @@ -1,3 +1,7 @@ +09.04.2014 - 0.50.3 cleanflight +

+ - Update URLs.
+

09.04.2014 - 0.50.2 cleanflight

- Update default data filenames.
diff --git a/manifest.json b/manifest.json index 601999d259..6977da335d 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "minimum_chrome_version": "36", - "version": "0.50.2", + "version": "0.50.3", "author": "Hydra", "name": "Cleanflight - Configurator", "short_name": "cleanflight", diff --git a/tabs/firmware_flasher.js b/tabs/firmware_flasher.js index 26f86c2680..859064a561 100644 --- a/tabs/firmware_flasher.js +++ b/tabs/firmware_flasher.js @@ -67,7 +67,7 @@ TABS.firmware_flasher.initialize = function (callback) { }); $('a.load_remote_file').click(function () { - $.get('https://raw.githubusercontent.com/hydra/cleanflight/master/obj/cleanflight_NAZE.hex', function (data) { + $.get('https://raw.githubusercontent.com/cleanflight/cleanflight/master/obj/cleanflight_NAZE.hex', function (data) { intel_hex = data; parse_hex(intel_hex, function (data) { @@ -78,7 +78,7 @@ TABS.firmware_flasher.initialize = function (callback) { $('span.progressLabel').text('Loaded Online Firmware: (' + parsed_hex.bytes_total + ' bytes)'); $('a.flash_firmware').removeClass('locked'); - $.get('https://api.github.com/repos/hydra/cleanflight/commits?page=1&per_page=1&path=obj/cleanflight_NAZE.hex', function (data) { + $.get('https://api.github.com/repos/cleanflight/cleanflight/commits?page=1&per_page=1&path=obj/cleanflight_NAZE.hex', function (data) { var data = data[0], d = new Date(data.commit.author.date), date = ('0' + (d.getMonth() + 1)).slice(-2) + '.' + ('0' + (d.getDate() + 1)).slice(-2) + '.' + d.getFullYear();