Skip to content

Commit a893897

Browse files
committed
views.py: Add platform information to the About Pop-Up.
Shows PLATFORM from platform_code.py on the About Pop-Up. Please enter the commit message for your changes. Lines starting
1 parent 1d9a2e3 commit a893897

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

zulipterminal/ui_tools/views.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
match_stream,
3939
match_user,
4040
)
41+
from zulipterminal.platform_code import PLATFORM
4142
from zulipterminal.server_url import near_message_url
4243
from zulipterminal.ui_tools.boxes import MessageBox, PanelSearchBox
4344
from zulipterminal.ui_tools.buttons import (
@@ -1113,7 +1114,7 @@ def __init__(
11131114
else []
11141115
)
11151116
contents = [
1116-
("Application", [("Zulip Terminal", zt_version)]),
1117+
("Application", [("Zulip Terminal", zt_version), ("Platform", PLATFORM)]),
11171118
("Server", [("Version", server_version)] + self.feature_level_content),
11181119
(
11191120
"Application Configuration",

0 commit comments

Comments
 (0)