Skip to content

Commit

Permalink
Update versions.py
Browse files Browse the repository at this point in the history
  • Loading branch information
CrystalVortex authored Apr 29, 2022
1 parent 15ab29d commit 4a2ef42
Showing 1 changed file with 21 additions and 7 deletions.
28 changes: 21 additions & 7 deletions versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,6 @@

logger.warning('[LOG]:Window Name:Minecraft Version Launcher (512x512)')

ws = Tk()

ws.title('Minecraft Version Launcher')

ws.geometry('512x512')



new = 1
Expand All @@ -57,6 +51,19 @@

new = 6
url6 = "https://download2390.mediafire.com/wa607c69vbug/wjekuyje36e51ql/Minecraft-1.18.0.2.Appx"
new = 7
url7 = "https://download2329.mediafire.com/qxrgkl0b0gkg/tjsgntidc54rru4/Minecraft-1.18.31.4.Appx"


print("[LOG]:Versions loaded")
logger.warning('[LOG]:Versions loaded')


ws = Tk()

ws.title('Minecraft Version Launcher')

ws.geometry('512x512')



Expand Down Expand Up @@ -97,7 +104,15 @@ def openweb6():
print(datetime.datetime.now())
logger.warning('[LOG]:You clicked download 1.18')

def openweb7():
webbrowser.open(url7,new=new)
print("[LOG]:You clicked download 1.18.31 at:")
print(datetime.datetime.now())
logger.warning('[LOG]:You clicked download 1.18.31')


Btn = Button(ws, text = "Download 1.18.31 64 bit",command=openweb7)
Btn.pack()

Btn = Button(ws, text = "Download 1.18.30 64 bit",command=openweb)
Btn.pack()
Expand Down Expand Up @@ -135,4 +150,3 @@ def openweb6():

logger.warning('[LOG]:Application closed...')


0 comments on commit 4a2ef42

Please sign in to comment.