forked from jackd248/temps
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding app icon and upgrading color palette
- Loading branch information
Showing
9 changed files
with
39 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,23 @@ | ||
* hourly forecast usability improvement | ||
* show weather icon for hourly forecast | ||
* "no internet connection" error | ||
## v0.3.0 | ||
* ~~"no api key" error~~ | ||
* ~~"api error"~~ | ||
* app icon | ||
* ~~menubar dark mode icon~~ | ||
* ~~app icon~~ | ||
* ~~global shortcut~~ | ||
* ~~upgrading color palette~~ | ||
* ~~bugs~~ | ||
|
||
## v0.4.0 | ||
* hourly forecast usability improvement | ||
* show weather icon for hourly forecast | ||
* "no internet connection" error | ||
* snow animation | ||
* city autocomplete | ||
* loading animation | ||
* time and date of city | ||
* ~~global shortcut~~ | ||
* auto updates | ||
* landing page | ||
* ~~allow copy, paste, select all~~ | ||
* upgrading color palette | ||
* outsource configs | ||
|
||
## v0.5.0 | ||
* landing page | ||
* web demo | ||
* city autocomplete |
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,14 +16,14 @@ | |
"dev": "electron . --debug", | ||
"clean:dist": "rm -rf ./dist", | ||
"build": "npm run build:osx && npm run build:win && npm run build:linux", | ||
"build:osx": "electron-packager . $npm_package_productName --out=dist --ignore='^/dist$' --overwrite --prune --asar --arch=all --platform=darwin --version=$npm_package_electronVersion --app-version=$npm_package_version", | ||
"build:win": "electron-packager . $npm_package_productName --out=dist --arch=all --platform=win32 --ignore='^/dist$' --prune --asar --overwrite --version=$npm_package_electronVersion --app-version=$npm_package_version", | ||
"build:linux": "electron-packager . $npm_package_productName --out=dist --arch=all --platform=linux --ignore='^/dist$' --prune --asar --overwrite --version=$npm_package_electronVersion --app-version=$npm_package_version", | ||
"build:osx": "electron-packager . $npm_package_productName --out=dist --ignore='^/dist$' --overwrite --prune --asar --arch=all --platform=darwin --icon=./assets/app.icns --version=$npm_package_electronVersion --app-version=$npm_package_version", | ||
"build:win": "electron-packager . $npm_package_productName --out=dist --arch=all --platform=win32 --ignore='^/dist$' --prune --asar --overwrite --icon=./assets/app.ico --version=$npm_package_electronVersion --app-version=$npm_package_version", | ||
"build:linux": "electron-packager . $npm_package_productName --out=dist --arch=all --platform=linux --ignore='^/dist$' --prune --asar --overwrite --icon=./assets/app.png --version=$npm_package_electronVersion --app-version=$npm_package_version", | ||
"package": "npm run package:win32 && npm run package:win64 && npm run package:osx && npm run package:linux", | ||
"package:win64": "electron-builder dist/Ampersand-win32-x64/ --platform=win --out=dist --config=config.json && mv 'dist/Ampersand Setup.exe' dist/Ampersand_Windows64.exe", | ||
"package:win32": "electron-builder dist/Ampersand-win32-ia32/ --platform=win --out=dist --config=config.json && mv 'dist/Ampersand Setup.exe' dist/Ampersand_Windows32.exe", | ||
"package:osx": "hdiutil create -format UDZO -srcfolder dist/Ampersand-darwin-x64/Ampersand.app dist/Ampersand_Mac.dmg", | ||
"package:linux": "cd dist/ && zip -r Ampersand_Linux_x64.zip Ampersand-linux-x64 && zip -r Ampersand_Linux_ia32.zip Ampersand-linux-ia32 && cd ../" | ||
"package:win64": "electron-builder dist/Temps-win32-x64/ --platform=win --out=dist --config=config.json && mv 'dist/Temps Setup.exe' dist/Temps_Windows64.exe", | ||
"package:win32": "electron-builder dist/Temps-win32-ia32/ --platform=win --out=dist --config=config.json && mv 'dist/Temps Setup.exe' dist/Temps_Windows32.exe", | ||
"package:osx": "hdiutil create -format UDZO -srcfolder dist/Temps-darwin-x64/Temps.app dist/Temps_Mac.dmg", | ||
"package:linux": "cd dist/ && zip -r Temps_Linux_x64.zip Temps-linux-x64 && zip -r Temps_Linux_ia32.zip Temps-linux-ia32 && cd ../" | ||
}, | ||
"author": "Konrad Michalik <[email protected]>", | ||
"license": "MIT", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters