forked from mysteryx93/HanumanInstituteApps
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 487b0bc
Showing
1,073 changed files
with
64,835 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
_old* | ||
.* | ||
[Pp]ackages/ | ||
*.dat | ||
|
||
# User-specific files | ||
*.suo | ||
*.user | ||
*.sln.docstates | ||
|
||
# Build results | ||
|
||
[Dd]ebug/ | ||
[Rr]elease/ | ||
x64/ | ||
[Bb]in/ | ||
[Oo]bj/ | ||
Publish/*/ | ||
|
||
|
||
# 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 on external disk | ||
.Spotlight-V100 | ||
.Trashes | ||
|
||
# Directories potentially created on remote AFP share | ||
.AppleDB | ||
.AppleDesktop | ||
Network Trash Folder | ||
Temporary Items | ||
.apdisk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFramework>net7.0</TargetFramework> | ||
<RuntimeIdentifiers>win-x64;win-x86;linux-x64;osx-x64</RuntimeIdentifiers> | ||
</PropertyGroup> | ||
|
||
<ItemGroup Condition="'$(RuntimeIdentifier)'=='win-x64' or '$(RuntimeIdentifier)'==''"> | ||
<Content Include="win-x64\**" > | ||
<Link>%(Filename)%(Extension)</Link> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
</Content> | ||
</ItemGroup> | ||
<ItemGroup Condition="'$(RuntimeIdentifier)'=='win-x86'"> | ||
<Content Include="win-x86\**" > | ||
<Link>%(Filename)%(Extension)</Link> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
</Content> | ||
</ItemGroup> | ||
<ItemGroup Condition="'$(RuntimeIdentifier)'=='linux-x64' or '$(RuntimeIdentifier)'==''"> | ||
<Content Include="linux-x64\**" > | ||
<Link>%(Filename)%(Extension)</Link> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
</Content> | ||
</ItemGroup> | ||
<ItemGroup Condition="'$(RuntimeIdentifier)'=='linux-arm64'"> | ||
<Content Include="linux-arm64\**" > | ||
<Link>%(Filename)%(Extension)</Link> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
</Content> | ||
</ItemGroup> | ||
<ItemGroup Condition="'$(RuntimeIdentifier)'=='osx-x64'"> | ||
<Content Include="osx-x64\**" > | ||
<Link>%(Filename)%(Extension)</Link> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
</Content> | ||
</ItemGroup> | ||
<ItemGroup Condition="'$(RuntimeIdentifier)'=='osx-arm64'"> | ||
<Content Include="osx-x64\**" > <!-- Same binaries for osx-x64 and osx-arm64 --> | ||
<Link>%(Filename)%(Extension)</Link> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
</Content> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
#!/bin/bash | ||
if [ -z "$1" ]; then | ||
echo "Syntax: bass-download Lib [path] [sufix]" | ||
exit 1 | ||
fi | ||
lib=$1 | ||
path=$2 | ||
if [ -z "$2" ]; then | ||
path="files/" | ||
fi | ||
sufix=$3 | ||
if [ -z "$3" ]; then | ||
sufix="24" | ||
fi | ||
if [ $sufix="." ]; then | ||
sufix="" | ||
fi | ||
|
||
archive="temp.zip" | ||
|
||
# Windows | ||
wget -O "$archive" "https://www.un4seen.com/${path}/${lib}${sufix}.zip" | ||
unzip -o -j "$archive" "$lib.dll" -d "win-x86" | ||
unzip -o -j "$archive" "x64/$lib.dll" -d "win-x64" | ||
|
||
# Linux | ||
wget -O "$archive" "https://www.un4seen.com/${path}/${lib}${sufix}-linux.zip" | ||
unzip -o -j "$archive" "libs/x86_64/lib$lib.so" -d "linux-x64" | ||
unzip -o -j "$archive" "libs/aarch64/lib$lib.so" -d "linux-arm64" | ||
|
||
# OSX | ||
wget -O "$archive" "https://www.un4seen.com/${path}/${lib}${sufix}-osx.zip" | ||
unzip -o -j "$archive" "lib$lib.dylib" -d "osx-x64" | ||
|
||
rm $archive |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
#!/bin/bash | ||
|
||
./bass-download.sh bass | ||
./bass-download.sh bassflac | ||
./bass-download.sh basswv | ||
./bass-download.sh bassopus | ||
./bass-download.sh bassdsd | ||
./bass-download.sh bassalac | ||
./bass-download.sh basswebm | ||
#./bass-download.sh basshls | ||
./bass-download.sh bassape | ||
./bass-download.sh basscd | ||
./bass-download.sh basswma | ||
./bass-download.sh bassmix | ||
#./bass-download.sh basswasapi | ||
#./bass-download.sh bassssl | ||
./bass-download.sh bass_fx files/z/0 | ||
./bass-download.sh bass_mpc files/z/2 | ||
./bass-download.sh bass_tta files/z/2 | ||
./bass-download.sh bass_spx files/z/2 | ||
./bass-download.sh bass_aac files/z/2 | ||
./bass-download.sh bass_ac3 files/z/2 | ||
./bass-download.sh bass_ofr files/z/2 | ||
#* ./bass-download.sh bass_dts | ||
#* ./bass-download.sh BASSZXTUNE | ||
./bass-download.sh bass_adx stuff | ||
./bass-download.sh bass_aix stuff | ||
#./bass-download.sh bass_wadsp files/z/4 | ||
#./bass-download.sh bass_vst files/z/5 | ||
#./bass-download.sh bass_winamp files/z/1 | ||
#*./bass-download.sh bass_sfx | ||
#./bass-download.sh bass_wa stuff | ||
./bass-download.sh tags files/z/3 18 | ||
#*./bass-download.sh bass_dshow | ||
|
||
|
||
#./bass-download.sh bassenc | ||
#./bass-download.sh bassenc_mp3 | ||
#./bass-download.sh bassenc_flac | ||
#./bass-download.sh bassenc_ogg | ||
#./bass-download.sh bassenc_opus |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFramework>net7.0</TargetFramework> | ||
<RuntimeIdentifiers>win-x64;win-x86;linux-x64;osx-x64</RuntimeIdentifiers> | ||
</PropertyGroup> | ||
|
||
<ItemGroup Condition="'$(RuntimeIdentifier)'=='win-x64' or '$(RuntimeIdentifier)'==''"> | ||
<Content Include="win-x64\**" > | ||
<Link>%(Filename)%(Extension)</Link> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
</Content> | ||
</ItemGroup> | ||
<ItemGroup Condition="'$(RuntimeIdentifier)'=='win-x86'"> | ||
<Content Include="win-x86\**" > | ||
<Link>%(Filename)%(Extension)</Link> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
</Content> | ||
</ItemGroup> | ||
<ItemGroup Condition="'$(RuntimeIdentifier)'=='linux-x64' or '$(RuntimeIdentifier)'==''"> | ||
<Content Include="linux-x64\**" > | ||
<Link>%(Filename)%(Extension)</Link> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
</Content> | ||
</ItemGroup> | ||
<ItemGroup Condition="'$(RuntimeIdentifier)'=='linux-arm64'"> | ||
<Content Include="linux-arm64\**" > | ||
<Link>%(Filename)%(Extension)</Link> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
</Content> | ||
</ItemGroup> | ||
<ItemGroup Condition="'$(RuntimeIdentifier)'=='osx-x64'"> | ||
<Content Include="osx-x64\**" > | ||
<Link>%(Filename)%(Extension)</Link> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
</Content> | ||
</ItemGroup> | ||
<ItemGroup Condition="'$(RuntimeIdentifier)'=='osx-arm64'"> | ||
<Content Include="osx-x64\**" > | ||
<Link>%(Filename)%(Extension)</Link> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
</Content> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
#!/bin/bash | ||
if [ -z "$1" ]; then | ||
echo "Syntax: bass-download Lib [path] [sufix]" | ||
exit 1 | ||
fi | ||
lib=$1 | ||
path=$2 | ||
if [ -z "$2" ]; then | ||
path="files/" | ||
fi | ||
sufix=$3 | ||
if [ -z "$3" ]; then | ||
sufix="24" | ||
fi | ||
if [ $sufix="." ]; then | ||
sufix="" | ||
fi | ||
|
||
archive="temp.zip" | ||
|
||
# Windows | ||
wget -O "$archive" "https://www.un4seen.com/${path}/${lib}${sufix}.zip" | ||
unzip -o -j "$archive" "$lib.dll" -d "win-x86" | ||
unzip -o -j "$archive" "x64/$lib.dll" -d "win-x64" | ||
|
||
# Linux | ||
wget -O "$archive" "https://www.un4seen.com/${path}/${lib}${sufix}-linux.zip" | ||
unzip -o -j "$archive" "libs/x86_64/lib$lib.so" -d "linux-x64" | ||
unzip -o -j "$archive" "libs/aarch64/lib$lib.so" -d "linux-arm64" | ||
|
||
# OSX | ||
wget -O "$archive" "https://www.un4seen.com/${path}/${lib}${sufix}-osx.zip" | ||
unzip -o -j "$archive" "lib$lib.dylib" -d "osx-x64" | ||
|
||
rm $archive |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/bin/bash | ||
|
||
./bass-download.sh bassenc | ||
./bass-download.sh bassenc_mp3 | ||
./bass-download.sh bassenc_flac | ||
./bass-download.sh bassenc_ogg | ||
./bass-download.sh bassenc_opus | ||
./bass-download.sh bassenc_aac stuff . | ||
|
||
|
||
archive="temp.zip" | ||
|
||
lib="bassenc_aac" | ||
wget -O "$archive" "https://www.un4seen.com/stuff/bassenc_aac-linux.zip" | ||
unzip -o -j "$archive" "x64/lib$lib.so" -d "linux-x64" | ||
|
||
wget -O "$archive" "https://www.un4seen.com/stuff/bassenc_aac-linux-arm.zip" | ||
unzip -o -j "$archive" "aarch64/lib$lib.so" -d "linux-arm64" | ||
|
||
rm $archive |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFramework>net7.0</TargetFramework> | ||
<RuntimeIdentifiers>win-x64;win-x86;linux-x64;osx-x64</RuntimeIdentifiers> | ||
</PropertyGroup> | ||
|
||
<ItemGroup Condition="'$(RuntimeIdentifier)'=='win-x64' or '$(RuntimeIdentifier)'==''"> | ||
<Content Include="win-x64\**" > | ||
<Link>%(Filename)%(Extension)</Link> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
</Content> | ||
</ItemGroup> | ||
<ItemGroup Condition="'$(RuntimeIdentifier)'=='win-x86'"> | ||
<Content Include="win-x86\**" > | ||
<Link>%(Filename)%(Extension)</Link> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
</Content> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--disable-debug --disable-ffplay --disable-ffprobe --disable-doc --disable-encoders --disable-avdevice --disable-swscale --disable-postproc --disable-hwaccels --disable-protocols --disable-devices --disable-filters --disable-decoders --disable-pixelutils --disable-dct --disable-dwt --disable-lsp --disable-mdct --disable-rdft --disable-fft --disable-faan --disable-bsfs --disable-protocol=udp --disable-alsa --disable-appkit --disable-avfoundation --disable-bzlib --disable-coreimage --disable-iconv --disable-lzma --disable-metal --disable-sndio --disable-schannel --disable-sdl2 --disable-securetransport --disable-vulkan --disable-xlib --disable-zlib --disable-amf --disable-audiotoolbox --disable-cuda-llvm --disable-cuvid --disable-d3d11va --disable-dxva2 --disable-ffnvcodec --disable-nvdec --disable-nvenc --disable-v4l2-m2m --disable-vaapi --disable-vdpau --disable-videotoolbox --disable-libxcb --enable-small --arch=x86_64 | ||
|
||
|
||
Prevents ffmpeg being generated | ||
--disable-avcodec --disable-avfilter |
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Bass DLLs last updated on 2023/03/23 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>com.apple.security.cs.allow-jit</key> | ||
<true/> | ||
<key>com.apple.security.cs.allow-unsigned-executable-memory</key> | ||
<true/> | ||
<key>com.apple.security.cs.disable-library-validation</key> | ||
<true/> | ||
<key>com.apple.security.cs.allow-dyld-environment-variables</key> | ||
<true/> | ||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
|
||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>CFBundleDevelopmentRegion</key> | ||
<string>en</string> | ||
<key>CFBundleIconFile</key> | ||
<string>#APP.icns</string> | ||
<key>CFBundleIdentifier</key> | ||
<string>com.hanumaninstitute.#APP</string> | ||
<key>CFBundleName</key> | ||
<string>#APP</string> | ||
<key>CFBundleDisplayName</key> | ||
<string>#PRODUCT</string> | ||
<key>CFBundleVersion</key> | ||
<string>#VERSION</string> | ||
<key>LSMinimumSystemVersion</key> | ||
<string>10.15</string> | ||
<key>CFBundleExecutable</key> | ||
<string>#APP</string> | ||
<key>CFBundleInfoDictionaryVersion</key> | ||
<string>6.0</string> | ||
<key>CFBundlePackageType</key> | ||
<string>APPL</string> | ||
<key>CFBundleShortVersionString</key> | ||
<string>#VERSION</string> | ||
<key>CFBundleSupportedPlatforms</key> | ||
<array> | ||
<string>MacOSX</string> | ||
</array> | ||
<key>LSApplicationCategoryType</key> | ||
<string>#CATEGORY</string> | ||
<key>NSHighResolutionCapable</key> | ||
<true /> | ||
<key>NSRequiresAquaSystemAppearance</key> | ||
<true /> | ||
<key>NSHumanReadableCopyright</key> | ||
<string>Copyright © 2022 Etienne Charland. All rights reserved.</string> | ||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Updates are published in the following locations | ||
- GitHub | ||
- SourceForge | ||
- https://www.appimagehub.com | ||
- Arch Linux AUR | ||
- https://github.com/AppImage/appimage.github.io |
Oops, something went wrong.