mirror of
https://github.com/onyx-and-iris/nvda-voicemeeter.git
synced 2024-11-22 10:00:46 +00:00
theme list updated.
themes section added to readme version bumped to 0.5.7b1 Issue #19
This commit is contained in:
parent
cb82033e1c
commit
36003fe73f
12
README.md
12
README.md
@ -131,9 +131,11 @@ For Gate BP Sidechain, Attack, Hold, Release you may use:
|
|||||||
|
|
||||||
To reset a slider back to its default value you may use `Control + Shift + R`.
|
To reset a slider back to its default value you may use `Control + Shift + R`.
|
||||||
|
|
||||||
#### `Menu`
|
### Menu
|
||||||
|
|
||||||
A single menu item `Voicemeeter` can be opened using `Alt` and then `v`. The menu allows you to:
|
#### `Voicemeeter`
|
||||||
|
|
||||||
|
The `Voicemeeter` menu can be opened using `Alt` and then `v`. It offers the following options:
|
||||||
|
|
||||||
- Restart Voicemeeter audio engine
|
- Restart Voicemeeter audio engine
|
||||||
- Save/Load current settings (as an xml file)
|
- Save/Load current settings (as an xml file)
|
||||||
@ -143,7 +145,11 @@ The `Save Settings` option opens a popup window with two buttons, `Browse` and `
|
|||||||
|
|
||||||
`Load Settings` and `Load on Startup` both open an Open dialog box immediately.
|
`Load Settings` and `Load on Startup` both open an Open dialog box immediately.
|
||||||
|
|
||||||
### `Quick access binds`
|
#### `Themes`
|
||||||
|
|
||||||
|
The `Themes` menu can be opened using `Alt` and then `t`. Use this menu to select from a list of coloured themes. Some themes offer higher contrast colours. An application restart is required to load a new theme. Once a theme is selected it will become the default for future startups.
|
||||||
|
|
||||||
|
### Quick access binds
|
||||||
|
|
||||||
There are a number of quick binds available to assist with faster navigation and general use.
|
There are a number of quick binds available to assist with faster navigation and general use.
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "nvda_voicemeeter"
|
name = "nvda_voicemeeter"
|
||||||
version = "0.5.7a1"
|
version = "0.5.7b1"
|
||||||
description = "A Voicemeeter app compatible with NVDA"
|
description = "A Voicemeeter app compatible with NVDA"
|
||||||
authors = [
|
authors = [
|
||||||
{ name = "onyx-and-iris", email = "code@onyxandiris.online" },
|
{ name = "onyx-and-iris", email = "code@onyxandiris.online" },
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
from typing import Iterable
|
from typing import Iterable
|
||||||
|
|
||||||
|
import PySimpleGUI as psg
|
||||||
|
|
||||||
|
|
||||||
def get_asio_input_spinbox_index(channel, num) -> int:
|
def get_asio_input_spinbox_index(channel, num) -> int:
|
||||||
if channel == 0:
|
if channel == 0:
|
||||||
@ -199,17 +201,24 @@ def _get_bus_assignments(kind) -> list:
|
|||||||
|
|
||||||
|
|
||||||
def get_themes_list() -> list:
|
def get_themes_list() -> list:
|
||||||
return sorted(
|
return [
|
||||||
[
|
"Bright Colors",
|
||||||
"Black",
|
"Dark Blue 14",
|
||||||
"Dark Blue",
|
"Dark Brown 2",
|
||||||
"Dark Blue 3",
|
"Dark Brown 3",
|
||||||
"Reddit",
|
"Dark Green 2",
|
||||||
"Light Gray 1",
|
"Dark Grey 2",
|
||||||
"Bright Colors",
|
"Dark Teal1",
|
||||||
"Dark Amber",
|
"Dark Teal6",
|
||||||
"Light Grey 5",
|
"Kayak",
|
||||||
"Reds",
|
"Light Blue 2",
|
||||||
"Dark Brown 5",
|
"Light Brown 2",
|
||||||
]
|
"Light Brown 5",
|
||||||
)
|
"Light Green",
|
||||||
|
"Light Green 3",
|
||||||
|
"Light Grey 2",
|
||||||
|
"Light Purple",
|
||||||
|
"Neutral Blue",
|
||||||
|
"Reds",
|
||||||
|
"Sandy Beach",
|
||||||
|
]
|
||||||
|
Loading…
Reference in New Issue
Block a user