kitbash 1.7.0__tar.gz → 1.8.2__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 (27) hide show
  1. kitbash-1.8.2/PKG-INFO +133 -0
  2. kitbash-1.8.2/README.md +116 -0
  3. {kitbash-1.7.0 → kitbash-1.8.2}/kitbash/__init__.py +1 -1
  4. {kitbash-1.7.0 → kitbash-1.8.2}/kitbash/gui/main_window.py +2 -0
  5. kitbash-1.8.2/kitbash/install.py +42 -0
  6. kitbash-1.8.2/kitbash/res/kitbash-icon.png +0 -0
  7. kitbash-1.8.2/kitbash/res/kitbash-icon.svg +168 -0
  8. {kitbash-1.7.0 → kitbash-1.8.2}/pyproject.toml +4 -3
  9. kitbash-1.7.0/PKG-INFO +0 -20
  10. kitbash-1.7.0/README.md +0 -4
  11. kitbash-1.7.0/kitbash/res/kitbash-icon.png +0 -0
  12. {kitbash-1.7.0 → kitbash-1.8.2}/.gitignore +0 -0
  13. {kitbash-1.7.0 → kitbash-1.8.2}/LICENSE +0 -0
  14. {kitbash-1.7.0 → kitbash-1.8.2}/kitbash/__main__.py +0 -0
  15. {kitbash-1.7.0 → kitbash-1.8.2}/kitbash/gui/__init__.py +0 -0
  16. {kitbash-1.7.0 → kitbash-1.8.2}/kitbash/gui/drumkit_widget.py +0 -0
  17. {kitbash-1.7.0 → kitbash-1.8.2}/kitbash/gui/kit_save_dialog.py +0 -0
  18. {kitbash-1.7.0 → kitbash-1.8.2}/kitbash/gui/main_window.ui +0 -0
  19. {kitbash-1.7.0 → kitbash-1.8.2}/kitbash/jack_audio.py +0 -0
  20. {kitbash-1.7.0 → kitbash-1.8.2}/kitbash/res/empty.sfz +0 -0
  21. {kitbash-1.7.0 → kitbash-1.8.2}/kitbash/res/group_expanded.svg +0 -0
  22. {kitbash-1.7.0 → kitbash-1.8.2}/kitbash/res/group_hidden.svg +0 -0
  23. {kitbash-1.7.0 → kitbash-1.8.2}/kitbash/scripts/bash_project.py +0 -0
  24. {kitbash-1.7.0 → kitbash-1.8.2}/kitbash/styles/light.css +0 -0
  25. {kitbash-1.7.0 → kitbash-1.8.2}/kitbash/styles/system.css +0 -0
  26. {kitbash-1.7.0 → kitbash-1.8.2}/kitbash/worker_threads.py +0 -0
  27. {kitbash-1.7.0 → kitbash-1.8.2}/tests/file_save_dialog.py +0 -0
kitbash-1.8.2/PKG-INFO ADDED
@@ -0,0 +1,133 @@
1
+ Metadata-Version: 2.1
2
+ Name: kitbash
3
+ Version: 1.8.2
4
+ Summary: Provides universal settings, styles, cached icons, and pixmaps, and the base
5
+ Author-email: Leon Dionne <ldionne@dridesign.sh.cn>
6
+ Description-Content-Type: text/markdown
7
+ Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
8
+ Requires-Dist: log_soso >= 1.0.3
9
+ Requires-Dist: PyQt5
10
+ Requires-Dist: qt_liquid_pool >= 1.2.0
11
+ Requires-Dist: recent_items_list >= 1.1.2
12
+ Requires-Dist: sfzen >= 2.3.2
13
+ Requires-Dist: soso_qt_extras >= 1.7.0
14
+ Requires-Dist: xdg_soso >= 0.2.0
15
+ Project-URL: Home, https://github.com/Zen-Master-SoSo/kitbash
16
+
17
+ # KitBash
18
+
19
+ A GUI application which you can use to create a new SFZ drumkit from pieces of other drumkits.
20
+
21
+ ## Intro
22
+
23
+ Got a drumkit [SFZ](https://sfzformat.com/) that sounds pretty good, but
24
+ there's just one instrument that doesn't quite cut it? Want to replace that one
25
+ snare, or even that whole set of tom-toms?
26
+
27
+ That's what kitbash was written for!
28
+
29
+ Kitbash allows you to create projects in which you can import mutiple drumkits
30
+ from SFZ files, select the pieces of each kit you want, then export the
31
+ finished drumkit to a new SFZ.
32
+
33
+ ## Usage
34
+
35
+ <img width="624" height="329" alt="kitbash-empty-window" src="https://github.com/user-attachments/assets/0b0295be-34d7-4873-9576-82b50b8d5876" />
36
+
37
+ Starting with an empty project, use the "Edit" -> "Load Drumkit" menu, or click
38
+ on the "plus" symbol in the toolbar. You'll see all the instruments defined in
39
+ the drumkit you just loaded, grouped into categories, such as "Snares", "Tom
40
+ toms", "Hi-hats", etc.
41
+
42
+ ### Audio preview
43
+
44
+ To listen to audio playback, you need to select an "Audio sink" from the dropdown
45
+ list at the top-right of the window. You audio out devices should be listed
46
+ there. Note that this is a JACK application, and your JACK audio connection kit
47
+ server must be running to play audio.
48
+
49
+ To preview the sound of each instrument, click on the instrument name.
50
+ Releasing the mouse stops the playback.
51
+
52
+ To preview the drumkit you are assembling, you need to send it MIDI note
53
+ events. Choose the MIDI source from the dropdown list at the top-right area of
54
+ the window, and send MIDI events. A MIDI source can be an external device, like
55
+ a MIDI keyboard, or the MIDI output of another program, such as
56
+ [qtractor](https://qtractor.org/), [MuseScore](https://musescore.com/), or
57
+ [JackMIDILooper](https://github.com/Zen-Master-SoSo/jack_midi_looper).
58
+
59
+ ### Instrument selection
60
+
61
+ The instruments selected to be included in your final drumkit are indicated by
62
+ the check boxes next to the instrument and category names.
63
+
64
+ <img width="887" height="421" alt="kitbash-window" src="https://github.com/user-attachments/assets/56122b21-a409-4ff2-a22d-bdba960f7a91" />
65
+
66
+
67
+ Check the box next to a category to select all the instruments in that category
68
+ for inclusion in your new drumkit. Check the checkbox next to any individual
69
+ instrument (i.e. "Ride Bell"), to include only that instrument.
70
+
71
+ When you load the first drumkit, all categories and instruments are selected.
72
+ Load another drumkit in the same way as you did the first (using the menu or
73
+ the toolbar). Selecting an instrument from one drumkit de-selects that
74
+ instrument from all other loaded drumkits.
75
+
76
+ You can make changes while playing a loop from the incoming MIDI source, and
77
+ the changes are (almost) immediately made to the "bashed" drumkit you are
78
+ making.
79
+
80
+ ### Exporting an SFZ
81
+
82
+ When you're satisfied with what you've selected, you can save the "bashed"
83
+ drumkit as an .sfz file in a new location. From the menu, select "File" ->
84
+ "Save Bashed Kit As..." and choose the location. Or, click the corresponding
85
+ icon in the toolbar.
86
+
87
+
88
+ ### Saving a project
89
+
90
+ A "project" is a list of the source SFZs and which groups and instruments from
91
+ each them are selected. You can save a project for later, make whatever changes
92
+ you desire, and then export the SFZ you created again. This way, you don't have
93
+ to start from scratch every time you wish to make that one small change.
94
+
95
+
96
+ ## Install
97
+
98
+ Install in the usual way:
99
+
100
+ ```bash
101
+ $ pip install kitbash
102
+ ```
103
+
104
+ ### Requirements
105
+
106
+ You'll need both [JACK audio connection kit](https://jackaudio.org/) and
107
+ [liquidsfz](https://github.com/swesterfeld/liquidsfz) in order to have live
108
+ previews. You can run the program without either, but you won't be able to
109
+ listen to your changes as you are making them.
110
+
111
+ To install JACK:
112
+
113
+ ```bash
114
+ $ sudo apt install jackd
115
+ ```
116
+
117
+ ...or...
118
+
119
+ ```bash
120
+ $ sudo dnf install jackd
121
+ ```
122
+
123
+ To install liquidsfz:
124
+
125
+ ```bash
126
+ $ git clone https://github.com/swesterfeld/liquidsfz.git
127
+ ```
128
+
129
+ ... and follow the instructions found in the liquidsfz README to install it.
130
+
131
+
132
+
133
+
@@ -0,0 +1,116 @@
1
+ # KitBash
2
+
3
+ A GUI application which you can use to create a new SFZ drumkit from pieces of other drumkits.
4
+
5
+ ## Intro
6
+
7
+ Got a drumkit [SFZ](https://sfzformat.com/) that sounds pretty good, but
8
+ there's just one instrument that doesn't quite cut it? Want to replace that one
9
+ snare, or even that whole set of tom-toms?
10
+
11
+ That's what kitbash was written for!
12
+
13
+ Kitbash allows you to create projects in which you can import mutiple drumkits
14
+ from SFZ files, select the pieces of each kit you want, then export the
15
+ finished drumkit to a new SFZ.
16
+
17
+ ## Usage
18
+
19
+ <img width="624" height="329" alt="kitbash-empty-window" src="https://github.com/user-attachments/assets/0b0295be-34d7-4873-9576-82b50b8d5876" />
20
+
21
+ Starting with an empty project, use the "Edit" -> "Load Drumkit" menu, or click
22
+ on the "plus" symbol in the toolbar. You'll see all the instruments defined in
23
+ the drumkit you just loaded, grouped into categories, such as "Snares", "Tom
24
+ toms", "Hi-hats", etc.
25
+
26
+ ### Audio preview
27
+
28
+ To listen to audio playback, you need to select an "Audio sink" from the dropdown
29
+ list at the top-right of the window. You audio out devices should be listed
30
+ there. Note that this is a JACK application, and your JACK audio connection kit
31
+ server must be running to play audio.
32
+
33
+ To preview the sound of each instrument, click on the instrument name.
34
+ Releasing the mouse stops the playback.
35
+
36
+ To preview the drumkit you are assembling, you need to send it MIDI note
37
+ events. Choose the MIDI source from the dropdown list at the top-right area of
38
+ the window, and send MIDI events. A MIDI source can be an external device, like
39
+ a MIDI keyboard, or the MIDI output of another program, such as
40
+ [qtractor](https://qtractor.org/), [MuseScore](https://musescore.com/), or
41
+ [JackMIDILooper](https://github.com/Zen-Master-SoSo/jack_midi_looper).
42
+
43
+ ### Instrument selection
44
+
45
+ The instruments selected to be included in your final drumkit are indicated by
46
+ the check boxes next to the instrument and category names.
47
+
48
+ <img width="887" height="421" alt="kitbash-window" src="https://github.com/user-attachments/assets/56122b21-a409-4ff2-a22d-bdba960f7a91" />
49
+
50
+
51
+ Check the box next to a category to select all the instruments in that category
52
+ for inclusion in your new drumkit. Check the checkbox next to any individual
53
+ instrument (i.e. "Ride Bell"), to include only that instrument.
54
+
55
+ When you load the first drumkit, all categories and instruments are selected.
56
+ Load another drumkit in the same way as you did the first (using the menu or
57
+ the toolbar). Selecting an instrument from one drumkit de-selects that
58
+ instrument from all other loaded drumkits.
59
+
60
+ You can make changes while playing a loop from the incoming MIDI source, and
61
+ the changes are (almost) immediately made to the "bashed" drumkit you are
62
+ making.
63
+
64
+ ### Exporting an SFZ
65
+
66
+ When you're satisfied with what you've selected, you can save the "bashed"
67
+ drumkit as an .sfz file in a new location. From the menu, select "File" ->
68
+ "Save Bashed Kit As..." and choose the location. Or, click the corresponding
69
+ icon in the toolbar.
70
+
71
+
72
+ ### Saving a project
73
+
74
+ A "project" is a list of the source SFZs and which groups and instruments from
75
+ each them are selected. You can save a project for later, make whatever changes
76
+ you desire, and then export the SFZ you created again. This way, you don't have
77
+ to start from scratch every time you wish to make that one small change.
78
+
79
+
80
+ ## Install
81
+
82
+ Install in the usual way:
83
+
84
+ ```bash
85
+ $ pip install kitbash
86
+ ```
87
+
88
+ ### Requirements
89
+
90
+ You'll need both [JACK audio connection kit](https://jackaudio.org/) and
91
+ [liquidsfz](https://github.com/swesterfeld/liquidsfz) in order to have live
92
+ previews. You can run the program without either, but you won't be able to
93
+ listen to your changes as you are making them.
94
+
95
+ To install JACK:
96
+
97
+ ```bash
98
+ $ sudo apt install jackd
99
+ ```
100
+
101
+ ...or...
102
+
103
+ ```bash
104
+ $ sudo dnf install jackd
105
+ ```
106
+
107
+ To install liquidsfz:
108
+
109
+ ```bash
110
+ $ git clone https://github.com/swesterfeld/liquidsfz.git
111
+ ```
112
+
113
+ ... and follow the instructions found in the liquidsfz README to install it.
114
+
115
+
116
+
@@ -29,7 +29,7 @@ from PyQt5.QtCore import QSettings
29
29
  from PyQt5.QtWidgets import QApplication, QSplitter
30
30
  from qt_extras import DevilBox
31
31
 
32
- __version__ = "1.7.0"
32
+ __version__ = "1.8.2"
33
33
 
34
34
  APPLICATION_NAME = "kitbash"
35
35
  PACKAGE_DIR = dirname(__file__)
@@ -45,6 +45,7 @@ from kitbash import (
45
45
  from kitbash.worker_threads import KitLoader, KitBasher
46
46
  from kitbash.gui.drumkit_widget import DrumkitWidget
47
47
  from kitbash.gui.kit_save_dialog import KitSaveDialog
48
+ from kitbash.install import install
48
49
 
49
50
 
50
51
  UPDATES_DEBOUNCE = 680
@@ -119,6 +120,7 @@ class MainWindow(QMainWindow, GeometrySaver):
119
120
  self.audio.connect()
120
121
  if self.options.Filename:
121
122
  self.load_project(self.options.Filename)
123
+ install()
122
124
 
123
125
  def setup_kits_area(self):
124
126
  self.drumkit_widgets = VListLayout(end_space = 10)
@@ -0,0 +1,42 @@
1
+ # kitbash/kitbash/install.py
2
+ #
3
+ # Copyright 2026 Leon Dionne <ldionne@dridesign.sh.cn>
4
+ #
5
+ # This program is free software; you can redistribute it and/or modify
6
+ # it under the terms of the GNU General Public License as published by
7
+ # the Free Software Foundation; either version 2 of the License, or
8
+ # (at your option) any later version.
9
+ #
10
+ # This program is distributed in the hope that it will be useful,
11
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
12
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
+ # GNU General Public License for more details.
14
+ #
15
+ # You should have received a copy of the GNU General Public License
16
+ # along with this program; if not, write to the Free Software
17
+ # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
18
+ # MA 02110-1301, USA.
19
+ #
20
+ """
21
+ Install phoney-dictate as an application on XDG-compliant systems (like gnome).
22
+ """
23
+ import logging
24
+ from os.path import dirname, join
25
+ from xdg_soso import XDGSetup, is_xdg
26
+
27
+ def install():
28
+ if is_xdg():
29
+ xdg = XDGSetup('kitbash', 'Kitbash')
30
+ xdg.comment = "Bash together new .SFZ drumkits from pieces of existing ones."
31
+ xdg.application_icon = join(dirname(__file__), 'res', 'kitbash-icon.svg')
32
+ xdg.categories = ['AudioVideo', 'Audio']
33
+ xdg.keywords = ['Audio', 'Sound', 'midi', 'SFZ', 'Drumkit']
34
+ xdg.install()
35
+
36
+ if __name__ == '__main__':
37
+ log_format = "[%(filename)24s:%(lineno)4d] %(levelname)-8s %(message)s"
38
+ logging.basicConfig(level = logging.DEBUG, format = log_format)
39
+ install()
40
+
41
+
42
+ # end kitbash/kitbash/install.py
@@ -0,0 +1,168 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ width="600"
6
+ height="600"
7
+ viewBox="0 0 600 600"
8
+ id="svg2"
9
+ version="1.1"
10
+ xmlns:xlink="http://www.w3.org/1999/xlink"
11
+ xmlns="http://www.w3.org/2000/svg"
12
+ xmlns:svg="http://www.w3.org/2000/svg"
13
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
14
+ xmlns:cc="http://creativecommons.org/ns#"
15
+ xmlns:dc="http://purl.org/dc/elements/1.1/">
16
+ <defs
17
+ id="defs4">
18
+ <linearGradient
19
+ id="linearGradient109942">
20
+ <stop
21
+ style="stop-color:#fa689e;stop-opacity:1"
22
+ offset="0"
23
+ id="stop109938" />
24
+ <stop
25
+ style="stop-color:#6b5fff;stop-opacity:0.811765"
26
+ offset="0.414101"
27
+ id="stop110522" />
28
+ <stop
29
+ style="stop-color:#be99f1;stop-opacity:0.855499"
30
+ offset="0.687764"
31
+ id="stop113297" />
32
+ <stop
33
+ style="stop-color:#ee70f2;stop-opacity:0.744947"
34
+ offset="1"
35
+ id="stop109940" />
36
+ </linearGradient>
37
+ <linearGradient
38
+ xlink:href="#linearGradient109942"
39
+ id="linearGradient109944"
40
+ x1="327.545"
41
+ y1="574.41"
42
+ x2="199.091"
43
+ y2="55.0792"
44
+ gradientUnits="userSpaceOnUse" />
45
+ </defs>
46
+ <metadata
47
+ id="metadata7">
48
+ <rdf:RDF>
49
+ <cc:Work
50
+ rdf:about="">
51
+ <dc:format>image/svg+xml</dc:format>
52
+ <dc:type
53
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
54
+ </cc:Work>
55
+ </rdf:RDF>
56
+ </metadata>
57
+ <g
58
+ id="layer2"
59
+ style="display:inline">
60
+ <circle
61
+ style="color:#000000;display:inline;overflow:visible;mix-blend-mode:normal;fill:none;fill-opacity:0.51511;fill-rule:evenodd;stroke:#000000;stroke-width:20;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
62
+ id="circle57643"
63
+ cx="297.486"
64
+ cy="301.699"
65
+ r="267.913"
66
+ transform="translate(2.51401,-1.699)" />
67
+ </g>
68
+ <g
69
+ id="layer3"
70
+ style="display:inline">
71
+ <rect
72
+ style="color:#000000;overflow:visible;fill:#ffe975;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:15;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
73
+ id="rect1127"
74
+ width="165.361"
75
+ height="195.416"
76
+ x="53.0408"
77
+ y="317.732"
78
+ ry="15.3795"
79
+ rx="22"
80
+ transform="translate(-37.5637,37.488)" />
81
+ <rect
82
+ style="color:#000000;overflow:visible;fill:#ffe975;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:15;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
83
+ id="rect1131"
84
+ width="149.521"
85
+ height="108.756"
86
+ x="166.055"
87
+ y="306.176"
88
+ ry="22"
89
+ rx="22"
90
+ transform="rotate(8.96686,604.717,141.494)" />
91
+ <rect
92
+ style="color:#000000;overflow:visible;fill:#ffe975;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:15;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
93
+ id="rect1129"
94
+ width="148.822"
95
+ height="146.546"
96
+ x="376.526"
97
+ y="317.397"
98
+ ry="21.1672"
99
+ rx="22"
100
+ transform="translate(65.7395,44.671)" />
101
+ <rect
102
+ style="color:#000000;overflow:visible;fill:#ffe975;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:15;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
103
+ id="rect1133"
104
+ width="146.021"
105
+ height="106.396"
106
+ x="284.473"
107
+ y="278.286"
108
+ ry="19.4522"
109
+ rx="22"
110
+ transform="rotate(-11.0888,191.021,-0.061273)" />
111
+ <circle
112
+ style="color:#000000;overflow:visible;fill:#ffe975;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:13.0085;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
113
+ id="path1075"
114
+ cx="301.769"
115
+ cy="462.65"
116
+ r="121.371"
117
+ transform="translate(6.231,-11.821)" />
118
+ <g
119
+ id="g1995"
120
+ transform="matrix(1.05073,0,0,1.05086,-27.369,-505.308)"
121
+ style="stroke-width:9.5166;stroke-miterlimit:4;stroke-dasharray:none" />
122
+ <path
123
+ style="color:#000000;overflow:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:24;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
124
+ d="m 154.978,112.499 -44.56,77.074 v 379.729"
125
+ id="path42213" />
126
+ <ellipse
127
+ style="color:#000000;overflow:visible;fill:#b3d4ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:9.36506;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
128
+ id="path925"
129
+ transform="matrix(0.997534,0.380811,-0.380788,0.997646,86.4755,-136.944)"
130
+ ry="21.2013"
131
+ rx="127.184"
132
+ cy="195.354"
133
+ cx="143.244" />
134
+ <path
135
+ id="path108988"
136
+ style="color:#000000;overflow:visible;fill:#ffe975;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:20;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
137
+ transform="rotate(135,569.031,406.107)"
138
+ d="m 703.751,308.524 v 75.828 m 0,0 h 75.828 M 435.768,652.336 703.751,384.352" />
139
+ <ellipse
140
+ style="color:#000000;overflow:visible;fill:#b3d2ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:9.36506;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
141
+ id="ellipse36115"
142
+ ry="13.2736"
143
+ rx="110.063"
144
+ cy="195.354"
145
+ cx="143.244"
146
+ transform="rotate(-6.21227,-344.929,-2972.27)" />
147
+ <use
148
+ x="0"
149
+ y="0"
150
+ xlink:href="#ellipse36115"
151
+ id="use41189"
152
+ transform="translate(-3.09613e-5,42.935)"
153
+ width="100%"
154
+ height="100%" />
155
+ </g>
156
+ <g
157
+ id="layer1"
158
+ transform="translate(0,-452.36)"
159
+ style="display:inline;mix-blend-mode:color-burn">
160
+ <circle
161
+ style="color:#000000;overflow:visible;mix-blend-mode:normal;fill:url(#linearGradient109944);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:24;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
162
+ id="path57575"
163
+ cx="297.486"
164
+ cy="301.699"
165
+ r="274.834"
166
+ transform="translate(2.51401,450.661)" />
167
+ </g>
168
+ </svg>
@@ -10,8 +10,9 @@ dependencies = [
10
10
  "PyQt5",
11
11
  "qt_liquid_pool >= 1.2.0",
12
12
  "recent_items_list >= 1.1.2",
13
- "sfzen >= 2.3.1",
14
- "soso_qt_extras >= 1.7.0"
13
+ "sfzen >= 2.3.2",
14
+ "soso_qt_extras >= 1.7.0",
15
+ "xdg_soso >= 0.2.0"
15
16
  ]
16
17
 
17
18
  [project.urls]
@@ -26,7 +27,7 @@ requires = ["flit_core >=3.2,<4"]
26
27
  build-backend = "flit_core.buildapi"
27
28
 
28
29
  [bumpver]
29
- current_version = "1.7.0"
30
+ current_version = "1.8.2"
30
31
  version_pattern = "MAJOR.MINOR.PATCH"
31
32
  commit_message = "Bump version {old_version} -> {new_version}"
32
33
  commit = true
kitbash-1.7.0/PKG-INFO DELETED
@@ -1,20 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: kitbash
3
- Version: 1.7.0
4
- Summary: Provides universal settings, styles, cached icons, and pixmaps, and the base
5
- Author-email: Leon Dionne <ldionne@dridesign.sh.cn>
6
- Description-Content-Type: text/markdown
7
- Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
8
- Requires-Dist: log_soso >= 1.0.3
9
- Requires-Dist: PyQt5
10
- Requires-Dist: qt_liquid_pool >= 1.2.0
11
- Requires-Dist: recent_items_list >= 1.1.2
12
- Requires-Dist: sfzen >= 2.3.1
13
- Requires-Dist: soso_qt_extras >= 1.7.0
14
- Project-URL: Home, https://github.com/Zen-Master-SoSo/kitbash
15
-
16
- # KitBash
17
-
18
- A GUI application which you can use to create a new .sfz drumkit from pieces of other drumkits.
19
-
20
-
kitbash-1.7.0/README.md DELETED
@@ -1,4 +0,0 @@
1
- # KitBash
2
-
3
- A GUI application which you can use to create a new .sfz drumkit from pieces of other drumkits.
4
-
Binary file
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes