Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package deepin-qt-dbus-factory for 
openSUSE:Factory checked in at 2022-01-31 22:56:47
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/deepin-qt-dbus-factory (Old)
 and      /work/SRC/openSUSE:Factory/.deepin-qt-dbus-factory.new.1898 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "deepin-qt-dbus-factory"

Mon Jan 31 22:56:47 2022 rev:13 rq:950165 version:5.4.20

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/deepin-qt-dbus-factory/deepin-qt-dbus-factory.changes
    2021-08-16 10:14:09.510912463 +0200
+++ 
/work/SRC/openSUSE:Factory/.deepin-qt-dbus-factory.new.1898/deepin-qt-dbus-factory.changes
  2022-01-31 22:57:01.161703801 +0100
@@ -1,0 +2,14 @@
+Sun Oct 24 13:54:43 UTC 2021 - Hillwood Yang <[email protected]>
+
+- Update version to 5.4.20
+  * Add org.freedeskop.DBus.xml
+  * Add gravity sensor
+
+-------------------------------------------------------------------
+Sun Sep 19 15:08:07 UTC 2021 - Hillwood Yang <[email protected]>
+
+- Update version to 5.4.17
+  * Add org.freedeskop.DBus.xml config
+  * Fix bugs 
+
+-------------------------------------------------------------------

Old:
----
  dde-qt-dbus-factory-5.4.10.tar.gz

New:
----
  dde-qt-dbus-factory-5.4.20.tar.gz

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

Other differences:
------------------
++++++ deepin-qt-dbus-factory.spec ++++++
--- /var/tmp/diff_new_pack.Gq4uBq/_old  2022-01-31 22:57:01.697700193 +0100
+++ /var/tmp/diff_new_pack.Gq4uBq/_new  2022-01-31 22:57:01.701700165 +0100
@@ -20,7 +20,7 @@
 %define _name  dde-qt-dbus-factory
 
 Name:           deepin-qt-dbus-factory
-Version:        5.4.10
+Version:        5.4.20
 Release:        0
 Summary:        A repository storing auto-generated Qt5 D-Bus code
 License:        GPL-3.0-or-later

++++++ dde-qt-dbus-factory-5.4.10.tar.gz -> dde-qt-dbus-factory-5.4.20.tar.gz 
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/dde-qt-dbus-factory-5.4.10/libdframeworkdbus/libdframeworkdbus.pro 
new/dde-qt-dbus-factory-5.4.20/libdframeworkdbus/libdframeworkdbus.pro
--- old/dde-qt-dbus-factory-5.4.10/libdframeworkdbus/libdframeworkdbus.pro      
2021-05-25 09:29:04.000000000 +0200
+++ new/dde-qt-dbus-factory-5.4.20/libdframeworkdbus/libdframeworkdbus.pro      
2021-08-19 10:19:00.000000000 +0200
@@ -8,6 +8,7 @@
 include(qtdbusextended/qtdbusextended.pri)
 
 HEADERS += \
+    types/arrayint.h \
     types/zoneinfo.h \
     types/audioport.h \
     types/audioportlist.h \
@@ -68,6 +69,7 @@
     types/policydetails.h
 
 SOURCES += \
+    types/arrayint.cpp \
     types/zoneinfo.cpp \
     types/screenrect.cpp \
     types/inputdevicelist.cpp \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/dde-qt-dbus-factory-5.4.10/libdframeworkdbus/types/arrayint.cpp 
new/dde-qt-dbus-factory-5.4.20/libdframeworkdbus/types/arrayint.cpp
--- old/dde-qt-dbus-factory-5.4.10/libdframeworkdbus/types/arrayint.cpp 
1970-01-01 01:00:00.000000000 +0100
+++ new/dde-qt-dbus-factory-5.4.20/libdframeworkdbus/types/arrayint.cpp 
2021-08-19 10:19:00.000000000 +0200
@@ -0,0 +1,28 @@
+/*
+ * Copyright (C) 2021 ~ 2021 Deepin Technology Co., Ltd.
+ *
+ * Author:     Zhang Qipeng <[email protected]>
+ *
+ * Maintainer: Zhang Qipeng <[email protected]>
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include "arrayint.h"
+
+void registerArrayIntMetaType()
+{
+    qRegisterMetaType<ArrayInt>("ArrayInt");
+    qDBusRegisterMetaType<ArrayInt>();
+}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/dde-qt-dbus-factory-5.4.10/libdframeworkdbus/types/arrayint.h 
new/dde-qt-dbus-factory-5.4.20/libdframeworkdbus/types/arrayint.h
--- old/dde-qt-dbus-factory-5.4.10/libdframeworkdbus/types/arrayint.h   
1970-01-01 01:00:00.000000000 +0100
+++ new/dde-qt-dbus-factory-5.4.20/libdframeworkdbus/types/arrayint.h   
2021-08-19 10:19:00.000000000 +0200
@@ -0,0 +1,31 @@
+/*
+ * Copyright (C) 2021 ~ 2021 Deepin Technology Co., Ltd.
+ *
+ * Author:     Zhang Qipeng <[email protected]>
+ *
+ * Maintainer: Zhang Qipeng <[email protected]>
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+#ifndef ARRAYINT_H
+#define ARRAYINT_H
+
+#include <QDBusMetaType>
+
+using ArrayInt = QList<int>;
+Q_DECLARE_METATYPE(ArrayInt);
+
+void registerArrayIntMetaType();
+
+#endif // ARRAYINT_H
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/dde-qt-dbus-factory-5.4.10/xml/com.deepin.daemon.Accounts.User.xml 
new/dde-qt-dbus-factory-5.4.20/xml/com.deepin.daemon.Accounts.User.xml
--- old/dde-qt-dbus-factory-5.4.10/xml/com.deepin.daemon.Accounts.User.xml      
2021-05-25 09:29:04.000000000 +0200
+++ new/dde-qt-dbus-factory-5.4.20/xml/com.deepin.daemon.Accounts.User.xml      
2021-08-19 10:19:00.000000000 +0200
@@ -17,6 +17,10 @@
   <method name="IsPasswordExpired">
     <arg type="b" direction="out"/>
   </method>
+  <method name="PasswordExpiredInfo">
+    <arg name="expiredStatus" type="i" direction="out"/>
+    <arg name="dayLeft" type="i" direction="out"/>
+  </method>
   <method name="SetAutomaticLogin">
     <arg name="enabled" type="b" direction="in"/>
   </method>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/dde-qt-dbus-factory-5.4.10/xml/com.deepin.daemon.Authenticate.Session2.xml 
new/dde-qt-dbus-factory-5.4.20/xml/com.deepin.daemon.Authenticate.Session2.xml
--- 
old/dde-qt-dbus-factory-5.4.10/xml/com.deepin.daemon.Authenticate.Session2.xml  
    2021-05-25 09:29:04.000000000 +0200
+++ 
new/dde-qt-dbus-factory-5.4.20/xml/com.deepin.daemon.Authenticate.Session2.xml  
    2021-08-19 10:19:00.000000000 +0200
@@ -19,11 +19,13 @@
     <method name="GetResult">
         <arg name="result" type="i" direction="out"/>
     </method>
-    <method name="Quit">
-    </method>
+    <method name="Quit"/>
     <method name="SetQuitFlag">
         <arg name="flag" type="i" direction="in"/>
     </method>
+    <method name="SetSymmetricKey">
+        <arg name="key" type="ay" direction="in"/>
+    </method>
     <method name="SetToken">
         <arg name="flag" type="i" direction="in"/>
         <arg name="token" type="ay" direction="in"/>
@@ -33,4 +35,18 @@
         <arg name="timeout" type="i" direction="in"/>
         <arg name="state" type="i" direction="out"/>
     </method>
+    <method name="EncryptKey">
+        <arg name="encryptType" type="i" direction="in"/>
+        <arg name="encryptMethod" type="ai" direction="in"/>
+        <annotation name="org.qtproject.QtDBus.QtTypeName.In1" 
value="ArrayInt"/>
+        <arg name="encryptType" type="i" direction="out"/>
+        <arg name="encryptMethod" type="ai" direction="out"/>
+        <annotation name="org.qtproject.QtDBus.QtTypeName.Out1" 
value="ArrayInt"/>
+        <arg name="publicKey" type="s" direction="out"/>
+    </method>
+    <method name="PrivilegesEnable">
+        <arg name="path" type="s" direction="in"/>
+        <arg name="enabled" type="b" direction="out"/>
+    </method>
+    <method name="PrivilegesDisable"/>
 </interface>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/dde-qt-dbus-factory-5.4.10/xml/com.deepin.daemon.Authenticate.xml 
new/dde-qt-dbus-factory-5.4.20/xml/com.deepin.daemon.Authenticate.xml
--- old/dde-qt-dbus-factory-5.4.10/xml/com.deepin.daemon.Authenticate.xml       
2021-05-25 09:29:04.000000000 +0200
+++ new/dde-qt-dbus-factory-5.4.20/xml/com.deepin.daemon.Authenticate.xml       
2021-08-19 10:19:00.000000000 +0200
@@ -3,15 +3,15 @@
     <property name="FrameworkState" type="i" access="read"/>
     <property name="SupportEncrypts" type="s" access="read"/>
     <signal name="LimitUpdated">
-       <arg type="s"></arg>
+        <arg type="s"/>
     </signal>
     <method name="PreOneKeyLogin">
-        <arg name="flag" type="i" direction="in"></arg>
-        <arg name="result" type="s" direction="out"></arg>
+        <arg name="flag" type="i" direction="in"/>
+        <arg name="result" type="s" direction="out"/>
     </method>
     <method name="GetLimits">
-       <arg name="username" type="s" direction="in"></arg>
-       <arg name="limits" type="s" direction="out"></arg>
+        <arg name="username" type="s" direction="in"/>
+        <arg name="limits" type="s" direction="out"/>
     </method>
     <method name="Authenticate">
         <arg name="username" type="s" direction="in"/>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/dde-qt-dbus-factory-5.4.10/xml/com.deepin.daemon.Display.Monitor.xml 
new/dde-qt-dbus-factory-5.4.20/xml/com.deepin.daemon.Display.Monitor.xml
--- old/dde-qt-dbus-factory-5.4.10/xml/com.deepin.daemon.Display.Monitor.xml    
2021-05-25 09:29:04.000000000 +0200
+++ new/dde-qt-dbus-factory-5.4.20/xml/com.deepin.daemon.Display.Monitor.xml    
2021-08-19 10:19:00.000000000 +0200
@@ -23,6 +23,7 @@
           <property name="Model" type="s" access="read"></property>
           <property name="Manufacturer" type="s" access="read"></property>
           <property name="Enabled" type="b" access="read"></property>
+          <property name="CurrentRotateMode" type="y" access="read"></property>
           <property name="Connected" type="b" access="read"></property>
           <property name="X" type="n" access="read"></property>
           <property name="Y" type="n" access="read"></property>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/dde-qt-dbus-factory-5.4.10/xml/com.deepin.daemon.Network.xml 
new/dde-qt-dbus-factory-5.4.20/xml/com.deepin.daemon.Network.xml
--- old/dde-qt-dbus-factory-5.4.10/xml/com.deepin.daemon.Network.xml    
2021-05-25 09:29:04.000000000 +0200
+++ new/dde-qt-dbus-factory-5.4.20/xml/com.deepin.daemon.Network.xml    
2021-08-19 10:19:00.000000000 +0200
@@ -120,6 +120,10 @@
           <method name="SetProxyMethod">
                <arg type="s" direction="in"></arg>
           </method>
+          <method name="RequestIPConflictCheck">
+               <arg type="s" direction="in"></arg>
+               <arg type="s" direction="in"></arg>
+          </method>
           <signal name="NeedSecrets">
                <arg type="s"></arg>
           </signal>
@@ -143,6 +147,11 @@
                <arg type="s"></arg>
                <arg type="b"></arg>
           </signal>
+          <signal name="ActiveConnectionInfoChanged"/>
+          <signal name="IPConflict">
+               <arg type="s"></arg>
+               <arg type="s"></arg>
+          </signal>
           <property name="State" type="u" access="read"></property>
           <property name="WirelessAccessPoints" type="s" 
access="read"></property>
           <property name="Connectivity" type="u" access="read"></property>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/dde-qt-dbus-factory-5.4.10/xml/com.deepin.daemon.ResourceManager.xml 
new/dde-qt-dbus-factory-5.4.20/xml/com.deepin.daemon.ResourceManager.xml
--- old/dde-qt-dbus-factory-5.4.10/xml/com.deepin.daemon.ResourceManager.xml    
1970-01-01 01:00:00.000000000 +0100
+++ new/dde-qt-dbus-factory-5.4.20/xml/com.deepin.daemon.ResourceManager.xml    
2021-08-19 10:19:00.000000000 +0200
@@ -0,0 +1,34 @@
+<interface name="com.deepin.daemon.ResourceManager">
+       <method name="Subscribe">
+               <arg name="pid" type="i" direction="in"></arg>
+               <arg name="cmd" type="s" direction="in"></arg>
+               <arg name="interest" type="ai" direction="in"></arg>
+               <annotation name="org.qtproject.QtDBus.QtTypeName.In2" 
value="QList &lt;int &gt;"/>
+               <arg name="force" type="b" direction="in"></arg>
+               <arg name="uuid" type="s" direction="out"></arg>
+       </method>
+       <method name="SubscribeControl">
+               <arg name="pid" type="i" direction="in"></arg>
+               <arg name="cmd" type="s" direction="in"></arg>
+               <arg name="name" type="s" direction="in"></arg>
+               <arg name="interest" type="ai" direction="in"></arg>
+               <annotation name="org.qtproject.QtDBus.QtTypeName.In3" 
value="QList &lt;int &gt;"/>
+               <arg name="uuid" type="s" direction="out"></arg>
+       </method>
+       <method name="Unsubscribe">
+               <arg name="uuid" type="s" direction="in"></arg>
+       </method>
+       <method name="AllowRequest">
+               <arg name="uuid" type="s" direction="in"></arg>
+               <arg name="msg" type="s" direction="in"></arg>
+               <arg name="allow" type="b" direction="in"></arg>
+       </method>
+       <signal name="Request">
+               <arg name="subscribers" type="as"/>
+               <arg name="msg" type="s"/>
+       </signal>
+               <signal name="Notification">
+               <arg name="subscribers" type="as"/>
+               <arg name="msg" type="s"/>
+       </signal>
+</interface>
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/dde-qt-dbus-factory-5.4.10/xml/com.deepin.sync.daemon.xml 
new/dde-qt-dbus-factory-5.4.20/xml/com.deepin.sync.daemon.xml
--- old/dde-qt-dbus-factory-5.4.10/xml/com.deepin.sync.daemon.xml       
2021-05-25 09:29:04.000000000 +0200
+++ new/dde-qt-dbus-factory-5.4.20/xml/com.deepin.sync.daemon.xml       
2021-08-19 10:19:00.000000000 +0200
@@ -29,4 +29,7 @@
   <property name="State" type="(is)" access="read">
     <annotation name="org.qtproject.QtDBus.QtTypeName" value="IntString"/>
   </property>
+  <property name="UserInfo" type="a{sv}" access="read">
+    <annotation name="org.qtproject.QtDBus.QtTypeName" value="QVariantMap"/>
+  </property>
 </interface>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/dde-qt-dbus-factory-5.4.10/xml/org.freedesktop.DBus.xml 
new/dde-qt-dbus-factory-5.4.20/xml/org.freedesktop.DBus.xml
--- old/dde-qt-dbus-factory-5.4.10/xml/org.freedesktop.DBus.xml 1970-01-01 
01:00:00.000000000 +0100
+++ new/dde-qt-dbus-factory-5.4.20/xml/org.freedesktop.DBus.xml 2021-08-19 
10:19:00.000000000 +0200
@@ -0,0 +1,7 @@
+<interface name="org.freedesktop.DBus">
+    <signal name="NameOwnerChanged">
+        <arg name="name" type="s"/>
+        <arg name="oldOwner" type="s"/>
+        <arg name="newOwner" type="s"/>
+    </signal>
+</interface>
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/dde-qt-dbus-factory-5.4.10/xml/org.freedesktop.FileManager1.xml 
new/dde-qt-dbus-factory-5.4.20/xml/org.freedesktop.FileManager1.xml
--- old/dde-qt-dbus-factory-5.4.10/xml/org.freedesktop.FileManager1.xml 
2021-05-25 09:29:04.000000000 +0200
+++ new/dde-qt-dbus-factory-5.4.20/xml/org.freedesktop.FileManager1.xml 
2021-08-19 10:19:00.000000000 +0200
@@ -11,4 +11,7 @@
       <arg type='as' name='URIs' direction='in'/>
       <arg type='s' name='StartupId' direction='in'/>
     </method>
+    <method name='Trash'>
+      <arg type='as' name='URIs' direction='in'/>
+    </method>
 </interface>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/dde-qt-dbus-factory-5.4.10/xml/org.freedesktop.Hostname1.xml 
new/dde-qt-dbus-factory-5.4.20/xml/org.freedesktop.Hostname1.xml
--- old/dde-qt-dbus-factory-5.4.10/xml/org.freedesktop.Hostname1.xml    
1970-01-01 01:00:00.000000000 +0100
+++ new/dde-qt-dbus-factory-5.4.20/xml/org.freedesktop.Hostname1.xml    
2021-08-19 10:19:00.000000000 +0200
@@ -0,0 +1,7 @@
+  <interface name="org.freedesktop.hostname1">
+          <method name="SetStaticHostname">
+               <arg type="s" direction="in"></arg>
+               <arg type="b" direction="in"></arg>
+          </method>
+          <property name="StaticHostname" type="s" access="read"></property>
+  </interface>
\ No newline at end of file

Reply via email to