Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: v2.1.4
release_name: v2.1.4
tag_name: v2.1.5
release_name: v2.1.5
body: |
use https for firmware.
Reduce columns in the main window (no visible changes to the user).
draft: false
prerelease: false
- name: Upload Release Asset
Expand Down
12 changes: 6 additions & 6 deletions PySN.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ def __init__(self):
self.toplevel_window = None
self.stop_down = False
self.grid_rowconfigure((0, 1, 2), weight=1)
self.grid_columnconfigure((0, 1, 2, 3, 4, 5, 6, 7), weight=1)
self.grid_columnconfigure((0, 1, 2, 3, 4), weight=1)
self.bind('<Return>', lambda event: self.button_search())

self.entry = customtkinter.CTkEntry(master=self, placeholder_text='Enter Serial', width = 125)
Expand All @@ -292,10 +292,10 @@ def __init__(self):
self.checkbox = customtkinter.CTkCheckBox(master=self, text='Search Games.yml')
self.checkbox.grid(row=0, column=2, columnspan=2, padx=(2,4), pady=(6,0), sticky='w')
self.button1 = customtkinter.CTkButton(master=self, command=self.button_search, text='Search', width = 125)
self.button1.grid(row=0, column=7, padx=4, pady=(6,0), sticky='ew')
self.button1.grid(row=0, column=4, padx=4, pady=(6,0), sticky='ew')

self.textbox = ScrollableLabelButtonFrame(master=self, height=540, command=self.frame_button_download, corner_radius=5)
self.textbox.grid(row=1, column=0, columnspan=8, padx=4, pady=(0,0), sticky='ew')
self.textbox.grid(row=1, column=0, columnspan=5, padx=4, pady=(0,0), sticky='ew')

self.button2 = customtkinter.CTkButton(master=self, command=self.button_downall, text='Download All', width = 125)
self.button2.grid(row=2, column=0, padx=(4,2), pady=(0,6), sticky='ew')
Expand All @@ -305,7 +305,7 @@ def __init__(self):
self.clearbox.grid(row=2, column=2, columnspan=2, padx=(2,4), pady=(0,6), sticky='w')
self.clearbox.select()
self.button4 = customtkinter.CTkButton(master=self, command=self.button_settings, text='Settings', width = 125 )
self.button4.grid(row=2, column=7, padx=4, pady=(0,6), sticky='ew')
self.button4.grid(row=2, column=4, padx=4, pady=(0,6), sticky='ew')

#Opens the file location. Used with the open button.
def open_loc(self, download_path):
Expand Down Expand Up @@ -639,7 +639,7 @@ def button_search(self):
if self.clearbox.get() == 1:
self.textbox.destroy()
self.textbox = ScrollableLabelButtonFrame(master=self, height=540, command=self.frame_button_download, corner_radius=5)
self.textbox.grid(row=1, column=0, columnspan=8, padx=4, pady=0, sticky='ew')
self.textbox.grid(row=1, column=0, columnspan=5, padx=4, pady=0, sticky='ew')
self.search_type()
else:
self.textbox.clear_items()
Expand Down Expand Up @@ -667,7 +667,7 @@ def button_downall(self):
def button_clear(self):
self.textbox.destroy()
self.textbox = ScrollableLabelButtonFrame(master=self, height=540, command=self.frame_button_download, corner_radius=5)
self.textbox.grid(row=1, column=0, columnspan=8, padx=4, pady=0, sticky='ew')
self.textbox.grid(row=1, column=0, columnspan=5, padx=4, pady=0, sticky='ew')

#Behavior for the Settings button. Opens the settings window.
def button_settings(self):
Expand Down
Loading