Skip to content

Commit 19b8119

Browse files
committed
update changelog - ms
1 parent 2c1df13 commit 19b8119

File tree

5 files changed

+63
-58
lines changed

5 files changed

+63
-58
lines changed

CHANGELOG.md

Lines changed: 58 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -1,53 +1,58 @@
1-
### 1.2.0 - 2022-09-24 - Always Listening
2-
3-
- Added a toggle-able `Always Listening` mode
4-
- Each command must be prefixed with an activation phrase (defaulted to `okay ghost`)
5-
- Added fix for `maxPower` command (didn't work in normal DIM, only in beta)
6-
- Added fix for search already being populated when performing a command.
7-
8-
### 1.1.3 - 2022-09-20 - Perk fix
9-
10-
- Fixed perk matching
11-
12-
### 1.1.2 - 2022-09-19 - Options page links
13-
14-
- Added an `onInstalled` event for the extension. It'll direct users to the options page.
15-
- Link to the options page from the `?`
16-
17-
### 1.1.1 - 2022-09-16 - Better performance
18-
19-
- Use a `waitForElement/waitForSearchToUpdate` function instead of arbitrarily sleeping in code
20-
- Results in at least a 300% improvement in action duration
21-
22-
### 1.1.0 - 2022-09-13 - The One with Custom Commands
23-
24-
- Quite a few changes in this one
25-
- Reworked how the extension waits for the search to update visible (not dimmed) items
26-
- Really reworked how all UI interactions are performed
27-
- Added the ability to customize the command words for particular actions
28-
- Visit the options page (click the extension icon) to set these
29-
- Added a `store` command for storing items in the vault
30-
- Added an `equip` command for directly equipping an item on your current character (when possible)
31-
- This works like how `transfer` previously did, and `transfer` has been updated to only transfer, not equip
32-
- (from above) `Transfer` now only transfers instead of equipping
33-
- Added mic icon on page with a link to the website
34-
- When listening, there will be text next to the icon that updates as the user speaks their command
35-
- Added link to the [Voice DIM website](https://www.voicedim.com) via the `?` icon.
36-
- Fixed `Start Farming mode` command if a user has at least 10 loadouts saved
37-
38-
### 1.0.1 - 2022-08-23 - Corrected Shortcut
39-
40-
- Defaulted the shortcut correctly (set to `Ctrl+Shift+0`)
41-
42-
### 1.0.0 - 2022-08-19 - Initial Release
43-
44-
- See [Reddit post](https://www.reddit.com/r/DestinyTheGame/comments/wseigx/interact_with_dim_using_your_voice/) about the available commands with more info
45-
- Commands are available to:
46-
- Transfer a weapon by name
47-
- Transfer a weapon with particular perks
48-
- Transfer a weapon by attribute (energy type, slot, ammo type, etc)
49-
- Collect from the postmaster
50-
- Start/Stop farming mode
51-
- Equip loadouts by name
52-
- Equip max power
53-
- Use global shortcut to activate listening
1+
### 1.2.1 - 2022-10-03 - Only in Inventory
2+
3+
- Added fix for loading DIM on another tab. Previously required reloading the page on the inventory tab. Now Voice DIM will load no matter what page is started on
4+
- Added fix for a user having the item popup sidebar being collapsed.
5+
6+
### 1.2.0 - 2022-09-24 - Always Listening
7+
8+
- Added a toggle-able `Always Listening` mode
9+
- Each command must be prefixed with an activation phrase (defaulted to `okay ghost`)
10+
- Added fix for `maxPower` command (didn't work in normal DIM, only in beta)
11+
- Added fix for search already being populated when performing a command.
12+
13+
### 1.1.3 - 2022-09-20 - Perk fix
14+
15+
- Fixed perk matching
16+
17+
### 1.1.2 - 2022-09-19 - Options page links
18+
19+
- Added an `onInstalled` event for the extension. It'll direct users to the options page.
20+
- Link to the options page from the `?`
21+
22+
### 1.1.1 - 2022-09-16 - Better performance
23+
24+
- Use a `waitForElement/waitForSearchToUpdate` function instead of arbitrarily sleeping in code
25+
- Results in at least a 300% improvement in action duration
26+
27+
### 1.1.0 - 2022-09-13 - The One with Custom Commands
28+
29+
- Quite a few changes in this one
30+
- Reworked how the extension waits for the search to update visible (not dimmed) items
31+
- Really reworked how all UI interactions are performed
32+
- Added the ability to customize the command words for particular actions
33+
- Visit the options page (click the extension icon) to set these
34+
- Added a `store` command for storing items in the vault
35+
- Added an `equip` command for directly equipping an item on your current character (when possible)
36+
- This works like how `transfer` previously did, and `transfer` has been updated to only transfer, not equip
37+
- (from above) `Transfer` now only transfers instead of equipping
38+
- Added mic icon on page with a link to the website
39+
- When listening, there will be text next to the icon that updates as the user speaks their command
40+
- Added link to the [Voice DIM website](https://www.voicedim.com) via the `?` icon.
41+
- Fixed `Start Farming mode` command if a user has at least 10 loadouts saved
42+
43+
### 1.0.1 - 2022-08-23 - Corrected Shortcut
44+
45+
- Defaulted the shortcut correctly (set to `Ctrl+Shift+0`)
46+
47+
### 1.0.0 - 2022-08-19 - Initial Release
48+
49+
- See [Reddit post](https://www.reddit.com/r/DestinyTheGame/comments/wseigx/interact_with_dim_using_your_voice/) about the available commands with more info
50+
- Commands are available to:
51+
- Transfer a weapon by name
52+
- Transfer a weapon with particular perks
53+
- Transfer a weapon by attribute (energy type, slot, ammo type, etc)
54+
- Collect from the postmaster
55+
- Start/Stop farming mode
56+
- Equip loadouts by name
57+
- Equip max power
58+
- Use global shortcut to activate listening

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "voice-dim",
3-
"version": "1.2.0",
3+
"version": "1.2.1",
44
"description": "Perform common DIM actions by using speech recognition.",
55
"main": "dist/chrome/js/voice-dim.js",
66
"scripts": {
@@ -46,4 +46,4 @@
4646
"webpack-cli": "^4.10.0",
4747
"webpack-visualizer-plugin2": "^1.0.0"
4848
}
49-
}
49+
}

public/manifest.chrome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "Voice DIM",
33
"description": "Control DIM with your voice.",
4-
"version": "1.2.0",
4+
"version": "1.2.1",
55
"manifest_version": 3,
66
"background": {
77
"service_worker": "js/background.js"

public/manifest.firefox.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "Voice DIM",
33
"description": "Control DIM with your voice.",
4-
"version": "1.2.0",
4+
"version": "1.2.1",
55
"manifest_version": 2,
66
"background": {
77
"scripts": ["js/background.js"]

scripts/update_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def write_new_version(file_path: str, new_version: str, dry_run: bool = False):
4848
return
4949

5050
with open(file_path, 'w') as f:
51-
json.dump(data, f, indent=4)
51+
json.dump(data, f, indent=2)
5252

5353

5454
def write_changelog_update(file_path: str, new_version: str, dry_run: bool = False):

0 commit comments

Comments
 (0)