Skip to content

Commit 475ade3

Browse files
committed
Housekeeping before release v4.1.0
1 parent 763bc74 commit 475ade3

3 files changed

Lines changed: 32 additions & 0 deletions

File tree

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ So, I decided to resume working on Patchwork on my own. I am worse developer tha
66

77
## Version History for Poncho Wonky:
88

9+
### v4.1.0
10+
11+
Added support for posting blog messages and a new page to view blog posts.
12+
13+
### v4.0.1
14+
15+
Added macOS signing and notarisation. Took forever.
16+
917
### v4.0.0
1018

1119
Very first tagged release, this should keep all the bugs from Patchwork v3.18.1 cosy in their new home. The objective of this release is to get Patchwork to build and run with a current Electron, NodeJS, and Electron-Builder release.

docs/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1414
### Security
1515
-->
1616

17+
## v4.1.0 - 2025-11-29
18+
### Added
19+
- New "Blog Posts" page under the "more" menu.
20+
- Users can now post messages of type blog.
21+
### Changed
22+
- Added a menu item to link to the repository.
23+
- Added a menu item to link to the issue tracker.
24+
### Deprecated
25+
### Removed
26+
### Fixed
27+
### Security
28+
1729
## v4.0.1 - 2025-11-26
1830
### Added
1931
### Changed

index.js

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,18 @@ electron.app.on("ready", () => {
141141
require("electron").shell.openExternal("https://scuttlebutt.nz");
142142
},
143143
},
144+
{
145+
label: "Source Code on Github",
146+
click() {
147+
require("electron").shell.openExternal("https://github.com/soapdog/patchwork/");
148+
},
149+
},
150+
{
151+
label: "Report issue",
152+
click() {
153+
require("electron").shell.openExternal("https://github.com/soapdog/patchwork/issues/new/choose");
154+
},
155+
},
144156
];
145157
if (process.platform === "darwin") {
146158
const win = menu.find((x) => x.label === "Window");

0 commit comments

Comments
 (0)