Reference firmware 8.1.0 and adopt the newly introduced "v" git tag prefix for firmware tags.
This commit is contained in:
@@ -4,8 +4,8 @@
|
|||||||
"author": "Ultimate Gadget Laboratories",
|
"author": "Ultimate Gadget Laboratories",
|
||||||
"main": "electron/dist/electron-main.js",
|
"main": "electron/dist/electron-main.js",
|
||||||
"version": "1.0.4",
|
"version": "1.0.4",
|
||||||
"firmwareVersion": "8.0.0",
|
"firmwareVersion": "8.1.0",
|
||||||
"deviceProtocolVersion": "4.0.0",
|
"deviceProtocolVersion": "4.2.0",
|
||||||
"userConfigVersion": "4.0.0",
|
"userConfigVersion": "4.0.0",
|
||||||
"hardwareConfigVersion": "1.0.0",
|
"hardwareConfigVersion": "1.0.0",
|
||||||
"description": "Agent is the configuration application of the Ultimate Hacking Keyboard.",
|
"description": "Agent is the configuration application of the Ultimate Hacking Keyboard.",
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ const fs = require('fs');
|
|||||||
const fse = require('fs-extra');
|
const fse = require('fs-extra');
|
||||||
|
|
||||||
async function downloadFirmware(version) {
|
async function downloadFirmware(version) {
|
||||||
const url = `https://github.com/UltimateHackingKeyboard/firmware/releases/download/${version}/uhk-firmware-${version}.tar.bz2`;
|
const url = `https://github.com/UltimateHackingKeyboard/firmware/releases/download/v${version}/uhk-firmware-${version}.tar.bz2`;
|
||||||
const outputDir = path.join(__dirname, `../tmp`);
|
const outputDir = path.join(__dirname, `../tmp`);
|
||||||
const output = path.join(outputDir, `uhk-firmware-${version}.tar.bz2`);
|
const output = path.join(outputDir, `uhk-firmware-${version}.tar.bz2`);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user