Skip to content

Commit

Permalink
Add local music bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
EricGoldsteinNz authored and EricGoldsteinNz committed Sep 23, 2023
1 parent de1f446 commit d7e95ba
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build.bat
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@echo off
set ver=0.4.1
set ver=0.4.2
rem build script for the distributable versions of tadpole
if not exist "venv\" (
py -m venv venv
Expand Down
2 changes: 1 addition & 1 deletion dialogs/MusicConfirmDialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,6 @@ def load_from_file(self) -> bool:
self.music_name = os.path.split(file_name)[-1]
self.label_confirm.setText("<h3>Change Background Music</h3><em>{}</em>".format(self.music_name))
self.button_play.setEnabled(True)
self.toggle_audio(self)
self.toggle_audio()
return True
return False
8 changes: 4 additions & 4 deletions versioninfo
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
VSVersionInfo(
ffi=FixedFileInfo(
filevers=(0, 4, 1, 0),
prodvers=(0, 4, 1, 0),
filevers=(0, 4, 2, 0),
prodvers=(0, 4, 2, 0),
mask=0x3f,
flags=0x0,
OS=0x4,
Expand All @@ -15,12 +15,12 @@ VSVersionInfo(
u'080904B0',
[StringStruct(u'CompanyName', u'EricGoldstein'),
StringStruct(u'FileDescription', u'tadpole'),
StringStruct(u'FileVersion', u'0.4.1'),
StringStruct(u'FileVersion', u'0.4.2'),
StringStruct(u'InternalName', u'tadpole'),
StringStruct(u'LegalCopyright', u'by EricGoldstein 2023'),
StringStruct(u'OriginalFilename', u'tadpole.exe'),
StringStruct(u'ProductName', u'tadpole'),
StringStruct(u'ProductVersion', u'0.4.1')])
StringStruct(u'ProductVersion', u'0.4.2')])
]),
VarFileInfo([VarStruct(u'Translation', [2057, 1200])])
]
Expand Down

0 comments on commit d7e95ba

Please sign in to comment.