Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package antimicrox for openSUSE:Factory 
checked in at 2021-03-20 21:26:04
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/antimicrox (Old)
 and      /work/SRC/openSUSE:Factory/.antimicrox.new.2401 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "antimicrox"

Sat Mar 20 21:26:04 2021 rev:2 rq:880154 version:3.1.5

Changes:
--------
--- /work/SRC/openSUSE:Factory/antimicrox/antimicrox.changes    2021-01-21 
21:54:32.697774558 +0100
+++ /work/SRC/openSUSE:Factory/.antimicrox.new.2401/antimicrox.changes  
2021-03-20 21:26:29.809213283 +0100
@@ -1,0 +2,14 @@
+Sun Mar 14 18:22:03 UTC 2021 - Carsten Ziepke <[email protected]>
+
+- Update to version 3.1.5
+  - Migrate DEB packages to antimicrox #87
+  - Integrate builds marking with docs cmake and CI #143
+  - Allow cleaner marking package builds #143 (mirabilos)
+  - fix appdata formatting #142 (mirabilos)
+  - apply lintian-provided spelling fixes #141 (mirabilos)
+  - fix the manpage (hyphen as minus sign) #140 (mirabilos)
+  - fix: change deb arch prefix for building AppImage #135 (pktiuk)
+- Rebase remove_datetime_aboutdialog.patch
+- Drop devel package
+
+-------------------------------------------------------------------

Old:
----
  antimicrox-3.1.4.tar.gz

New:
----
  antimicrox-3.1.5.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ antimicrox.spec ++++++
--- /var/tmp/diff_new_pack.QTxSCP/_old  2021-03-20 21:26:30.409213985 +0100
+++ /var/tmp/diff_new_pack.QTxSCP/_new  2021-03-20 21:26:30.413213990 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           antimicrox
-Version:        3.1.4
+Version:        3.1.5
 Release:        0
 Summary:        Graphical program used to map keyboard keys and mouse controls 
to a game-pad
 License:        GPL-3.0-or-later
@@ -59,13 +59,6 @@
 This application is continuation of project called AntiMicro,
 which was later abandoned and revived by juliagoda.
 
-%package devel
-Summary:        Development files for %{name}
-Group:          Development/Tools/Building
-
-%description devel
-The %{name}-devel package contains header files for %{name}.
-
 %prep
 %setup -q
 %autopatch -p1
@@ -98,11 +91,6 @@
 %{_datadir}/icons/breeze/
 %{_datadir}/icons/breeze/48x48/*
 %{_datadir}/icons/breeze/48x48/apps*
-
 %{_mandir}/man?/%{name}.?%{?ext_man}
 
-%files devel
-%dir %{_includedir}/%{name}
-%{_includedir}/%{name}/*
-
 %changelog

++++++ antimicrox-3.1.4.tar.gz -> antimicrox-3.1.5.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/antimicrox-3.1.4/.github/workflows/release.yml 
new/antimicrox-3.1.5/.github/workflows/release.yml
--- old/antimicrox-3.1.4/.github/workflows/release.yml  2021-01-11 
12:45:44.000000000 +0100
+++ new/antimicrox-3.1.5/.github/workflows/release.yml  2021-03-14 
15:07:59.000000000 +0100
@@ -35,7 +35,6 @@
   build-appimage:
     # Version of ubuntu building this appimage, it shouldn't be the latest 
verion of ubuntu to avoid breaking compatibility with older systems
     runs-on: ubuntu-18.04
-    needs: build_deb
 
     steps:
     - name: Install Dependencies
@@ -44,18 +43,7 @@
     # Checks-out your repository under $GITHUB_WORKSPACE, so your job can 
access it
     - uses: actions/checkout@v2
 
-    # Installing antimicrox is required for appimage creator
-    - name: Install antimicrox
-      run: |
-        VERSION=`cat ./CMakeLists.txt | grep "set(ANTIMICROX_" | grep _VERSION 
| cut -d " " -f 2 | cut -d ")" -f 1`
-        MAJOR=`echo $VERSION | cut -d " " -f 1`
-        MINOR=`echo $VERSION | cut -d " " -f 2`
-        PATCH=`echo $VERSION | cut -d " " -f 3`
-        wget 
"https://github.com/$GITHUB_REPOSITORY/releases/latest/download/antimicrox-$MAJOR.$MINOR.$PATCH-amd64.deb";
-        sudo dpkg -i `ls -1 | grep .deb`
-
-
-    - name: Prepare files to create apppimage
+    - name: Prepare files needed to create AppImage
       run: |
         mkdir build && cd ./build
         wget 
https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/linuxdeploy-x86_64.AppImage
@@ -64,7 +52,15 @@
         chmod +x linuxdeploy-x86_64.AppImage
         chmod +x appimagetool-x86_64.AppImage
         chmod +x linuxdeploy-plugin-qt-x86_64.AppImage
-        cmake .. -DCMAKE_INSTALL_PREFIX=/usr
+
+    - name: Build AntiMicroX
+      run: |
+        VERSION=`cat ./CMakeLists.txt | grep "set(ANTIMICROX_" | grep _VERSION 
| cut -d " " -f 2 | cut -d ")" -f 1`
+        MAJOR=`echo $VERSION | cut -d " " -f 1`
+        MINOR=`echo $VERSION | cut -d " " -f 2`
+        PATCH=`echo $VERSION | cut -d " " -f 3`
+        cd build
+        cmake .. -DCMAKE_INSTALL_PREFIX=/usr 
-DANTIMICROX_PKG_VERSION="$MAJOR.$MINOR.$PATCH-x86_64 \(AppImage\)"
         make
         make install DESTDIR=AppDir
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' "old/antimicrox-3.1.4/AntiMicroX Future Developments.mm" 
"new/antimicrox-3.1.5/AntiMicroX Future Developments.mm"
--- "old/antimicrox-3.1.4/AntiMicroX Future Developments.mm"    2021-01-11 
12:45:44.000000000 +0100
+++ "new/antimicrox-3.1.5/AntiMicroX Future Developments.mm"    1970-01-01 
01:00:00.000000000 +0100
@@ -1,72 +0,0 @@
-<map version="1.0.1">
-<!-- To view this file, download free mind mapping software FreeMind from 
http://freemind.sourceforge.net -->
-<node CREATED="1379712845116" ID="ID_571348173" MODIFIED="1526063409822" 
TEXT="AntimicroX Future Developments">
-<font BOLD="true" NAME="Arial Black" SIZE="18"/>
-<node CREATED="1526058011028" ID="ID_121032400" MODIFIED="1530549062564" 
POSITION="right" TEXT="Add controller calibration">
-<font BOLD="true" NAME="Verdana" SIZE="14"/>
-<icon BUILTIN="idea"/>
-<icon BUILTIN="full-1"/>
-<icon BUILTIN="button_ok"/>
-<node CREATED="1526058584673" ID="ID_380767629" MODIFIED="1526058599436" 
TEXT="&quot;We should be able to calibrate it by moving it to its extremes 
after clicking a button so that the software knows the maximum values for both 
axes, then click &quot;Finish calibrating&quot; when the joystick is at the 
center so it knows where that is too.&quot;">
-<cloud/>
-<font ITALIC="true" NAME="SansSerif" SIZE="12"/>
-</node>
-</node>
-<node CREATED="1526058231348" ID="ID_912857029" MODIFIED="1531489410252" 
POSITION="left" TEXT="Create multiple profiles working with Auto Profiles ">
-<font BOLD="true" NAME="Verdana" SIZE="14"/>
-<icon BUILTIN="idea"/>
-<icon BUILTIN="full-2"/>
-<icon BUILTIN="button_ok"/>
-<node CREATED="1526058437842" ID="ID_49023724" MODIFIED="1526058549973" 
TEXT="&quot;You have your game profiles that are designed for certain games and 
will run only when certain games are running. You will have one profile called 
Media Player which is able to control your media player with your controller. 
This Media Player profile will always be running no matter what. You will have 
a mic on/off profile which is able to turn your mic on and off so you can talk 
by pressing a button with your controller. This profile will only run with 
selected games you choose it to run with. &#xa;&#xa;With this feature game 
profiles can be more dynamic since you don&apos;t need to add your media player 
buttons into every game profile, or if you want to change your mic button 
instead of editing every game profile you only need to edit one profile.&quot;">
-<cloud/>
-<font ITALIC="true" NAME="SansSerif" SIZE="12"/>
-</node>
-</node>
-<node CREATED="1526058647554" ID="ID_167899793" MODIFIED="1526063321862" 
POSITION="right" TEXT="Include an option to integrate xwiimote">
-<font BOLD="true" NAME="Verdana" SIZE="14"/>
-<icon BUILTIN="full-5"/>
-<icon BUILTIN="idea"/>
-<node CREATED="1526058855400" ID="ID_1241861703" MODIFIED="1526058864274" 
TEXT="&quot;It is made for developers to add wii controller options to their 
games; virtually no consideration to users who just want to use their wiimote 
as a game controller for existing games. Actually, an xwiimote developer has 
suggested an even narrower scope, adding wiimotes to emulators. By default, 7 
buttons are mapped to a game controller. no dpad, no nunchuck, no classic, no 
balance board, no guitar, no drums, no tilt, no accelerometer for game 
controllers. xwiimote does include these, by default, they are part of a 
keyboard device&quot;">
-<cloud/>
-<font ITALIC="true" NAME="SansSerif" SIZE="12"/>
-<node CREATED="1526059689316" ID="ID_751878896" MODIFIED="1526059704148" 
TEXT="detecting strum bar">
-<icon BUILTIN="help"/>
-</node>
-</node>
-</node>
-<node CREATED="1526059143094" ID="ID_1649392587" MODIFIED="1526063306065" 
POSITION="left" TEXT="Add improvements for flight simulator joystick">
-<font BOLD="true" NAME="Verdana" SIZE="14"/>
-<icon BUILTIN="full-6"/>
-<icon BUILTIN="idea"/>
-<node CREATED="1526059253123" ID="ID_1822846998" MODIFIED="1526059262354" 
TEXT="&quot;With a fast enough rate it would be possible to change the 
game&apos;s movement speed based on the joystick&apos;s analog value. Something 
like an &quot;enable duty cycle&quot; option&quot;">
-<cloud/>
-<font ITALIC="true" NAME="SansSerif" SIZE="12"/>
-</node>
-</node>
-<node CREATED="1526059389070" ID="ID_129988638" MODIFIED="1526063324630" 
POSITION="right" TEXT="Add support for Naga mouse">
-<font BOLD="true" NAME="Verdana" SIZE="14"/>
-<icon BUILTIN="full-7"/>
-<icon BUILTIN="idea"/>
-</node>
-<node CREATED="1526059514353" ID="ID_9232762" MODIFIED="1526063309806" 
POSITION="left" TEXT="Add support for Elite controller&apos;s paddles">
-<font BOLD="true" NAME="Verdana" SIZE="14"/>
-<icon BUILTIN="full-8"/>
-<icon BUILTIN="idea"/>
-</node>
-<node CREATED="1526059782198" ID="ID_1400167093" MODIFIED="1531489340838" 
POSITION="right" STYLE="fork" TEXT="Detecting window title part for loading 
profiles">
-<font BOLD="true" NAME="Verdana" SIZE="14"/>
-<icon BUILTIN="full-4"/>
-<icon BUILTIN="yes"/>
-<icon BUILTIN="button_ok"/>
-<node CREATED="1526060105290" ID="ID_1284273032" MODIFIED="1526063382016" 
TEXT="Why: Full text of window title can be different every time, when 
it&apos;s started">
-<cloud/>
-<font ITALIC="true" NAME="SansSerif" SIZE="12"/>
-</node>
-</node>
-<node CREATED="1526060283067" ID="ID_1015249776" MODIFIED="1526063313615" 
POSITION="left" TEXT="Add compatibility for profiles from JoyToKey, Xpadder and 
Pinnacle Gamer Profiler">
-<font BOLD="true" NAME="Verdana" SIZE="14"/>
-<icon BUILTIN="idea"/>
-<icon BUILTIN="full-3"/>
-</node>
-</node>
-</map>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/antimicrox-3.1.4/BUILDING.md 
new/antimicrox-3.1.5/BUILDING.md
--- old/antimicrox-3.1.4/BUILDING.md    2021-01-11 12:45:44.000000000 +0100
+++ new/antimicrox-3.1.5/BUILDING.md    2021-03-14 15:07:59.000000000 +0100
@@ -89,6 +89,9 @@
 
 Default: OFF. Allows for the launch of test sources with unit tests
 
+    -DANTIMICROX_PKG_VERSION
+Default: Not defined. (feature intended for packagers) Manually define version 
of package displayed in info tab. When not defined building time is displayed 
instead.
+
 ### Linux Options
 
     -DAPPDATA
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/antimicrox-3.1.4/CHANGELOG.md 
new/antimicrox-3.1.5/CHANGELOG.md
--- old/antimicrox-3.1.4/CHANGELOG.md   2021-01-11 12:45:44.000000000 +0100
+++ new/antimicrox-3.1.5/CHANGELOG.md   2021-03-14 15:07:59.000000000 +0100
@@ -1,5 +1,23 @@
 # Changelog
 
+## [3.1.5](https://github.com/AntiMicroX/antimicrox/tree/3.1.5) (2021-03-14)
+
+[Full 
Changelog](https://github.com/AntiMicroX/antimicrox/compare/3.1.4...3.1.5)
+
+Big thanks to @mirabilos for help with Debian packages migration and cleaning 
up project.
+
+**Notable closed issues:**
+- Migrate DEB packages to antimicrox 
[\#87](https://github.com/AntiMicroX/antimicrox/issues/87) 
+- Integrate builds marking with docs cmake and CI 
[\#143](https://github.com/AntiMicroX/antimicrox/pull/143)
+
+**Other merged pull requests:**
+
+- Allow cleaner marking package builds 
[\#143](https://github.com/AntiMicroX/antimicrox/pull/143) 
([mirabilos](https://github.com/mirabilos))
+- fix appdata formatting 
[\#142](https://github.com/AntiMicroX/antimicrox/pull/142) 
([mirabilos](https://github.com/mirabilos))
+- apply lintian-provided spelling fixes 
[\#141](https://github.com/AntiMicroX/antimicrox/pull/141) 
([mirabilos](https://github.com/mirabilos))
+- fix the manpage \(hyphen as minus sign\) 
[\#140](https://github.com/AntiMicroX/antimicrox/pull/140) 
([mirabilos](https://github.com/mirabilos))
+- fix: change deb arch prefix for building AppImage 
[\#135](https://github.com/AntiMicroX/antimicrox/pull/135) 
([pktiuk](https://github.com/pktiuk))
+
 ## [3.1.4](https://github.com/AntiMicroX/antimicrox/tree/3.1.4) (2021-01-11)
 
 [Full 
Changelog](https://github.com/AntiMicroX/antimicrox/compare/3.1.3...3.1.4)
@@ -217,17 +235,17 @@
 
 * Fixed bug with too many "emit propertyUpdated()"
 
-* Splitted JoyButtonSlot class into JoyButtonSlotXml and the original
+* Split JoyButtonSlot class into JoyButtonSlotXml and the original
 
 * Created template class for JoyDPad and VDPad xml
 
-* Splitted GameControllerDPad class into GameControllerDPadXml and the original
+* Split GameControllerDPad class into GameControllerDPadXml and the original
 
 * Replaced for loops with iterators and functional mappers
 
 * Replaced for loops with hashiterators
 
-* Added functions about vendor and product informations
+* Added functions about vendor and product information
 
 * Changed guid to uniqueID
 
@@ -253,7 +271,7 @@
 
 * Created smaller functions in part of classes
 
-* Splitted part of classes into new xml classes
+* Split part of classes into new xml classes
 
 * Added com.github.juliagoda.antimicro.json for Flatpak (building and 
installation on Linux)
 
@@ -263,7 +281,7 @@
 
 * Changed if else to switch statements for int data types
 
-* First preparation for unit tests (app splitted into library (antilib) and 
executable (antimicro))
+* First preparation for unit tests (app split into library (antilib) and 
executable (antimicro))
 
 * Updated calibration - reset old values during calibration startup
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/antimicrox-3.1.4/CMakeLists.txt 
new/antimicrox-3.1.5/CMakeLists.txt
--- old/antimicrox-3.1.4/CMakeLists.txt 2021-01-11 12:45:44.000000000 +0100
+++ new/antimicrox-3.1.5/CMakeLists.txt 2021-03-14 15:07:59.000000000 +0100
@@ -64,7 +64,7 @@
 # The version number.
 set(ANTIMICROX_MAJOR_VERSION 3)
 set(ANTIMICROX_MINOR_VERSION 1)
-set(ANTIMICROX_PATCH_VERSION 4)
+set(ANTIMICROX_PATCH_VERSION 5)
 
 option(WITH_TESTS "Allow tests for classes" OFF)
 
@@ -82,7 +82,12 @@
 option(UPDATE_TRANSLATIONS "Call lupdate to update translation files from 
source." OFF)
 option(TRANS_KEEP_OBSOLETE "Add -noobsolete option to lupdate command to get 
rid of old text entries" OFF)
 option(ATTACH_FAKE_CLASSES "Fake classes can be used in application to tests 
functionalities" OFF)
+option(ANTIMICROX_PKG_VERSION "Manually define version of package displayed in 
info tab" OFF)
 
+if(ANTIMICROX_PKG_VERSION)
+    message("This build will be marked as: ${ANTIMICROX_PKG_VERSION}")
+    add_compile_definitions(ANTIMICROX_PKG_VERSION="${ANTIMICROX_PKG_VERSION}")
+endif(ANTIMICROX_PKG_VERSION)
 
 if(UNIX)
     find_package(PkgConfig REQUIRED)
@@ -502,8 +507,6 @@
 # Specify out directory for final executable.
 if(UNIX)
     install(TARGETS antimicrox RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}")
-    #           install(TARGETS antilib DESTINATION "${CMAKE_INSTALL_LIBDIR}")
-    install(FILES ${antimicrox_HEADERS} DESTINATION 
"${CMAKE_INSTALL_INCLUDEDIR}/antimicrox")
 endif(UNIX)
 
 if(UNIX)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/antimicrox-3.1.4/other/antimicrox.1 
new/antimicrox-3.1.5/other/antimicrox.1
--- old/antimicrox-3.1.4/other/antimicrox.1     2021-01-11 12:45:44.000000000 
+0100
+++ new/antimicrox-3.1.5/other/antimicrox.1     2021-03-14 15:07:59.000000000 
+0100
@@ -25,7 +25,7 @@
 \fB\-\-profile\fR \fI<location>\fR
 use specified profile as default for selected controllers. Defaults to all 
controllers.
 .TP
-\fB\-\-profile-controller\fR \fI<value>\fR
+\fB\-\-profile\-controller\fR \fI<value>\fR
 apply configuration file to a specific controller. <value> can be an 
controller index, name, or GUID.
 .TP
 \fB\-\-hidden\fR
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/antimicrox-3.1.4/other/appdata/io.github.antimicrox.antimicrox.appdata.xml.in
 
new/antimicrox-3.1.5/other/appdata/io.github.antimicrox.antimicrox.appdata.xml.in
--- 
old/antimicrox-3.1.4/other/appdata/io.github.antimicrox.antimicrox.appdata.xml.in
   2021-01-11 12:45:44.000000000 +0100
+++ 
new/antimicrox-3.1.5/other/appdata/io.github.antimicrox.antimicrox.appdata.xml.in
   2021-03-14 15:07:59.000000000 +0100
@@ -4,7 +4,7 @@
   <metadata_license>CC0-1.0</metadata_license>
   <project_license>GPL-3.0+</project_license>
   <name>AntiMicroX</name>
-  <summary>Graphical program used to map gamepad buttons to keyboard, mouse, 
scripts and macros.</summary>
+  <summary>Graphical program used to map gamepad buttons to keyboard, mouse, 
scripts and macros</summary>
   <description>
     <p>
      AntiMicroX is a graphical program used to map gamepad buttons/joysticks
@@ -14,13 +14,13 @@
     </p>
     <p>
     It allows mapping of gamepads/joystick buttons to:
+    </p>
     <ul>
     <li>keyboard buttons</li>
     <li>mouse buttons and moves</li>
     <li>scripts and launching apps</li>
     <li>macros consisting of elements mentioned above</li>
     </ul>
-    </p>
     <p>
      AntiMicroX was inspired by QJoyPad.
     </p>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/antimicrox-3.1.4/other/io.github.antimicrox.antimicrox.desktop 
new/antimicrox-3.1.5/other/io.github.antimicrox.antimicrox.desktop
--- old/antimicrox-3.1.4/other/io.github.antimicrox.antimicrox.desktop  
2021-01-11 12:45:44.000000000 +0100
+++ new/antimicrox-3.1.5/other/io.github.antimicrox.antimicrox.desktop  
2021-03-14 15:07:59.000000000 +0100
@@ -6,9 +6,9 @@
 Name[fr]=AntiMicroX
 Comment[fr]=Utilisez une manette de jeu pour commander un logiciel
 Name[de]=AntiMicroX
-Comment[de]=Nutze das Gamepad um Programme/Spiele zu steuern
+Comment[de]=Nutze ein Gamepad, um Programme/Spiele zu steuern
 Comment[uk]=???????????????????????????? ?????????????? ?????????????????????? 
?????? ?????????????????? ????????????????????
-Exec=antimicrox
+Exec=antimicrox %f
 Icon=io.github.antimicrox.antimicrox
 StartupNotify=true
 Terminal=false
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/antimicrox-3.1.4/share/antimicrox/translations/antimicrox.ts 
new/antimicrox-3.1.5/share/antimicrox/translations/antimicrox.ts
--- old/antimicrox-3.1.4/share/antimicrox/translations/antimicrox.ts    
2021-01-11 12:45:44.000000000 +0100
+++ new/antimicrox-3.1.5/share/antimicrox/translations/antimicrox.ts    
2021-03-14 15:07:59.000000000 +0100
@@ -329,7 +329,7 @@
     </message>
     <message>
         <location filename="../../../src/aboutdialog.ui" line="375"/>
-        <source>&quot;juliagoda&quot; (since March, 2018) Wanting only to play 
my favourite old games that din&apos;t support gamepads, I found this project 
(which map keyboard keys and mouse buttons to connected gamepads on Linux) as 
most proper and recent. But because of poor choices of such application on the 
internet and since it didn&apos;t compile properly, I decided to rescue the 
project. However, once I finished my work (enough to enjoy playing games) I 
thought about sharing this code with others. Of course all informations about 
past programmers will be held.
+        <source>&quot;juliagoda&quot; (since March, 2018) Wanting only to play 
my favourite old games that din&apos;t support gamepads, I found this project 
(which map keyboard keys and mouse buttons to connected gamepads on Linux) as 
most proper and recent. But because of poor choices of such application on the 
internet and since it didn&apos;t compile properly, I decided to rescue the 
project. However, once I finished my work (enough to enjoy playing games) I 
thought about sharing this code with others. Of course all information about 
past programmers will be held.
 
 &quot;Ryochan7&quot; (since December 30, 2012 until 2017), I have been working 
on AntiMicro in my spare time. What originally started as a fork of QJoyPad and 
a way to learn proper event-driven programming has turned into something much 
bigger than I originally intended. Although I have spent a lot of time learning 
new techniques, finding out more about the domain of KB+M emulation, and 
spending Friday nights bashing my head against my keyboard, it has been a fun 
and enriching experience overall.
 
@@ -343,7 +343,7 @@
 
 As of May 24, 2016, this project has moved to 
https://github.com/AntiMicro/antimicro. As next, project has been continued 
since 2018 by juliagoda on antimicroX project. Additionally, project management 
has passed from Travis (Ryochan7) to the AntiMicro organization due to Travis 
having other interests and priorities.
 </source>
-        <translation>&quot;juliagoda&quot; (since March, 2018) Wanting only to 
play my favourite old games that din&apos;t support gamepads, I found this 
project (which map keyboard keys and mouse buttons to connected gamepads on 
Linux) as most proper and recent. But because of poor choices of such 
application on the internet and since it didn&apos;t compile properly, I 
decided to rescue the project. However, once I finished my work (enough to 
enjoy playing games) I thought about sharing this code with others. Of course 
all informations about past programmers will be held.
+        <translation>&quot;juliagoda&quot; (since March, 2018) Wanting only to 
play my favourite old games that din&apos;t support gamepads, I found this 
project (which map keyboard keys and mouse buttons to connected gamepads on 
Linux) as most proper and recent. But because of poor choices of such 
application on the internet and since it didn&apos;t compile properly, I 
decided to rescue the project. However, once I finished my work (enough to 
enjoy playing games) I thought about sharing this code with others. Of course 
all information about past programmers will be held.
 
 &quot;Ryochan7&quot; (since December 30, 2012 until 2017), I have been working 
on AntiMicro in my spare time. What originally started as a fork of QJoyPad and 
a way to learn proper event-driven programming has turned into something much 
bigger than I originally intended. Although I have spent a lot of time learning 
new techniques, finding out more about the domain of KB+M emulation, and 
spending Friday nights bashing my head against my keyboard, it has been a fun 
and enriching experience overall.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/antimicrox-3.1.4/share/antimicrox/translations/antimicrox_br.ts 
new/antimicrox-3.1.5/share/antimicrox/translations/antimicrox_br.ts
--- old/antimicrox-3.1.4/share/antimicrox/translations/antimicrox_br.ts 
2021-01-11 12:45:44.000000000 +0100
+++ new/antimicrox-3.1.5/share/antimicrox/translations/antimicrox_br.ts 
2021-03-14 15:07:59.000000000 +0100
@@ -202,7 +202,7 @@
     </message>
     <message>
         <location filename="../../../src/aboutdialog.ui" line="375"/>
-        <source>&quot;juliagoda&quot; (since March, 2018) Wanting only to play 
my favourite old games that din&apos;t support gamepads, I found this project 
(which map keyboard keys and mouse buttons to connected gamepads on Linux) as 
most proper and recent. But because of poor choices of such application on the 
internet and since it didn&apos;t compile properly, I decided to rescue the 
project. However, once I finished my work (enough to enjoy playing games) I 
thought about sharing this code with others. Of course all informations about 
past programmers will be held.
+        <source>&quot;juliagoda&quot; (since March, 2018) Wanting only to play 
my favourite old games that din&apos;t support gamepads, I found this project 
(which map keyboard keys and mouse buttons to connected gamepads on Linux) as 
most proper and recent. But because of poor choices of such application on the 
internet and since it didn&apos;t compile properly, I decided to rescue the 
project. However, once I finished my work (enough to enjoy playing games) I 
thought about sharing this code with others. Of course all information about 
past programmers will be held.
 
 &quot;Ryochan7&quot; (since December 30, 2012 until 2017), I have been working 
on AntiMicro in my spare time. What originally started as a fork of QJoyPad and 
a way to learn proper event-driven programming has turned into something much 
bigger than I originally intended. Although I have spent a lot of time learning 
new techniques, finding out more about the domain of KB+M emulation, and 
spending Friday nights bashing my head against my keyboard, it has been a fun 
and enriching experience overall.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/antimicrox-3.1.4/share/antimicrox/translations/antimicrox_br.ts.autosave 
new/antimicrox-3.1.5/share/antimicrox/translations/antimicrox_br.ts.autosave
--- 
old/antimicrox-3.1.4/share/antimicrox/translations/antimicrox_br.ts.autosave    
    2021-01-11 12:45:44.000000000 +0100
+++ 
new/antimicrox-3.1.5/share/antimicrox/translations/antimicrox_br.ts.autosave    
    2021-03-14 15:07:59.000000000 +0100
@@ -15,7 +15,7 @@
     </message>
     <message>
         <location filename="../../../src/aboutdialog.ui" line="369"/>
-        <source>&quot;juliagoda&quot; (since March, 2018) Wanting only to play 
my favourite old games that din&apos;t support gamepads, I found this project 
(which map keyboard keys and mouse buttons to connected gamepads on Linux) as 
most proper and recent. But because of poor choices of such application on the 
internet and since it didn&apos;t compile properly, I decided to rescue the 
project. However, once I finished my work (enough to enjoy playing games) I 
thought about sharing this code with others. Of course all informations about 
past programmers will be held.
+        <source>&quot;juliagoda&quot; (since March, 2018) Wanting only to play 
my favourite old games that din&apos;t support gamepads, I found this project 
(which map keyboard keys and mouse buttons to connected gamepads on Linux) as 
most proper and recent. But because of poor choices of such application on the 
internet and since it didn&apos;t compile properly, I decided to rescue the 
project. However, once I finished my work (enough to enjoy playing games) I 
thought about sharing this code with others. Of course all information about 
past programmers will be held.
 
 &quot;Ryochan7&quot; (since December 30, 2012 until 2017), I have been working 
on AntiMicro in my spare time. What originally started as a fork of QJoyPad and 
a way to learn proper event-driven programming has turned into something much 
bigger than I originally intended. Although I have spent a lot of time learning 
new techniques, finding out more about the domain of KB+M emulation, and 
spending Friday nights bashing my head against my keyboard, it has been a fun 
and enriching experience overall.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/antimicrox-3.1.4/share/antimicrox/translations/antimicrox_de.ts 
new/antimicrox-3.1.5/share/antimicrox/translations/antimicrox_de.ts
--- old/antimicrox-3.1.4/share/antimicrox/translations/antimicrox_de.ts 
2021-01-11 12:45:44.000000000 +0100
+++ new/antimicrox-3.1.5/share/antimicrox/translations/antimicrox_de.ts 
2021-03-14 15:07:59.000000000 +0100
@@ -241,7 +241,7 @@
     </message>
     <message>
         <location filename="../../../src/aboutdialog.ui" line="375"/>
-        <source>&quot;juliagoda&quot; (since March, 2018) Wanting only to play 
my favourite old games that din&apos;t support gamepads, I found this project 
(which map keyboard keys and mouse buttons to connected gamepads on Linux) as 
most proper and recent. But because of poor choices of such application on the 
internet and since it didn&apos;t compile properly, I decided to rescue the 
project. However, once I finished my work (enough to enjoy playing games) I 
thought about sharing this code with others. Of course all informations about 
past programmers will be held.
+        <source>&quot;juliagoda&quot; (since March, 2018) Wanting only to play 
my favourite old games that din&apos;t support gamepads, I found this project 
(which map keyboard keys and mouse buttons to connected gamepads on Linux) as 
most proper and recent. But because of poor choices of such application on the 
internet and since it didn&apos;t compile properly, I decided to rescue the 
project. However, once I finished my work (enough to enjoy playing games) I 
thought about sharing this code with others. Of course all information about 
past programmers will be held.
 
 &quot;Ryochan7&quot; (since December 30, 2012 until 2017), I have been working 
on AntiMicro in my spare time. What originally started as a fork of QJoyPad and 
a way to learn proper event-driven programming has turned into something much 
bigger than I originally intended. Although I have spent a lot of time learning 
new techniques, finding out more about the domain of KB+M emulation, and 
spending Friday nights bashing my head against my keyboard, it has been a fun 
and enriching experience overall.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/antimicrox-3.1.4/share/antimicrox/translations/antimicrox_en.ts 
new/antimicrox-3.1.5/share/antimicrox/translations/antimicrox_en.ts
--- old/antimicrox-3.1.4/share/antimicrox/translations/antimicrox_en.ts 
2021-01-11 12:45:44.000000000 +0100
+++ new/antimicrox-3.1.5/share/antimicrox/translations/antimicrox_en.ts 
2021-03-14 15:07:59.000000000 +0100
@@ -329,7 +329,7 @@
     </message>
     <message>
         <location filename="../../../src/aboutdialog.ui" line="375"/>
-        <source>&quot;juliagoda&quot; (since March, 2018) Wanting only to play 
my favourite old games that din&apos;t support gamepads, I found this project 
(which map keyboard keys and mouse buttons to connected gamepads on Linux) as 
most proper and recent. But because of poor choices of such application on the 
internet and since it didn&apos;t compile properly, I decided to rescue the 
project. However, once I finished my work (enough to enjoy playing games) I 
thought about sharing this code with others. Of course all informations about 
past programmers will be held.
+        <source>&quot;juliagoda&quot; (since March, 2018) Wanting only to play 
my favourite old games that din&apos;t support gamepads, I found this project 
(which map keyboard keys and mouse buttons to connected gamepads on Linux) as 
most proper and recent. But because of poor choices of such application on the 
internet and since it didn&apos;t compile properly, I decided to rescue the 
project. However, once I finished my work (enough to enjoy playing games) I 
thought about sharing this code with others. Of course all information about 
past programmers will be held.
 
 &quot;Ryochan7&quot; (since December 30, 2012 until 2017), I have been working 
on AntiMicro in my spare time. What originally started as a fork of QJoyPad and 
a way to learn proper event-driven programming has turned into something much 
bigger than I originally intended. Although I have spent a lot of time learning 
new techniques, finding out more about the domain of KB+M emulation, and 
spending Friday nights bashing my head against my keyboard, it has been a fun 
and enriching experience overall.
 
@@ -343,7 +343,7 @@
 
 As of May 24, 2016, this project has moved to 
https://github.com/AntiMicro/antimicro. As next, project has been continued 
since 2018 by juliagoda on antimicroX project. Additionally, project management 
has passed from Travis (Ryochan7) to the AntiMicro organization due to Travis 
having other interests and priorities.
 </source>
-        <translation>&quot;juliagoda&quot; (since March, 2018) Wanting only to 
play my favourite old games that din&apos;t support gamepads, I found this 
project (which map keyboard keys and mouse buttons to connected gamepads on 
Linux) as most proper and recent. But because of poor choices of such 
application on the internet and since it didn&apos;t compile properly, I 
decided to rescue the project. However, once I finished my work (enough to 
enjoy playing games) I thought about sharing this code with others. Of course 
all informations about past programmers will be held.
+        <translation>&quot;juliagoda&quot; (since March, 2018) Wanting only to 
play my favourite old games that din&apos;t support gamepads, I found this 
project (which map keyboard keys and mouse buttons to connected gamepads on 
Linux) as most proper and recent. But because of poor choices of such 
application on the internet and since it didn&apos;t compile properly, I 
decided to rescue the project. However, once I finished my work (enough to 
enjoy playing games) I thought about sharing this code with others. Of course 
all information about past programmers will be held.
 
 &quot;Ryochan7&quot; (since December 30, 2012 until 2017), I have been working 
on AntiMicro in my spare time. What originally started as a fork of QJoyPad and 
a way to learn proper event-driven programming has turned into something much 
bigger than I originally intended. Although I have spent a lot of time learning 
new techniques, finding out more about the domain of KB+M emulation, and 
spending Friday nights bashing my head against my keyboard, it has been a fun 
and enriching experience overall.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/antimicrox-3.1.4/share/antimicrox/translations/antimicrox_es.ts 
new/antimicrox-3.1.5/share/antimicrox/translations/antimicrox_es.ts
--- old/antimicrox-3.1.4/share/antimicrox/translations/antimicrox_es.ts 
2021-01-11 12:45:44.000000000 +0100
+++ new/antimicrox-3.1.5/share/antimicrox/translations/antimicrox_es.ts 
2021-03-14 15:07:59.000000000 +0100
@@ -177,7 +177,7 @@
     </message>
     <message>
         <location filename="../../../src/aboutdialog.ui" line="375"/>
-        <source>&quot;juliagoda&quot; (since March, 2018) Wanting only to play 
my favourite old games that din&apos;t support gamepads, I found this project 
(which map keyboard keys and mouse buttons to connected gamepads on Linux) as 
most proper and recent. But because of poor choices of such application on the 
internet and since it didn&apos;t compile properly, I decided to rescue the 
project. However, once I finished my work (enough to enjoy playing games) I 
thought about sharing this code with others. Of course all informations about 
past programmers will be held.
+        <source>&quot;juliagoda&quot; (since March, 2018) Wanting only to play 
my favourite old games that din&apos;t support gamepads, I found this project 
(which map keyboard keys and mouse buttons to connected gamepads on Linux) as 
most proper and recent. But because of poor choices of such application on the 
internet and since it didn&apos;t compile properly, I decided to rescue the 
project. However, once I finished my work (enough to enjoy playing games) I 
thought about sharing this code with others. Of course all information about 
past programmers will be held.
 
 &quot;Ryochan7&quot; (since December 30, 2012 until 2017), I have been working 
on AntiMicro in my spare time. What originally started as a fork of QJoyPad and 
a way to learn proper event-driven programming has turned into something much 
bigger than I originally intended. Although I have spent a lot of time learning 
new techniques, finding out more about the domain of KB+M emulation, and 
spending Friday nights bashing my head against my keyboard, it has been a fun 
and enriching experience overall.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/antimicrox-3.1.4/share/antimicrox/translations/antimicrox_fr.ts 
new/antimicrox-3.1.5/share/antimicrox/translations/antimicrox_fr.ts
--- old/antimicrox-3.1.4/share/antimicrox/translations/antimicrox_fr.ts 
2021-01-11 12:45:44.000000000 +0100
+++ new/antimicrox-3.1.5/share/antimicrox/translations/antimicrox_fr.ts 
2021-03-14 15:07:59.000000000 +0100
@@ -177,7 +177,7 @@
     </message>
     <message>
         <location filename="../../../src/aboutdialog.ui" line="375"/>
-        <source>&quot;juliagoda&quot; (since March, 2018) Wanting only to play 
my favourite old games that din&apos;t support gamepads, I found this project 
(which map keyboard keys and mouse buttons to connected gamepads on Linux) as 
most proper and recent. But because of poor choices of such application on the 
internet and since it didn&apos;t compile properly, I decided to rescue the 
project. However, once I finished my work (enough to enjoy playing games) I 
thought about sharing this code with others. Of course all informations about 
past programmers will be held.
+        <source>&quot;juliagoda&quot; (since March, 2018) Wanting only to play 
my favourite old games that din&apos;t support gamepads, I found this project 
(which map keyboard keys and mouse buttons to connected gamepads on Linux) as 
most proper and recent. But because of poor choices of such application on the 
internet and since it didn&apos;t compile properly, I decided to rescue the 
project. However, once I finished my work (enough to enjoy playing games) I 
thought about sharing this code with others. Of course all information about 
past programmers will be held.
 
 &quot;Ryochan7&quot; (since December 30, 2012 until 2017), I have been working 
on AntiMicro in my spare time. What originally started as a fork of QJoyPad and 
a way to learn proper event-driven programming has turned into something much 
bigger than I originally intended. Although I have spent a lot of time learning 
new techniques, finding out more about the domain of KB+M emulation, and 
spending Friday nights bashing my head against my keyboard, it has been a fun 
and enriching experience overall.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/antimicrox-3.1.4/share/antimicrox/translations/antimicrox_it.ts 
new/antimicrox-3.1.5/share/antimicrox/translations/antimicrox_it.ts
--- old/antimicrox-3.1.4/share/antimicrox/translations/antimicrox_it.ts 
2021-01-11 12:45:44.000000000 +0100
+++ new/antimicrox-3.1.5/share/antimicrox/translations/antimicrox_it.ts 
2021-03-14 15:07:59.000000000 +0100
@@ -177,7 +177,7 @@
     </message>
     <message>
         <location filename="../../../src/aboutdialog.ui" line="375"/>
-        <source>&quot;juliagoda&quot; (since March, 2018) Wanting only to play 
my favourite old games that din&apos;t support gamepads, I found this project 
(which map keyboard keys and mouse buttons to connected gamepads on Linux) as 
most proper and recent. But because of poor choices of such application on the 
internet and since it didn&apos;t compile properly, I decided to rescue the 
project. However, once I finished my work (enough to enjoy playing games) I 
thought about sharing this code with others. Of course all informations about 
past programmers will be held.
+        <source>&quot;juliagoda&quot; (since March, 2018) Wanting only to play 
my favourite old games that din&apos;t support gamepads, I found this project 
(which map keyboard keys and mouse buttons to connected gamepads on Linux) as 
most proper and recent. But because of poor choices of such application on the 
internet and since it didn&apos;t compile properly, I decided to rescue the 
project. However, once I finished my work (enough to enjoy playing games) I 
thought about sharing this code with others. Of course all information about 
past programmers will be held.
 
 &quot;Ryochan7&quot; (since December 30, 2012 until 2017), I have been working 
on AntiMicro in my spare time. What originally started as a fork of QJoyPad and 
a way to learn proper event-driven programming has turned into something much 
bigger than I originally intended. Although I have spent a lot of time learning 
new techniques, finding out more about the domain of KB+M emulation, and 
spending Friday nights bashing my head against my keyboard, it has been a fun 
and enriching experience overall.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/antimicrox-3.1.4/share/antimicrox/translations/antimicrox_ja.ts 
new/antimicrox-3.1.5/share/antimicrox/translations/antimicrox_ja.ts
--- old/antimicrox-3.1.4/share/antimicrox/translations/antimicrox_ja.ts 
2021-01-11 12:45:44.000000000 +0100
+++ new/antimicrox-3.1.5/share/antimicrox/translations/antimicrox_ja.ts 
2021-03-14 15:07:59.000000000 +0100
@@ -177,7 +177,7 @@
     </message>
     <message>
         <location filename="../../../src/aboutdialog.ui" line="375"/>
-        <source>&quot;juliagoda&quot; (since March, 2018) Wanting only to play 
my favourite old games that din&apos;t support gamepads, I found this project 
(which map keyboard keys and mouse buttons to connected gamepads on Linux) as 
most proper and recent. But because of poor choices of such application on the 
internet and since it didn&apos;t compile properly, I decided to rescue the 
project. However, once I finished my work (enough to enjoy playing games) I 
thought about sharing this code with others. Of course all informations about 
past programmers will be held.
+        <source>&quot;juliagoda&quot; (since March, 2018) Wanting only to play 
my favourite old games that din&apos;t support gamepads, I found this project 
(which map keyboard keys and mouse buttons to connected gamepads on Linux) as 
most proper and recent. But because of poor choices of such application on the 
internet and since it didn&apos;t compile properly, I decided to rescue the 
project. However, once I finished my work (enough to enjoy playing games) I 
thought about sharing this code with others. Of course all information about 
past programmers will be held.
 
 &quot;Ryochan7&quot; (since December 30, 2012 until 2017), I have been working 
on AntiMicro in my spare time. What originally started as a fork of QJoyPad and 
a way to learn proper event-driven programming has turned into something much 
bigger than I originally intended. Although I have spent a lot of time learning 
new techniques, finding out more about the domain of KB+M emulation, and 
spending Friday nights bashing my head against my keyboard, it has been a fun 
and enriching experience overall.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/antimicrox-3.1.4/share/antimicrox/translations/antimicrox_pl.ts 
new/antimicrox-3.1.5/share/antimicrox/translations/antimicrox_pl.ts
--- old/antimicrox-3.1.4/share/antimicrox/translations/antimicrox_pl.ts 
2021-01-11 12:45:44.000000000 +0100
+++ new/antimicrox-3.1.5/share/antimicrox/translations/antimicrox_pl.ts 
2021-03-14 15:07:59.000000000 +0100
@@ -226,7 +226,7 @@
     </message>
     <message>
         <location filename="../../../src/aboutdialog.ui" line="375"/>
-        <source>&quot;juliagoda&quot; (since March, 2018) Wanting only to play 
my favourite old games that din&apos;t support gamepads, I found this project 
(which map keyboard keys and mouse buttons to connected gamepads on Linux) as 
most proper and recent. But because of poor choices of such application on the 
internet and since it didn&apos;t compile properly, I decided to rescue the 
project. However, once I finished my work (enough to enjoy playing games) I 
thought about sharing this code with others. Of course all informations about 
past programmers will be held.
+        <source>&quot;juliagoda&quot; (since March, 2018) Wanting only to play 
my favourite old games that din&apos;t support gamepads, I found this project 
(which map keyboard keys and mouse buttons to connected gamepads on Linux) as 
most proper and recent. But because of poor choices of such application on the 
internet and since it didn&apos;t compile properly, I decided to rescue the 
project. However, once I finished my work (enough to enjoy playing games) I 
thought about sharing this code with others. Of course all information about 
past programmers will be held.
 
 &quot;Ryochan7&quot; (since December 30, 2012 until 2017), I have been working 
on AntiMicro in my spare time. What originally started as a fork of QJoyPad and 
a way to learn proper event-driven programming has turned into something much 
bigger than I originally intended. Although I have spent a lot of time learning 
new techniques, finding out more about the domain of KB+M emulation, and 
spending Friday nights bashing my head against my keyboard, it has been a fun 
and enriching experience overall.
 
@@ -620,7 +620,7 @@
         <translation>O rozwoju</translation>
     </message>
     <message>
-        <source>&quot;juliagoda&quot; (since March, 2018) Wanting only to play 
my favourite old games that din&apos;t support gamepads, I found this project 
(which map keyboard keys and mouse buttons to connected gamepads on Linux) as 
most proper and recent. But because of poor choices of such application on the 
internet and since it didn&apos;t compile properly, I decided to rescue the 
project. However, once I finished my work (enough to enjoy playing games) I 
thought about sharing this code with others. Of course all informations about 
past programmers will be held.
+        <source>&quot;juliagoda&quot; (since March, 2018) Wanting only to play 
my favourite old games that din&apos;t support gamepads, I found this project 
(which map keyboard keys and mouse buttons to connected gamepads on Linux) as 
most proper and recent. But because of poor choices of such application on the 
internet and since it didn&apos;t compile properly, I decided to rescue the 
project. However, once I finished my work (enough to enjoy playing games) I 
thought about sharing this code with others. Of course all information about 
past programmers will be held.
 
 &quot;Ryochan7&quot; (since December 30, 2012 until 2017), I have been working 
on AntiMicroX in my spare time. What originally started as a fork of QJoyPad 
and a way to learn proper event-driven programming has turned into something 
much bigger than I originally intended. Although I have spent a lot of time 
learning new techniques, finding out more about the domain of KB+M emulation, 
and spending Friday nights bashing my head against my keyboard, it has been a 
fun and enriching experience overall.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/antimicrox-3.1.4/share/antimicrox/translations/antimicrox_pt.ts 
new/antimicrox-3.1.5/share/antimicrox/translations/antimicrox_pt.ts
--- old/antimicrox-3.1.4/share/antimicrox/translations/antimicrox_pt.ts 
2021-01-11 12:45:44.000000000 +0100
+++ new/antimicrox-3.1.5/share/antimicrox/translations/antimicrox_pt.ts 
2021-03-14 15:07:59.000000000 +0100
@@ -177,7 +177,7 @@
     </message>
     <message>
         <location filename="../../../src/aboutdialog.ui" line="375"/>
-        <source>&quot;juliagoda&quot; (since March, 2018) Wanting only to play 
my favourite old games that din&apos;t support gamepads, I found this project 
(which map keyboard keys and mouse buttons to connected gamepads on Linux) as 
most proper and recent. But because of poor choices of such application on the 
internet and since it didn&apos;t compile properly, I decided to rescue the 
project. However, once I finished my work (enough to enjoy playing games) I 
thought about sharing this code with others. Of course all informations about 
past programmers will be held.
+        <source>&quot;juliagoda&quot; (since March, 2018) Wanting only to play 
my favourite old games that din&apos;t support gamepads, I found this project 
(which map keyboard keys and mouse buttons to connected gamepads on Linux) as 
most proper and recent. But because of poor choices of such application on the 
internet and since it didn&apos;t compile properly, I decided to rescue the 
project. However, once I finished my work (enough to enjoy playing games) I 
thought about sharing this code with others. Of course all information about 
past programmers will be held.
 
 &quot;Ryochan7&quot; (since December 30, 2012 until 2017), I have been working 
on AntiMicro in my spare time. What originally started as a fork of QJoyPad and 
a way to learn proper event-driven programming has turned into something much 
bigger than I originally intended. Although I have spent a lot of time learning 
new techniques, finding out more about the domain of KB+M emulation, and 
spending Friday nights bashing my head against my keyboard, it has been a fun 
and enriching experience overall.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/antimicrox-3.1.4/share/antimicrox/translations/antimicrox_ru.ts 
new/antimicrox-3.1.5/share/antimicrox/translations/antimicrox_ru.ts
--- old/antimicrox-3.1.4/share/antimicrox/translations/antimicrox_ru.ts 
2021-01-11 12:45:44.000000000 +0100
+++ new/antimicrox-3.1.5/share/antimicrox/translations/antimicrox_ru.ts 
2021-03-14 15:07:59.000000000 +0100
@@ -177,7 +177,7 @@
     </message>
     <message>
         <location filename="../../../src/aboutdialog.ui" line="375"/>
-        <source>&quot;juliagoda&quot; (since March, 2018) Wanting only to play 
my favourite old games that din&apos;t support gamepads, I found this project 
(which map keyboard keys and mouse buttons to connected gamepads on Linux) as 
most proper and recent. But because of poor choices of such application on the 
internet and since it didn&apos;t compile properly, I decided to rescue the 
project. However, once I finished my work (enough to enjoy playing games) I 
thought about sharing this code with others. Of course all informations about 
past programmers will be held.
+        <source>&quot;juliagoda&quot; (since March, 2018) Wanting only to play 
my favourite old games that din&apos;t support gamepads, I found this project 
(which map keyboard keys and mouse buttons to connected gamepads on Linux) as 
most proper and recent. But because of poor choices of such application on the 
internet and since it didn&apos;t compile properly, I decided to rescue the 
project. However, once I finished my work (enough to enjoy playing games) I 
thought about sharing this code with others. Of course all information about 
past programmers will be held.
 
 &quot;Ryochan7&quot; (since December 30, 2012 until 2017), I have been working 
on AntiMicro in my spare time. What originally started as a fork of QJoyPad and 
a way to learn proper event-driven programming has turned into something much 
bigger than I originally intended. Although I have spent a lot of time learning 
new techniques, finding out more about the domain of KB+M emulation, and 
spending Friday nights bashing my head against my keyboard, it has been a fun 
and enriching experience overall.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/antimicrox-3.1.4/share/antimicrox/translations/antimicrox_sr.ts 
new/antimicrox-3.1.5/share/antimicrox/translations/antimicrox_sr.ts
--- old/antimicrox-3.1.4/share/antimicrox/translations/antimicrox_sr.ts 
2021-01-11 12:45:44.000000000 +0100
+++ new/antimicrox-3.1.5/share/antimicrox/translations/antimicrox_sr.ts 
2021-03-14 15:07:59.000000000 +0100
@@ -177,7 +177,7 @@
     </message>
     <message>
         <location filename="../../../src/aboutdialog.ui" line="375"/>
-        <source>&quot;juliagoda&quot; (since March, 2018) Wanting only to play 
my favourite old games that din&apos;t support gamepads, I found this project 
(which map keyboard keys and mouse buttons to connected gamepads on Linux) as 
most proper and recent. But because of poor choices of such application on the 
internet and since it didn&apos;t compile properly, I decided to rescue the 
project. However, once I finished my work (enough to enjoy playing games) I 
thought about sharing this code with others. Of course all informations about 
past programmers will be held.
+        <source>&quot;juliagoda&quot; (since March, 2018) Wanting only to play 
my favourite old games that din&apos;t support gamepads, I found this project 
(which map keyboard keys and mouse buttons to connected gamepads on Linux) as 
most proper and recent. But because of poor choices of such application on the 
internet and since it didn&apos;t compile properly, I decided to rescue the 
project. However, once I finished my work (enough to enjoy playing games) I 
thought about sharing this code with others. Of course all information about 
past programmers will be held.
 
 &quot;Ryochan7&quot; (since December 30, 2012 until 2017), I have been working 
on AntiMicro in my spare time. What originally started as a fork of QJoyPad and 
a way to learn proper event-driven programming has turned into something much 
bigger than I originally intended. Although I have spent a lot of time learning 
new techniques, finding out more about the domain of KB+M emulation, and 
spending Friday nights bashing my head against my keyboard, it has been a fun 
and enriching experience overall.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/antimicrox-3.1.4/share/antimicrox/translations/antimicrox_uk.ts 
new/antimicrox-3.1.5/share/antimicrox/translations/antimicrox_uk.ts
--- old/antimicrox-3.1.4/share/antimicrox/translations/antimicrox_uk.ts 
2021-01-11 12:45:44.000000000 +0100
+++ new/antimicrox-3.1.5/share/antimicrox/translations/antimicrox_uk.ts 
2021-03-14 15:07:59.000000000 +0100
@@ -20,7 +20,7 @@
     </message>
     <message>
         <location filename="../../../src/aboutdialog.ui" line="375"/>
-        <source>&quot;juliagoda&quot; (since March, 2018) Wanting only to play 
my favourite old games that din&apos;t support gamepads, I found this project 
(which map keyboard keys and mouse buttons to connected gamepads on Linux) as 
most proper and recent. But because of poor choices of such application on the 
internet and since it didn&apos;t compile properly, I decided to rescue the 
project. However, once I finished my work (enough to enjoy playing games) I 
thought about sharing this code with others. Of course all informations about 
past programmers will be held.
+        <source>&quot;juliagoda&quot; (since March, 2018) Wanting only to play 
my favourite old games that din&apos;t support gamepads, I found this project 
(which map keyboard keys and mouse buttons to connected gamepads on Linux) as 
most proper and recent. But because of poor choices of such application on the 
internet and since it didn&apos;t compile properly, I decided to rescue the 
project. However, once I finished my work (enough to enjoy playing games) I 
thought about sharing this code with others. Of course all information about 
past programmers will be held.
 
 &quot;Ryochan7&quot; (since December 30, 2012 until 2017), I have been working 
on AntiMicro in my spare time. What originally started as a fork of QJoyPad and 
a way to learn proper event-driven programming has turned into something much 
bigger than I originally intended. Although I have spent a lot of time learning 
new techniques, finding out more about the domain of KB+M emulation, and 
spending Friday nights bashing my head against my keyboard, it has been a fun 
and enriching experience overall.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/antimicrox-3.1.4/share/antimicrox/translations/antimicrox_zh_CN.ts 
new/antimicrox-3.1.5/share/antimicrox/translations/antimicrox_zh_CN.ts
--- old/antimicrox-3.1.4/share/antimicrox/translations/antimicrox_zh_CN.ts      
2021-01-11 12:45:44.000000000 +0100
+++ new/antimicrox-3.1.5/share/antimicrox/translations/antimicrox_zh_CN.ts      
2021-03-14 15:07:59.000000000 +0100
@@ -197,7 +197,7 @@
     </message>
     <message>
         <location filename="../../../src/aboutdialog.ui" line="375"/>
-        <source>&quot;juliagoda&quot; (since March, 2018) Wanting only to play 
my favourite old games that din&apos;t support gamepads, I found this project 
(which map keyboard keys and mouse buttons to connected gamepads on Linux) as 
most proper and recent. But because of poor choices of such application on the 
internet and since it didn&apos;t compile properly, I decided to rescue the 
project. However, once I finished my work (enough to enjoy playing games) I 
thought about sharing this code with others. Of course all informations about 
past programmers will be held.
+        <source>&quot;juliagoda&quot; (since March, 2018) Wanting only to play 
my favourite old games that din&apos;t support gamepads, I found this project 
(which map keyboard keys and mouse buttons to connected gamepads on Linux) as 
most proper and recent. But because of poor choices of such application on the 
internet and since it didn&apos;t compile properly, I decided to rescue the 
project. However, once I finished my work (enough to enjoy playing games) I 
thought about sharing this code with others. Of course all information about 
past programmers will be held.
 
 &quot;Ryochan7&quot; (since December 30, 2012 until 2017), I have been working 
on AntiMicro in my spare time. What originally started as a fork of QJoyPad and 
a way to learn proper event-driven programming has turned into something much 
bigger than I originally intended. Although I have spent a lot of time learning 
new techniques, finding out more about the domain of KB+M emulation, and 
spending Friday nights bashing my head against my keyboard, it has been a fun 
and enriching experience overall.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/antimicrox-3.1.4/src/aboutdialog.cpp 
new/antimicrox-3.1.5/src/aboutdialog.cpp
--- old/antimicrox-3.1.4/src/aboutdialog.cpp    2021-01-11 12:45:44.000000000 
+0100
+++ new/antimicrox-3.1.5/src/aboutdialog.cpp    2021-03-14 15:07:59.000000000 
+0100
@@ -60,7 +60,11 @@
     QStringList finalInfoText = QStringList();
 
     finalInfoText.append(tr("Program Version 
%1").arg(PadderCommon::programVersion));
+#ifdef ANTIMICROX_PKG_VERSION
+    finalInfoText.append(tr("Compiled from packaging: 
%1").arg(ANTIMICROX_PKG_VERSION));
+#else
     finalInfoText.append(tr("Program Compiled on %1 at 
%2").arg(__DATE__).arg(__TIME__));
+#endif
 
     QString sdlCompiledVersionNumber("%1.%2.%3");
     QString sdlLinkedVersionNumber("%1.%2.%3");
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/antimicrox-3.1.4/src/aboutdialog.ui 
new/antimicrox-3.1.5/src/aboutdialog.ui
--- old/antimicrox-3.1.4/src/aboutdialog.ui     2021-01-11 12:45:44.000000000 
+0100
+++ new/antimicrox-3.1.5/src/aboutdialog.ui     2021-03-14 15:07:59.000000000 
+0100
@@ -368,7 +368,7 @@
            <property name="plainText">
             <string>&quot;pktiuk&quot; (since August 2020) I just want to 
ensure, that this very useful piece of software will not be abandoned, I 
decided to conticue providing support for this project and make it as widely 
accessible as possible.
 
-&quot;juliagoda&quot; (since March, 2018 until 2020) Wanting only to play my 
favourite old games that din't support gamepads, I found this project (which 
map keyboard keys and mouse buttons to connected gamepads on Linux) as most 
proper and recent. But because of poor choices of such application on the 
internet and since it didn't compile properly, I decided to rescue the project. 
However, once I finished my work (enough to enjoy playing games) I thought 
about sharing this code with others. Of course all informations about past 
programmers will be held.
+&quot;juliagoda&quot; (since March, 2018 until 2020) Wanting only to play my 
favourite old games that din't support gamepads, I found this project (which 
map keyboard keys and mouse buttons to connected gamepads on Linux) as most 
proper and recent. But because of poor choices of such application on the 
internet and since it didn't compile properly, I decided to rescue the project. 
However, once I finished my work (enough to enjoy playing games) I thought 
about sharing this code with others. Of course all information about past 
programmers will be held.
 
 &quot;Ryochan7&quot; (since December 30, 2012 until 2017), I have been working 
on AntiMicro in my spare time. What originally started as a fork of QJoyPad and 
a way to learn proper event-driven programming has turned into something much 
bigger than I originally intended. Although I have spent a lot of time learning 
new techniques, finding out more about the domain of KB+M emulation, and 
spending Friday nights bashing my head against my keyboard, it has been a fun 
and enriching experience overall.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/antimicrox-3.1.4/src/advancebuttondialog.cpp 
new/antimicrox-3.1.5/src/advancebuttondialog.cpp
--- old/antimicrox-3.1.4/src/advancebuttondialog.cpp    2021-01-11 
12:45:44.000000000 +0100
+++ new/antimicrox-3.1.5/src/advancebuttondialog.cpp    2021-03-14 
15:07:59.000000000 +0100
@@ -683,30 +683,30 @@
 
         for (auto minislot : minislots)
         {
-            qDebug() << "MINISLOT SPLITTED NAME: " << 
minislot->getSlotString();
-            QListWidgetItem *splittedItem = new QListWidgetItem();
+            qDebug() << "MINISLOT SPLIT NAME: " << minislot->getSlotString();
+            QListWidgetItem *splitItem = new QListWidgetItem();
 
             SimpleKeyGrabberButton *blankButton = new 
SimpleKeyGrabberButton(this);
 
             JoyButtonSlot *slotmini =
                 new JoyButtonSlot(minislot->getSlotCode(), 
minislot->getSlotCodeAlias(), minislot->getSlotMode());
 
-            ui->slotListWidget->insertItem(qMax(0, indexKeyboardSlot), 
splittedItem);
+            ui->slotListWidget->insertItem(qMax(0, indexKeyboardSlot), 
splitItem);
 
             blankButton->setValue(slotmini);
 
             delete slotmini;
             slotmini = nullptr;
 
-            splittedItem->setData(Qt::UserRole, 
QVariant::fromValue<SimpleKeyGrabberButton *>(blankButton));
+            splitItem->setData(Qt::UserRole, 
QVariant::fromValue<SimpleKeyGrabberButton *>(blankButton));
 
             QHBoxLayout *layout = new QHBoxLayout();
             layout->addWidget(blankButton);
             QWidget *widget = new QWidget();
             widget->setLayout(layout);
-            splittedItem->setSizeHint(widget->sizeHint());
-            ui->slotListWidget->setItemWidget(splittedItem, widget);
-            // ui->slotListWidget->setCurrentItem(splittedItem);
+            splitItem->setSizeHint(widget->sizeHint());
+            ui->slotListWidget->setItemWidget(splitItem, widget);
+            // ui->slotListWidget->setCurrentItem(splitItem);
 
             connectButtonEvents(blankButton);
             blankButton->refreshButtonLabel(); // instead of 
blankButton->setText(text);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/antimicrox-3.1.4/src/calibration.cpp 
new/antimicrox-3.1.5/src/calibration.cpp
--- old/antimicrox-3.1.4/src/calibration.cpp    2021-01-11 12:45:44.000000000 
+0100
+++ new/antimicrox-3.1.5/src/calibration.cpp    2021-03-14 15:07:59.000000000 
+0100
@@ -69,7 +69,7 @@
     QPointer<JoyControlStick> controlstick = 
currentJoystick->getActiveSetJoystick()->getJoyStick(0);
     this->stick = controlstick.data();
     calibrated = this->stick->wasCalibrated();
-    ui->Informations->setText(stick->getCalibrationSummary());
+    ui->Information->setText(stick->getCalibrationSummary());
 
     ui->resetBtn->setEnabled(calibrated);
     ui->saveBtn->setEnabled(false);
@@ -181,7 +181,7 @@
 
     stick->setCalibrationFlag(false);
     stick->setCalibrationSummary(QString());
-    ui->Informations->clear();
+    ui->Information->clear();
 
     calibrated = false;
 
@@ -334,7 +334,7 @@
         QString text = QString();
         text.append(tr("\n\nCenter X: %1").arg(center_calibrated_x));
         text.append(tr("\nCenter Y: %1").arg(center_calibrated_y));
-        ui->Informations->setText(text);
+        ui->Information->setText(text);
         this->text = text;
 
         x_es_val.clear();
@@ -383,10 +383,10 @@
             min_axis_val_x = min_x;
             min_axis_val_y = min_y;
 
-            QString text = ui->Informations->text();
+            QString text = ui->Information->text();
             text.append(tr("\n\nX: %1").arg(min_axis_val_x));
             text.append(tr("\nY: %1").arg(min_axis_val_y));
-            ui->Informations->setText(text);
+            ui->Information->setText(text);
             this->text = text;
 
             x_es_val.clear();
@@ -434,10 +434,10 @@
             max_axis_val_x = max_x;
             max_axis_val_y = max_y;
 
-            QString text2 = ui->Informations->text();
+            QString text2 = ui->Information->text();
             text2.append(tr("\n\nX: %1").arg(max_axis_val_x));
             text2.append(tr("\nY: %1").arg(max_axis_val_y));
-            ui->Informations->setText(text2);
+            ui->Information->setText(text2);
             this->text = text2;
             update();
 
@@ -446,12 +446,12 @@
             deadzone_calibrated_x = (max_axis_val_y + max_axis_val_x) / 4;
             deadzone_calibrated_y = (max_axis_val_y + max_axis_val_x) / 4;
 
-            QString text3 = ui->Informations->text();
+            QString text3 = ui->Information->text();
             text3.append(tr("\n\nrange X: %1 - 
%2").arg(min_axis_val_x).arg(max_axis_val_x));
             text3.append(tr("\nrange Y: %1 - 
%2").arg(min_axis_val_y).arg(max_axis_val_y));
             text3.append(tr("\n\ndeadzone X: %1").arg(deadzone_calibrated_x));
             text3.append(tr("\ndeadzone Y: %1").arg(deadzone_calibrated_y));
-            ui->Informations->setText(text3);
+            ui->Information->setText(text3);
             this->text = text3;
 
             if (stick != nullptr)
@@ -740,7 +740,7 @@
     joyAxisY = controlstick->getAxisY();
 
     calibrated = controlstick->wasCalibrated();
-    ui->Informations->setText(controlstick->getCalibrationSummary());
+    ui->Information->setText(controlstick->getCalibrationSummary());
 
     if ((joyAxisX != nullptr) && (joyAxisY != nullptr))
     {
@@ -802,7 +802,7 @@
     joyAxisY = controlstick->getAxisY();
 
     calibrated = controlstick->wasCalibrated();
-    ui->Informations->setText(controlstick->getCalibrationSummary());
+    ui->Information->setText(controlstick->getCalibrationSummary());
 
     if ((joyAxisX != nullptr) && (joyAxisY != nullptr))
     {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/antimicrox-3.1.4/src/calibration.ui 
new/antimicrox-3.1.5/src/calibration.ui
--- old/antimicrox-3.1.4/src/calibration.ui     2021-01-11 12:45:44.000000000 
+0100
+++ new/antimicrox-3.1.5/src/calibration.ui     2021-03-14 15:07:59.000000000 
+0100
@@ -158,7 +158,7 @@
        <item>
         <layout class="QVBoxLayout" name="verticalLayout_5">
          <item>
-          <widget class="QLabel" name="Informations">
+          <widget class="QLabel" name="Information">
            <property name="text">
             <string/>
            </property>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/antimicrox-3.1.4/src/gamecontroller/xml/gamecontrollerxml.cpp 
new/antimicrox-3.1.5/src/gamecontroller/xml/gamecontrollerxml.cpp
--- old/antimicrox-3.1.4/src/gamecontroller/xml/gamecontrollerxml.cpp   
2021-01-11 12:45:44.000000000 +0100
+++ new/antimicrox-3.1.5/src/gamecontroller/xml/gamecontrollerxml.cpp   
2021-03-14 15:07:59.000000000 +0100
@@ -614,7 +614,6 @@
 {
     int index = -1;
     bool first = false;
-    bool second = false;
     QString temp = QString();
 
     assignVariablesShort(xml, index, temp);
@@ -622,11 +621,9 @@
     if (xml->name() == "vdpadname")
     {
         first = dpadNameExists;
-        second = vdpadNameExists;
     } else if (xml->name() == "dpadname")
     {
         first = vdpadNameExists;
-        second = dpadNameExists;
     }
 
     if ((index >= 0) && !temp.isEmpty() && !first)
@@ -648,7 +645,6 @@
 
         if (found)
         {
-            second = true;
             VDPad *dpad = 
m_gameController->getActiveSetJoystick()->getVDPad(0);
 
             if (dpad != nullptr)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/antimicrox-3.1.4/tests/testcalibration.cpp 
new/antimicrox-3.1.5/tests/testcalibration.cpp
--- old/antimicrox-3.1.4/tests/testcalibration.cpp      2021-01-11 
12:45:44.000000000 +0100
+++ new/antimicrox-3.1.5/tests/testcalibration.cpp      2021-03-14 
15:07:59.000000000 +0100
@@ -27,8 +27,8 @@
 Calibration->findChildren<QProgressBar*>() count is equal to 2
 startButton cannot be disabled
 cancelBtn cannot be disabled
-saveBtn is enabled when ui->steps->text() == tr("\n---Calibration done!---\n") 
&& stick->setCalibrationSummary != ui->Informations->text() || this->text != 
stick->setCalibrationSummary
-saveBtn is disabled when ui->steps->text() != tr("\n---Calibration 
done!---\n") && stick->setCalibrationSummary == ui->Informations->text() || 
this->text == stick->setCalibrationSummary
+saveBtn is enabled when ui->steps->text() == tr("\n---Calibration done!---\n") 
&& stick->setCalibrationSummary != ui->Information->text() || this->text != 
stick->setCalibrationSummary
+saveBtn is disabled when ui->steps->text() != tr("\n---Calibration 
done!---\n") && stick->setCalibrationSummary == ui->Information->text() || 
this->text == stick->setCalibrationSummary
 controllersBox->count() == this->joysticks->count
 
 int currContrBoxIndex = ui->controllersBox->currentIndex();

++++++ remove_datetime_aboutdialog.patch ++++++
--- /var/tmp/diff_new_pack.QTxSCP/_old  2021-03-20 21:26:30.637214252 +0100
+++ /var/tmp/diff_new_pack.QTxSCP/_new  2021-03-20 21:26:30.637214252 +0100
@@ -1,12 +1,20 @@
-diff -Nur antimicrox-3.1/src/aboutdialog.cpp new/src/aboutdialog.cpp
---- antimicrox-3.1/src/aboutdialog.cpp 2020-09-09 17:47:09.000000000 +0200
-+++ new/src/aboutdialog.cpp    2020-09-13 13:41:31.651883133 +0200
-@@ -60,7 +60,7 @@
+diff -Nur antimicrox-3.1.5/src/aboutdialog.cpp new/src/aboutdialog.cpp
+--- antimicrox-3.1.5/src/aboutdialog.cpp       2021-03-14 15:07:59.000000000 
+0100
++++ new/src/aboutdialog.cpp    2021-03-14 19:25:52.854157598 +0100
+@@ -60,11 +60,11 @@
      QStringList finalInfoText = QStringList();
  
      finalInfoText.append(tr("Program Version 
%1").arg(PadderCommon::programVersion));
+-#ifdef ANTIMICROX_PKG_VERSION
+-    finalInfoText.append(tr("Compiled from packaging: 
%1").arg(ANTIMICROX_PKG_VERSION));
+-#else
 -    finalInfoText.append(tr("Program Compiled on %1 at 
%2").arg(__DATE__).arg(__TIME__));
-+    // finalInfoText.append(tr("Program Compiled on %1 at 
%2").arg(__DATE__).arg(__TIME__));
+-#endif
++// #ifdef ANTIMICROX_PKG_VERSION
++//     finalInfoText.append(tr("Compiled from packaging: 
%1").arg(ANTIMICROX_PKG_VERSION));
++// #else
++//     finalInfoText.append(tr("Program Compiled on %1 at 
%2").arg(__DATE__).arg(__TIME__));
++// #endif
  
      QString sdlCompiledVersionNumber("%1.%2.%3");
      QString sdlLinkedVersionNumber("%1.%2.%3");

Reply via email to