Compare commits

5 Commits
master ... test

3 changed files with 11 additions and 4 deletions

View File

@@ -1 +0,0 @@
9c11d044c71bedd69d62920af51953d5

View File

@@ -2,11 +2,11 @@
<!DOCTYPE PLUGIN [
<!ENTITY name "unraid-versionchange">
<!ENTITY author "ich777">
<!ENTITY version "2023.03.24a">
<!ENTITY version "2023.03.29">
<!ENTITY launch "Settings/versionchange">
<!ENTITY gitURL "https://git.minenet.at/&author;/&name;/raw/branch/master">
<!ENTITY pluginURL "&gitURL;/&name;.plg">
<!ENTITY md5 "eaa5678cc8fd03d519791bb81e3edbc1">
<!ENTITY md5 "8057b947871aab940a39c20bf9fad34e">
<!ENTITY plugin "/boot/config/plugins/&name;">
<!ENTITY emhttp "/usr/local/emhttp/plugins/&name;">
]>
@@ -15,6 +15,9 @@
<CHANGES>
###2023.03.29
- Added GLOBAL_CONFIG to settings.cfg Available options: 0 = disabled | 1 = enalbed (depends on custom CACHE_PATH), please note that you manually have to copy over a settings.cfg to your CACHE_PATH from the plugin.
###2023.03.24a
- Changed cursor style from input cursor to pointer at Version string below Unraid logo when QUICK_LINK is set to 1
@@ -117,7 +120,8 @@ CACHE_BUILDS=0
CACHE_PATH=default
INITIAL_UPDATE=0
LIST_STYLE=0
QUICK_LINK=0' > "&plugin;/settings.cfg"
QUICK_LINK=0
GLOBAL_CONFIG=0' > "&plugin;/settings.cfg"
fi
if ! grep -q "INDEX_URL=" &plugin;/settings.cfg; then
@@ -144,6 +148,10 @@ if ! grep -q "QUICK_LINK=" &plugin;/settings.cfg; then
sed -i '$ a\QUICK_LINK=0' &plugin;/settings.cfg
fi
if ! grep -q "GLOBAL_CONFIG=" &plugin;/settings.cfg; then
sed -i '$ a\GLOBAL_CONFIG=0' &plugin;/settings.cfg
fi
</INLINE>
</FILE>