Skip to content

Commit

Permalink
Version+
Browse files Browse the repository at this point in the history
  • Loading branch information
elibroftw committed Nov 18, 2019
1 parent a6a9545 commit 7b8ff3a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Installer Script.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "Music Caster"
#define MyAppVersion "4.17.22"
#define MyAppVersion "4.17.23"
#define MyAppPublisher "Elijah Lopez"
#define MyAppURL "https://elijahlopez.herokuapp.com/"
#define MyAppExeName "Music Caster.exe"
Expand Down
2 changes: 1 addition & 1 deletion music_caster.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
import zipfile
from helpers import *

VERSION = '4.17.22'
VERSION = '4.17.23'
update_devices = False
chromecasts = []
device_names = ['1. Local Device']
Expand Down
8 changes: 4 additions & 4 deletions version_info.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ VSVersionInfo(
ffi=FixedFileInfo(
# filevers and prodvers should be always a tuple with four items: (1, 2, 3, 4)
# Set not needed items to zero 0.
prodvers=(4, 17, 22, 0),
filevers=(4, 17, 22, 0),
prodvers=(4, 17, 23, 0),
filevers=(4, 17, 23, 0),
# Contains a bitmask that specifies the valid bits 'flags'r
mask=0x17,
# Contains a bitmask that specifies the Boolean attributes of the file.
Expand All @@ -30,12 +30,12 @@ VSVersionInfo(
'000004b0',
[StringStruct('CompanyName', 'Elijah Lopez'),
StringStruct('FileDescription', 'Music Caster'),
StringStruct('FileVersion', '4.17.22.0'),
StringStruct('FileVersion', '4.17.23.0'),
StringStruct('InternalName', 'Music Caster'),
StringStruct('LegalCopyright', 'Copyright (c) 2019, Elijah Lopez'),
StringStruct('OriginalFilename', 'Music Caster.exe'),
StringStruct('ProductName', 'Music Caster'),
StringStruct('ProductVersion', '4.17.22.0')])
StringStruct('ProductVersion', '4.17.23.0')])
]),
VarFileInfo([VarStruct('Translation', [0, 1200])])
]
Expand Down

0 comments on commit 7b8ff3a

Please sign in to comment.