mirror of
https://github.com/antos-rde/antosdk-apps.git
synced 2025-07-12 22:03:29 +02:00
update LuaPlayground + add Docify
This commit is contained in:
15
Docify/build/debug/README.md
Normal file
15
Docify/build/debug/README.md
Normal file
@ -0,0 +1,15 @@
|
||||
# Docify
|
||||
This is an example project, generated by AntOS Development Kit
|
||||
|
||||
## Howto
|
||||
Use the CodePad command palette to access to the SDK functionalities:
|
||||
|
||||
1. Create new project
|
||||
2. Init the project from the current folder located in side bar
|
||||
3. Build and run the project
|
||||
4. Release the project in zip package
|
||||
|
||||
## Set up build target
|
||||
|
||||
Open the `project.json` file from the current project tree and add/remove
|
||||
build target entries. Save the file
|
5
Docify/build/debug/main.css
Normal file
5
Docify/build/debug/main.css
Normal file
@ -0,0 +1,5 @@
|
||||
|
||||
afx-app-window[data-id = "Docify"] .header .label-text
|
||||
{
|
||||
font-weight: bold !important;
|
||||
}
|
15
Docify/build/debug/main.js
Normal file
15
Docify/build/debug/main.js
Normal file
@ -0,0 +1,15 @@
|
||||
(function() {
|
||||
var Docify;
|
||||
|
||||
Docify = class Docify extends this.OS.application.BaseApplication {
|
||||
constructor(args) {
|
||||
super("Docify", args);
|
||||
}
|
||||
|
||||
main() {}
|
||||
|
||||
};
|
||||
|
||||
this.OS.register("Docify", Docify);
|
||||
|
||||
}).call(this);
|
15
Docify/build/debug/package.json
Normal file
15
Docify/build/debug/package.json
Normal file
@ -0,0 +1,15 @@
|
||||
{
|
||||
"pkgname": "Docify",
|
||||
"app":"Docify",
|
||||
"name":"Docify",
|
||||
"description":"Docify",
|
||||
"info":{
|
||||
"author": "",
|
||||
"email": ""
|
||||
},
|
||||
"version":"0.0.1-a",
|
||||
"category":"Other",
|
||||
"iconclass":"fa fa-adn",
|
||||
"mimes":["none"],
|
||||
"locale": {}
|
||||
}
|
22
Docify/build/debug/scheme.html
Normal file
22
Docify/build/debug/scheme.html
Normal file
@ -0,0 +1,22 @@
|
||||
<afx-app-window apptitle="Docify" width="700" height="400" data-id="Docify">
|
||||
<afx-hbox >
|
||||
<div data-width="5"></div>
|
||||
<afx-vbox data-width="150">
|
||||
<afx-label class="header" iconclass = "fa fa-bars" text="__(Categories)" data-height="22"></afx-label>
|
||||
<afx-tree-view data-id="catview"></afx-tree-view>
|
||||
<afx-hbox data-height="30">
|
||||
<div data-width="5"></div>
|
||||
<afx-button data-width = "25" text = "" iconclass = "fa fa-plus-circle"></afx-button>
|
||||
<afx-button data-width = "25" text = "" iconclass = "fa fa-minus-circle"></afx-button>
|
||||
<afx-button data-width = "25" text = "" iconclass = "fa fa-pencil-square-o"></afx-button>
|
||||
|
||||
</afx-hbox>
|
||||
</afx-vbox>
|
||||
<afx-resizer data-width="4"></afx-resizer>
|
||||
<afx-vbox data-width = "300">
|
||||
<afx-grid-view data-id="gridview"></afx-grid-view>
|
||||
</afx-vbox>
|
||||
<afx-resizer data-width="4"></afx-resizer>
|
||||
<afx-vbox></afx-vbox>
|
||||
</afx-hbox>
|
||||
</afx-app-window>
|
Reference in New Issue
Block a user