kitbash 1.1.0__tar.gz → 1.2.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.
@@ -1,19 +1,17 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: kitbash
3
- Version: 1.1.0
3
+ Version: 1.2.1
4
4
  Summary: kitbash is a program you can use to combine parts of various SFZ files into a
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+)
8
8
  Requires-Dist: PyQt5
9
- Requires-Dist: conn_jack
10
- Requires-Dist: jack_audio_player
11
- Requires-Dist: jack_midi_split
9
+ Requires-Dist: conn_jack >= 1.2.0
12
10
  Requires-Dist: liquiphy
13
11
  Requires-Dist: soundfile
14
- Requires-Dist: sfzen
15
- Requires-Dist: midi_notes
16
- Requires-Dist: recent_items_list
12
+ Requires-Dist: sfzen >= 1.5.0
13
+ Requires-Dist: midi_notes >= 1.1.0
14
+ Requires-Dist: recent_items_list >= 1.1.1
17
15
  Requires-Dist: soso_qt_extras >= 1.2.0
18
16
  Project-URL: Home, https://github.com/Zen-Master-SoSo/kitbash
19
17
 
@@ -1,6 +1,6 @@
1
1
  # kitbash/__init__.py
2
2
  #
3
- # Copyright 2024 liyang <liyang@veronica>
3
+ # Copyright 2024 Leon Dionne <ldionne@dridesign.sh.cn>
4
4
  #
5
5
  # This program is free software; you can redistribute it and/or modify
6
6
  # it under the terms of the GNU General Public License as published by
@@ -31,10 +31,10 @@ from PyQt5.QtWidgets import QApplication
31
31
  from qt_extras import DevilBox
32
32
  from conn_jack import JackConnectError
33
33
 
34
- __version__ = "1.1.0"
34
+ __version__ = "1.2.1"
35
35
 
36
- APPLICATION_NAME = "kitbash"
37
- PACKAGE_DIR = os.path.dirname(__file__)
36
+ APP_NAME = "kitbash"
37
+ APP_PATH = os.path.dirname(__file__)
38
38
  DEFAULT_STYLE = 'system'
39
39
  KEY_STYLE = 'Style'
40
40
  KEY_SAMPLES_MODE = 'KitSaveDialog/SamplesMode'
@@ -53,7 +53,7 @@ def settings():
53
53
  def styles():
54
54
  return {
55
55
  os.path.splitext(os.path.basename(path))[0] : path \
56
- for path in glob.glob(os.path.join(PACKAGE_DIR, 'styles', '*.css'))
56
+ for path in glob.glob(os.path.join(APP_PATH, 'styles', '*.css'))
57
57
  }
58
58
 
59
59
  def set_application_style():
@@ -1,6 +1,6 @@
1
1
  # kitbash/gui/__init__.py
2
2
  #
3
- # Copyright 2025 liyang <liyang@veronica>
3
+ # Copyright 2025 Leon Dionne <ldionne@dridesign.sh.cn>
4
4
  #
5
5
  # This program is free software; you can redistribute it and/or modify
6
6
  # it under the terms of the GNU General Public License as published by
@@ -22,7 +22,7 @@ from functools import lru_cache
22
22
  from PyQt5.QtGui import QIcon
23
23
  from PyQt5.QtWidgets import QApplication, QWidget, QSplitter
24
24
  from qt_extras import DevilBox
25
- from kitbash import PACKAGE_DIR, settings
25
+ from kitbash import APP_PATH, settings
26
26
 
27
27
 
28
28
  AUDIO_ICON_SIZE = 16
@@ -33,11 +33,11 @@ def group_expanded_icon():
33
33
  Defers loading of QPixmaps until a QGuiApplication is instantiated.
34
34
  This is a Qt5 requirement.
35
35
  """
36
- return QIcon(os.path.join(PACKAGE_DIR, 'res', 'group_expanded.svg'))
36
+ return QIcon(os.path.join(APP_PATH, 'res', 'group_expanded.svg'))
37
37
 
38
38
  @lru_cache
39
39
  def group_hidden_icon():
40
- return QIcon(os.path.join(PACKAGE_DIR, 'res', 'group_hidden.svg'))
40
+ return QIcon(os.path.join(APP_PATH, 'res', 'group_hidden.svg'))
41
41
 
42
42
  @lru_cache
43
43
  def remove_icon():