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 26, 2022
1 parent 2836fb9 commit 5edee75
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions versions.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,21 @@
from email.utils import localtime

from tkinter import *

from tkinter.ttk import *

import webbrowser

import datetime

import time

print("Starting Application...")

time.sleep(3)

print("[LOG]:Application started")

ws = Tk()

ws.title('Minecraft Version Launcher')
Expand Down Expand Up @@ -32,21 +46,33 @@

def openweb():
webbrowser.open(url1,new=new)
print("[LOG]:You clicked download 1.18.30 at:")
print(datetime.datetime.now())

def openweb2():
webbrowser.open(url2,new=new)
print("[LOG]:You clicked download 1.18.10 at:")
print(datetime.datetime.now())

def openweb3():
webbrowser.open(url3,new=new)
print("[LOG]:You clicked download 1.18.12.1 at:")
print(datetime.datetime.now())

def openweb4():
webbrowser.open(url4,new=new)
print("[LOG]:You clicked download 1.18.2.3 at:")
print(datetime.datetime.now())

def openweb5():
webbrowser.open(url5,new=new)
print("[LOG]:You clicked download 1.18.1.2 at:")
print(datetime.datetime.now())

def openweb6():
webbrowser.open(url6,new=new)
print("[LOG]:You clicked download 1.18 at:")
print(datetime.datetime.now())



Expand All @@ -71,3 +97,15 @@ def openweb6():


ws.mainloop()

print("[LOG]:Application closed!")

time.sleep(1)

print("[LOG]:Press enter to continue")

input()




0 comments on commit 5edee75

Please sign in to comment.