Skip to content

Commit

Permalink
0.11.40,夏至版本
Browse files Browse the repository at this point in the history
未来将为每个发行版本指定一个名称,目前该名称来自临近节气
  • Loading branch information
MetaLe0 committed Jun 12, 2024
1 parent 2157a05 commit 8f57958
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions OlivOS/core/info/infoAPI.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@
import OlivOS


OlivOS_Version = '0.11.39'
OlivOS_SVN = 159
OlivOS_Version = '0.11.40'
OlivOS_SVN = 160
OlivOS_Version_Slogan = '夏至'

# Compatible <= Plugin[compatible_svn] : Compatible
# OldCompatible <= Plugin[compatible_svn] < Compatible : OldCompatible Warn
Expand All @@ -28,6 +29,7 @@
OlivOS_compatible_svn_default = 0

OlivOS_Version_Short = '%s(%s)' % (OlivOS_Version, str(OlivOS_SVN))
OlivOS_Version_Title = '%s(%s) - %s' % (OlivOS_Version, str(OlivOS_SVN), OlivOS_Version_Slogan)

OlivOS_Header_UA = 'OlivOS/' + OlivOS_Version

Expand Down
2 changes: 1 addition & 1 deletion OlivOS/nativeGUI/multiLoginUIAPI.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ def start(self):
self.UIObject['root'] = tkinter.Tk()
else:
self.UIObject['root'] = tkinter.Toplevel()
self.UIObject['root'].title('OlivOS 登录管理器')
self.UIObject['root'].title('OlivOS 登录管理器 - %s' % OlivOS.infoAPI.OlivOS_Version_Title)
self.UIObject['root'].geometry('518x400')
self.UIObject['root'].resizable(
width=False,
Expand Down
2 changes: 1 addition & 1 deletion OlivOS/nativeGUI/nativeWinUIAPI.py
Original file line number Diff line number Diff line change
Expand Up @@ -2298,7 +2298,7 @@ def __init__(self, Model_name, logger_proc=None, root=None, root_tk=None):

def start(self):
self.UIObject['root'] = tkinter.Toplevel()
self.UIObject['root'].title('OlivOS 终端')
self.UIObject['root'].title('OlivOS 终端 - %s' % OlivOS.infoAPI.OlivOS_Version_Title)
self.UIObject['root'].geometry('900x600')
self.UIObject['root'].minsize(900, 600)
self.UIObject['root'].grid_rowconfigure(0, weight=15)
Expand Down

0 comments on commit 8f57958

Please sign in to comment.