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

Commit 4ab19c7

Browse files
v3.1.3 hotfix
1 parent e38df5a commit 4ab19c7

7 files changed

Lines changed: 15 additions & 12 deletions

File tree

Among-Us-Dumpy-Gif-Maker

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Based off of: https://daveparrish.net/posts/2019-11-16-Better-AppImage-PKGBUILD-template.html
33

44
_pkgname="among-us-dumpy-gif-maker"
5-
_pkgver="3.1.2"
5+
_pkgver="3.1.3"
66
_jar="Among-Us-Dumpy-Gif-Maker-${_pkgver}-all.jar"
77

88
pkgname="${_pkgname}"

PKGBUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Based off of: https://daveparrish.net/posts/2019-11-16-Better-AppImage-PKGBUILD-template.html
33

44
_pkgname="among-us-dumpy-gif-maker"
5-
_pkgver="3.1.2"
5+
_pkgver="3.1.3"
66
_jar="Among-Us-Dumpy-Gif-Maker-${_pkgver}-all.jar"
77

88
pkgname="${_pkgname}"

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727

2828
### Please credit this repository when you use this program!
29-
##### Current version: 3.1.2
29+
##### Current version: 3.1.3
3030

3131
# Instructions
3232

@@ -50,13 +50,13 @@
5050

5151
To everyone else:
5252

53-
### Make sure to [download the jar](https://github.com/ThatOneCalculator/Among-Us-Dumpy-Gif-Maker/releases/download/v3.1.2/Among-Us-Dumpy-Gif-Maker-3.1.2-all.jar)!
53+
### Make sure to [download the jar](https://github.com/ThatOneCalculator/Among-Us-Dumpy-Gif-Maker/releases/download/v3.1.3/Among-Us-Dumpy-Gif-Maker-3.1.3-all.jar)!
5454

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

5858
### CLI usage:
59-
- `java -jar Among-Us-Dumpy-Gif-Maker-3.1.2-all.jar <flags>`
59+
- `java -jar Among-Us-Dumpy-Gif-Maker-3.1.3-all.jar <flags>`
6060
All flags are optional.
6161
Flags:
6262
```
@@ -75,5 +75,5 @@ git clone https://github.com/ThatOneCalculator/Among-Us-Dumpy-Gif-Maker
7575
cd Among-Us-Dumpy-Gif-Maker
7676
gradle wrapper
7777
./gradlew shadowJar # .\gradelw.bat shadowJar if you're on Windows
78-
java -jar ./build/libs/Among-Us-Dumpy-Gif-Maker-3.1.2-all.jar
78+
java -jar ./build/libs/Among-Us-Dumpy-Gif-Maker-3.1.3-all.jar
7979
```

among-us-dumpy-gif-maker

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/sh
22

3-
/usr/bin/java -jar /usr/lib/Among-Us-Dumpy-Gif-Maker-3.1.2-all.jar $@
3+
/usr/bin/java -jar /usr/lib/Among-Us-Dumpy-Gif-Maker-3.1.3-all.jar $@

bot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
statcordkey = lines[0].strip()
4444

4545
upsince = datetime.datetime.now()
46-
version = "3.1.2"
46+
version = "3.1.3"
4747

4848
intents = discord.Intents.default()
4949
bot = commands.AutoShardedBot(command_prefix=commands.when_mentioned_or("!!"), intents=intents, chunk_guilds_at_startup=False)

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
}
66

77
group = "dev.t1c.amogus"
8-
version = "3.1.2"
8+
version = "3.1.3"
99

1010
repositories {
1111
mavenCentral()

src/main/java/dev/t1c/dumpy/sus.java

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,12 @@ public static void main(String[] args) throws Exception {
6969

7070
Options options = new Options();
7171

72-
Option li = Option.builder().longOpt("lines").hasArg().desc("Changes the number of lines (defaults to 10)").build();
72+
Option li = Option.builder().longOpt("lines").hasArg().desc("Changes the number of lines (defaults to 10)")
73+
.build();
7374
Option fl = Option.builder().longOpt("file").hasArg().desc("Path to file, hides file picker").build();
7475
Option bk = Option.builder().longOpt("background").hasArg().desc("Path to custom background").build();
75-
Option md = Option.builder().longOpt("mode").hasArg().desc("Crewmade mode, currently supports default and furry").build();
76+
Option md = Option.builder().longOpt("mode").hasArg()
77+
.desc("Crewmade mode, currently supports default and furry").build();
7678
Option eo = Option.builder().longOpt("extraoutput").hasArg().desc("Appends text to output files").build();
7779
Option hp = Option.builder().longOpt("help").desc("Shows this message").build();
7880
options.addOption(li);
@@ -228,7 +230,8 @@ public static void main(String[] args) throws Exception {
228230

229231
// Combines frames into final GIF
230232
System.out.println("Converting....");
231-
runCmd("convert -dispose 2 -delay 1x20 -loop 0 -alpha set" + dotSlash + "F_*" + extraoutput + ".png " + output);
233+
runCmd("convert -delay 1x20 -loop 0 -alpha set -dispose 2 " + dotSlash + "F_*" + extraoutput + ".png "
234+
+ output);
232235
boolean win = isWindows();
233236

234237
String[] filenames = new String[] { dotSlash + "F_0" + extraoutput + ".png",

0 commit comments

Comments
 (0)