[Jrisk-cvs] SF.net SVN: domination-code:[2615] Domination
Brought to you by:
yuranet
|
From: <yu...@us...> - 2025-01-11 20:16:30
|
Revision: 2615
http://sourceforge.net/p/domination/code/2615
Author: yuranet
Date: 2025-01-11 20:16:28 +0000 (Sat, 11 Jan 2025)
Log Message:
-----------
linux audio fix
Modified Paths:
--------------
Domination/ChangeLog.txt
Domination/sharedUI/src_mapstore_lobby/net/yura/domination/audio/SimpleAudio.java
Domination/swingUI/build.xml
Domination/swingUI/lib/midletrunner.jar
Modified: Domination/ChangeLog.txt
===================================================================
--- Domination/ChangeLog.txt 2025-01-11 18:49:09 UTC (rev 2614)
+++ Domination/ChangeLog.txt 2025-01-11 20:16:28 UTC (rev 2615)
@@ -2,7 +2,7 @@
CURRENT VERSION:
- Risk Game: 1.3.2
+ Risk Game: 1.3.3
* Network: 14
* Save: 8
@@ -14,6 +14,10 @@
Increment1GUI: 2
CommandLine: 2
+1.3.3
+
+ Linux audio fixed
+
1.3.2 (11.01.2025) (svn rev 2614)
music update for menu and winning
Modified: Domination/sharedUI/src_mapstore_lobby/net/yura/domination/audio/SimpleAudio.java
===================================================================
--- Domination/sharedUI/src_mapstore_lobby/net/yura/domination/audio/SimpleAudio.java 2025-01-11 18:49:09 UTC (rev 2614)
+++ Domination/sharedUI/src_mapstore_lobby/net/yura/domination/audio/SimpleAudio.java 2025-01-11 20:16:28 UTC (rev 2615)
@@ -146,7 +146,9 @@
// java.lang.IllegalArgumentException: No line matching interface Clip supporting format PCM_SIGNED unknown sample rate, 16 bit, stereo, 4 bytes/frame, big-endian is supported.
fatalAudioSystemError = true;
}
- LOGGER.log(Level.WARNING, "unable to play " + fileName, ex);
+ // sometimes we try everything and we just cant play a sound
+ // java.lang.IllegalArgumentException: Mixer not supported: null
+ LOGGER.log(Level.INFO, "unable to play " + fileName, ex);
try {
currentMusicPlayers.remove(fileName);
if (player != null) {
Modified: Domination/swingUI/build.xml
===================================================================
--- Domination/swingUI/build.xml 2025-01-11 18:49:09 UTC (rev 2614)
+++ Domination/swingUI/build.xml 2025-01-11 20:16:28 UTC (rev 2615)
@@ -16,7 +16,7 @@
<property file="local.properties" />
- <property name="game.version" value="1.3.2"/>
+ <property name="game.version" value="1.3.3"/>
<!--
For releasing we want to be compatible wth as many versions of java as possible
Modified: Domination/swingUI/lib/midletrunner.jar
===================================================================
(Binary files differ)
|