Skip to content

Commit

Permalink
release: Release version 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
IoeCmcomc committed Oct 28, 2022
1 parent 04cbf71 commit 51295fb
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nuitka.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: Build standalone folder (Windows)
if: matrix.os == 'windows-latest'
run: |
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
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
- name: Build standalone folder (Linux)
if: matrix.os == 'ubuntu-latest'
Expand Down
3 changes: 2 additions & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
from musescore2nbs import musescore2nbs
from nbs2audio import nbs2audio

__version__ = '0.1.0'
__version__ = '1.1.0'
globalIncVar = 0


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

if not (which('ffmpeg') and which('ffprobe')):
instructionMsg = ''
if os.name == 'nt':
instructionMsg = """
Make sure there are ffmpeg.exe and ffprobe.exe inside the ffmpeg/bin folder.
Expand Down
2 changes: 1 addition & 1 deletion nuitka.txt
Original file line number Diff line number Diff line change
@@ -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
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
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "nbstool"
version = "1.0.0"
version = "1.1.0"
description = "A tool to work with .nbs (Note Block Studio) files."
authors = ["IoeCmcomc"]

Expand Down
2 changes: 1 addition & 1 deletion ui/aboutdialog.ui
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<object class="ttk.Label" id="label2">
<property name="justify">center</property>
<property name="text" translatable="yes">A tool to work with Open Note Block Studio files.
Version: 1.0.0
Version: 1.1.0
Author: IoeCmcomc</property>
<layout manager="pack">
<property name="pady">10</property>
Expand Down

0 comments on commit 51295fb

Please sign in to comment.