Skip to content

Commit

Permalink
版本号更新 - ver 2.1.0
Browse files Browse the repository at this point in the history
更改窗口标题
  • Loading branch information
QSlotus committed Jul 28, 2024
1 parent 7c98fd5 commit 77dca64
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def __init__(self, root):
self.root = root
self.root.withdraw() # 隐藏主窗口

self.root.title("Gacha Simulator")
self.root.title("崩坏:星穹铁道抽卡模拟器")
self.root.geometry("1200x800")
self.root.minsize(900, 600) # 设置最小窗口大小

Expand Down Expand Up @@ -154,7 +154,7 @@ def setup_left_frame(self):
gacha_frame.columnconfigure(1, weight=1)

# Utility controls
util_frame = ttk.LabelFrame(self.left_frame, text="工具")
util_frame = ttk.LabelFrame(self.left_frame, text="工具箱")
util_frame.pack(pady=2, padx=5, fill=tk.X)

self.random_tip_button = ttk.Button(util_frame, text="随机Tips", command=self.show_random_tip)
Expand Down Expand Up @@ -556,7 +556,7 @@ def update_stats_display(self, pool_type=None):
self.stats_text.config(height=height)

def show_version(self):
version = "2.0.0" # 根据实际版本号修改
version = "2.1.0" # 根据实际版本号修改
author = "QiuSYan & Claude"
github = "qiusyan-projects/SR-Gacha"
other = "来点Star叭~💖"
Expand Down

0 comments on commit 77dca64

Please sign in to comment.