add archive manager

This commit is contained in:
lxsang
2020-06-06 18:41:00 +02:00
parent 232465f8ed
commit d20db3e0fb
13 changed files with 422 additions and 0 deletions

View 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

View 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;
}

File diff suppressed because one or more lines are too long

View 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": {}
}

View 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>

Binary file not shown.