Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```


<!-- Matomo Image Tracker-->
<img referrerpolicy="no-referrer-when-downgrade" src="https://analytics.owly.sk/matomo.php?idsite=5&amp;rec=1" style="border:0" alt="" />
Expand Down
4 changes: 2 additions & 2 deletions neutralino.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"window": {
"title": "CodeTimer",
"width": 800,
"height": 500,
"height": 600,
"minWidth": 200,
"minHeight": 200,
"fullScreen": false,
Expand Down Expand Up @@ -55,7 +55,7 @@
},
"chrome": {
"width": 800,
"height": 500,
"height": 600,
"args": "--user-agent=\"Neutralinojs chrome mode\"",
"nativeBlockList": [
"filesystem.*",
Expand Down
Binary file modified resources/icons/appicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified resources/icons/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions resources/js/detail.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ function renderItem(item){
$('#customerSelect').change(function(){
renderUpdateProjectViaCustomer();
});

$('#projectSelect').val(item.project);

renderUpdateActivitiesViaProject();
$('#customerSelect, #projectSelect').change(function(){
Expand Down