Everything posted by KnifeFed
-
[Plugin] CA Appdata Backup / Restore v2
I've got the paths listed without quotes, like so: binhex-plexpass/Plex Media Server/Crash Reports/,binhex-plexpass/Plex Media Server/Logs/,binhex-plexpass/Plex Media Server/Media/,binhex-plexpass/Plex Media Server/Metadata/ They get quoted during runtime so it works fine. You can also do exclusions like: .cache,.caches,.DS_Store,*.log,*.log.*,*.tmp,cache,Cache,caches,Caches,.Recycle.Bin
-
[Plugin] Theme Engine - a webGui styler
Here's a OneDark theme I made: I've also set the following in Unraid Settings -> Display Settings: If you would like to try it, I've attached a zip file which you can import via Theme Engine. OneDark-black.zip
-
[Support] A75G Repo
The changedetection.io container doesn't shut down gracefully so it will always time out when Unraid tries to shut it down (with ´docker stop -t xx´, where 'xx' is the Docker stop timeout you've set), e.g. when backing up appdata. If you add '--init' under 'Extra Parameters' it will work as expected.
-
[Plugin] CA Appdata Backup / Restore v2
Not really, unless you want to be able to restore a backup zip from the Sonarr GUI.
-
[Plugin] CA Application Auto Update
A small feature request: I would love to have the option of using an exclude list rather than the current include list for which Docker containers to update, because I only have one container that I don't want to automatically update and currently I have to enable automatic updates for every new container I install.
-
[Support] Flame
This container doesn't shut down gracefully so it will always time out when Unraid tries to shut it down (with ´docker stop -t xx´, where 'xx' is the Docker stop timeout you've set), e.g. when backing up appdata. If you add '--init' under 'Extra Parameters' it will work as expected.
-
Dynamix File Integrity plugin
I just had the plugin run on schedule for the first time. I got a notification that it started but I can't seem to find any form of progress indicator anywhere. Am I missing something? Edit: Now I got a notification that it finished and a log of files with "BLAKE2 hash key corruption" but they're all files that were deleted already. Is that intended behavior?
-
[Plugin] CA Application Auto Update
Now that there's a new update for the My Servers plugin (version 2021.06.07.1845), Auto Update errors out with the same exit status 255. I manually updated My Servers again and after that it runs fine.
-
[Plugin] CA Fix Common Problems
On the settings page it says "Docker Appdata Folders and CA backup Destination is automatically excluded". Does this not also apply to the "Docker Safe New Perms" tool? My CA Backup destination is "/mnt/cache/appdata-bup" but when the tool runs it says "Processing '/mnt/cache/appdata-bup'" and changes the permissions on the backup files.
-
[Plugin] Docker Folder
Nice, thanks!
-
[Plugin] Docker Folder
Yeah, I see now that it puts the 'fa-spin' class on every <i> element within the container. Would it be possible to either put an inline style like: <i style="-webkit-animation: none !important; animation: none !important;"...> on the icons where it's not wanted or inject some global CSS, like: .fa-navicon.fa-spin, .fa-globe.fa-spin { -webkit-animation: none !important; animation: none !important; } ?
-
[Plugin] Docker Folder
I've noticed that when restarting a container, the log- and globe icons start spinning. Is this intentional? Here's a screenshot of what I'm referring to.
-
[Support] binhex - Jackett
Yeah, it's got a unique size of 369MB so I guess that's all good. Thanks for confirming.
-
[Support] binhex - Jackett
Has this been fixed? I got a warning notification that my docker.img is 21.5GB and one of the discrepancies I noticed is that the Jackett image is 980MB and the container 279MB, meaning a total of 1.26GB. Does that seem right?
-
[Plugin] GUI Search
Thanks for implementing it!
-
[Plugin] Docker Folder
I was adding a new container to an existing folder and after clicking submit it seemed like nothing happened (but it was most likely just a bit slow to load) so I clicked again. After that, all my folders were gone and the Docker page showed the error message: "Warning: Invalid argument supplied for foreach() in /usr/local/emhttp/plugins/docker.folder/include/add-update.folder/import-export.php on line 8". I checked /boot/config/plugins/docker.folder/folders.json and saw it was malformed + a duplicate key had been created for the folder I was adding to. Good thing there's a backup Anyhoo, it would be nice if this sort of thing could be prevented, i.e. not allowing duplicate keys to be written and/or disabling the submit button after it's clicked.
-
[Plugin] GUI Search
Since the input field gets focus on page load, the caret is constantly blinking and that's a real eyesore to me I've currently remedied it with a user-script simply by setting: #guiSearchBox:placeholder-shown { caret-color: transparent; } This let's the input keep focus but hides the caret, then revealing it again when typing starts. I think it would be nice to have as a built-in option.
-
unRAID 6 NerdPack - CLI tools (iftop, iotop, screen, kbd, etc.)
Has this plugin been abandoned or close to it? There hasn't been a commit in three months and there are a lot of open issues on GitHub + many of the packages are out of date. Is there an alternative, at least somewhat convenient way of installing CLI tools and keeping them updated?
-
File Activity Plugin - How can I figure out what keeps spinning up my disks?
Would it be possible to implement that? It would be infinitely more helpful to know the actual process responsible for the activity.
-
[Support] SpaceinvaderOne Explainshell
My container is 2.64 GB. That can't be right, can it?
-
[Plugin] CA Application Auto Update
- [Plugin] CA Application Auto Update
I manually updated the My Servers plugin then ran auto update again and now it's working. I guess it doesn't handle version numbers like "2021.05.14.1336".- [Plugin] CA Application Auto Update
bash-5.0# /usr/local/emhttp/plugins/ca.update.applications/scripts/updateApplications.php Warning: date_diff() expects parameter 2 to be DateTimeInterface, bool given in /usr/local/emhttp/plugins/ca.update.applications/scripts/updateApplications.php on line 85 Fatal error: Uncaught Error: Call to a member function format() on bool in /usr/local/emhttp/plugins/ca.update.applications/scripts/updateApplications.php:86 Stack trace: #0 {main} thrown in /usr/local/emhttp/plugins/ca.update.applications/scripts/updateApplications.php on line 86 bash-5.0# echo $? 255- [Plugin] CA Application Auto Update
When this app runs, plugins aren't updated and I only get this in my log: May 26 00:00:01 unraiden Plugin Auto Update: Checking for available plugin updates May 26 00:00:07 unraiden crond[1933]: exit status 255 from user root /usr/local/emhttp/plugins/ca.update.applications/scripts/updateApplications.php >/dev/null 2>&1- [Plugin] CA Appdata Backup / Restore v2
Is there any way to do wildcard- and/or path independent exclusions, e.g. `*.tmp, *cache*, .cache, .DS_Store` etc? Edit: Yes there is. All of the above examples work. Remember that everything is case sensitive though, so e.g. `*xyz*` will match `testxyztest.txt` but not `testXYZtest.txt`. - [Plugin] CA Application Auto Update