Add plugin metadata and icon

This commit is contained in:
Mikei386
2026-06-23 09:31:34 +02:00
parent d81fa7cef7
commit 8717bbc7da
7 changed files with 37 additions and 8 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
set -eu
PLUGIN="u-navigator"
VERSION="2026.06.23.r015"
VERSION="2026.06.23.r016"
PKG_DIR="packages"
WORK_DIR=".plugin-build"
PKG_NAME="${PLUGIN}-${VERSION}.tgz"
Binary file not shown.
Binary file not shown.
@@ -1,6 +1,6 @@
Menu="Tools"
Title="U-Navigator"
Icon="folder-open"
Icon="u-navigator/images/u-navigator.svg"
---
<?PHP
$plugin = "u-navigator";
@@ -0,0 +1,19 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" role="img" aria-label="U-Navigator">
<defs>
<linearGradient id="folder" x1="12" y1="14" x2="52" y2="54" gradientUnits="userSpaceOnUse">
<stop stop-color="#ff9b4f"/>
<stop offset="1" stop-color="#e86f2d"/>
</linearGradient>
<linearGradient id="page" x1="29" y1="20" x2="47" y2="46" gradientUnits="userSpaceOnUse">
<stop stop-color="#ffffff"/>
<stop offset="1" stop-color="#e9eef3"/>
</linearGradient>
</defs>
<rect width="64" height="64" rx="14" fill="#171b20"/>
<path d="M10 22.5c0-3 2.4-5.5 5.5-5.5h9.2c1.7 0 3.2.8 4.1 2.1l2 2.9h17.7c3 0 5.5 2.4 5.5 5.5v20c0 3-2.4 5.5-5.5 5.5h-33c-3 0-5.5-2.4-5.5-5.5v-25z" fill="url(#folder)"/>
<path d="M11 27h42v20.5c0 2.5-2 4.5-4.5 4.5h-33c-2.5 0-4.5-2-4.5-4.5V27z" fill="#f0782f"/>
<path d="M29 18.5h13l8 8V45c0 2-1.6 3.5-3.5 3.5h-17c-2 0-3.5-1.6-3.5-3.5V22c0-2 1.6-3.5 3.5-3.5z" fill="url(#page)" stroke="#c9d3dc"/>
<path d="M42 18.5v6c0 1.1.9 2 2 2h6" fill="#dce5ee"/>
<path d="M31 31h13M31 36h14M31 41h10" stroke="#6b7785" stroke-width="2" stroke-linecap="round"/>
<path d="M16 23h12" stroke="#ffc08a" stroke-width="2" stroke-linecap="round" opacity=".8"/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

+9 -4
View File
@@ -1,12 +1,17 @@
<!DOCTYPE PLUGIN [
<!ENTITY name "u-navigator">
<!ENTITY author "michael">
<!ENTITY version "2026.06.23.r015">
<!ENTITY author "Michael Roll">
<!ENTITY version "2026.06.23.r016">
<!ENTITY package "&name;-&version;.tgz">
<!ENTITY pluginURL "https://git.casaderoll.de/michael/Unraid-Navigator/raw/branch/main/u-navigator.plg">
<!ENTITY icon "https://git.casaderoll.de/michael/Unraid-Navigator/raw/branch/main/plugin-root/usr/local/emhttp/plugins/u-navigator/images/u-navigator.svg">
]>
<PLUGIN name="&name;" author="&author;" version="&version;" pluginURL="https://git.casaderoll.de/michael/Unraid-Navigator/raw/branch/main/u-navigator.plg">
<PLUGIN name="U-Navigator" author="&author;" version="&version;" pluginURL="&pluginURL;" icon="&icon;">
<CHANGES>
### U-Navigator
Unraid File Navigator with a Dynamix-embedded multi-window file explorer, icon/list views, context menus, properties, uploads, and background copy/move/size jobs.
### &version;
- Native Dynamix-embedded U-Navigator page.
- Adds PHP API endpoints for listing, upload, move and copy without a separate web server.
@@ -14,7 +19,7 @@
<FILE Name="/boot/config/plugins/&name;/&package;">
<URL>https://git.casaderoll.de/michael/Unraid-Navigator/raw/branch/main/packages/&package;</URL>
<MD5>5dd13445e7847e581364f61f5fd26808</MD5>
<MD5>fe5f45d23824bea176e0686e39dfc95b</MD5>
</FILE>
<FILE Run="/bin/bash">
+7 -2
View File
@@ -1,12 +1,17 @@
<!DOCTYPE PLUGIN [
<!ENTITY name "u-navigator">
<!ENTITY author "michael">
<!ENTITY author "Michael Roll">
<!ENTITY version "__VERSION__">
<!ENTITY package "&name;-&version;.tgz">
<!ENTITY pluginURL "https://git.casaderoll.de/michael/Unraid-Navigator/raw/branch/main/u-navigator.plg">
<!ENTITY icon "https://git.casaderoll.de/michael/Unraid-Navigator/raw/branch/main/plugin-root/usr/local/emhttp/plugins/u-navigator/images/u-navigator.svg">
]>
<PLUGIN name="&name;" author="&author;" version="&version;" pluginURL="https://git.casaderoll.de/michael/Unraid-Navigator/raw/branch/main/u-navigator.plg">
<PLUGIN name="U-Navigator" author="&author;" version="&version;" pluginURL="&pluginURL;" icon="&icon;">
<CHANGES>
### U-Navigator
Unraid File Navigator with a Dynamix-embedded multi-window file explorer, icon/list views, context menus, properties, uploads, and background copy/move/size jobs.
### &version;
- Native Dynamix-embedded U-Navigator page.
- Adds PHP API endpoints for listing, upload, move and copy without a separate web server.