kitbash 1.7.0__tar.gz → 1.8.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.
Files changed (27) hide show
  1. kitbash-1.8.0/PKG-INFO +128 -0
  2. kitbash-1.8.0/README.md +111 -0
  3. {kitbash-1.7.0 → kitbash-1.8.0}/kitbash/__init__.py +1 -1
  4. {kitbash-1.7.0 → kitbash-1.8.0}/kitbash/gui/main_window.py +2 -0
  5. kitbash-1.8.0/kitbash/install.py +42 -0
  6. kitbash-1.8.0/kitbash/res/kitbash-icon.png +0 -0
  7. kitbash-1.8.0/kitbash/res/kitbash-icon.svg +168 -0
  8. {kitbash-1.7.0 → kitbash-1.8.0}/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.0}/.gitignore +0 -0
  13. {kitbash-1.7.0 → kitbash-1.8.0}/LICENSE +0 -0
  14. {kitbash-1.7.0 → kitbash-1.8.0}/kitbash/__main__.py +0 -0
  15. {kitbash-1.7.0 → kitbash-1.8.0}/kitbash/gui/__init__.py +0 -0
  16. {kitbash-1.7.0 → kitbash-1.8.0}/kitbash/gui/drumkit_widget.py +0 -0
  17. {kitbash-1.7.0 → kitbash-1.8.0}/kitbash/gui/kit_save_dialog.py +0 -0
  18. {kitbash-1.7.0 → kitbash-1.8.0}/kitbash/gui/main_window.ui +0 -0
  19. {kitbash-1.7.0 → kitbash-1.8.0}/kitbash/jack_audio.py +0 -0
  20. {kitbash-1.7.0 → kitbash-1.8.0}/kitbash/res/empty.sfz +0 -0
  21. {kitbash-1.7.0 → kitbash-1.8.0}/kitbash/res/group_expanded.svg +0 -0
  22. {kitbash-1.7.0 → kitbash-1.8.0}/kitbash/res/group_hidden.svg +0 -0
  23. {kitbash-1.7.0 → kitbash-1.8.0}/kitbash/scripts/bash_project.py +0 -0
  24. {kitbash-1.7.0 → kitbash-1.8.0}/kitbash/styles/light.css +0 -0
  25. {kitbash-1.7.0 → kitbash-1.8.0}/kitbash/styles/system.css +0 -0
  26. {kitbash-1.7.0 → kitbash-1.8.0}/kitbash/worker_threads.py +0 -0
  27. {kitbash-1.7.0 → kitbash-1.8.0}/tests/file_save_dialog.py +0 -0
kitbash-1.8.0/PKG-INFO ADDED
@@ -0,0 +1,128 @@
1
+ Metadata-Version: 2.1
2
+ Name: kitbash
3
+ Version: 1.8.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.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
+ Starting with an empty project, use the "Edit" -> "Load Drumkit" menu, or click
36
+ on the "plus" symbol in the toolbar. You'll see all the instruments defined in
37
+ the drumkit you just loaded, grouped into categories, such as "Snares", "Tom
38
+ toms", "Hi-hats", etc.
39
+
40
+ ### Audio preview
41
+
42
+ To listen to audio playback, you need to select an "Audio sink" from the dropdown
43
+ list at the top-right of the window. You audio out devices should be listed
44
+ there. Note that this is a JACK application, and your JACK audio connection kit
45
+ server must be running to play audio.
46
+
47
+ To preview the sound of each instrument, click on the instrument name.
48
+ Releasing the mouse stops the playback.
49
+
50
+ To preview the drumkit you are assembling, you need to send it MIDI note
51
+ events. Choose the MIDI source from the dropdown list at the top-right area of
52
+ the window, and send MIDI events. A MIDI source can be an external device, like
53
+ a MIDI keyboard, or the MIDI output of another program, such as
54
+ [qtractor](https://qtractor.org/), [MuseScore](https://musescore.com/), or
55
+ [JackMIDILooper](https://github.com/Zen-Master-SoSo/jack_midi_looper).
56
+
57
+ ### Instrument selection
58
+
59
+ The instruments selected to be included in your final drumkit are indicated by
60
+ the check boxes next to the instrument and category names.
61
+
62
+ Check the box next to a category to select all the instruments in that category
63
+ for inclusion in your new drumkit. Check the checkbox next to any individual
64
+ instrument (i.e. "Ride Bell"), to include only that instrument.
65
+
66
+ When you load the first drumkit, all categories and instruments are selected.
67
+ Load another drumkit in the same way as you did the first (using the menu or
68
+ the toolbar). Selecting an instrument from one drumkit de-selects that
69
+ instrument from all other loaded drumkits.
70
+
71
+ You can make changes while playing a loop from the incoming MIDI source, and
72
+ the changes are (almost) immediately made to the "bashed" drumkit you are
73
+ making.
74
+
75
+ ### Exporting SFZ
76
+
77
+ When you're satisfied with what you've selected, you can save the "bashed"
78
+ drumkit as an .sfz file in a new location. From the menu, select "File" ->
79
+ "Save Bashed Kit As..." and choose the location. Or, click the corresponding
80
+ icon in the toolbar.
81
+
82
+
83
+ ### Saving a project
84
+
85
+ A "project" is a list of the source SFZs and which groups and instruments from
86
+ each them are selected. You can save a project for later, make whatever changes
87
+ you desire, and then export the SFZ you created again. This way, you don't have
88
+ to start from scratch every time you wish to make that one small change.
89
+
90
+
91
+ ## Install
92
+
93
+ Install in the usual way:
94
+
95
+ ```bash
96
+ $ pip install kitbash
97
+ ```
98
+
99
+ ### Requirements
100
+
101
+ You'll need both [JACK audio connection kit](https://jackaudio.org/) and
102
+ [liquidsfz](https://github.com/swesterfeld/liquidsfz) in order to have live
103
+ previews. You can run the program without either, but you won't be able to
104
+ listen to your changes as you are making them.
105
+
106
+ To install JACK:
107
+
108
+ ```bash
109
+ $ sudo apt install jackd
110
+ ```
111
+
112
+ ...or...
113
+
114
+ ```bash
115
+ $ sudo dnf install jackd
116
+ ```
117
+
118
+ To install liquidsfz:
119
+
120
+ ```bash
121
+ $ git clone https://github.com/swesterfeld/liquidsfz.git
122
+ ```
123
+
124
+ ... and follow the instructions found in the liquidsfz README to install it.
125
+
126
+
127
+
128
+
@@ -0,0 +1,111 @@
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
+ Starting with an empty project, use the "Edit" -> "Load Drumkit" menu, or click
20
+ on the "plus" symbol in the toolbar. You'll see all the instruments defined in
21
+ the drumkit you just loaded, grouped into categories, such as "Snares", "Tom
22
+ toms", "Hi-hats", etc.
23
+
24
+ ### Audio preview
25
+
26
+ To listen to audio playback, you need to select an "Audio sink" from the dropdown
27
+ list at the top-right of the window. You audio out devices should be listed
28
+ there. Note that this is a JACK application, and your JACK audio connection kit
29
+ server must be running to play audio.
30
+
31
+ To preview the sound of each instrument, click on the instrument name.
32
+ Releasing the mouse stops the playback.
33
+
34
+ To preview the drumkit you are assembling, you need to send it MIDI note
35
+ events. Choose the MIDI source from the dropdown list at the top-right area of
36
+ the window, and send MIDI events. A MIDI source can be an external device, like
37
+ a MIDI keyboard, or the MIDI output of another program, such as
38
+ [qtractor](https://qtractor.org/), [MuseScore](https://musescore.com/), or
39
+ [JackMIDILooper](https://github.com/Zen-Master-SoSo/jack_midi_looper).
40
+
41
+ ### Instrument selection
42
+
43
+ The instruments selected to be included in your final drumkit are indicated by
44
+ the check boxes next to the instrument and category names.
45
+
46
+ Check the box next to a category to select all the instruments in that category
47
+ for inclusion in your new drumkit. Check the checkbox next to any individual
48
+ instrument (i.e. "Ride Bell"), to include only that instrument.
49
+
50
+ When you load the first drumkit, all categories and instruments are selected.
51
+ Load another drumkit in the same way as you did the first (using the menu or
52
+ the toolbar). Selecting an instrument from one drumkit de-selects that
53
+ instrument from all other loaded drumkits.
54
+
55
+ You can make changes while playing a loop from the incoming MIDI source, and
56
+ the changes are (almost) immediately made to the "bashed" drumkit you are
57
+ making.
58
+
59
+ ### Exporting SFZ
60
+
61
+ When you're satisfied with what you've selected, you can save the "bashed"
62
+ drumkit as an .sfz file in a new location. From the menu, select "File" ->
63
+ "Save Bashed Kit As..." and choose the location. Or, click the corresponding
64
+ icon in the toolbar.
65
+
66
+
67
+ ### Saving a project
68
+
69
+ A "project" is a list of the source SFZs and which groups and instruments from
70
+ each them are selected. You can save a project for later, make whatever changes
71
+ you desire, and then export the SFZ you created again. This way, you don't have
72
+ to start from scratch every time you wish to make that one small change.
73
+
74
+
75
+ ## Install
76
+
77
+ Install in the usual way:
78
+
79
+ ```bash
80
+ $ pip install kitbash
81
+ ```
82
+
83
+ ### Requirements
84
+
85
+ You'll need both [JACK audio connection kit](https://jackaudio.org/) and
86
+ [liquidsfz](https://github.com/swesterfeld/liquidsfz) in order to have live
87
+ previews. You can run the program without either, but you won't be able to
88
+ listen to your changes as you are making them.
89
+
90
+ To install JACK:
91
+
92
+ ```bash
93
+ $ sudo apt install jackd
94
+ ```
95
+
96
+ ...or...
97
+
98
+ ```bash
99
+ $ sudo dnf install jackd
100
+ ```
101
+
102
+ To install liquidsfz:
103
+
104
+ ```bash
105
+ $ git clone https://github.com/swesterfeld/liquidsfz.git
106
+ ```
107
+
108
+ ... and follow the instructions found in the liquidsfz README to install it.
109
+
110
+
111
+
@@ -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.0"
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.0"
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