-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #96 from xpdota/linux-clickthrough
Linux clickthrough
- Loading branch information
Showing
21 changed files
with
2,458 additions
and
53 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
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 @@ | ||
<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.1.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.1.0 http://maven.apache.org/xsd/assembly-2.1.0.xsd"> | ||
<id>zip</id> | ||
<formats> | ||
<format>zip</format> | ||
</formats> | ||
<baseDirectory>${project.basedir}</baseDirectory> | ||
<fileSets> | ||
<fileSet> | ||
<directory>${project.basedir}/target/windows</directory> | ||
<outputDirectory>triggevent</outputDirectory> | ||
<excludes> | ||
<exclude>**/src.zip</exclude> | ||
<exclude>jre/</exclude> | ||
</excludes> | ||
</fileSet> | ||
</fileSets> | ||
</assembly> |
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
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
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,9 @@ | ||
#!/bin/sh | ||
|
||
if wget -O /tmp/java.tar.gz https://download.oracle.com/java/17/archive/jdk-17.0.4_linux-x64_bin.tar.gz | ||
then | ||
tar -xzf /tmp/java.tar.gz | ||
mv jdk-* jre | ||
else | ||
echo "Download failed" | ||
fi |
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 @@ | ||
#!/bin/sh | ||
|
||
if [ -x jre/bin/java ] | ||
then | ||
java=jre/bin/java | ||
echo "Using directory-supplied Java" | ||
else | ||
java=$(command -v java) | ||
if [ $? -ne 0 ] | ||
then | ||
echo "Found neither a 'jre' dir nor a built in 'java' executable. Please do one of the following to fix it:" | ||
echo "1. Install Java 17 from your distro's package manager, and make sure the 'java' program on your PATH points to the correct java installation." | ||
echo "2. Download Java 17 from https://www.oracle.com/java/technologies/javase/jdk17-archive-downloads.html and place it in a directory called 'jre' (rename it from jdk-x.y.z)" | ||
echo "3. Run setup-java.sh (requires wget)" | ||
exit 1; | ||
fi | ||
fi | ||
|
||
$java -cp './userdata:./preload/*:./deps/*:./user/*:launcher-1.0-SNAPSHOT.jar' @args.txt gg.xp.xivsupport.gui.GuiImportLaunch |
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 @@ | ||
#!/bin/sh | ||
|
||
if [ -x jre/bin/java ] | ||
then | ||
java=jre/bin/java | ||
echo "Using directory-supplied Java" | ||
else | ||
java=$(command -v java) | ||
if [ $? -ne 0 ] | ||
then | ||
echo "Found neither a 'jre' dir nor a built in 'java' executable. Please do one of the following to fix it:" | ||
echo "1. Install Java 17 from your distro's package manager, and make sure the 'java' program on your PATH points to the correct java installation." | ||
echo "2. Download Java 17 from https://www.oracle.com/java/technologies/javase/jdk17-archive-downloads.html and place it in a directory called 'jre' (rename it from jdk-x.y.z)" | ||
echo "3. Run setup-java.sh (requires wget)" | ||
exit 1; | ||
fi | ||
fi | ||
|
||
$java -cp 'launcher-1.0-SNAPSHOT.jar' @args.txt gg.xp.xivsupport.gui.Update |
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 @@ | ||
#!/bin/sh | ||
|
||
if [ -x jre/bin/java ] | ||
then | ||
java=jre/bin/java | ||
echo "Using directory-supplied Java" | ||
else | ||
java=$(command -v java) | ||
if [ $? -ne 0 ] | ||
then | ||
echo "Found neither a 'jre' dir nor a built in 'java' executable. Please do one of the following to fix it:" | ||
echo "1. Install Java 17 from your distro's package manager, and make sure the 'java' program on your PATH points to the correct java installation." | ||
echo "2. Download Java 17 from https://www.oracle.com/java/technologies/javase/jdk17-archive-downloads.html and place it in a directory called 'jre' (rename it from jdk-x.y.z)" | ||
echo "3. Run setup-java.sh (requires wget)" | ||
exit 1; | ||
fi | ||
fi | ||
|
||
$java -cp './userdata:./preload/*:./deps/*:./user/*:launcher-1.0-SNAPSHOT.jar' @args.txt gg.xp.xivsupport.gui.GuiLaunch |
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
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
Oops, something went wrong.