Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
madlitch committed Apr 22, 2020
1 parent acc6f59 commit 4607275
Show file tree
Hide file tree
Showing 24 changed files with 2,788 additions and 0 deletions.
5 changes: 5 additions & 0 deletions application.linux-arm64/MadPixelSort
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/sh

APPDIR=$(readlink -f "$0")
APPDIR=$(dirname "$APPDIR")
java -Djna.nosys=true -Djava.library.path="$APPDIR:$APPDIR/lib" -cp "$APPDIR:$APPDIR/lib/MadPixelSort.jar:$APPDIR/lib/core.jar:$APPDIR/lib/jogl-all.jar:$APPDIR/lib/gluegen-rt.jar:$APPDIR/lib/jogl-all-natives-linux-aarch64.jar:$APPDIR/lib/gluegen-rt-natives-linux-aarch64.jar:$APPDIR/lib/controlP5.jar" MadPixelSort "$@"
78 changes: 78 additions & 0 deletions application.linux-arm64/data/Info.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
<?xml version="1.0" ?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http:https://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
<string>MadPixelSort</string>
<key>CFBundleIconFile</key>
<string>sketch.icns</string>
<key>CFBundleIdentifier</key>
<string>MadPixelSort</string>
<key>CFBundleDisplayName</key>
<string>MadPixelSort</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>MadPixelSort</string>
<key>CFBundlePackageType</key>
<string>APPL</string>

<!-- Customize this set as you wish -->
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleVersion</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright ©2020 Massimo Albanese</string>
<key>CFBundleGetInfoString</key>
<string>Created with Processing</string>
<!-- End of the set that can be customized -->

<key>JVMRuntime</key>
<string>jdk1.8.0_202.jdk</string>

<key>JVMMainClassName</key>
<string>MadPixelSort</string>

<key>LSMinimumSystemVersion</key>
<string>10.8.5</string>

<key>NSHighResolutionCapable</key>
<true/>

<key>LSArchitecturePriority</key>
<array>
<string>x86_64</string>
</array>

<key>LSEnvironment</key>
<dict>
<key>LC_CTYPE</key>
<string>UTF-8</string>
</dict>

<key>LSUIPresentationMode</key>
<integer>0</integer>

<key>JVMOptions</key>
<array>
<string>-Djna.nosys=true</string>
<string>-Djava.ext.dirs=$APP_ROOT/Contents/PlugIns/jdk1.8.0_202.jdk/Contents/Home/jre/lib/ext</string>

<string>-Xdock:icon=$APP_ROOT/Contents/Resources/mps.icns</string>
<string>-Djava.library.path=$APP_ROOT/Contents/Java</string>
<string>-Dapple.laf.useScreenMenuBar=true</string>
<string>-Dcom.apple.macos.use-file-dialog-packages=true</string>
<string>-Dcom.apple.macos.useScreenMenuBar=true</string>
<string>-Dcom.apple.mrj.application.apple.menu.about.name=MadPixelSort</string>
<string>-Dcom.apple.smallTabs=true</string>
</array>
<key>JVMArguments</key>
<array>
</array>
</dict>
</plist>
Binary file added application.linux-arm64/data/Montdd.ttf
Binary file not shown.
Binary file added application.linux-arm64/lib/MadPixelSort.jar
Binary file not shown.
Binary file added application.linux-arm64/lib/controlP5.jar
Binary file not shown.
Binary file added application.linux-arm64/lib/core.jar
Binary file not shown.
Binary file not shown.
Binary file added application.linux-arm64/lib/gluegen-rt.jar
Binary file not shown.
Binary file not shown.
Binary file added application.linux-arm64/lib/jogl-all.jar
Binary file not shown.
Loading

0 comments on commit 4607275

Please sign in to comment.