ghostbt 0.2.2__tar.gz → 0.3.0__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 (33) hide show
  1. {ghostbt-0.2.2 → ghostbt-0.3.0}/PKG-INFO +1 -1
  2. ghostbt-0.3.0/ghostbt/__init__.py +1 -0
  3. {ghostbt-0.2.2 → ghostbt-0.3.0}/ghostbt/data/sdk/ghostesp_plugin_api.h +5 -1
  4. {ghostbt-0.2.2 → ghostbt-0.3.0}/ghostbt.egg-info/PKG-INFO +1 -1
  5. {ghostbt-0.2.2 → ghostbt-0.3.0}/pyproject.toml +1 -1
  6. ghostbt-0.2.2/ghostbt/__init__.py +0 -1
  7. {ghostbt-0.2.2 → ghostbt-0.3.0}/LICENSE +0 -0
  8. {ghostbt-0.2.2 → ghostbt-0.3.0}/README.md +0 -0
  9. {ghostbt-0.2.2 → ghostbt-0.3.0}/ghostbt/__main__.py +0 -0
  10. {ghostbt-0.2.2 → ghostbt-0.3.0}/ghostbt/asset.py +0 -0
  11. {ghostbt-0.2.2 → ghostbt-0.3.0}/ghostbt/build.py +0 -0
  12. {ghostbt-0.2.2 → ghostbt-0.3.0}/ghostbt/cli.py +0 -0
  13. {ghostbt-0.2.2 → ghostbt-0.3.0}/ghostbt/config.py +0 -0
  14. {ghostbt-0.2.2 → ghostbt-0.3.0}/ghostbt/create.py +0 -0
  15. {ghostbt-0.2.2 → ghostbt-0.3.0}/ghostbt/data/templates/basic_app/CMakeLists.txt +0 -0
  16. {ghostbt-0.2.2 → ghostbt-0.3.0}/ghostbt/data/templates/basic_app/main/CMakeLists.txt +0 -0
  17. {ghostbt-0.2.2 → ghostbt-0.3.0}/ghostbt/data/templates/basic_app/main/idf_component.yml +0 -0
  18. {ghostbt-0.2.2 → ghostbt-0.3.0}/ghostbt/data/templates/basic_app/main/{{APP_SYMBOL}}.c +0 -0
  19. {ghostbt-0.2.2 → ghostbt-0.3.0}/ghostbt/data/templates/basic_app/manifest.json +0 -0
  20. {ghostbt-0.2.2 → ghostbt-0.3.0}/ghostbt/data/templates/basic_app/sdkconfig.defaults +0 -0
  21. {ghostbt-0.2.2 → ghostbt-0.3.0}/ghostbt/dist.py +0 -0
  22. {ghostbt-0.2.2 → ghostbt-0.3.0}/ghostbt/esp_idf.py +0 -0
  23. {ghostbt-0.2.2 → ghostbt-0.3.0}/ghostbt/firmware.py +0 -0
  24. {ghostbt-0.2.2 → ghostbt-0.3.0}/ghostbt/flash.py +0 -0
  25. {ghostbt-0.2.2 → ghostbt-0.3.0}/ghostbt/icon.py +0 -0
  26. {ghostbt-0.2.2 → ghostbt-0.3.0}/ghostbt/package.py +0 -0
  27. {ghostbt-0.2.2 → ghostbt-0.3.0}/ghostbt/utils.py +0 -0
  28. {ghostbt-0.2.2 → ghostbt-0.3.0}/ghostbt.egg-info/SOURCES.txt +0 -0
  29. {ghostbt-0.2.2 → ghostbt-0.3.0}/ghostbt.egg-info/dependency_links.txt +0 -0
  30. {ghostbt-0.2.2 → ghostbt-0.3.0}/ghostbt.egg-info/entry_points.txt +0 -0
  31. {ghostbt-0.2.2 → ghostbt-0.3.0}/ghostbt.egg-info/requires.txt +0 -0
  32. {ghostbt-0.2.2 → ghostbt-0.3.0}/ghostbt.egg-info/top_level.txt +0 -0
  33. {ghostbt-0.2.2 → ghostbt-0.3.0}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ghostbt
3
- Version: 0.2.2
3
+ Version: 0.3.0
4
4
  Summary: Ghost Build Tool - build and package GhostESP native SD apps
5
5
  License-Expression: GPL-3.0
6
6
  Project-URL: Homepage, https://github.com/GhostESP-Revival/GhostESP
@@ -0,0 +1 @@
1
+ __version__ = "0.3.0"
@@ -494,12 +494,16 @@ typedef struct ghostesp_api {
494
494
  void (*ui_button_set_selected)(ghostesp_ui_obj_t button, bool selected);
495
495
  int32_t (*ui_screen_get_content_width)(void);
496
496
  int32_t (*ui_screen_get_content_height)(void);
497
- bool (*ui_screen_is_compact)(void);
497
+ bool (*ui_screen_is_compact)(void);
498
498
  bool (*ui_has_touchscreen)(void);
499
499
 
500
500
  bool (*wifi_live_scan_start)(void);
501
501
  void (*wifi_live_scan_stop)(void);
502
502
  bool (*wifi_live_scan_active)(void);
503
+
504
+ bool (*has_permission)(const char *permission);
505
+ bool (*has_feature)(const char *feature);
506
+ bool (*subghz_transmit_file)(const char *app_relative_path);
503
507
  } ghostesp_api_t;
504
508
 
505
509
  #define GHOSTESP_API_STRUCT_SIZE_V1 sizeof(ghostesp_api_t)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ghostbt
3
- Version: 0.2.2
3
+ Version: 0.3.0
4
4
  Summary: Ghost Build Tool - build and package GhostESP native SD apps
5
5
  License-Expression: GPL-3.0
6
6
  Project-URL: Homepage, https://github.com/GhostESP-Revival/GhostESP
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "ghostbt"
7
- version = "0.2.2"
7
+ version = "0.3.0"
8
8
  description = "Ghost Build Tool - build and package GhostESP native SD apps"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.8"
@@ -1 +0,0 @@
1
- __version__ = "0.2.2"
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