Skip to content

Commit f58f803

Browse files
committed
Add changelog, and menu item for changelog
1 parent 60683b6 commit f58f803

File tree

2 files changed

+47
-0
lines changed

2 files changed

+47
-0
lines changed

CHANGELOG.md

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [0.1.2] - 2019-01-17
9+
10+
### Additions
11+
12+
- Add google analytics to keep tabs on how many users are using the app and current sessions
13+
- Add this changelog
14+
- Add a link to the changelog in the app itself for easy access to those of you who are nosy
15+
16+
## [0.1.1] - 2019-01-14
17+
18+
💅 Make the App Icon a little prettier to look at 💅
19+
20+
(on macOS you may need to remove the app from your dock and re-pin it to get the updated icon, just sayin')
21+
22+
## [0.1.0] - 2019-01-08
23+
24+
### Bugfixes
25+
26+
- Adds the ability to copy and paste, as well as other native menu options like zoom in, out, etc.
27+
28+
### New Features
29+
30+
- Links now open in the native default OS browser
31+
- Adds super fancy auto check for update function that alerts all ya'll when a new release is available for download. No auto updatin' tho - cuz Apple wants money for that. Send me \$99 and I'll make it happen. <3
32+
33+
## [0.0.1] - 2018-12-22
34+
35+
✨ Initial Release ✨
36+
37+
[0.1.1]: https://github.com/erwstout/android-messages/compare/v0.1.0...v0.1.1
38+
[0.1.0]: https://github.com/erwstout/android-messages/compare/v0.0.1...v0.1.0
39+
[0.0.1]: https://github.com/erwstout/android-messages/releases/tag/v.0.0.1

main.js

+8
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,14 @@ const menuTemplate = [
6464
"https://github.com/erwstout/android-messages"
6565
);
6666
}
67+
},
68+
{
69+
label: "View Changelog",
70+
click() {
71+
require("electron").shell.openExternal(
72+
"https://github.com/erwstout/android-messages/blob/master/CHANGELOG.md"
73+
);
74+
}
6775
}
6876
]
6977
}

0 commit comments

Comments
 (0)