Skip to content
This repository has been archived by the owner on Nov 5, 2022. It is now read-only.

Commit

Permalink
v1.6.1: fix resizing
Browse files Browse the repository at this point in the history
  • Loading branch information
ThatOneCalculator committed May 29, 2021
1 parent 4b31121 commit 3d9b829
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Based off of: https://daveparrish.net/posts/2019-11-16-Better-AppImage-PKGBUILD-template.html

_pkgname="among-us-dumpy-gif-maker"
_pkgver="1.6.0"
_pkgver="1.6.1"
_jar="Among-Us-Dumpy-Gif-Maker-${_pkgver}-all.jar"

pkgname="${_pkgname}"
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ Java Runtime Environment 15 or newer

To everyone else:

### Make sure to [download the jar](https://github.com/ThatOneCalculator/Among-Us-Dumpy-Gif-Maker/releases/download/v1.6.0/Among-Us-Dumpy-Gif-Maker-1.6.0-all.jar)!
### Make sure to [download the jar](https://github.com/ThatOneCalculator/Among-Us-Dumpy-Gif-Maker/releases/download/v1.6.1/Among-Us-Dumpy-Gif-Maker-1.6.1-all.jar)!

### Basic usage:
Click and open the jar, select the file, and a file called "dumpy.gif" will be made in the same folder as the jar.

### CLI usage:
- `java -jar Among-Us-Dumpy-Gif-Maker-1.6.0-all.jar` for defaults
- `java -jar Among-Us-Dumpy-Gif-Maker-1.6.0-all.jar help/version` for help/version
- `java -jar Among-Us-Dumpy-Gif-Maker-1.6.0-all.jar lines true/false filepath` for adding arguments
- `java -jar Among-Us-Dumpy-Gif-Maker-1.6.1-all.jar` for defaults
- `java -jar Among-Us-Dumpy-Gif-Maker-1.6.1-all.jar help/version` for help/version
- `java -jar Among-Us-Dumpy-Gif-Maker-1.6.1-all.jar lines true/false filepath` for adding arguments


#### ***All arguments optional!***
Expand All @@ -49,5 +49,5 @@ git clone https://github.com/ThatOneCalculator/Among-Us-Dumpy-Gif-Maker
cd Among-Us-Dumpy-Gif-Maker
gradle wrapper
./gradlew shadowJar # .\gradelw.bat shadowJar if you're on Windows
java -jar ./build/libs/Among-Us-Dumpy-Gif-Maker-1.6.0-all.jar
java -jar ./build/libs/Among-Us-Dumpy-Gif-Maker-1.6.1-all.jar
```
2 changes: 1 addition & 1 deletion among-us-dumpy-gif-maker
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/sh

/usr/lib/jvm/java-15-openjdk/bin/java -jar /usr/lib/Among-Us-Dumpy-Gif-Maker-1.6.0-all.jar
/usr/lib/jvm/java-15-openjdk/bin/java -jar /usr/lib/Among-Us-Dumpy-Gif-Maker-1.6.1-all.jar
2 changes: 1 addition & 1 deletion bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ async def invite(self, ctx):

def blocking(messageid, number, dither):
ditheropt = "true" if dither else "false"
cmd = shlex.split(f"java -jar ./Among-Us-Dumpy-Gif-Maker-1.6.0-all.jar {number} {ditheropt} attach_{messageid}.png {messageid}")
cmd = shlex.split(f"java -jar ./Among-Us-Dumpy-Gif-Maker-1.6.1-all.jar {number} {ditheropt} attach_{messageid}.png {messageid}")
subprocess.check_call(cmd)

def rmblocking(messageid):
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group = "dev.t1c.amogus"
version = "1.6.0"
version = "1.6.1"

repositories {
mavenCentral()
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/dev/t1c/dumpy/sus.java
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public static void main(String[] args) throws Exception {
System.out.println(
"""
`java -jar Among-Us-Dumpy-Gif-Maker-1.6.0-all.jar lines true/false filepath` for adding arguments
`java -jar Among-Us-Dumpy-Gif-Maker-1.6.1-all.jar lines true/false filepath` for adding arguments
*All arguments optional!*
- `lines` is the number of lines, which defaults to 9.
Expand All @@ -66,7 +66,7 @@ public static void main(String[] args) throws Exception {
System.exit(0);
}
if (args[0].toLowerCase().indexOf("version") != -1) {
System.out.println("Version 1.6.0");
System.out.println("Version 1.6.1");
System.exit(0);
}
try {
Expand Down

0 comments on commit 3d9b829

Please sign in to comment.