kigo-gui-framework 2.6__tar.gz → 2.7__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {kigo_gui_framework-2.6/kigo_gui_framework.egg-info → kigo_gui_framework-2.7}/PKG-INFO +10 -3
- kigo_gui_framework-2.7/README.txt +8 -0
- kigo_gui_framework-2.7/kigo/platform.py +57 -0
- {kigo_gui_framework-2.6 → kigo_gui_framework-2.7/kigo_gui_framework.egg-info}/PKG-INFO +10 -3
- {kigo_gui_framework-2.6 → kigo_gui_framework-2.7}/kigo_gui_framework.egg-info/SOURCES.txt +1 -0
- {kigo_gui_framework-2.6 → kigo_gui_framework-2.7}/pyproject.toml +2 -2
- kigo_gui_framework-2.6/README.txt +0 -1
- {kigo_gui_framework-2.6 → kigo_gui_framework-2.7}/MANIFEST.in +0 -0
- {kigo_gui_framework-2.6 → kigo_gui_framework-2.7}/kigo/_init_.py +0 -0
- {kigo_gui_framework-2.6 → kigo_gui_framework-2.7}/kigo/accelerate.py +0 -0
- {kigo_gui_framework-2.6 → kigo_gui_framework-2.7}/kigo/app.py +0 -0
- {kigo_gui_framework-2.6 → kigo_gui_framework-2.7}/kigo/fx_gl2d.py +0 -0
- {kigo_gui_framework-2.6 → kigo_gui_framework-2.7}/kigo/fx_quick.py +0 -0
- {kigo_gui_framework-2.6 → kigo_gui_framework-2.7}/kigo/gpu.py +0 -0
- {kigo_gui_framework-2.6 → kigo_gui_framework-2.7}/kigo/hud.py +0 -0
- {kigo_gui_framework-2.6 → kigo_gui_framework-2.7}/kigo/hwaccel.py +0 -0
- {kigo_gui_framework-2.6 → kigo_gui_framework-2.7}/kigo/media.py +0 -0
- {kigo_gui_framework-2.6 → kigo_gui_framework-2.7}/kigo/physics.py +0 -0
- {kigo_gui_framework-2.6 → kigo_gui_framework-2.7}/kigo/physics_policy.py +0 -0
- {kigo_gui_framework-2.6 → kigo_gui_framework-2.7}/kigo/runtime.py +0 -0
- {kigo_gui_framework-2.6 → kigo_gui_framework-2.7}/kigo/shader_demo.py +0 -0
- {kigo_gui_framework-2.6 → kigo_gui_framework-2.7}/kigo/shim.py +0 -0
- {kigo_gui_framework-2.6 → kigo_gui_framework-2.7}/kigo/skins.py +0 -0
- {kigo_gui_framework-2.6 → kigo_gui_framework-2.7}/kigo/style.py +0 -0
- {kigo_gui_framework-2.6 → kigo_gui_framework-2.7}/kigo/tree.py +0 -0
- {kigo_gui_framework-2.6 → kigo_gui_framework-2.7}/kigo/widgets.py +0 -0
- {kigo_gui_framework-2.6 → kigo_gui_framework-2.7}/kigo_gui_framework.egg-info/dependency_links.txt +0 -0
- {kigo_gui_framework-2.6 → kigo_gui_framework-2.7}/kigo_gui_framework.egg-info/requires.txt +0 -0
- {kigo_gui_framework-2.6 → kigo_gui_framework-2.7}/kigo_gui_framework.egg-info/top_level.txt +0 -0
- {kigo_gui_framework-2.6 → kigo_gui_framework-2.7}/setup.cfg +0 -0
- {kigo_gui_framework-2.6 → kigo_gui_framework-2.7}/setup.py +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: kigo-gui-framework
|
|
3
|
-
Version: 2.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 2.7
|
|
4
|
+
Summary: Kigo now has support for OpenBSD and FreeBSD. Thank you for 15k downloads in just 4 months :D
|
|
5
5
|
Author-email: "Anand Kumar, Utkarsh Raghav Roy" <swiss.armyknife@icloud.com>
|
|
6
6
|
License: zlib
|
|
7
7
|
Keywords: gui,qt,pyqt6,physics,pybullet,simulation,robotics,animation
|
|
@@ -23,4 +23,11 @@ Provides-Extra: full
|
|
|
23
23
|
Requires-Dist: markdown; extra == "full"
|
|
24
24
|
Requires-Dist: PyQt6-WebEngine==6.7.0; extra == "full"
|
|
25
25
|
|
|
26
|
-
Kigo now has
|
|
26
|
+
Kigo now has support for
|
|
27
|
+
SunOS
|
|
28
|
+
Solaris
|
|
29
|
+
FreeBSD
|
|
30
|
+
Android
|
|
31
|
+
Linux
|
|
32
|
+
Mac
|
|
33
|
+
Windous
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
# kigo/platform.py
|
|
2
|
+
import sys
|
|
3
|
+
import os
|
|
4
|
+
import platform as _platform
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
class PlatformInfo:
|
|
8
|
+
def __init__(self):
|
|
9
|
+
self.sys_platform = sys.platform
|
|
10
|
+
self.system = _platform.system().lower()
|
|
11
|
+
|
|
12
|
+
# ---- OS ----
|
|
13
|
+
self.is_windows = self.sys_platform.startswith("win")
|
|
14
|
+
self.is_macos = self.system == "darwin"
|
|
15
|
+
self.is_linux = self.sys_platform.startswith("linux")
|
|
16
|
+
self.is_freebsd = self.sys_platform.startswith("freebsd")
|
|
17
|
+
self.is_openbsd = self.sys_platform.startswith("openbsd")
|
|
18
|
+
self.is_sunos = self.sys_platform == "sunos"
|
|
19
|
+
self.is_android = hasattr(sys, "getandroidapilevel")
|
|
20
|
+
self.is_ios = self.sys_platform == "ios"
|
|
21
|
+
|
|
22
|
+
# ---- Form factor ----
|
|
23
|
+
self.is_mobile = self.is_android or self.is_ios
|
|
24
|
+
self.is_desktop = not self.is_mobile
|
|
25
|
+
|
|
26
|
+
# ---- Window system (desktop Unix) ----
|
|
27
|
+
self.window_system = self._detect_window_system()
|
|
28
|
+
|
|
29
|
+
# ---- Qt backend (runtime observation) ----
|
|
30
|
+
self.qt_backend = self._detect_qt_backend()
|
|
31
|
+
|
|
32
|
+
def _detect_window_system(self):
|
|
33
|
+
# Wayland advertises WAYLAND_DISPLAY
|
|
34
|
+
if os.environ.get("WAYLAND_DISPLAY"):
|
|
35
|
+
return "wayland"
|
|
36
|
+
# X11/XWayland uses DISPLAY
|
|
37
|
+
if os.environ.get("DISPLAY"):
|
|
38
|
+
return "x11"
|
|
39
|
+
return "unknown"
|
|
40
|
+
|
|
41
|
+
def _detect_qt_backend(self):
|
|
42
|
+
# Android must use PySide6
|
|
43
|
+
if self.is_android:
|
|
44
|
+
return "pyside"
|
|
45
|
+
return "pyqt"
|
|
46
|
+
|
|
47
|
+
def summary(self):
|
|
48
|
+
return {
|
|
49
|
+
"os": self.system or self.sys_platform,
|
|
50
|
+
"window_system": self.window_system,
|
|
51
|
+
"qt_backend": self.qt_backend,
|
|
52
|
+
"mobile": self.is_mobile,
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
# Singleton (read‑only)
|
|
57
|
+
platform = PlatformInfo()
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: kigo-gui-framework
|
|
3
|
-
Version: 2.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 2.7
|
|
4
|
+
Summary: Kigo now has support for OpenBSD and FreeBSD. Thank you for 15k downloads in just 4 months :D
|
|
5
5
|
Author-email: "Anand Kumar, Utkarsh Raghav Roy" <swiss.armyknife@icloud.com>
|
|
6
6
|
License: zlib
|
|
7
7
|
Keywords: gui,qt,pyqt6,physics,pybullet,simulation,robotics,animation
|
|
@@ -23,4 +23,11 @@ Provides-Extra: full
|
|
|
23
23
|
Requires-Dist: markdown; extra == "full"
|
|
24
24
|
Requires-Dist: PyQt6-WebEngine==6.7.0; extra == "full"
|
|
25
25
|
|
|
26
|
-
Kigo now has
|
|
26
|
+
Kigo now has support for
|
|
27
|
+
SunOS
|
|
28
|
+
Solaris
|
|
29
|
+
FreeBSD
|
|
30
|
+
Android
|
|
31
|
+
Linux
|
|
32
|
+
Mac
|
|
33
|
+
Windous
|
|
@@ -4,8 +4,8 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "kigo-gui-framework"
|
|
7
|
-
version = "2.
|
|
8
|
-
description = "
|
|
7
|
+
version = "2.7"
|
|
8
|
+
description = "Kigo now has support for OpenBSD and FreeBSD. Thank you for 15k downloads in just 4 months :D"
|
|
9
9
|
readme = "README.txt"
|
|
10
10
|
requires-python = ">=3.8"
|
|
11
11
|
license = { text = "zlib" }
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
Kigo now has Android support (experimental), ECS and a smoke shader.
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{kigo_gui_framework-2.6 → kigo_gui_framework-2.7}/kigo_gui_framework.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|