chatty: update to 0.26.

This commit is contained in:
yosh 2023-08-11 17:05:35 -05:00 committed by classabbyamp
parent 4843ebe7f3
commit 9850da2f23
4 changed files with 28 additions and 44 deletions

View file

@ -1,4 +1,4 @@
#!/bin/sh #!/bin/sh
cd /usr/share/chatty cd /usr/share/chatty
export PATH=/usr/lib/jvm/java-8-openjdk/jre/bin/:$PATH exec java -jar Chatty.jar "$@"
java -jar Chatty.jar "$@"

View file

@ -1,19 +1,11 @@
*** a/src/chatty/Chatty.java 2017-12-26 11:56:51.000000000 -0500 --- a/src/chatty/Chatty.java
--- a/src/chatty/Chatty.java 2018-02-19 04:41:33.348588121 -0500 +++ b/src/chatty/Chatty.java
*************** @@ -212,7 +212,7 @@ public class Chatty {
*** 91,97 **** // Paths
* Custom Settings directory, either the current working directory if the //--------------------------
* -cd parameter was used, or the directory specified with the -d parameter. public enum PathType {
*/ - SETTINGS(() -> Paths.get(System.getProperty("user.home"), ".chatty"), null),
! private static String settingsDir = null; + SETTINGS(() -> Paths.get(System.getProperty("user.home"), ".config/chatty"), null),
WORKING(() -> Paths.get(System.getProperty("user.dir")), null),
/** BACKUP(() -> getUserDataDirectory().resolve("backup"), null),
* Parse the commandline arguments and start the actual chat client. IMAGE(() -> getWorkingDirectory().resolve("img"), "imgPath"),
--- 91,97 ----
* Custom Settings directory, either the current working directory if the
* -cd parameter was used, or the directory specified with the -d parameter.
*/
! private static String settingsDir = System.getProperty("user.home") + File.separator + ".config" + File.separator + "chatty";
/**
* Parse the commandline arguments and start the actual chat client.

View file

@ -1,19 +1,11 @@
*** a/src/chatty/Chatty.java 2018-02-19 04:22:40.961744905 -0500 --- a/src/chatty/Chatty.java
--- a/src/chatty/Chatty.java 2018-02-19 04:24:16.080555756 -0500 +++ b/src/chatty/Chatty.java
*************** @@ -63,7 +63,7 @@ public class Chatty {
*** 60,66 **** * Enable Version Checker (if you compile and distribute this yourself, you
* Enable Version Checker (if you compile and distribute this yourself, you * may want to disable this)
* may want to disable this) */
*/ - public static final boolean VERSION_CHECK_ENABLED = true;
! public static final boolean VERSION_CHECK_ENABLED = true; + public static final boolean VERSION_CHECK_ENABLED = false;
/** /**
* The regular URL of the textfile where the most recent version is stored. * The regular URL of the textfile where the most recent version is stored.
--- 60,66 ----
* Enable Version Checker (if you compile and distribute this yourself, you
* may want to disable this)
*/
! public static final boolean VERSION_CHECK_ENABLED = false;
/**
* The regular URL of the textfile where the most recent version is stored.

View file

@ -1,6 +1,6 @@
# Template file for 'chatty' # Template file for 'chatty'
pkgname=chatty pkgname=chatty
version=0.22 version=0.26
revision=1 revision=1
hostmakedepends="gradle openjdk8" hostmakedepends="gradle openjdk8"
depends="virtual?java-runtime" depends="virtual?java-runtime"
@ -8,11 +8,11 @@ short_desc="Twitch Chat Client for Desktop"
maintainer="Frank Steinborn <steinex@nognu.de>" maintainer="Frank Steinborn <steinex@nognu.de>"
license="GPL-3.0-or-later" license="GPL-3.0-or-later"
homepage="https://chatty.github.io/" homepage="https://chatty.github.io/"
distfiles="https://github.com/chatty/chatty/archive/v${version}.tar.gz" distfiles="https://github.com/chatty/chatty/archive/refs/tags/v${version}.tar.gz"
checksum=4d5f4236bba0190608e825fa5baf11d718650bf83e6571ab83dd9457af9f888c checksum=f9b6287a257fa50d757128af116ee29cf4c8d29e96e09616857017b859aa43f5
do_build() { do_build() {
gradle shadowJar gradle --no-daemon shadowJar
} }
do_install() { do_install() {