This commit is contained in:
Andrew Z 2020-11-29 15:24:37 -05:00
commit dfb1a4868e
21 changed files with 1737 additions and 0 deletions

17
.gitattributes vendored Normal file
View File

@ -0,0 +1,17 @@
# Auto detect text files and perform LF normalization
* text=auto
# Custom for Visual Studio
*.cs diff=csharp
# Standard to msysgit
*.doc diff=astextplain
*.DOC diff=astextplain
*.docx diff=astextplain
*.DOCX diff=astextplain
*.dot diff=astextplain
*.DOT diff=astextplain
*.pdf diff=astextplain
*.PDF diff=astextplain
*.rtf diff=astextplain
*.RTF diff=astextplain

47
.gitignore vendored Normal file
View File

@ -0,0 +1,47 @@
# Windows image file caches
Thumbs.db
ehthumbs.db
# Folder config file
Desktop.ini
# Recycle Bin used on file shares
$RECYCLE.BIN/
# Windows Installer files
*.cab
*.msi
*.msm
*.msp
# Windows shortcuts
*.lnk
# =========================
# Operating System Files
# =========================
# OSX
# =========================
.DS_Store
.AppleDouble
.LSOverride
# Thumbnails
._*
# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

35
apps-1.txt Normal file
View File

@ -0,0 +1,35 @@
# My PSAs / banners
Happy New Year=
Happy Holidays from Andrew, Tracey, and family=
Please Enjoy Responsibly=
Popup Blocked CA requires popups to be enabled under certain circumstances You must white list your server within your browser to allow popups=
# Sorting Options
Sorting options=
Sorting options unavailable=
# Initial disclaimer translations
Disclaimer=
All applications listed here are 3rd party additions to unRaid Neither the authors of Community Applications nor Limetech make any warranty as to the suitability of any application listed here=
Every attempt is made to ensure that only safe and compatible applications are present=
Application Policy=
I Understand=
Cancel=
Installations of apps disabled You must accept the warning to be able to install applications=
Click=
HERE=
# Plugin Disclaimer
Plugins=
Community Applications contains both docker containers and plugin applications Plugins are designed for OS enhancements, and run with full privileges on your system and are clearly identified within CA=
Plugin Note=
# Multi Install
Install Plugin Applications=
# Searches
Search=
Please enter search term=
Search for=
DockerHub Search for=
#
Install Plugin=
# Remove App from previously installed
Delete Template=ha

19
apps.txt Normal file
View File

@ -0,0 +1,19 @@
:plug1
> <i class='fa fa-sort enabledIcon' aria-hidden='true' style='font-size:2rem;'></i> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;This chooses how to sort the results<br><br> <i
> class='fa fa-download' aria-hidden='true' style='font-size:2rem;'></i> <i class='fa fa-edit' aria-hidden='true' style='font-size:2rem;'></i> &nbsp;&nbsp;These icons respectively will <span
> class='ca_bold'>Install or Edit</span> an application<br> <i class='fa fa-globe' aria-hidden='true' style='font-size:2rem;'></i> <i class='fa fa-cog' aria-hidden='true'
> style='font-size:2rem;'></i> &nbsp;&nbsp;&nbsp;Clicking these icons will take you to an application's GUI or settings<br> <span class='ca_fa-support' style='font-size:2rem;'></span>
> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;This will take you to the appropriate support thread for an application<br> <span class='ca_fa-project' style='font-size:2rem;'></span>
> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;This will take you to the project page for an application<br> <i class='fa fa-window-close' aria-hidden='true' style='font-size:2rem;color:maroon;'></i>
> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Clicking this icon will uninstall the application or delete it from the lists depending upon your current section<br> <span class='unpinned'> </span><span
> class='pinned'></span> &nbsp;&nbsp;Clicking these icons will pin / unpin an application for later viewer (from the Pinned Apps section)<br> <i class='fa fa-info-circle' aria-hidden='true'
> style='font-size:2rem;'></i> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Clicking this will display more information about the application. NOTE: You can also click on the application's icon
> to display more information.<br> <i class='fa fa-exclamation-triangle' aria-hidden='true' style='font-size:2rem;'></i> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Clicking this will display any
> warnings or extra comments about the application<br> <input type='checkbox' checked> &nbsp;&nbsp;&nbsp;On the previous apps section, you can select multiple applications to install
> simultaneously<br> <span class='ca_thumbsup' style='margin-left:0px; font-size:2rem;'></span> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;This is a recommended application based upon support requests
> and answers in the unRaid forum<br> <center>For support for this plugin, visit <a title='click for help' href="https://lime-technology.com/forums/topic/38582-plug-in-community-applications/"
> target="_blank">HERE</a></center>
>
> To view the policies Community Applications has, click <a href='https://forums.unraid.net/topic/87144-ca-application-policies/' target='_blank'>HERE</a>
:end

Binary file not shown.

Binary file not shown.

7
copy_to_git.sh Normal file
View File

@ -0,0 +1,7 @@
#!/bin/bash
mkdir -p "/tmp/GitHub/SourceCode/community.applications/source/community.applications/usr/local/emhttp/plugins/community.applications/"
cp /usr/local/emhttp/plugins/community.applications/* /tmp/GitHub/SourceCode/community.applications/source/community.applications/usr/local/emhttp/plugins/community.applications -R -v -p

16
pkg_build.sh Normal file
View File

@ -0,0 +1,16 @@
#!/bin/bash
tmpdir=/tmp/tmp.$(( $RANDOM * 19318203981230 + 40 ))
archive="/mnt/disks/WINDOWS10_GitHub/community.applications/archive"
version=$(date +"%Y.%m.%d")$1
mkdir -p $tmpdir
cd /tmp/GitHub/SourceCode/community.applications/source/community.applications/
cp --parents -f $(find . -type f ! \( -iname "pkg_build.sh" -o -iname "sftp-config.json" \) ) $tmpdir/
cd $tmpdir
makepkg -l y -c y /tmp/GitHub/community.applications/archive/community.applications-${version}-x86_64-1.txz
#rm -rf $tmpdir
echo "MD5:"
md5sum /tmp/GitHub/community.applications/archive/community.applications-${version}-x86_64-1.txz

File diff suppressed because it is too large Load Diff

4
proxy.cfg Normal file
View File

@ -0,0 +1,4 @@
port=8080
tunnel=1
proxy=http://proxy.ezorg.nl

Binary file not shown.

After

Width:  |  Height:  |  Size: 105 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 144 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

BIN
webImages/Warning2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 156 KiB

BIN
webImages/beta.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

BIN
webImages/cantdo.wav Normal file

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

BIN
webImages/donate-button.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

BIN
webImages/no_https.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 695 B