diff --git a/README.md b/README.md index 68b5581..c672887 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ git clone https://github.com/alexanderepstein/Insomnia ``` Otherwise to just get the application click the link before to head to the latest release page and download your respective platform. -##### [Version 1.4.2 Release](https://github.com/alexanderepstein/Insomnia/releases/tag/v1.4.2) +##### [Version 1.4.3 Release](https://github.com/alexanderepstein/Insomnia/releases/tag/v1.4.3) ## Install @@ -52,11 +52,11 @@ sudo apt-get install libappindicator1 then depending on your system architechture either run ```bash -sudo dpkg -i Insomnia_1.4.2_amd64.deb +sudo dpkg -i Insomnia_1.4.3_amd64.deb ``` Or: ```bash -sudo dpkg -i Insomnia_1.4.2_x86.deb +sudo dpkg -i Insomnia_1.4.3_x86.deb ``` #### RedHat ```bash diff --git a/about.html b/about.html index e37cf51..28b495b 100644 --- a/about.html +++ b/about.html @@ -16,7 +16,7 @@

- Insomnia Version 1.4.2
+ Insomnia Version 1.4.3
Node.js Version
Chromium Version
Electron Version
diff --git a/js/script.js b/js/script.js index 686e2f1..8020821 100644 --- a/js/script.js +++ b/js/script.js @@ -27,7 +27,7 @@ var upTimeJob = null; var resetTime = null; function setTime() { //called when set wakeup time button is pressed - settings.set('Version','v1.4.2') + settings.set('Version','v1.4.3') time = document.getElementById('alarmTime').value; //grab the wake up time generateSleepTimes(); //determine sleepTimes based off of wakeuptime setSleepTimes(); //determine the sleepTimes in formatted form to be shown to user @@ -64,14 +64,14 @@ function readPreferences() militaryTime = false; //set the military time perference in the code to false } time = settings.get('defaultTime','08:30'); //set time variable - appVersion = settings.get('Version','v1.4.2'); + appVersion = settings.get('Version','v1.4.3'); document.getElementById('alarmTime').value = time; //set the time on the DOM setTime(); //run the main function to generate and show sleep time } function loadPreferences() { - appVersion = settings.get('Version','v1.4.2'); + appVersion = settings.get('Version','v1.4.3'); if (settings.get('militaryTime','false') === "true") //mySettings[0] is where the military time setting is stored { militaryTime = true; //set prefrence to military time @@ -259,7 +259,7 @@ function getLatestReleaseInfo() { var release = json[0].name; //get the newest app version latestRelease = release; release = release.split(""); - var myversion = settings.get('Version','v1.4.2').split(""); + var myversion = settings.get('Version','v1.4.3').split(""); if (release[1] > myversion[1]) //check if it matches current app version { diff --git a/package.json b/package.json index 71fe752..bb1890a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "Insomnia", - "version": "1.4.2", + "version": "1.4.3", "license": "MIT", "appCopyright": "Alexander Epstein", "appCategoryType": "Productivity",