-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #65 from KaruroChori/v0.1.2
Merging out of tree work for v0.1.3
- Loading branch information
Showing
47 changed files
with
627 additions
and
836 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,64 +1,29 @@ | ||
## v0.1.1-alpha | ||
## v0.1.3-alpha | ||
|
||
This first alpha release is not meant to be usable in real-world scenarios, and documentation will not be there yet for the most part. | ||
The main objective is to implement & test most of the pipelines needed to: | ||
This second alpha release is still not usable in real-world scenarios, yet some simple and somewhat useful demos should be achievable. | ||
|
||
- build `vs` | ||
- install it | ||
- the generation of its flatpak image | ||
The main objectives for this release are: | ||
|
||
Still, `vs` is somewhat usable as a technical preview. | ||
For now, the building pipeline is not well documented, and it can be hard to replicate. | ||
Also, installing it on most distributions might cause issues with your past or future dependencies. | ||
You should be able to try it out via flatpak and the docker image provided by @andy5995. | ||
I am seeking feedback, so you are very welcome to test it along! | ||
|
||
For reference, you can check what is the [intended scope](./README.md) of this project in terms of future developments and expected features. | ||
The [milestone](./MILESTONES.md) page also contains some related information. | ||
- To improve the build system moving it to a separate repo. | ||
- To introduce a wider range of fltk widgets. | ||
- Complete the revised code-generation of widgets | ||
- Better serialization/de-serialization of XML props & revised getters/setters | ||
|
||
### What's new? | ||
|
||
This is what has been implemented so far (and some missing feature for context): | ||
|
||
- Basic CLI features for the command `vs`. These are not expected to change for quite a while. | ||
- Code generation infrastructure for fltk components and derived schemas. | ||
- Infrastructure to handle the user sqlite database with proper schemas and migration. | ||
- A small set of components from fltk being exposed, like buttons, labels, windows etc. | ||
- Several features of `vs` exposed as XML elements: | ||
- [x] `mixin` | ||
- [x] embedded `script` | ||
- [ ] embedded `policies` | ||
- [x] `namespace` | ||
- [x] `import` | ||
- [x] `use` | ||
- [ ] caching directives | ||
- [ ] dynamic data | ||
- Basic XML builder (no full caching, no multithreading) | ||
- Templating engine for vs components. Integration is complete, but there is ongoing work tracked in a [separate repo](https://github.com/KaruroChori/vs-templ) | ||
- Embedded scripts: | ||
- Support for `c` via tcc | ||
- [x] Modules | ||
- [x] Callbacks | ||
- [x] Props | ||
- [ ] Computed | ||
- [x] Dispatcher | ||
- [ ] Setters/getters | ||
- [ ] FFI to external libraries | ||
- [x] Debug interface | ||
- Support for `js` via quickjs | ||
- [ ] Modules | ||
- [x] Callbacks | ||
- [x] Props | ||
- [ ] Computed | ||
- [ ] Dispatcher | ||
- [ ] Setters/getters | ||
- [ ] FFI to external libraries | ||
- [x] Debug interface | ||
- Very early and limited c bindings for `vs.fltk`, mostly for testing purposes. | ||
- A simple in-memory caching for files, compiled scripts & parsed XML trees. | ||
The more complex sqlite cache is yet to be implemented in code. | ||
- An early (partial) implementation of policies and coarse-grained flags as a temporary stopgap. | ||
- Install process mostly implemented in meson (the pre-build codegen step will stay in typescript). | ||
- Functional flatpak build | ||
- A docker image for development | ||
- Initial CI integrations | ||
- [ ] Improvements to the build system | ||
|
||
- [ ] migration of distribution-related features to [external repo]() | ||
- [ ] fix linking to follow https://github.com/KaruroChori/vs-fltk/issues/63 | ||
- [ ] debian and arch packages are now supported | ||
- [ ] install script can be now be safely used | ||
|
||
- [ ] New widgets & improvements | ||
|
||
- [ ] Updated code-gen | ||
|
||
- [ ] Updated core features | ||
- [x] Removed most of the globals | ||
- [x] Reworked `ui_tree` interface to be more generic and not only viable for xml trees. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
- [ ] Restore vs_debug | ||
- [ ] Allow http only withou libcurl via https://github.com/lazy-eggplant/libhttp | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
#pragma once | ||
#include "vs.h" | ||
char* itoa(int value, char* result, int base); | ||
|
||
void* vs_set_env(void* ptr); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.