Skip to content

Commit 0cbafd5

Browse files
committed
Adding NoBrowser
1 parent eab6a57 commit 0cbafd5

File tree

1 file changed

+13
-11
lines changed

1 file changed

+13
-11
lines changed

PyPI/Package/src/webui/webui.py

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,19 @@
2525

2626
# Scripts Runtime
2727
class browser:
28-
any:int = 0 # Default recommended web browser
29-
chrome:int = 1 # Google Chrome
30-
firefox:int = 2 # Mozilla Firefox
31-
edge:int = 3 # Microsoft Edge
32-
safari:int = 4 # Apple Safari
33-
chromium:int = 5 # The Chromium Project
34-
opera:int = 6 # Opera Browser
35-
brave:int = 7 # The Brave Browser
36-
vivaldi:int = 8 # The Vivaldi Browser
37-
epic:int = 9 # The Epic Browser
38-
yandex:int = 10 # The Yandex Browser
28+
NoBrowser:int = 0 # No web browser
29+
any:int = 1 # Default recommended web browser
30+
chrome:int = 2 # Google Chrome
31+
firefox:int = 3 # Mozilla Firefox
32+
edge:int = 4 # Microsoft Edge
33+
safari:int = 5 # Apple Safari
34+
chromium:int = 6 # The Chromium Project
35+
opera:int = 7 # Opera Browser
36+
brave:int = 8 # The Brave Browser
37+
vivaldi:int = 9 # The Vivaldi Browser
38+
epic:int = 10 # The Epic Browser
39+
yandex:int = 11 # The Yandex Browser
40+
ChromiumBased:int = 12 # 12. Any Chromium based browser
3941

4042
# event
4143
class event:

0 commit comments

Comments
 (0)