diff --git a/meta/plugins/__init__.py b/meta/plugins/__init__.py deleted file mode 100644 index 1834529..0000000 --- a/meta/plugins/__init__.py +++ /dev/null @@ -1,5 +0,0 @@ -from cutekit import ensure - -ensure((0, 8, 0)) - -from . import tools # noqa E402, F401: Needed for side effect diff --git a/meta/plugins/requirements.txt b/meta/plugins/requirements.txt index 12b63eb..c4275bc 100644 --- a/meta/plugins/requirements.txt +++ b/meta/plugins/requirements.txt @@ -1,2 +1 @@ -python-magic ~= 0.4.27 git+https://github.com/cute-engineering/cutekit.git@0.7.3 diff --git a/src/vaev/main.cpp b/src/vaev/main.cpp index 9b7cce5..8f2ebf3 100644 --- a/src/vaev/main.cpp +++ b/src/vaev/main.cpp @@ -2,7 +2,7 @@ #include #include -#include "../app.h" +#include "app.h" Async::Task<> entryPointAsync(Sys::Context &ctx) { auto args = Sys::useArgs(ctx); diff --git a/src/vaev/main/manifest.json b/src/vaev/main/manifest.json index fff5002..31785cc 100644 --- a/src/vaev/main/manifest.json +++ b/src/vaev/main/manifest.json @@ -6,6 +6,9 @@ }, "type": "exe", "requires": [ - "hideo-browser" + "hideo-base", + "vaev-html", + "vaev-xml", + "vaev-view" ] } diff --git a/src/vaev/manifest.json b/src/vaev/manifest.json index 814e56e..60f1378 100644 --- a/src/vaev/manifest.json +++ b/src/vaev/manifest.json @@ -2,11 +2,11 @@ "$schema": "https://schemas.cute.engineering/stable/cutekit.manifest.component.v1", "id": "vaev", "description": "Vaev's frontend", - "props": { - "cpp-excluded": true - }, "type": "exe", "requires": [ - "hideo-browser" + "hideo-base", + "vaev-html", + "vaev-xml", + "vaev-view" ] }