Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package otpclient for openSUSE:Factory 
checked in at 2022-07-21 11:33:23
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/otpclient (Old)
 and      /work/SRC/openSUSE:Factory/.otpclient.new.1523 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "otpclient"

Thu Jul 21 11:33:23 2022 rev:17 rq:990345 version:2.6.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/otpclient/otpclient.changes      2022-07-06 
15:42:02.982521661 +0200
+++ /work/SRC/openSUSE:Factory/.otpclient.new.1523/otpclient.changes    
2022-07-21 11:33:55.754979445 +0200
@@ -1,0 +2,6 @@
+Wed Jul 20 06:30:09 UTC 2022 - Paolo Stivanin <i...@paolostivanin.com>
+
+- Update to 2.6.3:
+  * Fix ternary operator logic when setting the google_migration flag.
+
+-------------------------------------------------------------------

Old:
----
  v2.6.2.tar.gz
  v2.6.2.tar.gz.asc

New:
----
  v2.6.3.tar.gz
  v2.6.3.tar.gz.asc

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

Other differences:
------------------
++++++ otpclient.spec ++++++
--- /var/tmp/diff_new_pack.Acwdaf/_old  2022-07-21 11:33:56.182979867 +0200
+++ /var/tmp/diff_new_pack.Acwdaf/_new  2022-07-21 11:33:56.186979871 +0200
@@ -18,7 +18,7 @@
 
 %define uclname OTPClient
 Name:           otpclient
-Version:        2.6.2
+Version:        2.6.3
 Release:        0
 Summary:        Simple GTK+ client for managing TOTP and HOTP
 License:        GPL-3.0-or-later

++++++ v2.6.2.tar.gz -> v2.6.3.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/OTPClient-2.6.2/CMakeLists.txt 
new/OTPClient-2.6.3/CMakeLists.txt
--- old/OTPClient-2.6.2/CMakeLists.txt  2022-07-06 08:51:34.000000000 +0200
+++ new/OTPClient-2.6.3/CMakeLists.txt  2022-07-20 08:27:18.000000000 +0200
@@ -1,5 +1,5 @@
 cmake_minimum_required(VERSION 3.10)
-project(OTPClient VERSION "2.6.2" LANGUAGES "C")
+project(OTPClient VERSION "2.6.3" LANGUAGES "C")
 
 configure_file("src/common/version.h.in" "version.h")
 include_directories(${PROJECT_BINARY_DIR})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/OTPClient-2.6.2/data/com.github.paolostivanin.OTPClient.appdata.xml 
new/OTPClient-2.6.3/data/com.github.paolostivanin.OTPClient.appdata.xml
--- old/OTPClient-2.6.2/data/com.github.paolostivanin.OTPClient.appdata.xml     
2022-07-06 08:51:34.000000000 +0200
+++ new/OTPClient-2.6.3/data/com.github.paolostivanin.OTPClient.appdata.xml     
2022-07-20 08:27:18.000000000 +0200
@@ -83,6 +83,14 @@
   </content_rating>
 
   <releases>
+    <release version="2.6.3" date="2022-07-20">
+      <description>
+        <p>OTPClient 2.6.3 fixes an issue when setting the migration flag</p>
+        <ul>
+          <li>fix ternary operator logic that would incorrectly set the 
migration flag</li>
+        </ul>
+      </description>
+    </release>
     <release version="2.6.2" date="2022-07-06">
       <description>
         <p>OTPClient 2.6.2 add an upgrade message</p>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/OTPClient-2.6.2/src/add-from-qr.c 
new/OTPClient-2.6.3/src/add-from-qr.c
--- old/OTPClient-2.6.2/src/add-from-qr.c       2022-07-06 08:51:34.000000000 
+0200
+++ new/OTPClient-2.6.3/src/add-from-qr.c       2022-07-20 08:27:18.000000000 
+0200
@@ -40,8 +40,7 @@
                   gpointer       user_data)
 {
     const gchar *action_name = g_action_get_name (G_ACTION(simple));
-    gboolean google_migration;
-    (g_strcmp0 (action_name, GOOGLE_MIGRATION_FILE_ACTION_NAME) == 0) ? 
google_migration = TRUE : FALSE;
+    gboolean google_migration = (g_strcmp0 (action_name, 
GOOGLE_MIGRATION_FILE_ACTION_NAME) == 0) ? TRUE : FALSE;
 
     AppData *app_data = (AppData *)user_data;
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/OTPClient-2.6.2/src/webcam-add-cb.c 
new/OTPClient-2.6.3/src/webcam-add-cb.c
--- old/OTPClient-2.6.2/src/webcam-add-cb.c     2022-07-06 08:51:34.000000000 
+0200
+++ new/OTPClient-2.6.3/src/webcam-add-cb.c     2022-07-20 08:27:18.000000000 
+0200
@@ -30,8 +30,7 @@
            gpointer       user_data)
 {
     const gchar *action_name = g_action_get_name (G_ACTION(simple));
-    gboolean google_migration;
-    (g_strcmp0 (action_name, GOOGLE_MIGRATION_WEBCAM_ACTION_NAME) == 0) ? 
google_migration = TRUE : FALSE;
+    gboolean google_migration = (g_strcmp0 (action_name, 
GOOGLE_MIGRATION_WEBCAM_ACTION_NAME) == 0) ? TRUE : FALSE;
 
     AppData *app_data = (AppData *)user_data;
 

Reply via email to