Skip to content

Commit

Permalink
Merge pull request #13 from Amin-Cheribet:feature/easier-commands
Browse files Browse the repository at this point in the history
Feature/easier-commands
  • Loading branch information
Amin-Cheribet authored Feb 5, 2023
2 parents bd06f9b + 21a0c33 commit 1699ac8
Show file tree
Hide file tree
Showing 9 changed files with 198 additions and 282 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ dist
node_modules
.vscode-test/
*.vsix
.vscode/
7 changes: 0 additions & 7 deletions .vscode/extensions.json

This file was deleted.

34 changes: 0 additions & 34 deletions .vscode/launch.json

This file was deleted.

11 changes: 0 additions & 11 deletions .vscode/settings.json

This file was deleted.

20 changes: 0 additions & 20 deletions .vscode/tasks.json

This file was deleted.

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.

22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"displayName": "Pomodoro",
"description": "Pomodoro timer with sound notifications",
"publisher": "Amin",
"version": "0.3.31",
"version": "0.4.0",
"icon": "icon.png",
"engines": {
"vscode": ">=1.59.0"
Expand All @@ -18,24 +18,24 @@
"contributes": {
"commands": [
{
"command": "pomodoro.start",
"title": "Start Pomodoro"
"command": "pomodoro.startTerminal",
"title": "Pomodoro Start"
},
{
"command": "pomodoro.continue",
"title": "Continue Pomodoro"
"command": "pomodoro.continueTerminal",
"title": "Pomodoro Continue"
},
{
"command": "pomodoro.pause",
"title": "Pause Pomodoro"
"command": "pomodoro.pauseTerminal",
"title": "Pomodoro Break"
},
{
"command": "pomodoro.reset",
"title": "Reset Pomodoro"
"command": "pomodoro.resetTerminal",
"title": "Pomodoro Reset"
},
{
"command": "pomodoro.stop",
"title": "Stop Pomodoro"
"command": "pomodoro.stopTerminal",
"title": "Pomodoro Stop"
}
],
"configuration": {
Expand Down
Loading

0 comments on commit 1699ac8

Please sign in to comment.