mirror of
https://github.com/antos-rde/antosdk-apps.git
synced 2025-07-13 14:14:27 +02:00
add archive manager
This commit is contained in:
13
Archive/build/debug/README.md
Normal file
13
Archive/build/debug/README.md
Normal file
@ -0,0 +1,13 @@
|
||||
# Archive
|
||||
|
||||
Small application for zip file manager
|
||||
|
||||
## Features
|
||||
* Open, create zip file Archive
|
||||
* Add/remove file/folder to archive
|
||||
* Extract zip file content
|
||||
|
||||
## Changle log
|
||||
|
||||
### v0.0.1-a
|
||||
* First release
|
20
Archive/build/debug/main.css
Normal file
20
Archive/build/debug/main.css
Normal file
@ -0,0 +1,20 @@
|
||||
|
||||
afx-app-window[data-id="Archive"] afx-tree-view .afx-tree-view-folder-close:before{
|
||||
content: "\f07b";
|
||||
font-family: "FontAwesome";
|
||||
color:#76D2F9;
|
||||
font-size: 16px;
|
||||
}
|
||||
afx-app-window[data-id="Archive"] afx-tree-view .afx-tree-view-folder-open:before{
|
||||
content: "\f07c";
|
||||
font-family: "FontAwesome";
|
||||
color:#76D2F9;
|
||||
font-size: 16px;
|
||||
}
|
||||
afx-app-window[data-id="Archive"] afx-tree-view .afx-tree-view-item:before{
|
||||
content: "\f016";
|
||||
font-family: "FontAwesome";
|
||||
font-size: 16px;
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
}
|
1
Archive/build/debug/main.js
Normal file
1
Archive/build/debug/main.js
Normal file
File diff suppressed because one or more lines are too long
15
Archive/build/debug/package.json
Normal file
15
Archive/build/debug/package.json
Normal file
@ -0,0 +1,15 @@
|
||||
{
|
||||
"app":"Archive",
|
||||
"name":"Archive",
|
||||
"pkgname": "Archive",
|
||||
"description":"Create of extract zip archive",
|
||||
"info":{
|
||||
"author": "Xuan Sang LE",
|
||||
"email": "mrsang@lxsang.me"
|
||||
},
|
||||
"version":"0.0.1-a",
|
||||
"category":"Other",
|
||||
"iconclass":"fa fa-archive",
|
||||
"mimes":["application/zip"],
|
||||
"locale": {}
|
||||
}
|
17
Archive/build/debug/scheme.html
Normal file
17
Archive/build/debug/scheme.html
Normal file
@ -0,0 +1,17 @@
|
||||
<afx-app-window apptitle="Archive" width="250" height="300" data-id="Archive">
|
||||
<afx-vbox>
|
||||
<afx-tree-view data-id="filetree"></afx-tree-view>
|
||||
<div data-height="5"></div>
|
||||
<afx-hbox data-height="30">
|
||||
<div data-width="10"></div>
|
||||
<div style="text-align: left;">
|
||||
<afx-button iconclass="fa fa-plus-circle" data-id="btaradd"></afx-button>
|
||||
<afx-button iconclass="fa fa-minus-circle" data-id="btardel"></afx-button>
|
||||
</div>
|
||||
<div style="text-align: right;">
|
||||
<afx-button text="__(Extract)" data-id="btarxtract"></afx-button>
|
||||
</div>
|
||||
<div data-width="10"></div>
|
||||
</afx-hbox>
|
||||
</afx-vbox>
|
||||
</afx-app-window>
|
BIN
Archive/build/release/Archive.zip
Normal file
BIN
Archive/build/release/Archive.zip
Normal file
Binary file not shown.
Reference in New Issue
Block a user