From ab378d84c581486691f5374072be2c89674f05e154c417c4db321c7826809236 Mon Sep 17 00:00:00 2001 From: Dirk Stoecker Date: Wed, 5 Mar 2025 14:16:17 +0000 Subject: [PATCH] - Update to 1.3.3 * Linux audio fix - Changes in 1.3.2 * music update for menu and winning * better loading screens when loading online games and downloading maps * GameGUI: in-game can use standard keyboard shortcut to save game * GameGUI: main manu - can right click to get to options screen on windows * fix out of memory error, Better memory management in audio system, close audio after playing. * fix for handling unexpected errors in audio system to not overload and bring down the maps server * RiskGame.getMissions() now returns ALL game missions, to make AI development easier * SwingGUI: can replay debug game log without having to save it to file first * SwingGUI: little memory graph on debug screen - Changes in 1.3.1 * Sounds effects and music! (memory leak fixed this time) * Can change game speed in Option dialog * Can view continents values for maps that do not display this information * MapChooser: can right click and select Map info * MapChooser: no repaint macos JDK-19 bug workaround: MapChooser loading animation added * SwingGUI: can change who owns a country * SwingGUI: fixed: unable to start game when all options are present * MapEditor: smart fill Mnemonic 'F' * MapEditor: force user to save map if changed before publish OBS-URL: https://build.opensuse.org/package/show/games/domination?expand=0&rev=18 --- .gitattributes | 23 ++++++ .gitignore | 1 + Domination_1.2.9.zip | 3 + Domination_1.3.3.zip | 3 + domination-FlashGUI.sh | 4 + domination-Increment1GUI.sh | 4 + domination-SimpleGUI.sh | 4 + domination-SwingGUI.sh | 4 + domination.changes | 156 ++++++++++++++++++++++++++++++++++++ domination.desktop | 9 +++ domination.png | 3 + domination.spec | 97 ++++++++++++++++++++++ 12 files changed, 311 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 Domination_1.2.9.zip create mode 100644 Domination_1.3.3.zip create mode 100644 domination-FlashGUI.sh create mode 100644 domination-Increment1GUI.sh create mode 100644 domination-SimpleGUI.sh create mode 100644 domination-SwingGUI.sh create mode 100644 domination.changes create mode 100644 domination.desktop create mode 100644 domination.png create mode 100644 domination.spec diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/Domination_1.2.9.zip b/Domination_1.2.9.zip new file mode 100644 index 0000000..f0c7d6c --- /dev/null +++ b/Domination_1.2.9.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2de264f75fc819ff21653ead53d2be58314ec1a8b550a21aeeadba7a60a4275a +size 8677924 diff --git a/Domination_1.3.3.zip b/Domination_1.3.3.zip new file mode 100644 index 0000000..0312a11 --- /dev/null +++ b/Domination_1.3.3.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fb911aa102f7138a60243ef2c3b099197d1f5770b425f7d5868a544d95c8b23 +size 35410364 diff --git a/domination-FlashGUI.sh b/domination-FlashGUI.sh new file mode 100644 index 0000000..8f92db8 --- /dev/null +++ b/domination-FlashGUI.sh @@ -0,0 +1,4 @@ +#!/bin/sh + +cd /usr/share/domination && exec "/usr/bin/java" \ +-cp Domination.jar net.yura.domination.ui.flashgui.MainMenu "${@}" diff --git a/domination-Increment1GUI.sh b/domination-Increment1GUI.sh new file mode 100644 index 0000000..45e56ae --- /dev/null +++ b/domination-Increment1GUI.sh @@ -0,0 +1,4 @@ +#!/bin/sh + +cd /usr/share/domination && exec "/usr/bin/java" \ +-cp Domination.jar net.yura.domination.ui.increment1gui.Increment1Frame "${@}" diff --git a/domination-SimpleGUI.sh b/domination-SimpleGUI.sh new file mode 100644 index 0000000..67ba52f --- /dev/null +++ b/domination-SimpleGUI.sh @@ -0,0 +1,4 @@ +#!/bin/sh + +cd /usr/share/domination && exec "/usr/bin/java" \ +-cp Domination.jar net.yura.domination.ui.simplegui.RiskGUI "${@}" diff --git a/domination-SwingGUI.sh b/domination-SwingGUI.sh new file mode 100644 index 0000000..4592877 --- /dev/null +++ b/domination-SwingGUI.sh @@ -0,0 +1,4 @@ +#!/bin/sh + +cd /usr/share/domination && exec "/usr/bin/java" \ +-cp Domination.jar net.yura.domination.ui.swinggui.SwingGUIFrame "${@}" diff --git a/domination.changes b/domination.changes new file mode 100644 index 0000000..e1f0ec4 --- /dev/null +++ b/domination.changes @@ -0,0 +1,156 @@ +------------------------------------------------------------------- +Sun Feb 23 06:53:15 UTC 2025 - Carsten Ziepke + +- Update to 1.3.3 + * Linux audio fix +- Changes in 1.3.2 + * music update for menu and winning + * better loading screens when loading online games and + downloading maps + * GameGUI: in-game can use standard keyboard shortcut to + save game + * GameGUI: main manu - can right click to get to options screen + on windows + * fix out of memory error, Better memory management in audio + system, close audio after playing. + * fix for handling unexpected errors in audio system to not + overload and bring down the maps server + * RiskGame.getMissions() now returns ALL game missions, to make + AI development easier + * SwingGUI: can replay debug game log without having to save it + to file first + * SwingGUI: little memory graph on debug screen +- Changes in 1.3.1 + * Sounds effects and music! (memory leak fixed this time) + * Can change game speed in Option dialog + * Can view continents values for maps that do not display this + information + * MapChooser: can right click and select Map info + * MapChooser: no repaint macos JDK-19 bug workaround: MapChooser + loading animation added + * SwingGUI: can change who owns a country + * SwingGUI: fixed: unable to start game when all options + are present + * MapEditor: smart fill Mnemonic 'F' + * MapEditor: force user to save map if changed before publish + +------------------------------------------------------------------- +Sun Sep 10 16:19:10 UTC 2023 - Andrea Manzini + +- update to 1.2.9: + * Hi-resolution support for image assets in main game UI + * GameGUI: mission dialog can be resized + * SwingGUI Testing tab: you can edit the number of extra armies at the start of each turn + * SwingGUI Testing tab: auto refresh when opening the testing tab + * Fixed: map filename is shown sometimes instead of proper name in lobby game setup + +------------------------------------------------------------------- +Sat Jan 21 10:59:38 UTC 2023 - Dirk Müller + +- update to 1.2.7: + * Fix for online games over 1MB not loading + * Much faster startup time (6 seconds faster on mac) + * MapEditor: Fill Shapes right click option added to allow filling holes in countries + * SwingGUI: fix for online lobby sometimes not repainting when tabs switched + * Lobby: when player resigns, the player is converted to easy AI instead of crap AI + * New field in game engine for maxCardsPerPlayer + * Fix grasshopper error on java 1.8 on mac when appending to log from interrupted thread + * Show connection errors in Lobby + * Fix error in replay when user has made invalid commands (e.g. tried to place 10 armies when they only have 9) + * SwingUI on macOS use native file chooser for selecting files (fix for Documents folder not showing files) + * Game engine supports over 9 players if configured with "game.players.max" in game.ini + * SwingGUI: can select 3 defending dice in any game mode + * Fix for lobby failed to launch when javax.crypto.JceSecurity not found + * New field in game for minimumNewArmies that can be set depending on the game options + * New Italian rules: no minimum armies, if you have less than 3 counties, you get 0 armies + * New Italian rules: during trade get 2 extra armies for each country, and can place them anywhere + * New Italian rules: game engine/network play version now 14 + + +------------------------------------------------------------------- +Fri Dec 3 15:33:29 UTC 2021 - Ferdinand Thiessen + +- Update to 1.2.4 + * Better 'Troop Strength' view + * New right-click options on countries list in the MapEditor + * Various other bug fixes. + +------------------------------------------------------------------- +Sun Apr 11 02:06:14 UTC 2021 - Ferdinand Thiessen + +- Update to 1.2.3: + * PlayerList for Lobby games shows players with correct color + * Fix for hi-res Linux jdk-11 that sometimes uses display density + instead of scale + * Now works for gtk dark theme + * Auto-Defend now happens on the server for Lobby Multiplayer + * Map Editor shows rectangle for country that is used on cards + * SwingGUI: Options and AI speed setting put into same Options + Dialog + * max players can be changed in game.ini config file + * MapEditor: fixed zoom to keep the mouse position on map static + * SwingGUI: testing tab, show player for online games + * Can create private games online with a password to enter + * Can view cards and missions even when it is not your turn + * Filter online game maps by Michiel Pater + * Do not show dice statistics for turns when the player rolled no dice + * French text update by Adrien Laugueux + * Can Flag 🚩 a game as inappropriate with right click menu option + * MapEditor: checks for overlapping circles + * MapEditor: warning on no cards in map + +------------------------------------------------------------------- +Fri Mar 27 14:21:59 UTC 2020 - Christophe Giboudeaux + +- Update to 1.2.1. Check the installed ChangeLog.txt file for the + complete list of changes. + * Improved hi-res support + * Updated translations + * Map editor fixes. +- Spec cleanup. +- Fix the package group. + +------------------------------------------------------------------- +Tue Sep 22 18:26:20 UTC 2015 - nemysis@openSUSE.org + +- Update to 1.1.1.6, please look + + /usr/share/domination/ChangeLog.txt + +------------------------------------------------------------------- +Mon Mar 30 09:54:00 UTC 2015 - dimstar@opensuse.org + +- Add domination.png as icon (converted from resources/icon.ico): + The .ico file at least is 32x32 pixels, whereas the provided pnt + was only 16x16. + +------------------------------------------------------------------- +Fri Nov 14 21:13:57 UTC 2014 - nemysis@gmx.ch + +- Change Source0 Web URL + +------------------------------------------------------------------- +Thu Nov 13 18:57:26 UTC 2014 - nemysis@gmx.ch + +- Use Group Amusements/Games/Arcade/Strategy instead of + Amusements/Games/Arcade/StrategyGame +- Use check for openSUSE %if 0%{?suse_version} +- Remove BuildRequires for desktop-file-utils +- Fix typo + +------------------------------------------------------------------- +Sun Oct 5 06:39:05 UTC 2014 - nemysis@gmx.ch + +- Change %fdupes + +------------------------------------------------------------------- +Tue Sep 30 13:06:56 UTC 2014 - nemysis@gmx.ch + +- Remove not needed mkdir -p +- Use %{name}.desktop instead of Desktop Entry in spec + +------------------------------------------------------------------- +Wed Sep 17 18:54:15 UTC 2014 - nemysis@gmx.ch + +- Initial package creation + diff --git a/domination.desktop b/domination.desktop new file mode 100644 index 0000000..e3e3623 --- /dev/null +++ b/domination.desktop @@ -0,0 +1,9 @@ +[Desktop Entry] +Name=Domination +GenericName=Strategy Game +Comment=Board game that is a bit like the well known game Risk +Icon=domination +Exec=domination-SwingGUI +Type=Application +Categories=Game;StrategyGame; +StartupNotify=false diff --git a/domination.png b/domination.png new file mode 100644 index 0000000..88902ac --- /dev/null +++ b/domination.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d11653fa0abebfc0df66d2027e07a38e78c9d025797946f65b9bdd6a695bc3c7 +size 579 diff --git a/domination.spec b/domination.spec new file mode 100644 index 0000000..beb402c --- /dev/null +++ b/domination.spec @@ -0,0 +1,97 @@ +# +# spec file for package domination +# +# Copyright (c) 2025 SUSE LLC +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via https://bugs.opensuse.org/ +# + + +Name: domination +Version: 1.3.3 +Release: 0 +Summary: Board game that is a bit like the well known game Risk +License: GPL-3.0-only +Group: Amusements/Games/Strategy/Turn Based +URL: https://domination.sourceforge.net/ +Source0: https://downloads.sourceforge.net/%{name}/Domination/%{version}/Domination_%{version}.zip +Source1: %{name}-FlashGUI.sh +Source2: %{name}-Increment1GUI.sh +Source3: %{name}-SimpleGUI.sh +Source4: %{name}-SwingGUI.sh +Source5: %{name}.desktop +Source6: %{name}.png +BuildRequires: dos2unix +BuildRequires: fdupes +BuildRequires: unzip +BuildRequires: update-desktop-files +Requires: %{name}-data +Requires: jre >= 1.6.0 +BuildArch: noarch + +%description +Domination is a board game that is a bit like the well known game Risk. + +Domination is a game that is a bit like the well known board game of Risk +or RisiKo. It has many game options and includes many maps. + +Written in java it includes a map editor, a simple map format, multiplayer +network play, single player, hotseat, 5 user interfaces and many more features, +it works in all OSs that run java. + +%prep +%setup -q -n Domination + +# Convert to unix line end +find -name "*.txt" -print0 -or -name "*.ini" -print0 -or -name "*.cmd" -print0 \ + -or -name "*.htm" -print0 -or -name "*.cards" -print0 -or -name "*.map" -print0 \ + -or -name "*.properties" -print0 | xargs -0 dos2unix + +%build + +%install +# install wrappers +install -Dm 0755 %{SOURCE1} %{buildroot}%{_bindir}/%{name}-FlashGUI +install -Dm 0755 %{SOURCE2} %{buildroot}%{_bindir}/%{name}-Increment1GUI +install -Dm 0755 %{SOURCE3} %{buildroot}%{_bindir}/%{name}-SimpleGUI +install -Dm 0755 %{SOURCE4} %{buildroot}%{_bindir}/%{name}-SwingGUI + +# install directories +mkdir -p %{buildroot}%{_datadir}/%{name}/{help,lib,maps,maps/preview,resources,sound,sound/medival} +for d in help lib resources ; do + install -Dm 0644 $d/* %{buildroot}%{_datadir}/%{name}/$d +done + +# maps +cp -a maps %{buildroot}%{_datadir}/%{name}/ +# sound +cp -a sound %{buildroot}%{_datadir}/%{name}/ + +# install files +for f in *.jar *.txt *.ini ; do + install -Dm 0644 "$f" %{buildroot}%{_datadir}/%{name} +done +# install icon +install -Dm 0644 %{SOURCE6} %{buildroot}%{_datadir}/pixmaps/%{name}.png +# install Desktop file +install -Dm 0644 %{SOURCE5} %{buildroot}%{_datadir}/applications/%{name}.desktop + +%suse_update_desktop_file %{name} +%fdupes -s %{buildroot}%{_prefix} + +%files +%{_bindir}/%{name}-*GUI +%{_datadir}/applications/%{name}.desktop +%{_datadir}/pixmaps/%{name}.png +%{_datadir}/%{name} + +%changelog