update About

This commit is contained in:
DanyLE 2022-07-22 20:52:42 +02:00
parent 9fa5258ff6
commit 0dcfcc9afd
8 changed files with 33 additions and 4 deletions

View File

@ -4,6 +4,9 @@ This is an example project, generated by AntOS Development Kit
It is used to show the change logs of the current AntOS version It is used to show the change logs of the current AntOS version
## Change logs ## Change logs
### v0.1.1-b
* add missing css file
### v0.1.0-b ### v0.1.0-b
* Beta state, read README file from the current OS * Beta state, read README file from the current OS

View File

@ -50,7 +50,8 @@
"src": [ "src": [
"assets/scheme.html", "assets/scheme.html",
"package.json", "package.json",
"README.md" "README.md",
"css/main.css"
], ],
"dest": "build/debug" "dest": "build/debug"
} }

View File

@ -4,6 +4,9 @@ This is an example project, generated by AntOS Development Kit
It is used to show the change logs of the current AntOS version It is used to show the change logs of the current AntOS version
## Change logs ## Change logs
### v0.1.1-b
* add missing css file
### v0.1.0-b ### v0.1.0-b
* Beta state, read README file from the current OS * Beta state, read README file from the current OS

View File

@ -0,0 +1,20 @@
afx-app-window[data-id = "About"] a:link,
afx-app-window[data-id = "About"] a:visited,
afx-app-window[data-id = "About"] a:hover
{
color:#df3154;
}
afx-app-window[data-id = "About"] afx-hbox[data-id="wrapper"]
{
overflow-x: hidden;
overflow-y:auto;
}
afx-app-window[data-id = "About"] div[data-id="container"]
{
text-align: justify;
}
afx-app-window[data-id = "About"] img
{
max-width: 100%;
}

View File

@ -1,12 +1,13 @@
{ {
"app":"About", "app":"About",
"pkgname":"About",
"name":"About AntOS", "name":"About AntOS",
"description":"AntOS about", "description":"AntOS about",
"info":{ "info":{
"author": "Xuan Sang LE", "author": "Xuan Sang LE",
"email": "xsang.le@gmail.com" "email": "xsang.le@gmail.com"
}, },
"version":"0.1.0-b", "version":"0.1.1-b",
"category":"Utility", "category":"Utility",
"iconclass":"fa fa-question-circle", "iconclass":"fa fa-question-circle",
"mimes":["none"], "mimes":["none"],

Binary file not shown.

View File

@ -1,12 +1,13 @@
{ {
"app":"About", "app":"About",
"pkgname":"About",
"name":"About AntOS", "name":"About AntOS",
"description":"AntOS about", "description":"AntOS about",
"info":{ "info":{
"author": "Xuan Sang LE", "author": "Xuan Sang LE",
"email": "xsang.le@gmail.com" "email": "xsang.le@gmail.com"
}, },
"version":"0.1.0-b", "version":"0.1.1-b",
"category":"Utility", "category":"Utility",
"iconclass":"fa fa-question-circle", "iconclass":"fa fa-question-circle",
"mimes":["none"], "mimes":["none"],

View File

@ -5,7 +5,7 @@
"description": "https://raw.githubusercontent.com/lxsang/antosdk-apps/master/About/README.md", "description": "https://raw.githubusercontent.com/lxsang/antosdk-apps/master/About/README.md",
"category": "Utility", "category": "Utility",
"author": "Xuan Sang LE", "author": "Xuan Sang LE",
"version": "0.1.0-b", "version": "0.1.1-b",
"dependencies": [], "dependencies": [],
"download": "https://raw.githubusercontent.com/lxsang/antosdk-apps/master/About/build/release/About.zip" "download": "https://raw.githubusercontent.com/lxsang/antosdk-apps/master/About/build/release/About.zip"
}, },