kitbash 1.2.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.
- {kitbash-1.2.0 → kitbash-1.2.1}/PKG-INFO +1 -1
- {kitbash-1.2.0 → kitbash-1.2.1}/kitbash/__init__.py +2 -2
- {kitbash-1.2.0 → kitbash-1.2.1}/kitbash/gui/__init__.py +1 -1
- {kitbash-1.2.0 → kitbash-1.2.1}/kitbash/gui/main_window.py +1 -1
- {kitbash-1.2.0 → kitbash-1.2.1}/kitbash/scripts/bash_project.py +1 -1
- {kitbash-1.2.0 → kitbash-1.2.1}/pyproject.toml +1 -1
- {kitbash-1.2.0 → kitbash-1.2.1}/tests/file_save_dialog.py +1 -1
- {kitbash-1.2.0 → kitbash-1.2.1}/.gitignore +0 -0
- {kitbash-1.2.0 → kitbash-1.2.1}/LICENSE +0 -0
- {kitbash-1.2.0 → kitbash-1.2.1}/README.md +0 -0
- {kitbash-1.2.0 → kitbash-1.2.1}/kitbash/gui/main_window.ui +0 -0
- {kitbash-1.2.0 → kitbash-1.2.1}/kitbash/res/empty.sfz +0 -0
- {kitbash-1.2.0 → kitbash-1.2.1}/kitbash/res/group_expanded.svg +0 -0
- {kitbash-1.2.0 → kitbash-1.2.1}/kitbash/res/group_hidden.svg +0 -0
- {kitbash-1.2.0 → kitbash-1.2.1}/kitbash/res/kitbash-icon.png +0 -0
- {kitbash-1.2.0 → kitbash-1.2.1}/kitbash/styles/light.css +0 -0
- {kitbash-1.2.0 → kitbash-1.2.1}/kitbash/styles/system.css +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# kitbash/__init__.py
|
|
2
2
|
#
|
|
3
|
-
# Copyright 2024
|
|
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,7 +31,7 @@ from PyQt5.QtWidgets import QApplication
|
|
|
31
31
|
from qt_extras import DevilBox
|
|
32
32
|
from conn_jack import JackConnectError
|
|
33
33
|
|
|
34
|
-
__version__ = "1.2.
|
|
34
|
+
__version__ = "1.2.1"
|
|
35
35
|
|
|
36
36
|
APP_NAME = "kitbash"
|
|
37
37
|
APP_PATH = os.path.dirname(__file__)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# kitbash/gui/__init__.py
|
|
2
2
|
#
|
|
3
|
-
# Copyright 2025
|
|
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
|
|
@@ -28,7 +28,7 @@ requires = ["flit_core >=3.2,<4"]
|
|
|
28
28
|
build-backend = "flit_core.buildapi"
|
|
29
29
|
|
|
30
30
|
[bumpver]
|
|
31
|
-
current_version = "1.2.
|
|
31
|
+
current_version = "1.2.1"
|
|
32
32
|
version_pattern = "MAJOR.MINOR.PATCH"
|
|
33
33
|
commit_message = "Bump version {old_version} -> {new_version}"
|
|
34
34
|
commit = true
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|