Skip to content

Commit

Permalink
Update launcher.py
Browse files Browse the repository at this point in the history
  • Loading branch information
CrystalVortex authored Feb 15, 2023
1 parent 878cd5d commit 52d3dbe
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions launcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

import webbrowser # Used for going to the github page to check for updates

messagebox.showwarning("Warning","Some versions are Beta/Preview this is just a test version to see how it goes, press ok to continue. Enjoy")
messagebox.showwarning("Warning","this is just a test version to see how it goes, press ok to continue. Enjoy")



Expand All @@ -27,7 +27,7 @@
app = customtkinter.CTk()
app.geometry("700x340")

app.title("MCBE Version Launcher 7.0 (Testing version)")
app.title("MCBE Version Launcher 7.1 (last testing version)")



Expand Down Expand Up @@ -61,7 +61,7 @@ def download_ten():
def r():
log4py.INFO("Downloading 1.19.10...")

version = Versions.get_by_version("1.19.10")
version = Versions.get_by_version("1.19.10.3")
log4py.SUCCESS(version.uri)
wget.download(version.uri)
log4py.INFO("\n")
Expand Down Expand Up @@ -93,11 +93,11 @@ def github():
button = customtkinter.CTkButton(master=app, text="Download 1.19.51.1", command=download_fifone_one)
button.place(relx=0.5, rely=0.3, anchor=tkinter.CENTER)

button = customtkinter.CTkButton(master=app, text="Download 1.19.10", command=download_fifone_one)
button = customtkinter.CTkButton(master=app, text="Download 1.19.10", command=download_ten)
button.place(relx=0.5, rely=0.1, anchor=tkinter.CENTER)

button = customtkinter.CTkButton(master=app, text="Download 1.19.30.04", command=download_thir_for)
button.place(relx=0.5, rely=0.1, anchor=tkinter.CENTER)
button.place(relx=0.10, rely=0.1, anchor=tkinter.CENTER)

button = customtkinter.CTkButton(master=app, text="Check for updates", command=github)
button.place(relx=0.10, rely=0.5, anchor=tkinter.CENTER)
Expand Down

0 comments on commit 52d3dbe

Please sign in to comment.