Skip to content

Commit

Permalink
Merge branch 'release/0.2.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
jhotadhari committed Aug 18, 2023
2 parents 3680ecf + 394d6c3 commit a690cc5
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [0.2.4] - 2023-08-18
### Fixed
- Failed to build the app.

## [0.2.3] - 2023-08-18
### Fixed
- App didn't start on Ubuntu when started by launcher, but was able to start via cli command.
Expand Down Expand Up @@ -66,6 +70,7 @@ Add github publisher and actions. To build the releases for all platforms with g
## [0.0.1] - 2023-07-23
First version

[0.2.4]: https://github.com/jhotadhari/chroco/compare/v0.2.3...v0.2.4
[0.2.3]: https://github.com/jhotadhari/chroco/compare/v0.2.2...v0.2.3
[0.2.2]: https://github.com/jhotadhari/chroco/compare/v0.2.1...v0.2.2
[0.2.1]: https://github.com/jhotadhari/chroco/compare/v0.2.0...v0.2.1
Expand Down
3 changes: 2 additions & 1 deletion forge.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
const fs = require( 'fs' );
const path = require('path');
const { serialHooks } = require( 'electron-packager/src/hooks' );
const appRootDir = require('app-root-dir').get();
const { getAppRootDirSync } = require( './src/main/utils' );
const appRootDir = getAppRootDirSync( __dirname );

module.exports = {
packagerConfig: {
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "chroco",
"productName": "chroco",
"version": "0.2.3",
"version": "0.2.4",
"description": "Simple electron offline time tracker",
"main": ".webpack/main",
"scripts": {
Expand Down

0 comments on commit a690cc5

Please sign in to comment.