diff --git a/README.md b/README.md index f4cc200..e292eeb 100644 --- a/README.md +++ b/README.md @@ -29,6 +29,29 @@ If you enjoy my app, I appreciate if you buy me a coffee :) ## Video [Watch video](https://owly.sk/apps/CodeTimer/video/codetimer.mp4) +## Development +### Requirements: +- Nodejs and npm +- Neutralinojs (Install using npm: `npm install -g @neutralinojs/neu`) + +### Initial Setup: +Installs or updates required binaries +``` +neu update +``` + +### Build and Run: +``` +neu build +neu run +``` + +### Build release: +Generates `dist/CodeTimer-release.zip` containing all platform binaries +``` +neu build --release +``` + diff --git a/neutralino.config.json b/neutralino.config.json index a08248a..48f5477 100644 --- a/neutralino.config.json +++ b/neutralino.config.json @@ -27,7 +27,7 @@ "window": { "title": "CodeTimer", "width": 800, - "height": 500, + "height": 600, "minWidth": 200, "minHeight": 200, "fullScreen": false, @@ -55,7 +55,7 @@ }, "chrome": { "width": 800, - "height": 500, + "height": 600, "args": "--user-agent=\"Neutralinojs chrome mode\"", "nativeBlockList": [ "filesystem.*", diff --git a/resources/icons/appicon.png b/resources/icons/appicon.png index 94e50e3..9970162 100644 Binary files a/resources/icons/appicon.png and b/resources/icons/appicon.png differ diff --git a/resources/icons/logo.png b/resources/icons/logo.png index eec0c4a..5bb40d8 100644 Binary files a/resources/icons/logo.png and b/resources/icons/logo.png differ diff --git a/resources/js/detail.js b/resources/js/detail.js index 3318a3d..2776efa 100644 --- a/resources/js/detail.js +++ b/resources/js/detail.js @@ -62,6 +62,8 @@ function renderItem(item){ $('#customerSelect').change(function(){ renderUpdateProjectViaCustomer(); }); + + $('#projectSelect').val(item.project); renderUpdateActivitiesViaProject(); $('#customerSelect, #projectSelect').change(function(){