mirror of
https://github.com/onyx-and-iris/voicemeeter-compact.git
synced 2024-11-15 17:40:52 +00:00
add print when applying sv theme.
This commit is contained in:
parent
a13ccd2c57
commit
0688a36a76
24
CHANGELOG.md
24
CHANGELOG.md
@ -8,8 +8,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
- [ ] Allow setting a bus mode from config
|
- [ ] Allow setting a bus mode from config
|
||||||
- [x] Fixed bug with gainlayer sync failing to fetch strip label.
|
- [ ] Reload profiles from memory into app if switching kind between connections.
|
||||||
- [x] Changes to menus, extends, themes and submixes merged into layout.
|
|
||||||
|
## [1.2.6] - 2022-05-16
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Added a gain label to each channel labelframe.
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Changes to menus, extends, themes and submixes merged into layout.
|
||||||
|
- A number of changes to code organisation:
|
||||||
|
- builders module added, widget creation delegated to builder classes.
|
||||||
|
- app now subscribes to lower level interfaces as an observer for updates.
|
||||||
|
- Min width of app reduced to 275. Should only effect if less than 3 combined strips/buses.
|
||||||
|
- VBAN Connections named by 'streamname' in VBAN menu, ie.. 'workpc', 'gamingpc' etc..
|
||||||
|
- GUI Lock menu commands 'Lock', 'Unlock' are now checkbuttons.
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Fixed bug setting default submix
|
||||||
|
- Fixed bug with gainlayer sync failing to fetch strip label.
|
||||||
|
|
||||||
## [1.1.0] - 2022-05-05
|
## [1.1.0] - 2022-05-05
|
||||||
|
|
||||||
|
@ -37,6 +37,7 @@ class MainFrameBuilder(AbstractBuilder):
|
|||||||
)
|
)
|
||||||
self.app.resizable(False, False)
|
self.app.resizable(False, False)
|
||||||
if _configuration.themes_enabled:
|
if _configuration.themes_enabled:
|
||||||
|
print("Applying Sunvalley Theme")
|
||||||
sv_ttk.set_theme(_configuration.theme_mode)
|
sv_ttk.set_theme(_configuration.theme_mode)
|
||||||
|
|
||||||
def create_channelframe(self, type_):
|
def create_channelframe(self, type_):
|
||||||
@ -184,7 +185,7 @@ class NavigationFrameBuilder(AbstractBuilder):
|
|||||||
if _configuration.themes_enabled:
|
if _configuration.themes_enabled:
|
||||||
self.navframe.rowconfigure(1, minsize=_configuration.level_height)
|
self.navframe.rowconfigure(1, minsize=_configuration.level_height)
|
||||||
else:
|
else:
|
||||||
self.navframe.rowconfigure(1, minsize=_configuration.level_height - 5)
|
self.navframe.rowconfigure(1, minsize=_configuration.level_height + 10)
|
||||||
|
|
||||||
def teardown(self):
|
def teardown(self):
|
||||||
pass
|
pass
|
||||||
|
Loading…
Reference in New Issue
Block a user