Skip to content

Commit 151d86a

Browse files
committed
feat: add sound effects for token types
1 parent a1cefe2 commit 151d86a

14 files changed

Lines changed: 23 additions & 13 deletions

CHANGELOG.md

Lines changed: 17 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,26 +6,33 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
66

77
## Unreleased
88

9-
- Features
10-
- Added configuration settings for token types, including sound file paths and notification preferences.
11-
- Implemented sound playback for token types based on user configuration.
9+
## [0.2.1] - 12-11-2024
1210

13-
## [0.1.0] - 28-10-2024
11+
- New Sounds
12+
- Added new sounds for function, keyword, method, number, operator, punctation, string and variable tokens.
13+
14+
## [0.2.0] - 08-11-2024
15+
16+
- Bug Fixes
17+
18+
- Warning notifications are disabled by default.
1419

1520
- Features
16-
- Added volume control for sound playback.
21+
- Added get the type of the token currently being hovered over with the menu
22+
- Added token settings
1723

1824
## [0.1.1] - 28-10-2024
1925

2026
- Bug Fixes
2127
- Fixed dependency issues with the extension.
2228

23-
## [0.2.0] - 08-11-2024
29+
## [0.1.0] - 28-10-2024
2430

25-
- Bug Fixes
31+
- Features
32+
- Added volume control for sound playback.
2633

27-
- Warning notifications are disabled by default.
34+
## [0.0.1] - 27-10-2024
2835

2936
- Features
30-
- Added get the type of the token currently being hovered over with the menu
31-
- Added token settings
37+
- Added configuration settings for token types, including sound file paths and notification preferences.
38+
- Implemented sound playback for token types based on user configuration.

images/icon.png

5.97 KB
Loading

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "soundsyntax",
33
"displayName": "Sound Syntax",
44
"description": "Sound Syntax is a Visual Studio Code extension that plays audio cues when the cursor hovers over beginning of token in your code.",
5-
"version": "0.2.0",
5+
"version": "0.2.1",
66
"publisher": "EmreCebeci",
77
"repository": {
88
"type": "git",
@@ -12,6 +12,9 @@
1212
"vscode": "^1.94.0"
1313
},
1414
"categories": ["Other"],
15+
"icon": "images/icon.png",
16+
"pricing": "Free",
17+
"license": "GPL-3.0-only",
1518
"activationEvents": ["onStartupFinished"],
1619
"main": "./out/extension.js",
1720
"contributes": {

sounds/default.mp3

-55.5 KB
Binary file not shown.

sounds/default.wav

17.6 KB
Binary file not shown.

sounds/function.wav

5.21 KB
Binary file not shown.

sounds/keyword.wav

13 KB
Binary file not shown.

sounds/method.wav

5.21 KB
Binary file not shown.

sounds/number.wav

6.5 KB
Binary file not shown.

sounds/operator.wav

6.5 KB
Binary file not shown.

0 commit comments

Comments
 (0)