kitbash 1.12.0__tar.gz → 1.12.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (24) hide show
  1. {kitbash-1.12.0 → kitbash-1.12.1}/PKG-INFO +2 -2
  2. {kitbash-1.12.0 → kitbash-1.12.1}/kitbash/__init__.py +3 -5
  3. {kitbash-1.12.0 → kitbash-1.12.1}/kitbash/__main__.py +2 -2
  4. {kitbash-1.12.0 → kitbash-1.12.1}/pyproject.toml +1 -1
  5. {kitbash-1.12.0 → kitbash-1.12.1}/.gitignore +0 -0
  6. {kitbash-1.12.0 → kitbash-1.12.1}/LICENSE +0 -0
  7. {kitbash-1.12.0 → kitbash-1.12.1}/README.md +0 -0
  8. {kitbash-1.12.0 → kitbash-1.12.1}/kitbash/gui/__init__.py +0 -0
  9. {kitbash-1.12.0 → kitbash-1.12.1}/kitbash/gui/drumkit_widget.py +0 -0
  10. {kitbash-1.12.0 → kitbash-1.12.1}/kitbash/gui/kit_save_dialog.py +0 -0
  11. {kitbash-1.12.0 → kitbash-1.12.1}/kitbash/gui/main_window.py +0 -0
  12. {kitbash-1.12.0 → kitbash-1.12.1}/kitbash/gui/main_window.ui +0 -0
  13. {kitbash-1.12.0 → kitbash-1.12.1}/kitbash/jack_audio.py +0 -0
  14. {kitbash-1.12.0 → kitbash-1.12.1}/kitbash/res/empty.sfz +0 -0
  15. {kitbash-1.12.0 → kitbash-1.12.1}/kitbash/res/group_expanded.svg +0 -0
  16. {kitbash-1.12.0 → kitbash-1.12.1}/kitbash/res/group_hidden.svg +0 -0
  17. {kitbash-1.12.0 → kitbash-1.12.1}/kitbash/res/kitbash-icon.png +0 -0
  18. {kitbash-1.12.0 → kitbash-1.12.1}/kitbash/res/kitbash-icon.svg +0 -0
  19. {kitbash-1.12.0 → kitbash-1.12.1}/kitbash/res/save-sfz-icon.svg +0 -0
  20. {kitbash-1.12.0 → kitbash-1.12.1}/kitbash/scripts/bash_project.py +0 -0
  21. {kitbash-1.12.0 → kitbash-1.12.1}/kitbash/styles/light.css +0 -0
  22. {kitbash-1.12.0 → kitbash-1.12.1}/kitbash/styles/system.css +0 -0
  23. {kitbash-1.12.0 → kitbash-1.12.1}/kitbash/worker_threads.py +0 -0
  24. {kitbash-1.12.0 → kitbash-1.12.1}/tests/file_save_dialog.py +0 -0
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: kitbash
3
- Version: 1.12.0
4
- Summary: Provides universal settings, styles, cached icons, and pixmaps, and the base
3
+ Version: 1.12.1
4
+ Summary: A GUI application which you can use to create a new SFZ drumkit from pieces of other drumkits.
5
5
  Author-email: Leon Dionne <ldionne@dridesign.sh.cn>
6
6
  Description-Content-Type: text/markdown
7
7
  Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
@@ -18,8 +18,7 @@
18
18
  # MA 02110-1301, USA.
19
19
  #
20
20
  """
21
- Provides universal settings, styles, cached icons, and pixmaps, and the base
22
- class of windows which save and restore their own geometry.
21
+ A GUI application which you can use to create a new SFZ drumkit from pieces of other drumkits.
23
22
  """
24
23
  import logging
25
24
  from os.path import dirname, basename, splitext, join
@@ -31,11 +30,10 @@ from qt_extras import DevilBox
31
30
  from qt_extras.settings import get_setting
32
31
  from xdg_soso import XDGSetup
33
32
 
34
- __version__ = "1.12.0"
33
+ __version__ = "1.12.1"
35
34
 
36
35
  VENDOR_NAME = 'ZenSoSo'
37
36
  APPLICATION_NAME = 'KitBash'
38
- PACKAGE_NAME = 'kitbash'
39
37
  PACKAGE_DIR = dirname(__file__)
40
38
  DEFAULT_STYLE = 'system'
41
39
  AUDIO_ICON_SIZE = 16
@@ -74,7 +72,7 @@ def set_application_style():
74
72
  class KitbashSetup(XDGSetup):
75
73
 
76
74
  def __init__(self):
77
- super().__init__(PACKAGE_NAME, APPLICATION_NAME)
75
+ super().__init__(__package__, APPLICATION_NAME)
78
76
  self.vendor_name = VENDOR_NAME
79
77
  self.comment = "Bash together new .SFZ drumkits from pieces of existing ones."
80
78
  self.application_icon = join(dirname(__file__), 'res', 'kitbash-icon.svg')
@@ -28,7 +28,7 @@ from PyQt5.QtWidgets import QApplication
28
28
  from qt_extras import exceptions_hook
29
29
  from qt_extras.settings import init_settings
30
30
  from xdg_soso import is_xdg
31
- from kitbash import VENDOR_NAME, PACKAGE_NAME, KitbashSetup
31
+ from kitbash import VENDOR_NAME, KitbashSetup
32
32
  from kitbash.gui.main_window import MainWindow
33
33
 
34
34
 
@@ -82,7 +82,7 @@ menu.""")
82
82
  pass
83
83
  #-----------------------------------------------------------------------
84
84
  app = QApplication([])
85
- init_settings(VENDOR_NAME, PACKAGE_NAME)
85
+ init_settings(VENDOR_NAME, __package__)
86
86
  sys.excepthook = exceptions_hook
87
87
  main_window = MainWindow(options)
88
88
  main_window.show()
@@ -27,7 +27,7 @@ requires = ["flit_core >=3.2,<4"]
27
27
  build-backend = "flit_core.buildapi"
28
28
 
29
29
  [bumpver]
30
- current_version = "1.12.0"
30
+ current_version = "1.12.1"
31
31
  version_pattern = "MAJOR.MINOR.PATCH"
32
32
  commit_message = "Bump version {old_version} -> {new_version}"
33
33
  commit = true
File without changes
File without changes
File without changes
File without changes
File without changes