Skip to content

Commit

Permalink
Release 5.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonius7 committed Mar 16, 2023
1 parent 8ebc057 commit e74d6fb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions docs/Changelog - old_glory GUI.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## SteamUI-OldGlory GUI Changelog

**1.0.1.1** **(Release 5.11.1)** Fix frame scrolling error (_tkinter.TclError: invalid command name)

1.0.1 (*5.11.1-pre1*) Fix expired login token (for checking updates)

**1.0** **(Release 5.11)** New CSS Sections functionality

0.9.30.3 (*5.11-pre4*) More CSS/JS Mode Menu Functionality
Expand Down
6 changes: 3 additions & 3 deletions old_glory.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@

class OldGloryApp(tk.Tk):
def __init__(self, *args, **kwargs):
self.version = "1.0"
self.release = "5.11"
self.version = "1.0.1.1"
self.release = "5.11.1"

### Window Frame
tk.Tk.__init__(self, *args, **kwargs)
Expand Down Expand Up @@ -1300,7 +1300,7 @@ def returnframeSections(self):
class SectionsFrame(tk.Frame):
def __init__(self, parent, controller):
self.parent = parent
self.frameLine = custom_tk.ScrollFrame(self.parent)
self.frameLine = custom_tk.ScrollFrameAdvanced(self.parent)
self.controller = controller
self.frameLineInner = tk.Frame(self.frameLine.content)
self.frameLineInner.grid(row=0, column=0)
Expand Down

0 comments on commit e74d6fb

Please sign in to comment.