Hello community,

here is the log from the commit of package ark for openSUSE:Factory checked in 
at 2019-11-12 11:34:00
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ark (Old)
 and      /work/SRC/openSUSE:Factory/.ark.new.2990 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ark"

Tue Nov 12 11:34:00 2019 rev:111 rq:746798 version:19.08.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/ark/ark.changes  2019-10-14 13:24:59.327979735 
+0200
+++ /work/SRC/openSUSE:Factory/.ark.new.2990/ark.changes        2019-11-12 
11:34:01.718000279 +0100
@@ -1,0 +2,10 @@
+Thu Nov  7 23:12:30 UTC 2019 - Luca Beltrame <[email protected]>
+
+- Update to 19.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-19.08.3.php
+- Changes since 19.08.2:
+  * Prevent drops from non-local URLs (kde#409835)
+
+-------------------------------------------------------------------

Old:
----
  ark-19.08.2.tar.xz
  ark-19.08.2.tar.xz.sig

New:
----
  ark-19.08.3.tar.xz
  ark-19.08.3.tar.xz.sig

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

Other differences:
------------------
++++++ ark.spec ++++++
--- /var/tmp/diff_new_pack.HIql2I/_old  2019-11-12 11:34:02.358000976 +0100
+++ /var/tmp/diff_new_pack.HIql2I/_new  2019-11-12 11:34:02.358000976 +0100
@@ -22,7 +22,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:           ark
-Version:        19.08.2
+Version:        19.08.3
 Release:        0
 Summary:        KDE Archiver Tool
 License:        GPL-2.0-or-later


++++++ ark-19.08.2.tar.xz -> ark-19.08.3.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-19.08.2/CMakeLists.txt 
new/ark-19.08.3/CMakeLists.txt
--- old/ark-19.08.2/CMakeLists.txt      2019-10-06 05:08:50.000000000 +0200
+++ new/ark-19.08.3/CMakeLists.txt      2019-11-01 22:53:05.000000000 +0100
@@ -3,7 +3,7 @@
 # KDE Application Version, managed by release script
 set (KDE_APPLICATIONS_VERSION_MAJOR "19")
 set (KDE_APPLICATIONS_VERSION_MINOR "08")
-set (KDE_APPLICATIONS_VERSION_MICRO "2")
+set (KDE_APPLICATIONS_VERSION_MICRO "3")
 set (KDE_APPLICATIONS_VERSION 
"${KDE_APPLICATIONS_VERSION_MAJOR}.${KDE_APPLICATIONS_VERSION_MINOR}.${KDE_APPLICATIONS_VERSION_MICRO}")
 project(ark VERSION ${KDE_APPLICATIONS_VERSION})
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-19.08.2/part/archiveview.cpp 
new/ark-19.08.3/part/archiveview.cpp
--- old/ark-19.08.2/part/archiveview.cpp        2019-10-06 05:08:50.000000000 
+0200
+++ new/ark-19.08.3/part/archiveview.cpp        2019-11-01 22:53:05.000000000 
+0100
@@ -107,6 +107,13 @@
 
     QTreeView::dragMoveEvent(event);
     if (event->mimeData()->hasFormat(QStringLiteral("text/uri-list"))) {
+        const auto urls = event->mimeData()->urls();
+        for (const auto &url : urls) {
+            if (!url.isLocalFile()) {
+                return;
+            }
+        }
+
         event->acceptProposedAction();
     }
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-19.08.2/po/gl/ark.po new/ark-19.08.3/po/gl/ark.po
--- old/ark-19.08.2/po/gl/ark.po        2019-10-08 02:12:10.000000000 +0200
+++ new/ark-19.08.3/po/gl/ark.po        2019-11-05 05:05:51.000000000 +0100
@@ -16,7 +16,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Lokalize 19.07.70\n"
+"X-Generator: Lokalize 19.08.2\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-19.08.2/po/id/ark.po new/ark-19.08.3/po/id/ark.po
--- old/ark-19.08.2/po/id/ark.po        2019-10-08 02:12:10.000000000 +0200
+++ new/ark-19.08.3/po/id/ark.po        2019-11-05 05:05:51.000000000 +0100
@@ -17,7 +17,6 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Lokalize 19.04.3\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-19.08.2/po/it/ark.po new/ark-19.08.3/po/it/ark.po
--- old/ark-19.08.2/po/it/ark.po        2019-10-08 02:12:10.000000000 +0200
+++ new/ark-19.08.3/po/it/ark.po        2019-11-05 05:05:51.000000000 +0100
@@ -19,7 +19,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Lokalize 19.08.1\n"
+"X-Generator: Lokalize 19.08.2\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-19.08.2/po/ja/ark.po new/ark-19.08.3/po/ja/ark.po
--- old/ark-19.08.2/po/ja/ark.po        2019-10-08 02:12:10.000000000 +0200
+++ new/ark-19.08.3/po/ja/ark.po        2019-11-05 05:05:51.000000000 +0100
@@ -6,13 +6,14 @@
 # Kenshi Muto <[email protected]>, 2005.
 # Yukiko Bando <[email protected]>, 2007, 2008, 2009, 2010.
 # Fumiaki Okushi <[email protected]>, 2004, 2005, 2014, 2019.
+# Tomohiro Hyakutake <[email protected]>, 2019.
 msgid ""
 msgstr ""
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-08-30 07:46+0200\n"
-"PO-Revision-Date: 2019-04-21 12:28-0700\n"
-"Last-Translator: Fumiaki Okushi <[email protected]>\n"
+"PO-Revision-Date: 2019-11-02 18:23+0900\n"
+"Last-Translator: Tomohiro Hyakutake <[email protected]>\n"
 "Language-Team: Japanese <[email protected]>\n"
 "Language: ja\n"
 "MIME-Version: 1.0\n"
@@ -21,7 +22,7 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
-"X-Generator: Lokalize 18.12.3\n"
+"X-Generator: Lokalize 19.08.2\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
@@ -599,11 +600,9 @@
 
 #. i18n: ectx: property (title), widget (KCollapsibleGroupBox, 
collapsibleCompression)
 #: kerfuffle/compressionoptionswidget.ui:20
-#, fuzzy, kde-format
-#| msgctxt "Compressed size of a file inside an archive"
-#| msgid "Compressed"
+#, kde-format
 msgid "Compression"
-msgstr "圧縮サイズ"
+msgstr "圧縮"
 
 #. i18n: ectx: property (text), widget (QLabel, lblCompLevel1)
 #: kerfuffle/compressionoptionswidget.ui:35
@@ -685,11 +684,10 @@
 msgstr "メガバイト"
 
 #: kerfuffle/createdialog.cpp:132
-#, fuzzy, kde-format
-#| msgid "&Automatically create subfolders"
+#, kde-format
 msgctxt "the argument is a file extension (the period is not a typo)"
 msgid "Automatically add .%1"
-msgstr "自動的にサブフォルダを作成する(&A)"
+msgstr "自動的に .%1 を追加"
 
 #: kerfuffle/createdialog.cpp:219
 #, kde-format
@@ -722,13 +720,13 @@
 #: kerfuffle/createdialog.ui:61 part/infopanel.ui:93
 #, kde-format
 msgid "Type:"
-msgstr ""
+msgstr "種類:"
 
 #. i18n: ectx: property (text), widget (QLabel, label_4)
 #: kerfuffle/createdialog.ui:78
 #, kde-format
 msgid "Extension:"
-msgstr ""
+msgstr "拡張子:"
 
 #: kerfuffle/extractiondialog.cpp:62
 #, kde-format
@@ -1542,9 +1540,7 @@
 msgstr ""
 
 #: part/part.cpp:355
-#, fuzzy, kde-format
-#| msgctxt "@action:inmenu"
-#| msgid "Show information panel"
+#, kde-format
 msgctxt "@action:inmenu"
 msgid "Show Information Panel"
 msgstr "情報パネルを表示"
@@ -1588,11 +1584,10 @@
 msgstr "クリックして選択したファイルをプレビューします"
 
 #: part/part.cpp:384
-#, fuzzy, kde-format
-#| msgid "E&xtract"
+#, kde-format
 msgctxt "@action:inmenu"
 msgid "E&xtract All"
-msgstr "展開(&X)"
+msgstr "すべて展開(&X)"
 
 #: part/part.cpp:386
 #, fuzzy, kde-format
@@ -1657,7 +1652,7 @@
 #, kde-format
 msgctxt "@action:inmenu"
 msgid "&Test Integrity"
-msgstr ""
+msgstr "整合性をテスト"
 
 #: part/part.cpp:431 part/part.cpp:463
 #, fuzzy, kde-format
@@ -1692,12 +1687,10 @@
 msgstr "コメント"
 
 #: part/part.cpp:529 part/part.cpp:537
-#, fuzzy, kde-format
-#| msgctxt "File comment"
-#| msgid "Comment"
+#, kde-format
 msgctxt "@action:inmenu mutually exclusive with Edit &Comment"
 msgid "Add &Comment"
-msgstr "コメント"
+msgstr "コメントを追加(&C)"
 
 #: part/part.cpp:638
 #, fuzzy, kde-format
@@ -1872,7 +1865,7 @@
 #: part/part.cpp:1437
 #, kde-format
 msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\""
-msgstr ""
+msgstr "ファイル名は / を含むものや \".\" や \"..\" にできません"
 
 #: part/part.cpp:1481
 #, kde-format
@@ -1887,7 +1880,7 @@
 #: part/part.cpp:1510
 #, kde-format
 msgid "Entries with the same names can't be pasted to the same destination."
-msgstr ""
+msgstr "同じ名前のエントリは同じ場所にペーストできません。"
 
 #: part/part.cpp:1605
 #, kde-format
@@ -1984,6 +1977,8 @@
 "Your unrar executable is version %1, which is too old to handle this "
 "archive. Please update to a more recent version."
 msgstr ""
+"unrar 実行ファイルのバージョンは %1 であり、このファイルを扱うには古すぎま"
+"す。より新しいバージョンに更新してください"
 
 #: plugins/clirarplugin/cliplugin.cpp:341
 #, kde-format
@@ -2005,11 +2000,10 @@
 #: plugins/cliunarchiverplugin/cliplugin.cpp:146
 #, kde-format
 msgid "Not enough memory for loading the archive."
-msgstr ""
+msgstr "アーカイブの読み取りに十分なメモリがありません。"
 
 #: plugins/cliunarchiverplugin/cliplugin.cpp:198
-#, fuzzy, kde-format
-#| msgid "Incorrect password."
+#, kde-format
 msgid "Wrong password."
 msgstr "パスワードが違います。"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-19.08.2/po/zh_CN/ark.po 
new/ark-19.08.3/po/zh_CN/ark.po
--- old/ark-19.08.2/po/zh_CN/ark.po     2019-10-08 02:12:11.000000000 +0200
+++ new/ark-19.08.3/po/zh_CN/ark.po     2019-11-05 05:05:52.000000000 +0100
@@ -18,7 +18,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-08-30 07:46+0200\n"
-"PO-Revision-Date: 2019-09-05 09:57\n"
+"PO-Revision-Date: 2019-10-09 10:13\n"
 "Last-Translator: Guo Yunhe (guoyunhe)\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"


Reply via email to