diff --git a/CHANGELOG.md b/CHANGELOG.md index 5de4d57..0645477 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,9 +4,21 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + ## [Unreleased] + +## [0.2.0] - 2020-11-19 +### Added +**Windows** +- Windows support + +### Fixed +**MacOS** +- Closed application would not re-open when in closed state but not quitted state + ## 0.1.0 - 2020-11-17 ### Added - Initial pre-release of Not Boop based on Boop -[Unreleased]: https://github.com/adriancleung/not-boop/compare/v0.1.0...HEAD +[Unreleased]: https://github.com/adriancleung/not-boop/compare/v0.2.0...HEAD +[0.2.0]: https://github.com/adriancleung/not-boop/compare/v0.1.0...v0.2.0 diff --git a/app/main.css b/app/main.css index d66d470..d52bc99 100644 --- a/app/main.css +++ b/app/main.css @@ -12,6 +12,13 @@ display: none; } +* { + margin-top: 0; + padding: 0; + border: 0; + vertical-align: baseline; +} + h1 { margin: 0 0 10px 0; font-weight: 600; diff --git a/app/package.json b/app/package.json index d5620be..9942829 100644 --- a/app/package.json +++ b/app/package.json @@ -1,6 +1,6 @@ { "name": "not-boop", - "version": "0.1.0", + "version": "0.2.0", "description": "Definitely not boop", "main": "main.js", "scripts": { @@ -37,8 +37,7 @@ { "target": "nsis", "arch": [ - "x64", - "arm64" + "x64" ] } ], diff --git a/dist/Not Boop Setup 0.2.0.exe b/dist/Not Boop Setup 0.2.0.exe new file mode 100755 index 0000000..b4b4d8e Binary files /dev/null and b/dist/Not Boop Setup 0.2.0.exe differ diff --git a/dist/Not Boop-0.2.0.dmg b/dist/Not Boop-0.2.0.dmg new file mode 100644 index 0000000..2c50de5 Binary files /dev/null and b/dist/Not Boop-0.2.0.dmg differ