Skip to content

Commit bb43253

Browse files
Fix version and feature count inconsistencies in About dialogs
Co-authored-by: codingwithnsh <138281862+codingwithnsh@users.noreply.github.com>
1 parent 7504f6b commit bb43253

File tree

1 file changed

+18
-12
lines changed

1 file changed

+18
-12
lines changed

main.py

Lines changed: 18 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -603,22 +603,22 @@ def show_about(self):
603603

604604
tk.Label(about, text="AdvancedOS", bg=self.bg_color, fg=self.fg_color,
605605
font=('Arial', 24, 'bold')).pack(pady=20)
606-
tk.Label(about, text="Version 2.0", bg=self.bg_color, fg=self.fg_color,
606+
tk.Label(about, text="Version 3.0 - The World's Best Python OS", bg=self.bg_color, fg=self.fg_color,
607607
font=('Arial', 12)).pack()
608608
tk.Label(about, text=f"\nPlatform: {platform.system()} {platform.release()}",
609609
bg=self.bg_color, fg=self.fg_color, font=('Arial', 10)).pack()
610610
tk.Label(about, text=f"Python: {sys.version.split()[0]}",
611611
bg=self.bg_color, fg=self.fg_color, font=('Arial', 10)).pack()
612612

613613
features_text = """
614-
Features: 1000+
615-
File Management
616-
Text Editing & Code Editor
617-
Media Players (Music, Video, Photos)
618-
Internet Browser
619-
Email & Calendar
620-
System Monitor
621-
Calculator & Utilities
614+
Features: 2500+
615+
Sandbox Isolation System
616+
App Store & Package Manager
617+
Time Machine Backups
618+
Voice Assistant & Cloud Sync
619+
Mission Control & Launchpad
620+
Developer Console & Tools
621+
File Management & Media Players
622622
• And much more!
623623
"""
624624
tk.Label(about, text=features_text, bg=self.bg_color, fg=self.fg_color,
@@ -2062,12 +2062,18 @@ def create_about_settings(self, parent):
20622062
font=('Arial', 16, 'bold')).pack(anchor=tk.W, padx=20, pady=20)
20632063

20642064
about_text = f"""
2065-
AdvancedOS Version 2.0
2065+
AdvancedOS Version 3.0 - The World's Best Python OS
20662066
2067-
A modern, feature-rich operating system interface
2067+
A comprehensive, modern operating system interface
20682068
built with Python and Tkinter.
20692069
2070-
Features: 1000+ and growing
2070+
Features: 2500+ including:
2071+
• Sandbox Isolation System
2072+
• App Store & Time Machine
2073+
• Voice Assistant & Cloud Sync
2074+
• Developer Console & Tools
2075+
• Mission Control & Enhanced Mac UI
2076+
20712077
Platform: {platform.system()}
20722078
Python: {sys.version.split()[0]}
20732079

0 commit comments

Comments
 (0)