Skip to content

Commit

Permalink
Release v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ijager committed May 12, 2022
1 parent 1e02ac7 commit a2c49fe
Show file tree
Hide file tree
Showing 4 changed files with 31,378 additions and 677 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ 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).


## [0.4.0] - 2022-05-12
### Added
- Add missed counter to keep track of number of messages going to /dev/null
- update electron to v12
- require node v14

## [0.3.0] - 2022-01-06
### Added
- Import and Export of settings (json). Now you can save settings per project and easily switch.
Expand Down
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ Install dependencies with npm :
npm ci
# or:
npm install
# or when you get warnings with newer NPM:
npm install -f
```

## To build and run for development
Expand All @@ -75,6 +77,14 @@ You can disable "Developer Tools" by commenting `win.webContents.openDevTools();

Run `npm run electron:build`. If all goes well this will output a bundled executable for your OS. You can move this executable to e.g. the Applications folder (on MacOS).

### Building on MacOS without code signing

```bash
CSC_IDENTITY_AUTO_DISCOVERY=false; npm run electron:build
```

For code signing an Apple Developer account is required.

# Acknowledgments

This app is based on [Angular-Electron starter](https://github.com/maximegris/angular-electron) by Maxime Gris. This made it very easy to get up and running with Electron and Angular.
Expand Down
Loading

0 comments on commit a2c49fe

Please sign in to comment.