Skip to content

Commit

Permalink
Minor cleanup + Version Change
Browse files Browse the repository at this point in the history
  • Loading branch information
cthuff committed Nov 1, 2022
1 parent 3a715f6 commit d89368f
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 19 deletions.
3 changes: 0 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,6 @@
<div>
<button id="darkMode" onclick="toggle()">LightMode</button>
</div>
<div>
<p id="log"></p>
</div>
</div>
</footer>
<script src="wcigh.js"></script>
Expand Down
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 7 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "whencanigohome",
"version": "1.0.0",
"version": "1.1.0",
"description": "\"A Simple Clock Out Calculator\"",
"main": "main.js",
"scripts": {
Expand All @@ -22,7 +22,7 @@
"@electron-forge/cli": "^6.0.0-beta.63",
"@electron-forge/maker-dmg": "^6.0.0-beta.63",
"@electron-forge/maker-zip": "^6.0.0-beta.63",
"electron": "^17.0.1"
"electron": "^16.0.1"
},
"dependencies": {
"electron-squirrel-startup": "^1.0.0"
Expand All @@ -32,22 +32,21 @@
"packagerConfig": {
"icon": "myicon.icns",
"name": "When Can I Go Home",
"arch": "arm64"
"arch": "arm64",
"appBundleId": "com.craighuff.WhenCanIGoHome"
},
"makers": [
{
"name": "@electron-forge/maker-dmg",
"config": {
"name": "WCIGH",
"backgroun": "dmg-background.png",
"format": "ULFO"
"format": "ULFO",
"icon": "myicon.icns"
}
},
{
"name": "@electron-forge/maker-zip",
"platforms": [
"darwin"
]
"platforms": []
}
]
}
Expand Down
2 changes: 1 addition & 1 deletion wcigh.js
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@
else {
document.getElementById("lunchText").innerText = "No Lunch Today?";
lunchStart.value = "12:00";
lunchEnd.value = lunchStart.value + 30;
lunchEnd.value = "12:30";
}
}

Expand Down

0 comments on commit d89368f

Please sign in to comment.