Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kmag for openSUSE:Factory checked in at 2023-08-31 13:43:15 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kmag (Old) and /work/SRC/openSUSE:Factory/.kmag.new.1766 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kmag" Thu Aug 31 13:43:15 2023 rev:142 rq:1105717 version:23.08.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kmag/kmag.changes 2023-07-07 15:47:25.548233642 +0200 +++ /work/SRC/openSUSE:Factory/.kmag.new.1766/kmag.changes 2023-08-31 13:44:56.682564950 +0200 @@ -1,0 +2,22 @@ +Sun Aug 20 13:59:40 UTC 2023 - Christophe Marin <[email protected]> + +- Update to 23.08.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/gear/23.08.0/ +- No code change since 23.07.90 + +------------------------------------------------------------------- +Mon Aug 14 08:02:57 UTC 2023 - Christophe Marin <[email protected]> + +- Update to 23.07.90 + * New feature release +- No code change since 23.07.80 + +------------------------------------------------------------------- +Tue Aug 1 10:21:26 UTC 2023 - Christophe Marin <[email protected]> + +- Update to 23.07.80 + * New feature release + +------------------------------------------------------------------- Old: ---- kmag-23.04.3.tar.xz kmag-23.04.3.tar.xz.sig New: ---- kmag-23.08.0.tar.xz kmag-23.08.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kmag.spec ++++++ --- /var/tmp/diff_new_pack.uevEcl/_old 2023-08-31 13:44:57.950610273 +0200 +++ /var/tmp/diff_new_pack.uevEcl/_new 2023-08-31 13:44:57.954610416 +0200 @@ -18,7 +18,7 @@ %bcond_without released Name: kmag -Version: 23.04.3 +Version: 23.08.0 Release: 0 Summary: Screen Magnifier License: GPL-2.0-only ++++++ kmag-23.04.3.tar.xz -> kmag-23.08.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmag-23.04.3/CMakeLists.txt new/kmag-23.08.0/CMakeLists.txt --- old/kmag-23.04.3/CMakeLists.txt 2023-07-04 06:46:21.000000000 +0200 +++ new/kmag-23.08.0/CMakeLists.txt 2023-08-16 22:59:51.000000000 +0200 @@ -2,8 +2,8 @@ # KDE Application Version, managed by release script set (RELEASE_SERVICE_VERSION_MAJOR "23") -set (RELEASE_SERVICE_VERSION_MINOR "04") -set (RELEASE_SERVICE_VERSION_MICRO "3") +set (RELEASE_SERVICE_VERSION_MINOR "08") +set (RELEASE_SERVICE_VERSION_MICRO "0") set (RELEASE_SERVICE_VERSION "${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}") project(kmag VERSION ${RELEASE_SERVICE_VERSION}) @@ -43,15 +43,25 @@ XmlGui ) -find_package(QAccessibilityClient 0.4 CONFIG) -set_package_properties(QAccessibilityClient PROPERTIES - DESCRIPTION "KDE client-side accessibility library" - URL "https://invent.kde.org/libraries/libqaccessibilityclient" - TYPE OPTIONAL - PURPOSE "Required to enable keyboard focus tracking." -) +if (QT_MAJOR_VERSION STREQUAL "6") + find_package(QAccessibilityClient6 0.4 CONFIG) + set_package_properties(QAccessibilityClient6 PROPERTIES + DESCRIPTION "KDE client-side accessibility library" + URL "https://commits.kde.org/libqaccessibilityclient" + TYPE OPTIONAL + PURPOSE "Required to enable keyboard focus tracking." + ) +else() + find_package(QAccessibilityClient 0.4 CONFIG) + set_package_properties(QAccessibilityClient PROPERTIES + DESCRIPTION "KDE client-side accessibility library" + URL "https://commits.kde.org/libqaccessibilityclient" + TYPE OPTIONAL + PURPOSE "Required to enable keyboard focus tracking." + ) +endif() -ecm_set_disabled_deprecation_versions(QT 6.4 KF 5.101.0) +ecm_set_disabled_deprecation_versions(QT 6.4 KF 5.105.0) add_subdirectory( doc ) add_subdirectory( pics ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmag-23.04.3/CMakePresets.json new/kmag-23.08.0/CMakePresets.json --- old/kmag-23.04.3/CMakePresets.json 2023-07-04 06:46:21.000000000 +0200 +++ new/kmag-23.08.0/CMakePresets.json 2023-08-16 22:59:51.000000000 +0200 @@ -2,57 +2,71 @@ "version": 3, "configurePresets": [ { - "name": "dev", - "displayName": "Build as debug", + "name": "base", + "displayName": "base preset", "generator": "Ninja", - "binaryDir": "${sourceDir}/build", + "binaryDir": "${sourceDir}/build-${presetName}", + "installDir": "$env{KF5}", + "hidden": true + }, + { + "name": "base-qt6", + "displayName": "base preset", + "generator": "Ninja", + "binaryDir": "${sourceDir}/build-${presetName}", + "installDir": "$env{KF6}", + "hidden": true + }, + { + "name": "dev-mold", + "displayName": "Build as debug + using mold linker", "cacheVariables": { "CMAKE_BUILD_TYPE": "Debug", - "CMAKE_EXPORT_COMPILE_COMMANDS": "ON" + "CMAKE_EXPORT_COMPILE_COMMANDS": "ON", + "CMAKE_SHARED_LINKER_FLAGS": "-fuse-ld=mold" }, - "installDir": "$env{KF5}" + "inherits": [ + "base" + ] }, { - "name": "dev-disable-deprecated", - "displayName": "Build as without deprecated methods", - "generator": "Ninja", - "binaryDir": "${sourceDir}/build-disable-deprecated", + "name": "dev", + "displayName": "Build as debug", "cacheVariables": { "CMAKE_BUILD_TYPE": "Debug", - "CMAKE_EXPORT_COMPILE_COMMANDS": "ON", - "CMAKE_CXX_FLAGS_INIT": "-DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DKF_DISABLE_DEPRECATED_BEFORE_AND_AT=0x060000" + "CMAKE_EXPORT_COMPILE_COMMANDS": "ON" }, - "installDir": "$env{KF5}" + "inherits": [ + "base" + ] }, { - "name": "asan", - "displayName": "Build with Asan support.", - "generator": "Ninja", - "binaryDir": "${sourceDir}/build-asan", + "name": "dev-qt6", + "displayName": "Build against qt6", + "binaryDir": "${sourceDir}/build-qt6", "cacheVariables": { "CMAKE_BUILD_TYPE": "Debug", - "ECM_ENABLE_SANITIZERS" : "'address;undefined'", + "BUILD_WITH_QT6": "ON", "CMAKE_EXPORT_COMPILE_COMMANDS": "ON" }, - "installDir": "$env{KF5}" + "inherits": [ + "base-qt6" + ] }, { - "name": "pch", - "displayName": "Build with PCH support.", - "generator": "Ninja", - "binaryDir": "${sourceDir}/build-pch", + "name": "asan", + "displayName": "Build with Asan support.", "cacheVariables": { "CMAKE_BUILD_TYPE": "Debug", - "COMPILE_WITH_CMAKE_PCH_SUPPORT": "ON", - "CMAKE_EXPORT_COMPILE_COMMANDS": "ON" + "ECM_ENABLE_SANITIZERS" : "'address;undefined'" }, - "installDir": "$env{KF5}" + "inherits": [ + "base" + ] }, { "name": "dev-clang", "displayName": "dev-clang", - "generator": "Ninja", - "binaryDir": "${sourceDir}/build-clang", "cacheVariables": { "CMAKE_BUILD_TYPE": "Debug", "CMAKE_EXPORT_COMPILE_COMMANDS": "ON" @@ -61,46 +75,56 @@ "CXX": "clang++", "CCACHE_DISABLE": "ON" }, - "installDir": "$env{KF5}" + "inherits": [ + "base" + ] }, { "name": "unity", "displayName": "Build with CMake unity support.", - "generator": "Ninja", - "binaryDir": "${sourceDir}/build-unity", "cacheVariables": { "CMAKE_BUILD_TYPE": "Debug", - "USE_UNITY_CMAKE_SUPPORT": "ON", - "CMAKE_EXPORT_COMPILE_COMMANDS": "ON" + "USE_UNITY_CMAKE_SUPPORT": "ON" }, - "installDir": "$env{KF5}" + "inherits": [ + "base" + ] }, { "name": "release", "displayName": "Build as release mode.", - "generator": "Ninja", - "binaryDir": "${sourceDir}/build-release", "cacheVariables": { "CMAKE_BUILD_TYPE": "Release" }, - "installDir": "$env{KF5}" + "inherits": [ + "base" + ] }, { "name": "profile", "displayName": "profile", - "generator": "Ninja", - "binaryDir": "${sourceDir}/build-profile", "cacheVariables": { - "CMAKE_BUILD_TYPE": "RelWithDebInfo", - "CMAKE_EXPORT_COMPILE_COMMANDS": "ON" + "CMAKE_BUILD_TYPE": "RelWithDebInfo" }, - "installDir": "$env{KF5}" + "inherits": [ + "base" + ] + }, + { + "name": "coverage", + "displayName": "coverage", + "cacheVariables": { + "CMAKE_BUILD_TYPE": "Debug", + "USE_UNITY_CMAKE_SUPPORT": "OFF", + "BUILD_COVERAGE": "ON" + }, + "inherits": [ + "base" + ] }, { "name": "clazy", "displayName": "clazy", - "generator": "Ninja", - "binaryDir": "${sourceDir}/build-clazy", "cacheVariables": { "CMAKE_BUILD_TYPE": "Debug" }, @@ -108,18 +132,39 @@ "CXX": "clazy", "CCACHE_DISABLE": "ON" }, - "installDir": "$env{KF5}" + "inherits": [ + "base" + ] + }, + { + "name": "pch", + "displayName": "pch", + "cacheVariables": { + "CMAKE_BUILD_TYPE": "Debug", + "USE_PRECOMPILED_HEADERS": "ON", + "BUILD_COVERAGE": "ON" + }, + "inherits": [ + "base" + ] } - ], "buildPresets": [ { "name": "dev", "configurePreset": "dev" }, + { + "name": "dev-mold", + "configurePreset": "dev-mold" + }, { - "name": "dev-disable-deprecated", - "configurePreset": "dev-disable-deprecated" + "name": "dev-qt6", + "configurePreset": "dev-qt6" + }, + { + "name": "dev-clang", + "configurePreset": "dev-clang" }, { "name": "pch", @@ -130,18 +175,18 @@ "configurePreset": "release" }, { - "name": "dev-clang", - "configurePreset": "dev-clang" + "name": "unity", + "configurePreset": "unity" }, { + "name": "coverage", + "configurePreset": "coverage" + }, + { "name": "asan", "configurePreset": "asan" }, { - "name": "unity", - "configurePreset": "unity" - }, - { "name": "clazy", "configurePreset": "clazy", "environment": { @@ -151,17 +196,29 @@ } ], "testPresets": [ - { + { "name": "dev", "configurePreset": "dev", "output": {"outputOnFailure": true}, "execution": {"noTestsAction": "error", "stopOnFailure": false} }, - { + { "name": "asan", "configurePreset": "asan", "output": {"outputOnFailure": true}, "execution": {"noTestsAction": "error", "stopOnFailure": true} + }, + { + "name": "unity", + "configurePreset": "unity", + "output": {"outputOnFailure": true}, + "execution": {"noTestsAction": "error", "stopOnFailure": true} + }, + { + "name": "coverage", + "configurePreset": "coverage", + "output": {"outputOnFailure": true}, + "execution": {"noTestsAction": "error", "stopOnFailure": true} } - ] + ] } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmag-23.04.3/po/ca/kmag.po new/kmag-23.08.0/po/ca/kmag.po --- old/kmag-23.04.3/po/ca/kmag.po 2023-07-04 06:46:21.000000000 +0200 +++ new/kmag-23.08.0/po/ca/kmag.po 2023-08-16 22:59:51.000000000 +0200 @@ -571,6 +571,3 @@ #, kde-format msgid "Some tips" msgstr "Alguns consells" - -#~ msgid "File to open" -#~ msgstr "Fitxer a obrir" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmag-23.04.3/po/eo/kmag.po new/kmag-23.08.0/po/eo/kmag.po --- old/kmag-23.04.3/po/eo/kmag.po 2023-07-04 06:46:21.000000000 +0200 +++ new/kmag-23.08.0/po/eo/kmag.po 2023-08-16 22:59:51.000000000 +0200 @@ -3,8 +3,8 @@ "Project-Id-Version: kmag\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2023-02-04 00:50+0000\n" -"PO-Revision-Date: 2004-06-30 16:26GMT\n" -"Last-Translator: David Anema <[email protected]>\n" +"PO-Revision-Date: 2023-03-25 16:19+0100\n" +"Last-Translator: Oliver Kellogg <[email protected]>\n" "Language-Team: Esperanto <[email protected]>\n" "Language: eo\n" "MIME-Version: 1.0\n" @@ -80,9 +80,9 @@ msgstr "" #: kmag.cpp:85 -#, fuzzy, kde-format +#, kde-format msgid "&No Rotation (0 Degrees)" -msgstr "Grandiga faktoro" +msgstr "" #: kmag.cpp:85 #, kde-format @@ -120,18 +120,12 @@ msgstr "Klaku por Äesigi fenestran refreÅigon" #: kmag.cpp:128 -#, fuzzy, kde-format -#| msgid "" -#| "Clicking on this icon will <b>start</b> / <b>stop</b> updating of the " -#| "display. Stopping the update will zero the processing power required " -#| "(CPU usage)" +#, kde-format msgid "" "Clicking on this icon will <b>start</b> / <b>stop</b> updating of the " "display. Stopping the update will zero the processing power required (CPU " "usage)" msgstr "" -"Klako super tiu piktogramo <b>komencigos</b>/<b>Äesigos</b> ÄisdatiÄon de la " -"lupeo. Äesigo nuligos la procezan potencon bezonatan (Procezilan uzon)." #: kmag.cpp:134 #, kde-format @@ -173,9 +167,9 @@ msgstr "Kopiu rigardon al poÅilo" #: kmag.cpp:155 -#, fuzzy, kde-format +#, kde-format msgid "&Follow Mouse Mode" -msgstr "&Sekvu muson" +msgstr "" #: kmag.cpp:159 #, kde-format @@ -183,19 +177,19 @@ msgstr "" #: kmag.cpp:160 -#, fuzzy, kde-format +#, kde-format msgid "Magnify around the mouse cursor" -msgstr "KaÅu la musan kursoron" +msgstr "" #: kmag.cpp:161 -#, fuzzy, kde-format +#, kde-format msgid "If selected, the area around the mouse cursor is magnified" -msgstr "Se elektata, la areo ÄirkaÅ la musan kursoron pligrandiÄas." +msgstr "" #: kmag.cpp:165 -#, fuzzy, kde-format +#, kde-format msgid "&Follow Focus Mode" -msgstr "&Sekvu muson" +msgstr "" #: kmag.cpp:169 #, kde-format @@ -203,25 +197,24 @@ msgstr "" #: kmag.cpp:170 -#, fuzzy, kde-format +#, kde-format msgid "Magnify around the keyboard focus" -msgstr "KaÅu la musan kursoron" +msgstr "" #: kmag.cpp:171 -#, fuzzy, kde-format +#, kde-format msgid "If selected, the area around the keyboard cursor is magnified" -msgstr "Se elektata, la areo ÄirkaÅ la musan kursoron pligrandiÄas." +msgstr "" #: kmag.cpp:175 -#, fuzzy, kde-format +#, kde-format msgid "Se&lection Window Mode" -msgstr "&Elektofenestro" +msgstr "" #: kmag.cpp:179 -#, fuzzy, kde-format -#| msgid "New &Window" +#, kde-format msgid "Window" -msgstr "Nova &Fenestro" +msgstr "" #: kmag.cpp:180 #, kde-format @@ -239,14 +232,14 @@ msgstr "Ekrano" #: kmag.cpp:187 -#, fuzzy, kde-format +#, kde-format msgid "Magnify the whole screen" -msgstr "Grandigu ÄirkaÅ la musan kursoron" +msgstr "" #: kmag.cpp:188 -#, fuzzy, kde-format +#, kde-format msgid "Click on this button to fit the zoom view to the zoom window." -msgstr "Klaku super tiun butonon por presi la rigardon." +msgstr "" #: kmag.cpp:190 #, kde-format @@ -254,9 +247,9 @@ msgstr "KaÅu musan &kursoron" #: kmag.cpp:195 -#, fuzzy, kde-format +#, kde-format msgid "Show Mouse &Cursor" -msgstr "KaÅu musan &kursoron" +msgstr "" #: kmag.cpp:197 #, kde-format @@ -309,19 +302,19 @@ msgstr "" #: kmag.cpp:221 -#, fuzzy, kde-format +#, kde-format msgid "Select the rotation degree." -msgstr "Elektu la grandigan faktoron." +msgstr "" #: kmag.cpp:222 -#, fuzzy, kde-format +#, kde-format msgid "Rotation degree" -msgstr "Grandiga faktoro" +msgstr "" #: kmag.cpp:227 -#, fuzzy, kde-format +#, kde-format msgid "&Refresh" -msgstr "&RefreÅigu" +msgstr "" #: kmag.cpp:230 #, kde-format @@ -354,9 +347,9 @@ msgstr "" #: kmag.cpp:569 -#, fuzzy, kde-format +#, kde-format msgid "Save Snapshot As" -msgstr "&Sekurigu ekranbildon kiel..." +msgstr "" #: kmag.cpp:583 #, kde-format @@ -401,9 +394,9 @@ "la dosierujo." #: kmag.cpp:617 -#, fuzzy, kde-format +#, kde-format msgid "Stop" -msgstr "Äe&su" +msgstr "" #: kmag.cpp:618 #, kde-format @@ -422,9 +415,9 @@ msgstr "Klaku por komencigi la fenestran ÄisdatiÄadon." #: kmagselrect.cpp:213 -#, fuzzy, kde-format +#, kde-format msgid "Selection Window" -msgstr "&Elektofenestro" +msgstr "" #: kmagselrect.cpp:213 main.cpp:41 #, kde-format @@ -474,19 +467,16 @@ msgstr "A&gordo" #: kmagzoomview.cpp:125 -#, fuzzy, kde-format +#, kde-format msgid "" "This is the main window which shows the contents of the selected region. The " "contents will be magnified according to the zoom level that is set." msgstr "" -"Tiu estas la Äefa fenestro kiu montras la enhavon de la elektata regiono. " -"La enhavon grandiÄos po la indikata nivelo." #: main.cpp:42 -#, fuzzy, kde-format -#| msgid "Screen magnifier for the K Desktop Environment (KDE)" +#, kde-format msgid "Screen magnifier created by KDE" -msgstr "Ekranlupeo por la K Tabulmedio (KDE)" +msgstr "" #: main.cpp:44 #, kde-format @@ -560,56 +550,3 @@ #, kde-format msgid "Some tips" msgstr "Iom da helpnotoj" - -#~ msgid "File to open" -#~ msgstr "Dosieron por malfermi" - -#~ msgid "Show &Menu" -#~ msgstr "&Montru menuon" - -#, fuzzy -#~ msgid "Hide &Menu" -#~ msgstr "&Montru menuon" - -#, fuzzy -#~ msgid "Hide Main &Toolbar" -#~ msgstr "Montru Äefan &Ilobreton" - -#, fuzzy -#~ msgid "Hide &View Toolbar" -#~ msgstr "Montru &Rigardan Ilobreton" - -#, fuzzy -#~ msgid "Hide &Settings Toolbar" -#~ msgstr "Montru &Agordan Ilobreton" - -#~ msgid "Rewrite and current maintainer" -#~ msgstr "Reskribo kaj nuna zorganto" - -#, fuzzy -#~ msgid "" -#~ "In this mode the area around the mouse is magnified to the top screen " -#~ "edge." -#~ msgstr "Se elektata, la areo ÄirkaÅ la musan kursoron pligrandiÄas." - -#, fuzzy -#~ msgid "" -#~ "In this mode the area around the mouse is magnified to the left screen " -#~ "edge." -#~ msgstr "Se elektata, la areo ÄirkaÅ la musan kursoron pligrandiÄas." - -#, fuzzy -#~ msgid "" -#~ "In this mode the area around the mouse is magnified to the right screen " -#~ "edge." -#~ msgstr "Se elektata, la areo ÄirkaÅ la musan kursoron pligrandiÄas." - -#, fuzzy -#~ msgid "" -#~ "In this mode the area around the mouse is magnified to the bottom screen " -#~ "edge." -#~ msgstr "Se elektata, la areo ÄirkaÅ la musan kursoron pligrandiÄas." - -#, fuzzy -#~ msgid "Magnify to Left Screen Edge - Select Size" -#~ msgstr "Grandigu ÄirkaÅ la musan kursoron" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmag-23.04.3/po/fa/kmag.po new/kmag-23.08.0/po/fa/kmag.po --- old/kmag-23.04.3/po/fa/kmag.po 2023-07-04 06:46:21.000000000 +0200 +++ new/kmag-23.08.0/po/fa/kmag.po 2023-08-16 22:59:51.000000000 +0200 @@ -18,7 +18,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" #, kde-format msgctxt "NAME OF TRANSLATORS" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmag-23.04.3/po/ko/kmag.po new/kmag-23.08.0/po/ko/kmag.po --- old/kmag-23.04.3/po/ko/kmag.po 2023-07-04 06:46:21.000000000 +0200 +++ new/kmag-23.08.0/po/ko/kmag.po 2023-08-16 22:59:51.000000000 +0200 @@ -3,14 +3,14 @@ # Kwonwoo Nam <[email protected]>, 2004. # Hongsoo Byun <[email protected]>, 2005. # Sung-Jae, Cho <[email protected]>, 2005. -# Shinjo Park <[email protected]>, 2007, 2009, 2010, 2011, 2013, 2015, 2017, 2020. +# Shinjo Park <[email protected]>, 2007, 2009, 2010, 2011, 2013, 2015, 2017, 2020, 2023. # msgid "" msgstr "" "Project-Id-Version: kmag\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2023-02-04 00:50+0000\n" -"PO-Revision-Date: 2020-04-21 00:28+0200\n" +"PO-Revision-Date: 2023-07-23 23:55+0200\n" "Last-Translator: Shinjo Park <[email protected]>\n" "Language-Team: Korean <[email protected]>\n" "Language: ko\n" @@ -18,7 +18,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Lokalize 19.04.3\n" +"X-Generator: Lokalize 22.12.3\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -159,7 +159,7 @@ #: kmag.cpp:144 kmag.cpp:145 #, kde-format msgid "Quits the application" -msgstr "íë¡ê·¸ë¨ì ì¢ ë£í©ëë¤" +msgstr "ì±ì ì¢ ë£í©ëë¤" #: kmag.cpp:148 #, kde-format @@ -167,8 +167,8 @@ "Click on this button to copy the current zoomed view to the clipboard which " "you can paste in other applications." msgstr "" -"íì¬ íë/ì¶ìë íë©´ì í´ë¦½ë³´ëì ë³µì¬íì¬ ë¤ë¥¸ íë¡ê·¸ë¨ì ì¬ì©íìë ¤ë©´ ì´ " -"ë¨ì¶ë¥¼ í´ë¦íììì¤." +"íì¬ íë/ì¶ìë íë©´ì í´ë¦½ë³´ëì ë³µì¬íì¬ ë¤ë¥¸ ì±ìì ì¬ì©íë ¤ë©´ ì´ ë¨ì¶ë¥¼ " +"í´ë¦íììì¤." #: kmag.cpp:149 #, kde-format @@ -198,17 +198,17 @@ #: kmag.cpp:165 #, kde-format msgid "&Follow Focus Mode" -msgstr "ì´ì ë°ë¼ê°ê¸° 모ë(&F)" +msgstr "í¬ì»¤ì¤ ë°ë¼ê°ê¸° 모ë(&F)" #: kmag.cpp:169 #, kde-format msgid "Focus" -msgstr "ì´ì " +msgstr "í¬ì»¤ì¤" #: kmag.cpp:170 #, kde-format msgid "Magnify around the keyboard focus" -msgstr "í¤ë³´ë ì´ì ê·¼ì²ë¥¼ íëí©ëë¤" +msgstr "í¤ë³´ë í¬ì»¤ì¤ ê·¼ì²ë¥¼ íëí©ëë¤" #: kmag.cpp:171 #, kde-format @@ -477,8 +477,8 @@ "This is the main window which shows the contents of the selected region. The " "contents will be magnified according to the zoom level that is set." msgstr "" -"ì´ê²ì ì íí ììì ë´ì©ì ë³´ì¬ì£¼ë 주 ì°½ì ëë¤. ë´ì©ë¬¼ì ì§ì í íë/ì¶ì " -"ë¨ê³ì ë°ë¼ í¬ê¸°ê° ì¡°ì ë©ëë¤." +"ì íí ììì ë´ì©ì ë³´ì¬ ì£¼ë 주 ì°½ì ëë¤. ë´ì©ë¬¼ì ì§ì í íë/ì¶ì ë¨ê³ì " +"ë°ë¼ í¬ê¸°ê° ì¡°ì ë©ëë¤." #: main.cpp:42 #, kde-format @@ -546,7 +546,7 @@ #: main.cpp:54 #, kde-format msgid "Focus tracking" -msgstr "ì´ì ë°ë¼ê°ê¸°" +msgstr "í¬ì»¤ì¤ ì¶ì " #: main.cpp:55 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmag-23.04.3/po/zh_CN/kmag.po new/kmag-23.08.0/po/zh_CN/kmag.po --- old/kmag-23.04.3/po/zh_CN/kmag.po 2023-07-04 06:46:21.000000000 +0200 +++ new/kmag-23.08.0/po/zh_CN/kmag.po 2023-08-16 22:59:51.000000000 +0200 @@ -3,7 +3,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2023-02-04 00:50+0000\n" -"PO-Revision-Date: 2023-07-03 11:40\n" +"PO-Revision-Date: 2023-08-02 12:43\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmag-23.04.3/src/CMakeLists.txt new/kmag-23.08.0/src/CMakeLists.txt --- old/kmag-23.04.3/src/CMakeLists.txt 2023-07-04 06:46:21.000000000 +0200 +++ new/kmag-23.08.0/src/CMakeLists.txt 2023-08-16 22:59:51.000000000 +0200 @@ -1,3 +1,11 @@ +if(QAccessibilityClient6_FOUND) + set(HAVE_QACCESSIBILITYCLIENT TRUE) +elseif(QAccessibilityClient_FOUND) + set(HAVE_QACCESSIBILITYCLIENT TRUE) +else() + set(HAVE_QACCESSIBILITYCLIENT FALSE) +endif() + configure_file( "${CMAKE_CURRENT_SOURCE_DIR}/focustrackconfig.h.in" "${CMAKE_CURRENT_BINARY_DIR}/focustrackconfig.h" @@ -29,7 +37,9 @@ Qt${QT_MAJOR_VERSION}::PrintSupport ) -if(QAccessibilityClient_FOUND) +if(QAccessibilityClient6_FOUND) + target_link_libraries(kmag QAccessibilityClient6) +elseif(QAccessibilityClient_FOUND) target_link_libraries(kmag ${QACCESSIBILITYCLIENT_LIBRARY}) endif() diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmag-23.04.3/src/focustrackconfig.h.in new/kmag-23.08.0/src/focustrackconfig.h.in --- old/kmag-23.04.3/src/focustrackconfig.h.in 2023-07-04 06:46:21.000000000 +0200 +++ new/kmag-23.08.0/src/focustrackconfig.h.in 2023-08-16 22:59:51.000000000 +0200 @@ -1 +1 @@ -#cmakedefine QAccessibilityClient_FOUND +#cmakedefine01 HAVE_QACCESSIBILITYCLIENT diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmag-23.04.3/src/kmag.cpp new/kmag-23.08.0/src/kmag.cpp --- old/kmag-23.04.3/src/kmag.cpp 2023-07-04 06:46:21.000000000 +0200 +++ new/kmag-23.08.0/src/kmag.cpp 2023-08-16 22:59:51.000000000 +0200 @@ -160,7 +160,7 @@ m_modeFollowMouse->setToolTip(i18n("Magnify around the mouse cursor")); m_modeFollowMouse->setWhatsThis(i18n("If selected, the area around the mouse cursor is magnified")); -#ifdef QAccessibilityClient_FOUND +#if HAVE_QACCESSIBILITYCLIENT m_modeFollowFocus = new KToggleAction(QIcon::fromTheme(QStringLiteral( "view-restore" )), i18n("&Follow Focus Mode"), this); actionCollection()->addAction(QStringLiteral( "mode_followfocus" ), m_modeFollowFocus); @@ -310,7 +310,7 @@ if (m_modeFollowMouse->isChecked()) cg.writeEntry("Mode", "followmouse"); -#ifdef QAccessibilityClient_FOUND +#if HAVE_QACCESSIBILITYCLIENT else if (m_modeFollowFocus->isChecked()) cg.writeEntry("Mode", "followfocus"); #endif @@ -631,7 +631,7 @@ m_zoomView->showSelRect(false); m_zoomView->setFitToWindow (false); m_modeFollowMouse->setChecked(false); -#ifdef QAccessibilityClient_FOUND +#if HAVE_QACCESSIBILITYCLIENT m_zoomView->followBoth(false); m_zoomView->followFocus(false); m_modeFollowFocus->setChecked(false); @@ -647,7 +647,7 @@ m_zoomView->showSelRect(true); m_zoomView->setFitToWindow (false); m_modeFollowMouse->setChecked(false); -#ifdef QAccessibilityClient_FOUND +#if HAVE_QACCESSIBILITYCLIENT m_zoomView->followBoth(false); m_zoomView->followFocus(false); m_modeFollowFocus->setChecked(false); @@ -658,7 +658,7 @@ void KmagApp::slotModeChanged() { -#ifdef QAccessibilityClient_FOUND +#if HAVE_QACCESSIBILITYCLIENT if(m_modeFollowMouse->isChecked() && m_modeFollowFocus->isChecked()) { //BOTH MODE @@ -680,7 +680,7 @@ m_zoomView->showSelRect(false); m_zoomView->setFitToWindow (true); m_modeFollowMouse->setChecked(true); -#ifdef QAccessibilityClient_FOUND +#if HAVE_QACCESSIBILITYCLIENT m_zoomView->followBoth(false); m_zoomView->followFocus(false); m_modeFollowFocus->setChecked(false); @@ -688,7 +688,7 @@ m_modeWholeScreen->setChecked(false); m_modeSelWin->setChecked(false); -#ifdef QAccessibilityClient_FOUND +#if HAVE_QACCESSIBILITYCLIENT } else if (m_modeFollowFocus->isChecked()) { //FOCUS MODE @@ -842,3 +842,5 @@ applyMainWindowSettings( KSharedConfig::openConfig()->group( "MainWindow" ) ); createGUI(); } + +#include "moc_kmag.cpp" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmag-23.04.3/src/kmagselrect.cpp new/kmag-23.08.0/src/kmagselrect.cpp --- old/kmag-23.04.3/src/kmagselrect.cpp 2023-07-04 06:46:21.000000000 +0200 +++ new/kmag-23.08.0/src/kmagselrect.cpp 2023-08-16 22:59:51.000000000 +0200 @@ -387,3 +387,5 @@ #endif Q_EMIT resized (p - oldPos); } + +#include "moc_kmagselrect.cpp" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmag-23.04.3/src/kmagzoomview.cpp new/kmag-23.08.0/src/kmagzoomview.cpp --- old/kmag-23.04.3/src/kmagzoomview.cpp 2023-07-04 06:46:21.000000000 +0200 +++ new/kmag-23.08.0/src/kmagzoomview.cpp 2023-08-16 22:59:51.000000000 +0200 @@ -39,7 +39,7 @@ using namespace std::chrono_literals; -#ifdef QAccessibilityClient_FOUND +#if HAVE_QACCESSIBILITYCLIENT #include <qaccessibilityclient/accessibleobject.h> #endif @@ -131,7 +131,7 @@ if(m_fitToWindow) fitToWindow(); -#ifdef QAccessibilityClient_FOUND +#if HAVE_QACCESSIBILITYCLIENT //subscribe to focus events from registry m_registry.subscribeEventListeners(QAccessibleClient::Registry::Focus | QAccessibleClient::Registry::TextCaretMoved); #endif @@ -200,7 +200,7 @@ } } -#ifdef QAccessibilityClient_FOUND +#if HAVE_QACCESSIBILITYCLIENT void KMagZoomView::followBoth(bool follow) { @@ -961,7 +961,7 @@ if(m_followMouse) { // set new center to be the current mouse position newCenter = QCursor::pos(); -#ifdef QAccessibilityClient_FOUND +#if HAVE_QACCESSIBILITYCLIENT } else if(m_followFocus) { // set the new center to the current keyboard cursor position newCenter = m_oldFocus; @@ -1203,3 +1203,5 @@ } return(image); } + +#include "moc_kmagzoomview.cpp" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmag-23.04.3/src/kmagzoomview.h new/kmag-23.08.0/src/kmagzoomview.h --- old/kmag-23.04.3/src/kmagzoomview.h 2023-07-04 06:46:21.000000000 +0200 +++ new/kmag-23.08.0/src/kmagzoomview.h 2023-08-16 22:59:51.000000000 +0200 @@ -41,7 +41,7 @@ #include "kmagselrect.h" #include "focustrackconfig.h" -#ifdef QAccessibilityClient_FOUND +#if HAVE_QACCESSIBILITYCLIENT #include <qaccessibilityclient/registry.h> #endif @@ -72,7 +72,7 @@ /// Returns the status of followMouse bool getFollowMouse() const { return m_followMouse; } -#ifdef QAccessibilityClient_FOUND +#if HAVE_QACCESSIBILITYCLIENT /// Returns the status of followFocus bool getFollowFocus() const { return m_followFocus; } #endif @@ -112,7 +112,7 @@ /// Set grab-window-follows-mouse mode void followMouse(bool follow = true); -#ifdef QAccessibilityClient_FOUND +#if HAVE_QACCESSIBILITYCLIENT /// Set grab-window-follows-mouse-and-keyboard-focus mode void followBoth(bool follow = true); @@ -138,7 +138,7 @@ /// Fits the zoom view to the zoom view window void fitToWindow(); -#ifdef QAccessibilityClient_FOUND +#if HAVE_QACCESSIBILITYCLIENT private Q_SLOTS: /// Called from a dbus service when followFocus is true void focusChanged(const QAccessibleClient::AccessibleObject &object); @@ -197,7 +197,7 @@ private: -#ifdef QAccessibilityClient_FOUND +#if HAVE_QACCESSIBILITYCLIENT /// Global Accessibility Registry QAccessibleClient::Registry m_registry; #endif @@ -223,7 +223,7 @@ /// Saves the center of the grab window QPoint m_oldCenter; -#ifdef QAccessibilityClient_FOUND +#if HAVE_QACCESSIBILITYCLIENT /// Saves the keyboard focus position QPoint m_oldFocus; #endif diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmag-23.04.3/src/org.kde.kmag.appdata.xml new/kmag-23.08.0/src/org.kde.kmag.appdata.xml --- old/kmag-23.04.3/src/org.kde.kmag.appdata.xml 2023-07-04 06:46:21.000000000 +0200 +++ new/kmag-23.08.0/src/org.kde.kmag.appdata.xml 2023-08-16 22:59:51.000000000 +0200 @@ -13,6 +13,7 @@ <name xml:lang="de">KMag</name> <name xml:lang="el">KMag</name> <name xml:lang="en-GB">KMag</name> + <name xml:lang="eo">KMag</name> <name xml:lang="es">KMag</name> <name xml:lang="et">KMag</name> <name xml:lang="eu">KMag</name> @@ -51,6 +52,7 @@ <summary xml:lang="de">Bildschirmlupe</summary> <summary xml:lang="el">ÎÎµÎ³ÎµÎ¸Ï Î½ÏικÏÏ ÏακÏÏ Î¿Î¸ÏνηÏ</summary> <summary xml:lang="en-GB">Screen Magnifier</summary> + <summary xml:lang="eo">Ekranlupeo</summary> <summary xml:lang="es">Lupa de la pantalla</summary> <summary xml:lang="et">Ekraani suurendusklaas</summary> <summary xml:lang="eu">Pantailako lupa</summary> @@ -93,6 +95,7 @@ <p xml:lang="de">KMag ist ein kleines Dienstprogramm für Linux, um einen Teil des Bildschirms zu vergröÃern. KMag ist sehr nützlich für Menschen mit Sehbehinderung und für Menschen, die in Bereichen der Bildanalyse, Webentwicklung usw. arbeiten.</p> <p xml:lang="el">Το KMag είναι μια μικÏή εÏαÏμογή για Linux για να μεγεθÏνει μÎÏÎ¿Ï ÏÎ·Ï Î¿Î¸ÏνηÏ. Το KMag είναι ÏÎ¿Î»Ï ÏÏήÏιμο για ανθÏÏÏÎ¿Ï Ï Î¼Îµ Î´Ï ÏÎºÎ¿Î»Î¯ÎµÏ ÏÏην ÏÏαÏη και για ÎµÎºÎµÎ¯Î½Î¿Ï Ï ÏÎ¿Ï Î±ÏÏολοÏνÏαι με Ïα Ïεδία ÏÎ·Ï Î±Î½Î¬Î»Ï ÏÎ·Ï ÎµÎ¹ÎºÏναÏ, ανάÏÏÏ Î¾Î·Ï ÎµÏαÏμογÏν ιÏÏÎ¿Ï ÎºÎ»Ï.</p> <p xml:lang="en-GB">KMag is a small utility for Linux to magnify a part of the screen. KMag is very useful for people with visual disabilities and for those working in the fields of image analysis, web development etc.</p> + <p xml:lang="eo">KMag estas malgranda ilo por Linukso por pligrandigi parton de la ekrano. KMag estas tre utila por homoj kun vidaj handikapoj kaj por tiuj laborantaj en la kampoj de bildanalizo, TTT-evoluigo ktp.</p> <p xml:lang="es">KMag es una pequeña utilidad para Linux que aumenta una parte de la pantalla. KMag resulta muy útil para personas con problemas visuales y para los que trabajan en campos de análisis de imágenes, desarrollo web, etc.</p> <p xml:lang="et">KMag on Linuxi väike abivahend ekraani osade suurendamiseks. KMag on suureks abiks nägemispuudega inimestele, samuti neile, kelle erialaks on pildianalüüs, veebiarendus jne.</p> <p xml:lang="eu">KMag pantailaren zati bat handitzeko Linux-erako baliagarritasun txiki bat da. KMag oso baliagarria da ikusmenean ezintasuna dutenentzako, baita irudi analisian, web diseinuan eta beste hainbat eremutan lan egiten dutenentzako ere.</p> @@ -135,6 +138,7 @@ <caption xml:lang="de">KMag in Aktion</caption> <caption xml:lang="el">Το KMag Ïε δÏάÏη</caption> <caption xml:lang="en-GB">KMag in action</caption> + <caption xml:lang="eo">KMag en aktivo</caption> <caption xml:lang="es">KMag en acción</caption> <caption xml:lang="et">KMag tegevuses</caption> <caption xml:lang="eu">KMag martxan</caption> @@ -172,9 +176,9 @@ </provides> <launchable type="desktop-id">org.kde.kmag.desktop</launchable> <releases> + <release version="23.08.0" date="2023-08-24"/> <release version="23.04.3" date="2023-07-06"/> <release version="23.04.2" date="2023-06-08"/> <release version="23.04.1" date="2023-05-11"/> - <release version="23.04.0" date="2023-04-20"/> </releases> </component> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmag-23.04.3/src/org.kde.kmag.desktop new/kmag-23.08.0/src/org.kde.kmag.desktop --- old/kmag-23.04.3/src/org.kde.kmag.desktop 2023-07-04 06:46:21.000000000 +0200 +++ new/kmag-23.08.0/src/org.kde.kmag.desktop 2023-08-16 22:59:51.000000000 +0200 @@ -17,6 +17,7 @@ Name[de]=KMag Name[el]=KMag Name[en_GB]=KMag +Name[eo]=KMag Name[es]=KMag Name[et]=KMag Name[eu]=KMag @@ -85,7 +86,7 @@ GenericName[de]=Bildschirmlupe GenericName[el]=ÎÎµÎ³ÎµÎ¸Ï Î½ÏικÏÏ ÏακÏÏ Î¿Î¸ÏÎ½Î·Ï GenericName[en_GB]=Screen Magnifier -GenericName[eo]=Ekrano-pligrandigilo +GenericName[eo]=Ekranlupeo GenericName[es]=Lupa de la pantalla GenericName[et]=Ekraani suurendaja GenericName[eu]=Pantailaren lupa @@ -154,6 +155,7 @@ Comment[de]=Ein Programm zur VergröÃerung von Bildschirmausschnitten Comment[el]=ÎÏγαλείο μεγÎÎ¸Ï Î½ÏÎ·Ï Î¿Î¸ÏÎ½Î·Ï Comment[en_GB]=A screen magnification tool +Comment[eo]=Ilo por pligrandigi ekranareon Comment[es]=Una herramienta para aumentar la pantalla Comment[et]=Ekraani suurendamise tööriist Comment[eu]=Pantaila-irudiaren zatiak handiagotzeko tresna bat
