-fixed issue I've been dealing with concerning untagged apps
- they now show up as 'untagged' - centered dropdown icon on tag headers - added example for custom cards - highlighted that HTML can now be used in the description field for apps. - added sidebar_icon for all template apps, because if it's blank now, it doesnt show up on the sidebar.
This commit is contained in:
parent
ea5aa4f04c
commit
15395d0f8d
@ -75,6 +75,8 @@ def process_css_sources(process_bundle=None, src=None, app_global=False):
|
|||||||
|
|
||||||
|
|
||||||
def tag_sort_func(e):
|
def tag_sort_func(e):
|
||||||
|
if not e.sort_pos:
|
||||||
|
e.sort_pos = 99999
|
||||||
return e.sort_pos
|
return e.sort_pos
|
||||||
|
|
||||||
|
|
||||||
|
@ -53,7 +53,7 @@
|
|||||||
<i class="material-icons-outlined mr-2 theme-primary-text" style="position: relative; top: .2rem">{{ tag.icon }}</i>
|
<i class="material-icons-outlined mr-2 theme-primary-text" style="position: relative; top: .2rem">{{ tag.icon }}</i>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{{ tag.name }}
|
{{ tag.name }}
|
||||||
<i class="material-icons-outlined theme-secondary-text icon-btn toggle-tag-expand-btn right" data-expanded="true">keyboard_arrow_up</i>
|
<i class="material-icons-outlined theme-secondary-text icon-btn toggle-tag-expand-btn right" data-expanded="true" style="position: relative; bottom: 5px">keyboard_arrow_up</i>
|
||||||
</h5>
|
</h5>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
version = "v0.5"
|
version = "v0.5"
|
||||||
revision_number = "2"
|
revision_number = "3"
|
||||||
|
@ -22,7 +22,7 @@ groups = admin_only
|
|||||||
| open_in | Yes | open the app in the current tab, an iframe or a new tab | iframe, new_tab, this_tab |
|
| open_in | Yes | open the app in the current tab, an iframe or a new tab | iframe, new_tab, this_tab |
|
||||||
| icon | Yes | Icon for the dashboard. | /static/images/icons/yourpicture.png, external link to image |
|
| icon | Yes | Icon for the dashboard. | /static/images/icons/yourpicture.png, external link to image |
|
||||||
| sidebar_icon | No | Icon for the sidenav. | /static/images/icons/yourpicture.png, external link to image |
|
| sidebar_icon | No | Icon for the sidenav. | /static/images/icons/yourpicture.png, external link to image |
|
||||||
| description | No | A short description for the app. | string |
|
| description | No | A short description for the app. | HTML |
|
||||||
| data_sources | No | Data sources to be included on the app's card.*Note: you must have a data source set up in the config above this application entry. | comma separated string |
|
| data_sources | No | Data sources to be included on the app's card.*Note: you must have a data source set up in the config above this application entry. | comma separated string |
|
||||||
| tags | No | Optionally specify tags for organization on /home | comma separated string |
|
| tags | No | Optionally specify tags for organization on /home | comma separated string |
|
||||||
| groups | No | Optionally specify the access groups that can see this app. | comma separated string |
|
| groups | No | Optionally specify the access groups that can see this app. | comma separated string |
|
||||||
@ -60,3 +60,17 @@ data_sources = my_data_source
|
|||||||
| data_sources | Yes | What data sources to display on the card. | comma separated string |
|
| data_sources | Yes | What data sources to display on the card. | comma separated string |
|
||||||
| tags | No | Optionally specify tags for organization on /home | comma separated string |
|
| tags | No | Optionally specify tags for organization on /home | comma separated string |
|
||||||
| groups | No | Optionally specify the access groups that can see this app. | comma separated string |
|
| groups | No | Optionally specify the access groups that can see this app. | comma separated string |
|
||||||
|
|
||||||
|
|
||||||
|
> **Working example:**
|
||||||
|
>```ini
|
||||||
|
>[test]
|
||||||
|
>platform = curl
|
||||||
|
>resource = https://api.myip.com
|
||||||
|
>value_template = <div class="row center-align"><div class="col s12"><h5><i class="material-icons-outlined" style="position:relative; top: 4px;">dns</i> My IP Address</h5><span class="theme-primary-text">{{value.ip}}</span></div></div>
|
||||||
|
>response_type = json
|
||||||
|
>
|
||||||
|
>[MyIp.com]
|
||||||
|
>type = custom
|
||||||
|
>data_sources = test
|
||||||
|
>```
|
@ -2,5 +2,6 @@
|
|||||||
prefix = https://
|
prefix = https://
|
||||||
url = your-website.com
|
url = your-website.com
|
||||||
icon = static/images/apps/airsonic.png
|
icon = static/images/apps/airsonic.png
|
||||||
|
sidebar_icon = static/images/apps/airsonic.png
|
||||||
description = A Free and Open Source community driven media server
|
description = A Free and Open Source community driven media server
|
||||||
open_in = this_tab
|
open_in = this_tab
|
||||||
|
@ -2,5 +2,6 @@
|
|||||||
prefix = https://
|
prefix = https://
|
||||||
url = your-website.com
|
url = your-website.com
|
||||||
icon = static/images/apps/bazarr.png
|
icon = static/images/apps/bazarr.png
|
||||||
|
sidebar_icon = static/images/apps/bazarr.png
|
||||||
description = A companion application to Sonarr and Radarr
|
description = A companion application to Sonarr and Radarr
|
||||||
open_in = this_tab
|
open_in = this_tab
|
||||||
|
@ -2,5 +2,6 @@
|
|||||||
prefix = https://
|
prefix = https://
|
||||||
url = your-website.com
|
url = your-website.com
|
||||||
icon = static/images/apps/bitwarden.png
|
icon = static/images/apps/bitwarden.png
|
||||||
|
sidebar_icon = static/images/apps/bitwarden.png
|
||||||
description = A free and open-source password management service
|
description = A free and open-source password management service
|
||||||
open_in = this_tab
|
open_in = this_tab
|
||||||
|
@ -2,5 +2,6 @@
|
|||||||
prefix = https://
|
prefix = https://
|
||||||
url = your-website.com
|
url = your-website.com
|
||||||
icon = static/images/apps/calibre-web.png
|
icon = static/images/apps/calibre-web.png
|
||||||
|
sidebar_icon = static/images/apps/calibre-web.png
|
||||||
description = Calibre-Web is a web app providing a clean interface for browsing, reading and downloading eBooks using an existing Calibre database.
|
description = Calibre-Web is a web app providing a clean interface for browsing, reading and downloading eBooks using an existing Calibre database.
|
||||||
open_in = this_tab
|
open_in = this_tab
|
@ -2,5 +2,6 @@
|
|||||||
prefix = https://
|
prefix = https://
|
||||||
url = your-website.com
|
url = your-website.com
|
||||||
icon = static/images/apps/cockpit-project.png
|
icon = static/images/apps/cockpit-project.png
|
||||||
|
sidebar_icon = static/images/apps/cockpit-project.png
|
||||||
description = An interactive server admin interface
|
description = An interactive server admin interface
|
||||||
open_in = iframe
|
open_in = iframe
|
@ -5,6 +5,7 @@
|
|||||||
prefix = https://
|
prefix = https://
|
||||||
url = your-website.com
|
url = your-website.com
|
||||||
icon = static/images/apps/deluge.png
|
icon = static/images/apps/deluge.png
|
||||||
|
sidebar_icon = static/images/apps/deluge.png
|
||||||
description = Deluge is a lightweight, Free Software, cross-platform BitTorrent client
|
description = Deluge is a lightweight, Free Software, cross-platform BitTorrent client
|
||||||
open_in = this_tab
|
open_in = this_tab
|
||||||
|
|
||||||
|
@ -2,5 +2,6 @@
|
|||||||
prefix = https://
|
prefix = https://
|
||||||
url = your-website.com
|
url = your-website.com
|
||||||
icon = static/images/apps/dokuwiki.png
|
icon = static/images/apps/dokuwiki.png
|
||||||
|
sidebar_icon = static/images/apps/dokuwiki.png
|
||||||
description = DokuWiki is a simple to use and highly versatile Open Source wiki software that does not require a database.
|
description = DokuWiki is a simple to use and highly versatile Open Source wiki software that does not require a database.
|
||||||
open_in = this_tab
|
open_in = this_tab
|
@ -2,5 +2,6 @@
|
|||||||
prefix = https://
|
prefix = https://
|
||||||
url = your-website.com
|
url = your-website.com
|
||||||
icon = static/images/apps/duplicati.png
|
icon = static/images/apps/duplicati.png
|
||||||
|
sidebar_icon = static/images/apps/duplicati.png
|
||||||
description = Free backup software to store encrypted backups online
|
description = Free backup software to store encrypted backups online
|
||||||
open_in = this_tab
|
open_in = this_tab
|
@ -2,5 +2,6 @@
|
|||||||
prefix = https://
|
prefix = https://
|
||||||
url = your-website.com
|
url = your-website.com
|
||||||
icon = static/images/apps/emby.png
|
icon = static/images/apps/emby.png
|
||||||
|
sidebar_icon = static/images/apps/emby.png
|
||||||
description = Emby Server is a personal media server with apps on just about every device
|
description = Emby Server is a personal media server with apps on just about every device
|
||||||
open_in = this_tab
|
open_in = this_tab
|
||||||
|
@ -2,5 +2,6 @@
|
|||||||
prefix = https://
|
prefix = https://
|
||||||
url = your-website.com
|
url = your-website.com
|
||||||
icon = static/images/apps/firefly_iii.png
|
icon = static/images/apps/firefly_iii.png
|
||||||
|
sidebar_icon = static/images/apps/firefly_iii.png
|
||||||
description = Firefly III is a self-hosted financial manager. It can help you keep track of expenses, income, budgets and everything in between.
|
description = Firefly III is a self-hosted financial manager. It can help you keep track of expenses, income, budgets and everything in between.
|
||||||
open_in = this_tab
|
open_in = this_tab
|
||||||
|
@ -2,5 +2,6 @@
|
|||||||
prefix = https://
|
prefix = https://
|
||||||
url = your-website.com
|
url = your-website.com
|
||||||
icon = static/images/apps/gitea.png
|
icon = static/images/apps/gitea.png
|
||||||
|
sidebar_icon = static/images/apps/gitea.png
|
||||||
description = A painless self-hosted Git service
|
description = A painless self-hosted Git service
|
||||||
open_in = this_tab
|
open_in = this_tab
|
||||||
|
@ -2,5 +2,6 @@
|
|||||||
prefix = https://
|
prefix = https://
|
||||||
url = your-website.com
|
url = your-website.com
|
||||||
icon = static/images/apps/glances.png
|
icon = static/images/apps/glances.png
|
||||||
|
sidebar_icon = static/images/apps/glances.png
|
||||||
description = A cross-platform system monitoring tool
|
description = A cross-platform system monitoring tool
|
||||||
open_in = this_tab
|
open_in = this_tab
|
||||||
|
@ -2,5 +2,6 @@
|
|||||||
prefix = https://
|
prefix = https://
|
||||||
url = your-website.com
|
url = your-website.com
|
||||||
icon = static/images/apps/gotify.png
|
icon = static/images/apps/gotify.png
|
||||||
|
sidebar_icon = static/images/apps/gotify.png
|
||||||
description = A simple server for sending and receiving messages
|
description = A simple server for sending and receiving messages
|
||||||
open_in = this_tab
|
open_in = this_tab
|
||||||
|
@ -2,5 +2,6 @@
|
|||||||
prefix = https://
|
prefix = https://
|
||||||
url = your-website.com
|
url = your-website.com
|
||||||
icon = static/images/apps/grafana.png
|
icon = static/images/apps/grafana.png
|
||||||
|
sidebar_icon = static/images/apps/grafana.png
|
||||||
description = The open observability platform
|
description = The open observability platform
|
||||||
open_in = this_tab
|
open_in = this_tab
|
||||||
|
@ -2,5 +2,6 @@
|
|||||||
prefix = https://
|
prefix = https://
|
||||||
url = your-website.com
|
url = your-website.com
|
||||||
icon = static/images/apps/home-assistant.png
|
icon = static/images/apps/home-assistant.png
|
||||||
|
sidebar_icon = static/images/apps/home-assistant.png
|
||||||
description = Open source home automation that puts local control and privacy first
|
description = Open source home automation that puts local control and privacy first
|
||||||
open_in = this_tab
|
open_in = this_tab
|
||||||
|
@ -2,5 +2,6 @@
|
|||||||
prefix = https://
|
prefix = https://
|
||||||
url = your-website.com
|
url = your-website.com
|
||||||
icon = static/images/apps/jdownloader.png
|
icon = static/images/apps/jdownloader.png
|
||||||
|
sidebar_icon = static/images/apps/jdownloader.png
|
||||||
description = A download manager written in Java
|
description = A download manager written in Java
|
||||||
open_in = iframe
|
open_in = iframe
|
@ -2,5 +2,6 @@
|
|||||||
prefix = https://
|
prefix = https://
|
||||||
url = your-website.com
|
url = your-website.com
|
||||||
icon = static/images/apps/jackett.png
|
icon = static/images/apps/jackett.png
|
||||||
|
sidebar_icon = static/images/apps/jackett.png
|
||||||
description = API Support for your favorite torrent trackers
|
description = API Support for your favorite torrent trackers
|
||||||
open_in = this_tab
|
open_in = this_tab
|
||||||
|
@ -2,5 +2,6 @@
|
|||||||
prefix = https://
|
prefix = https://
|
||||||
url = your-website.com
|
url = your-website.com
|
||||||
icon = static/images/apps/jellyfin.png
|
icon = static/images/apps/jellyfin.png
|
||||||
|
sidebar_icon = static/images/apps/jellyfin.png
|
||||||
description = The Free Software Media System
|
description = The Free Software Media System
|
||||||
open_in = this_tab
|
open_in = this_tab
|
||||||
|
@ -2,5 +2,6 @@
|
|||||||
prefix = https://
|
prefix = https://
|
||||||
url = your-website.com
|
url = your-website.com
|
||||||
icon = static/images/apps/krusader.png
|
icon = static/images/apps/krusader.png
|
||||||
|
sidebar_icon = static/images/apps/krusader.png
|
||||||
description = Twin panel file management for your desktop
|
description = Twin panel file management for your desktop
|
||||||
open_in = iframe
|
open_in = iframe
|
@ -2,5 +2,6 @@
|
|||||||
prefix = https://
|
prefix = https://
|
||||||
url = your-website.com
|
url = your-website.com
|
||||||
icon = static/images/apps/lidarr.png
|
icon = static/images/apps/lidarr.png
|
||||||
|
sidebar_icon = static/images/apps/lidarr.png
|
||||||
description = Looks and smells like Sonarr but made for music
|
description = Looks and smells like Sonarr but made for music
|
||||||
open_in = this_tab
|
open_in = this_tab
|
||||||
|
@ -2,5 +2,6 @@
|
|||||||
prefix = https://
|
prefix = https://
|
||||||
url = your-website.com
|
url = your-website.com
|
||||||
icon = static/images/apps/mailcow.png
|
icon = static/images/apps/mailcow.png
|
||||||
|
sidebar_icon = static/images/apps/mailcow.png
|
||||||
description = mailcow is a mail server suite based on Dovecot, Postfix and other open source software, that provides a modern web UI for user/server administration.
|
description = mailcow is a mail server suite based on Dovecot, Postfix and other open source software, that provides a modern web UI for user/server administration.
|
||||||
open_in = this_tab
|
open_in = this_tab
|
||||||
|
@ -2,5 +2,6 @@
|
|||||||
prefix = https://
|
prefix = https://
|
||||||
url = your-website.com
|
url = your-website.com
|
||||||
icon = static/images/apps/nextcloud.png
|
icon = static/images/apps/nextcloud.png
|
||||||
|
sidebar_icon = static/images/apps/nextcloud.png
|
||||||
description = A safe home for all your data – community-driven, free & open source
|
description = A safe home for all your data – community-driven, free & open source
|
||||||
open_in = this_tab
|
open_in = this_tab
|
||||||
|
@ -2,5 +2,6 @@
|
|||||||
prefix = https://
|
prefix = https://
|
||||||
url = your-website.com
|
url = your-website.com
|
||||||
icon = static/images/apps/nginxproxymanager.png
|
icon = static/images/apps/nginxproxymanager.png
|
||||||
|
sidebar_icon = static/images/apps/nginxproxymanager.png
|
||||||
description = Docker container for managing Nginx proxy hosts with a simple, powerful interface
|
description = Docker container for managing Nginx proxy hosts with a simple, powerful interface
|
||||||
open_in = this_tab
|
open_in = this_tab
|
||||||
|
@ -2,5 +2,6 @@
|
|||||||
prefix = https://
|
prefix = https://
|
||||||
url = your-website.com
|
url = your-website.com
|
||||||
icon = static/images/apps/nodered.png
|
icon = static/images/apps/nodered.png
|
||||||
|
sidebar_icon = static/images/apps/nodered.png
|
||||||
description = Node-RED is a programming tool for wiring together hardware devices, APIs and online services in new and interesting ways.
|
description = Node-RED is a programming tool for wiring together hardware devices, APIs and online services in new and interesting ways.
|
||||||
open_in = this_tab
|
open_in = this_tab
|
||||||
|
@ -2,5 +2,6 @@
|
|||||||
prefix = https://
|
prefix = https://
|
||||||
url = your-website.com
|
url = your-website.com
|
||||||
icon = static/images/apps/ombi.png
|
icon = static/images/apps/ombi.png
|
||||||
|
sidebar_icon = static/images/apps/ombi.png
|
||||||
description = Want a Movie or TV Show on Plex or Emby? Use Ombi!
|
description = Want a Movie or TV Show on Plex or Emby? Use Ombi!
|
||||||
open_in = this_tab
|
open_in = this_tab
|
||||||
|
@ -2,5 +2,6 @@
|
|||||||
prefix = https://
|
prefix = https://
|
||||||
url = your-website.com
|
url = your-website.com
|
||||||
icon = static/images/apps/openmediavault.png
|
icon = static/images/apps/openmediavault.png
|
||||||
|
sidebar_icon = static/images/apps/openmediavault.png
|
||||||
description = OpenMediaVault is the next generation network attached storage (NAS) solution based on Debian Linux.
|
description = OpenMediaVault is the next generation network attached storage (NAS) solution based on Debian Linux.
|
||||||
open_in = this_tab
|
open_in = this_tab
|
@ -2,5 +2,6 @@
|
|||||||
prefix = https://
|
prefix = https://
|
||||||
url = your-website.com
|
url = your-website.com
|
||||||
icon = static/images/apps/plex.png
|
icon = static/images/apps/plex.png
|
||||||
|
sidebar_icon = static/images/apps/plex.png
|
||||||
description = Plex is a client–server media player system and software suite.
|
description = Plex is a client–server media player system and software suite.
|
||||||
open_in = this_tab
|
open_in = this_tab
|
||||||
|
@ -2,5 +2,6 @@
|
|||||||
prefix = https://
|
prefix = https://
|
||||||
url = your-website.com
|
url = your-website.com
|
||||||
icon = static/images/apps/portainer.png
|
icon = static/images/apps/portainer.png
|
||||||
|
sidebar_icon = static/images/apps/portainer.png
|
||||||
description = Making Docker management easy
|
description = Making Docker management easy
|
||||||
open_in = this_tab
|
open_in = this_tab
|
||||||
|
@ -2,5 +2,6 @@
|
|||||||
prefix = https://
|
prefix = https://
|
||||||
url = your-website.com
|
url = your-website.com
|
||||||
icon = static/images/apps/proxmox.png
|
icon = static/images/apps/proxmox.png
|
||||||
|
sidebar_icon = static/images/apps/proxmox.png
|
||||||
description = Proxmox VE is a complete open-source platform for enterprise virtualization.
|
description = Proxmox VE is a complete open-source platform for enterprise virtualization.
|
||||||
open_in = this_tab
|
open_in = this_tab
|
@ -2,5 +2,6 @@
|
|||||||
prefix = https://
|
prefix = https://
|
||||||
url = your-website.com
|
url = your-website.com
|
||||||
icon = static/images/apps/radarr.png
|
icon = static/images/apps/radarr.png
|
||||||
|
sidebar_icon = static/images/apps/radarr.png
|
||||||
description = A fork of Sonarr to work with movies à la Couchpotato
|
description = A fork of Sonarr to work with movies à la Couchpotato
|
||||||
open_in = this_tab
|
open_in = this_tab
|
||||||
|
@ -2,5 +2,6 @@
|
|||||||
prefix = https://
|
prefix = https://
|
||||||
url = your-website.com
|
url = your-website.com
|
||||||
icon = static/images/apps/riot.png
|
icon = static/images/apps/riot.png
|
||||||
|
sidebar_icon = static/images/apps/riot.png
|
||||||
description = A glossy Matrix collaboration client for the web
|
description = A glossy Matrix collaboration client for the web
|
||||||
open_in = this_tab
|
open_in = this_tab
|
||||||
|
@ -2,5 +2,6 @@
|
|||||||
prefix = https://
|
prefix = https://
|
||||||
url = your-website.com
|
url = your-website.com
|
||||||
icon = static/images/apps/terminal.png
|
icon = static/images/apps/terminal.png
|
||||||
|
sidebar_icon = static/images/apps/terminal.png
|
||||||
description = SSH, terminal, shell, shellinabox
|
description = SSH, terminal, shell, shellinabox
|
||||||
open_in = this_tab
|
open_in = this_tab
|
||||||
|
@ -2,5 +2,6 @@
|
|||||||
prefix = https://
|
prefix = https://
|
||||||
url = your-website.com
|
url = your-website.com
|
||||||
icon = static/images/apps/sonarr.png
|
icon = static/images/apps/sonarr.png
|
||||||
|
sidebar_icon = static/images/apps/sonarr.png
|
||||||
description = Smart PVR for newsgroup and bittorrent users
|
description = Smart PVR for newsgroup and bittorrent users
|
||||||
open_in = this_tab
|
open_in = this_tab
|
||||||
|
@ -2,5 +2,6 @@
|
|||||||
prefix = https://
|
prefix = https://
|
||||||
url = your-website.com
|
url = your-website.com
|
||||||
icon = static/images/apps/Syncthing.png
|
icon = static/images/apps/Syncthing.png
|
||||||
|
sidebar_icon = static/images/apps/Syncthing.png
|
||||||
description = Open Source Continuous File Synchronization
|
description = Open Source Continuous File Synchronization
|
||||||
open_in = this_tab
|
open_in = this_tab
|
||||||
|
@ -2,5 +2,6 @@
|
|||||||
prefix = https://
|
prefix = https://
|
||||||
url = your-website.com
|
url = your-website.com
|
||||||
icon = static/images/apps/tasmoadmin.png
|
icon = static/images/apps/tasmoadmin.png
|
||||||
|
sidebar_icon = static/images/apps/tasmoadmin.png
|
||||||
description = Website to manage Sonoff Devices flashed with Tasmota
|
description = Website to manage Sonoff Devices flashed with Tasmota
|
||||||
open_in = this_tab
|
open_in = this_tab
|
||||||
|
@ -2,5 +2,6 @@
|
|||||||
prefix = https://
|
prefix = https://
|
||||||
url = your-website.com
|
url = your-website.com
|
||||||
icon = static/images/apps/tautulli.png
|
icon = static/images/apps/tautulli.png
|
||||||
|
sidebar_icon = static/images/apps/tautulli.png
|
||||||
description = A Python based monitoring and tracking tool for Plex Media Server
|
description = A Python based monitoring and tracking tool for Plex Media Server
|
||||||
open_in = this_tab
|
open_in = this_tab
|
||||||
|
@ -2,5 +2,6 @@
|
|||||||
prefix = https://
|
prefix = https://
|
||||||
url = your-website.com
|
url = your-website.com
|
||||||
icon = static/images/apps/thelounge.png
|
icon = static/images/apps/thelounge.png
|
||||||
|
sidebar_icon = static/images/apps/thelounge.png
|
||||||
description = Modern, responsive, cross-platform, self-hosted web IRC client
|
description = Modern, responsive, cross-platform, self-hosted web IRC client
|
||||||
open_in = this_tab
|
open_in = this_tab
|
||||||
|
@ -2,5 +2,6 @@
|
|||||||
prefix = https://
|
prefix = https://
|
||||||
url = your-website.com
|
url = your-website.com
|
||||||
icon = static/images/apps/traefik.png
|
icon = static/images/apps/traefik.png
|
||||||
|
sidebar_icon = static/images/apps/traefik.png
|
||||||
description = The Cloud Native Edge Router
|
description = The Cloud Native Edge Router
|
||||||
open_in = this_tab
|
open_in = this_tab
|
||||||
|
@ -2,5 +2,6 @@
|
|||||||
prefix = https://
|
prefix = https://
|
||||||
url = your-website.com
|
url = your-website.com
|
||||||
icon = static/images/apps/transmission.png
|
icon = static/images/apps/transmission.png
|
||||||
|
sidebar_icon = static/images/apps/transmission.png
|
||||||
description = A Fast, Easy, and Free BitTorrent Client
|
description = A Fast, Easy, and Free BitTorrent Client
|
||||||
open_in = this_tab
|
open_in = this_tab
|
||||||
|
@ -2,5 +2,6 @@
|
|||||||
prefix = https://
|
prefix = https://
|
||||||
url = your-website.com
|
url = your-website.com
|
||||||
icon = static/images/apps/unifi.png
|
icon = static/images/apps/unifi.png
|
||||||
|
sidebar_icon = static/images/apps/unifi.png
|
||||||
description = The UniFi® Controller is a wireless network management software solution from Ubiquiti Networks™. It allows you to manage multiple wireless networks using a web browser.
|
description = The UniFi® Controller is a wireless network management software solution from Ubiquiti Networks™. It allows you to manage multiple wireless networks using a web browser.
|
||||||
open_in = this_tab
|
open_in = this_tab
|
||||||
|
@ -2,5 +2,6 @@
|
|||||||
prefix = https://
|
prefix = https://
|
||||||
url = your-website.com
|
url = your-website.com
|
||||||
icon = static/images/apps/vscode.png
|
icon = static/images/apps/vscode.png
|
||||||
|
sidebar_icon = static/images/apps/vscode.png
|
||||||
description = A code editor redefined and optimized for building and debugging modern web and cloud applications
|
description = A code editor redefined and optimized for building and debugging modern web and cloud applications
|
||||||
open_in = this_tab
|
open_in = this_tab
|
||||||
|
@ -2,5 +2,6 @@
|
|||||||
prefix = https://
|
prefix = https://
|
||||||
url = your-website.com
|
url = your-website.com
|
||||||
icon = static/images/apps/wikijs.png
|
icon = static/images/apps/wikijs.png
|
||||||
|
sidebar_icon = static/images/apps/wikijs.png
|
||||||
description = A modern, lightweight and powerful wiki app built on Node.js
|
description = A modern, lightweight and powerful wiki app built on Node.js
|
||||||
open_in = this_tab
|
open_in = this_tab
|
||||||
|
@ -2,5 +2,6 @@
|
|||||||
prefix = https://
|
prefix = https://
|
||||||
url = your-website.com
|
url = your-website.com
|
||||||
icon = static/images/apps/qbittorrent.png
|
icon = static/images/apps/qbittorrent.png
|
||||||
|
sidebar_icon = static/images/apps/qbittorrent.png
|
||||||
description = A BitTorrent client in Qt
|
description = A BitTorrent client in Qt
|
||||||
open_in = iframe
|
open_in = iframe
|
||||||
|
Loading…
x
Reference in New Issue
Block a user