jadeui 0.3.2__tar.gz → 0.3.3__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.
Files changed (26) hide show
  1. {jadeui-0.3.2 → jadeui-0.3.3}/PKG-INFO +1 -1
  2. {jadeui-0.3.2 → jadeui-0.3.3}/jadeui/__init__.py +1 -1
  3. {jadeui-0.3.2 → jadeui-0.3.3}/jadeui/downloader.py +1 -1
  4. {jadeui-0.3.2 → jadeui-0.3.3}/pyproject.toml +1 -1
  5. {jadeui-0.3.2 → jadeui-0.3.3}/.gitignore +0 -0
  6. {jadeui-0.3.2 → jadeui-0.3.3}/README.md +0 -0
  7. {jadeui-0.3.2 → jadeui-0.3.3}/examples/README.md +0 -0
  8. {jadeui-0.3.2 → jadeui-0.3.3}/examples/backdrop_demo/README.md +0 -0
  9. {jadeui-0.3.2 → jadeui-0.3.3}/examples/calculator/README.md +0 -0
  10. {jadeui-0.3.2 → jadeui-0.3.3}/examples/custom_template/README.md +0 -0
  11. {jadeui-0.3.2 → jadeui-0.3.3}/examples/router_demo/README.md +0 -0
  12. {jadeui-0.3.2 → jadeui-0.3.3}/examples/simple/README.md +0 -0
  13. {jadeui-0.3.2 → jadeui-0.3.3}/examples/vue_app/README.md +0 -0
  14. {jadeui-0.3.2 → jadeui-0.3.3}/jadeui/app.py +0 -0
  15. {jadeui-0.3.2 → jadeui-0.3.3}/jadeui/core/__init__.py +0 -0
  16. {jadeui-0.3.2 → jadeui-0.3.3}/jadeui/core/dll.py +0 -0
  17. {jadeui-0.3.2 → jadeui-0.3.3}/jadeui/core/lifecycle.py +0 -0
  18. {jadeui-0.3.2 → jadeui-0.3.3}/jadeui/core/types.py +0 -0
  19. {jadeui-0.3.2 → jadeui-0.3.3}/jadeui/events.py +0 -0
  20. {jadeui-0.3.2 → jadeui-0.3.3}/jadeui/exceptions.py +0 -0
  21. {jadeui-0.3.2 → jadeui-0.3.3}/jadeui/ipc.py +0 -0
  22. {jadeui-0.3.2 → jadeui-0.3.3}/jadeui/router.py +0 -0
  23. {jadeui-0.3.2 → jadeui-0.3.3}/jadeui/server.py +0 -0
  24. {jadeui-0.3.2 → jadeui-0.3.3}/jadeui/templates/__init__.py +0 -0
  25. {jadeui-0.3.2 → jadeui-0.3.3}/jadeui/utils.py +0 -0
  26. {jadeui-0.3.2 → jadeui-0.3.3}/jadeui/window.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: jadeui
3
- Version: 0.3.2
3
+ Version: 0.3.3
4
4
  Summary: Python SDK for JadeView - Create desktop applications with WebView
5
5
  Project-URL: Homepage, https://jade.run
6
6
  Project-URL: Documentation, https://jade.run/python-sdk
@@ -67,7 +67,7 @@ from .router import Router
67
67
  from .server import LocalServer
68
68
  from .window import Backdrop, Theme, Window
69
69
 
70
- __version__ = "0.3.2"
70
+ __version__ = "0.3.3"
71
71
  __author__ = "JadeView Team"
72
72
  __license__ = "MIT"
73
73
 
@@ -23,7 +23,7 @@ GITHUB_RELEASE_URL = f"https://github.com/{GITHUB_REPO}/releases/download"
23
23
 
24
24
  # DLL 版本号(可能与 SDK 版本不同)
25
25
  # 当 SDK 修复 bug 但 DLL 未更新时,此版本保持不变
26
- DLL_VERSION = "0.3.2"
26
+ DLL_VERSION = "0.3.3"
27
27
 
28
28
  # 链接类型: "static" (推荐) 或 "dynamic"
29
29
  # static: DLL内嵌所有依赖,无需额外运行时
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "jadeui"
3
- version = "0.3.2"
3
+ version = "0.3.3"
4
4
  description = "Python SDK for JadeView - Create desktop applications with WebView"
5
5
  readme = "README.md"
6
6
  license = {text = "MIT"}
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