Skip to content

Commit b809bcb

Browse files
committed
1.9.0 section added to changelog
minor version bump
1 parent a0b9a92 commit b809bcb

File tree

4 files changed

+24
-13
lines changed

4 files changed

+24
-13
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
- [ ] Add support for forest theme (if rbende adds it to pypi)
1111

12+
## [1.9.0] - 2023-07-10
13+
14+
### Added
15+
16+
- Should the voicemeeter-compact app lose communication with Voicemeeter GUI a popup will show asking to restart the GUI.
17+
- If yes is selected the app's mainframe will redraw, there will be a grace period before updates start again due to Voicemeeter engine startup.
18+
19+
### Fixed
20+
21+
- From the menu, Voicemeeter->Shutdown now closes both the compact app and the main Voicemeeter GUI.
22+
1223
## [1.8.0] - 2023-06-29
1324

1425
### Added

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,16 +34,16 @@ import vmcompact
3434

3535

3636
def main():
37-
# pass the kind_id and the vm object to the app
38-
with voicemeeterlib.api(kind_id) as vm:
39-
app = vmcompact.connect(kind_id, vm)
37+
# choose the kind of Voicemeeter (Local connection)
38+
KIND_ID = "banana"
39+
40+
# pass the KIND_ID and the vm object to the app
41+
with voicemeeterlib.api(KIND_ID) as vm:
42+
app = vmcompact.connect(KIND_ID, vm)
4043
app.mainloop()
4144

4245

4346
if __name__ == "__main__":
44-
# choose the kind of Voicemeeter (Local connection)
45-
kind_id = "banana"
46-
4747
main()
4848
```
4949

@@ -53,9 +53,9 @@ It's important to know that only labelled strips and buses will appear in the Ch
5353

5454
If the GUI looks like the above when you first load it, then no channels are labelled. From the menu, `Configs->Load config` you may load an example config. Save your current Voicemeeter settings first :).
5555

56-
### kind_id
56+
### KIND_ID
5757

58-
Set the kind of Voicemeeter, kind_id may be:
58+
Set the kind of Voicemeeter, KIND_ID may be:
5959

6060
- `basic`
6161
- `banana`

__main__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44

55

66
def main():
7-
with voicemeeterlib.api(kind_id) as vmr:
8-
app = vmcompact.connect(kind_id, vmr)
7+
KIND_ID = "banana"
8+
9+
with voicemeeterlib.api(KIND_ID) as vmr:
10+
app = vmcompact.connect(KIND_ID, vmr)
911
app.mainloop()
1012

1113

1214
if __name__ == "__main__":
13-
kind_id = "banana"
14-
1515
main()

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "voicemeeter-compact"
3-
version = "1.8.4"
3+
version = "1.9.0"
44
description = "A Compact Voicemeeter Remote App"
55
authors = ["onyx-and-iris <code@onyxandiris.online>"]
66
license = "MIT"

0 commit comments

Comments
 (0)