kitbash 1.0.1__tar.gz → 1.2.0__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.
@@ -6,3 +6,5 @@ temp
6
6
  temp.*
7
7
  debug.*
8
8
  TODO
9
+ /venv
10
+ /dist
@@ -1,20 +1,17 @@
1
- Metadata-Version: 2.4
1
+ Metadata-Version: 2.1
2
2
  Name: kitbash
3
- Version: 1.0.1
3
+ Version: 1.2.0
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
- License-File: LICENSE
9
8
  Requires-Dist: PyQt5
10
- Requires-Dist: conn_jack
11
- Requires-Dist: jack_audio_player
12
- Requires-Dist: jack_midi_split
9
+ Requires-Dist: conn_jack >= 1.2.0
13
10
  Requires-Dist: liquiphy
14
11
  Requires-Dist: soundfile
15
- Requires-Dist: sfzen
16
- Requires-Dist: midi_notes
17
- 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
18
15
  Requires-Dist: soso_qt_extras >= 1.2.0
19
16
  Project-URL: Home, https://github.com/Zen-Master-SoSo/kitbash
20
17
 
@@ -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.0.1"
34
+ __version__ = "1.2.0"
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():
@@ -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():