Skip to content

Commit 51295fb

Browse files
committed
release: Release version 1.1.0
1 parent 04cbf71 commit 51295fb

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

.github/workflows/nuitka.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- name: Build standalone folder (Windows)
4242
if: matrix.os == 'windows-latest'
4343
run: |
44-
poetry run nuitka --standalone --enable-plugin=tk-inter --enable-plugin=numpy --include-data-dir=sounds=sounds --include-data-dir=ffmpeg=ffmpeg --include-data-dir=ui=ui --include-data-files=icon.ico=icon.ico --windows-icon-from-ico=icon.ico --windows-product-name=NBSTool --windows-company-name=IoeCmcomc --windows-product-version=0.1.0.0 --disable-console --show-anti-bloat-changes --assume-yes-for-downloads main.py
44+
poetry run nuitka --standalone --enable-plugin=tk-inter --enable-plugin=numpy --include-data-dir=sounds=sounds --include-data-dir=ffmpeg=ffmpeg --include-data-dir=ui=ui --include-data-files=icon.ico=icon.ico --windows-icon-from-ico=icon.ico --windows-product-name=NBSTool --windows-company-name=IoeCmcomc --windows-file-version=1.1.0.0 --windows-product-version=1.1.0.0 --windows-file-description=NBSTool --disable-console --show-anti-bloat-changes --assume-yes-for-downloads main.py
4545
4646
- name: Build standalone folder (Linux)
4747
if: matrix.os == 'ubuntu-latest'

main.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
from musescore2nbs import musescore2nbs
6161
from nbs2audio import nbs2audio
6262

63-
__version__ = '0.1.0'
63+
__version__ = '1.1.0'
6464
globalIncVar = 0
6565

6666

@@ -928,6 +928,7 @@ def __init__(self, master, parent):
928928
self.includeLocked.set(True) # type: ignore
929929

930930
if not (which('ffmpeg') and which('ffprobe')):
931+
instructionMsg = ''
931932
if os.name == 'nt':
932933
instructionMsg = """
933934
Make sure there are ffmpeg.exe and ffprobe.exe inside the ffmpeg/bin folder.

nuitka.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
poetry run nuitka --standalone --enable-plugin=tk-inter --enable-plugin=numpy --include-data-dir=sounds=sounds --include-data-dir=ffmpeg=ffmpeg --include-data-dir=ui=ui --include-data-files=icon.ico=icon.ico --windows-icon-from-ico=icon.ico --windows-product-name=NBSTool --windows-company-name=IoeCmcomc --windows-product-version=0.1.0.0 --disable-console --show-anti-bloat-changes --assume-yes-for-downloads main.py
1+
poetry run nuitka --standalone --enable-plugin=tk-inter --enable-plugin=numpy --include-data-dir=sounds=sounds --include-data-dir=ffmpeg=ffmpeg --include-data-dir=ui=ui --include-data-files=icon.ico=icon.ico --windows-icon-from-ico=icon.ico --windows-product-name=NBSTool --windows-company-name=IoeCmcomc --windows-file-version=1.1.0.0 --windows-product-version=1.1.0.0 --windows-file-description=NBSTool --disable-console --show-anti-bloat-changes --assume-yes-for-downloads main.py

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "nbstool"
3-
version = "1.0.0"
3+
version = "1.1.0"
44
description = "A tool to work with .nbs (Note Block Studio) files."
55
authors = ["IoeCmcomc"]
66

ui/aboutdialog.ui

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<object class="ttk.Label" id="label2">
3333
<property name="justify">center</property>
3434
<property name="text" translatable="yes">A tool to work with Open Note Block Studio files.
35-
Version: 1.0.0
35+
Version: 1.1.0
3636
Author: IoeCmcomc</property>
3737
<layout manager="pack">
3838
<property name="pady">10</property>

0 commit comments

Comments
 (0)