updates to gui to match changes to interfaces

updates to gui to match changes to interfaces

now packaged with poetry and on pypi
This commit is contained in:
onyx-and-iris
2022-06-16 23:53:28 +01:00
parent 0688a36a76
commit 2c39b9d215
15 changed files with 273 additions and 78 deletions

View File

@@ -1,9 +1,10 @@
import voicemeeter
import voicemeeterlib
import vmcompact
def main():
with voicemeeter.remote(kind_id) as vmr:
with voicemeeterlib.api(kind_id) as vmr:
app = vmcompact.connect(kind_id, vmr)
app.mainloop()
@@ -11,6 +12,4 @@ def main():
if __name__ == "__main__":
kind_id = "banana"
voicemeeter.launch(kind_id, hide=False)
main()