Skip to content

Commit

Permalink
chore: Update CHANGELOG.md and package.json version
Browse files Browse the repository at this point in the history
- Updated CHANGELOG.md with new bug fixes and features.
- Updated package.json version to 0.2.0.
  • Loading branch information
ecebeci committed Nov 8, 2024
1 parent 34e6e66 commit a1cefe2
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,13 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how

- Bug Fixes
- Fixed dependency issues with the extension.

## [0.2.0] - 08-11-2024

- Bug Fixes

- Warning notifications are disabled by default.

- Features
- Added get the type of the token currently being hovered over with the menu
- Added token settings
15 changes: 14 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "soundsyntax",
"displayName": "Sound Syntax",
"description": "Sound Syntax is a Visual Studio Code extension that plays audio cues when the cursor hovers over beginning of token in your code.",
"version": "0.1.1",
"version": "0.2.0",
"publisher": "EmreCebeci",
"repository": {
"type": "git",
Expand All @@ -24,9 +24,17 @@
"command": "soundSyntax.setVolume",
"title": "Sound Syntax: Set Volume"
},
{
"command": "soundSyntax.toggleNotification",
"title": "Sound Syntax: Enable/Disable All Information Notifications"
},
{
"command": "soundSyntax.currentTokenType",
"title": "Sound Syntax: Get Current Token Type"
},
{
"command": "soundSyntax.tokenSettings",
"title": "Sound Syntax: Token Settings"
}
],
"configuration": {
Expand All @@ -44,6 +52,11 @@
"maximum": 100,
"description": "Volume of the sound. Value should be between 1 and 100."
},
"soundSyntax.notificationMessage": {
"type": "boolean",
"default": false,
"description": "Disable/Enable All Notification Message"
},
"soundSyntax.tokens": {
"type": "array",
"description": "List of tokens with settings for sound, warnings, and sound path.",
Expand Down

0 comments on commit a1cefe2

Please sign in to comment.