Skip to content

Commit dfe7c7b

Browse files
author
Alex Epstein
committed
Getting ready for 1.4.1
Former-commit-id: f0eb27e [formerly 9447b1b] Former-commit-id: a96b23e
1 parent 1375718 commit dfe7c7b

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ git clone https://github.com/alexanderepstein/Insomnia
3333
```
3434

3535
Otherwise to just get the application click the link before to head to the latest release page and download your respective platform.
36-
##### [Version 1.4.0 Release](https://github.com/alexanderepstein/Insomnia/releases/tag/v1.4.0)
36+
##### [Version 1.4.1 Release](https://github.com/alexanderepstein/Insomnia/releases/tag/v1.4.1)
3737

3838

3939
## Install
@@ -51,11 +51,11 @@ sudo apt-get install libappindicator1
5151
then depending on your system architechture either run
5252

5353
```bash
54-
sudo dpkg -i Insomnia_1.4.0_amd64.deb
54+
sudo dpkg -i Insomnia_1.4.1_amd64.deb
5555
```
5656
Or:
5757
```bash
58-
sudo dpkg -i Insomnia_1.4.0_x86.deb
58+
sudo dpkg -i Insomnia_1.4.1_x86.deb
5959
```
6060
#### RedHat
6161
```bash

about.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<div>
1717
<hr />
1818
<div class="electron info-other" style="text-align:center">
19-
Insomnia Version 1.4.0<br>
19+
Insomnia Version 1.4.1<br>
2020
Node.js Version <script>document.write(process.versions.node)</script><br>
2121
Chromium Version <script>document.write(process.versions.chrome)</script><br>
2222
Electron Version <script>document.write(process.versions.electron)</script><br>

js/script.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ var tempTime = []; //used for a temperary purpose not sure if reffered to outsid
2323
var latestRelease = null;
2424

2525
function setTime() { //called when set wakeup time button is pressed
26-
settings.set('Version','v1.4.0')
26+
settings.set('Version','v1.4.1')
2727
time = document.getElementById('alarmTime').value; //grab the wake up time
2828
generateSleepTimes(); //determine sleepTimes based off of wakeuptime
2929
setSleepTimes(); //determine the sleepTimes in formatted form to be shown to user
@@ -60,14 +60,14 @@ function readPreferences()
6060
militaryTime = false; //set the military time perference in the code to false
6161
}
6262
time = settings.get('defaultTime','08:30'); //set time variable
63-
appVersion = settings.get('Version','v1.4.0');
63+
appVersion = settings.get('Version','v1.4.1');
6464
document.getElementById('alarmTime').value = time; //set the time on the DOM
6565
setTime(); //run the main function to generate and show sleep time
6666
}
6767

6868
function loadPreferences()
6969
{
70-
appVersion = settings.get('Version','v1.4.0');
70+
appVersion = settings.get('Version','v1.4.1');
7171
if (settings.get('militaryTime','false') === "true") //mySettings[0] is where the military time setting is stored
7272
{
7373
militaryTime = true; //set prefrence to military time
@@ -238,7 +238,7 @@ function getLatestReleaseInfo() {
238238
var release = json[0].name; //get the newest app version
239239
latestRelease = release;
240240
release = release.split("");
241-
var myversion = settings.get('Version','v1.4.0').split("");
241+
var myversion = settings.get('Version','v1.4.1').split("");
242242

243243
if (release[1] > myversion[1]) //check if it matches current app version
244244
{

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Insomnia",
3-
"version": "1.4.0",
3+
"version": "1.4.1",
44
"license": "MIT",
55
"appCopyright": "Alexander Epstein",
66
"appCategoryType": "Productivity",

0 commit comments

Comments
 (0)