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.
- {ghostbt-0.2.2 → ghostbt-0.3.0}/PKG-INFO +1 -1
- ghostbt-0.3.0/ghostbt/__init__.py +1 -0
- {ghostbt-0.2.2 → ghostbt-0.3.0}/ghostbt/data/sdk/ghostesp_plugin_api.h +5 -1
- {ghostbt-0.2.2 → ghostbt-0.3.0}/ghostbt.egg-info/PKG-INFO +1 -1
- {ghostbt-0.2.2 → ghostbt-0.3.0}/pyproject.toml +1 -1
- ghostbt-0.2.2/ghostbt/__init__.py +0 -1
- {ghostbt-0.2.2 → ghostbt-0.3.0}/LICENSE +0 -0
- {ghostbt-0.2.2 → ghostbt-0.3.0}/README.md +0 -0
- {ghostbt-0.2.2 → ghostbt-0.3.0}/ghostbt/__main__.py +0 -0
- {ghostbt-0.2.2 → ghostbt-0.3.0}/ghostbt/asset.py +0 -0
- {ghostbt-0.2.2 → ghostbt-0.3.0}/ghostbt/build.py +0 -0
- {ghostbt-0.2.2 → ghostbt-0.3.0}/ghostbt/cli.py +0 -0
- {ghostbt-0.2.2 → ghostbt-0.3.0}/ghostbt/config.py +0 -0
- {ghostbt-0.2.2 → ghostbt-0.3.0}/ghostbt/create.py +0 -0
- {ghostbt-0.2.2 → ghostbt-0.3.0}/ghostbt/data/templates/basic_app/CMakeLists.txt +0 -0
- {ghostbt-0.2.2 → ghostbt-0.3.0}/ghostbt/data/templates/basic_app/main/CMakeLists.txt +0 -0
- {ghostbt-0.2.2 → ghostbt-0.3.0}/ghostbt/data/templates/basic_app/main/idf_component.yml +0 -0
- {ghostbt-0.2.2 → ghostbt-0.3.0}/ghostbt/data/templates/basic_app/main/{{APP_SYMBOL}}.c +0 -0
- {ghostbt-0.2.2 → ghostbt-0.3.0}/ghostbt/data/templates/basic_app/manifest.json +0 -0
- {ghostbt-0.2.2 → ghostbt-0.3.0}/ghostbt/data/templates/basic_app/sdkconfig.defaults +0 -0
- {ghostbt-0.2.2 → ghostbt-0.3.0}/ghostbt/dist.py +0 -0
- {ghostbt-0.2.2 → ghostbt-0.3.0}/ghostbt/esp_idf.py +0 -0
- {ghostbt-0.2.2 → ghostbt-0.3.0}/ghostbt/firmware.py +0 -0
- {ghostbt-0.2.2 → ghostbt-0.3.0}/ghostbt/flash.py +0 -0
- {ghostbt-0.2.2 → ghostbt-0.3.0}/ghostbt/icon.py +0 -0
- {ghostbt-0.2.2 → ghostbt-0.3.0}/ghostbt/package.py +0 -0
- {ghostbt-0.2.2 → ghostbt-0.3.0}/ghostbt/utils.py +0 -0
- {ghostbt-0.2.2 → ghostbt-0.3.0}/ghostbt.egg-info/SOURCES.txt +0 -0
- {ghostbt-0.2.2 → ghostbt-0.3.0}/ghostbt.egg-info/dependency_links.txt +0 -0
- {ghostbt-0.2.2 → ghostbt-0.3.0}/ghostbt.egg-info/entry_points.txt +0 -0
- {ghostbt-0.2.2 → ghostbt-0.3.0}/ghostbt.egg-info/requires.txt +0 -0
- {ghostbt-0.2.2 → ghostbt-0.3.0}/ghostbt.egg-info/top_level.txt +0 -0
- {ghostbt-0.2.2 → ghostbt-0.3.0}/setup.cfg +0 -0
|
@@ -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 +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
|
|
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
|