update Syslog application + README

This commit is contained in:
DanyLE 2023-01-01 03:14:48 +01:00
parent 91dd755250
commit fb148116d9
2 changed files with 9 additions and 9 deletions

View File

@ -7,6 +7,8 @@
AntOS is a web-based desktop platform that features a window manager, application APIs, GUI toolkit, file system abstractions, application store, and an API and SDK for in-browser application development. The purpose of this project is to enable users to easily set up a self-hosted, cloud-based working environment using only a web browser. The front-end can connect to a remote server and act as a virtual desktop environment (VDE).
![https://github.com/lxsang/antos/raw/2.0.x/antos-shot.png](https://github.com/lxsang/antos/raw/2.0.x/antos-shot.png)
AntOS can be used in several application contexts, such as:
- Providing visual tools to access and control resources on remote servers and embedded Linux environments
- Providing and developing SaaS web-based applications
@ -21,8 +23,6 @@ AntOS can be used in several application contexts, such as:
With the provided application API and SDK, AntOS facilitates the development and deployment of user-specific applications inside the VDE environment
![https://github.com/lxsang/antos/raw/master/antos-shot.png](https://github.com/lxsang/antos/raw/master/antos-shot.png)
Github: [https://github.com/lxsang/antos](https://github.com/lxsang/antos)
## Demo
@ -40,9 +40,9 @@ If one want to run AntOS VDE locally in their system, a docker image is availabl
- API: [https://doc.iohub.dev/antos/api/](https://doc.iohub.dev/antos/api/)
## Change logs
* v.2.0.0
### v.2.0.0
- Work In Progress: The UI is redesigned to support mobile device
* V1.2.1
### V1.2.1
- 9b5da17 - App name now can differ from pkgname
- b381294 - fix: fix icon display problem when application is installed, remove all related settings when an application is uinstalled
- b6c90e5 - update image path in readme
@ -84,7 +84,7 @@ If one want to run AntOS VDE locally in their system, a docker image is availabl
- 52709d5 - improve Window GUI API
- 9c06d88 - AntOS load automatically custom VFS handles if available
- c23cb1b - Improve core API: - improve OS exit API - improve VFS API
* V.1.2.0 Improvement GUI API
### V.1.2.0 Improvement GUI API
- [x] File dialog should remember last opened folder
- [x] Add dynamic key-value dialog that work on any object
- [x] Window list panel should show window title in tooltip when mouse hovering on application icon

View File

@ -1,4 +1,4 @@
<afx-app-window data-id="Syslog" width='500' height='350' apptitle = "__(System error log)" >
<afx-app-window data-id="Syslog" width='600' height='450' apptitle = "__(System error log)" >
<afx-hbox>
<afx-list-view data-id = "loglist" data-width="200"> </afx-list-view>
<afx-resizer data-width = "2" ></afx-resizer>
@ -7,11 +7,11 @@
<pre><code data-id="logdetail"></code></pre>
</div>
<div data-height="10" ></div>
<afx-hbox style="text-align:right;" data-height = "27">
<afx-button data-width ="20"
<afx-hbox style="text-align:right;" data-height = "35">
<afx-button data-width ="content"
tooltip = "ct:__(Clear all logs)" iconclass = "fa fa-trash-o" data-id = "btclean" ></afx-button>
<input type = "text" data-id = "txturi" ></input>
<afx-button data-width ="80" text = "__(Report)"
<afx-button data-width ="content" text = "__(Report)"
iconclass = "fa fa-bug" data-id = "btnreport" ></afx-button>
<div data-width="10" ></div>
</afx-hbox>