Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package rofi-calc for openSUSE:Factory 
checked in at 2025-06-27 23:01:11
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rofi-calc (Old)
 and      /work/SRC/openSUSE:Factory/.rofi-calc.new.7067 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rofi-calc"

Fri Jun 27 23:01:11 2025 rev:19 rq:1288724 version:2.3.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/rofi-calc/rofi-calc.changes      2025-06-13 
18:46:41.753887884 +0200
+++ /work/SRC/openSUSE:Factory/.rofi-calc.new.7067/rofi-calc.changes    
2025-06-27 23:02:35.176423456 +0200
@@ -1,0 +2,6 @@
+Thu Jun 26 16:00:49 UTC 2025 - Michael Vetter <mvet...@suse.com>
+
+- Update to 2.3.3:
+  * Fix quick switch not working #139
+
+-------------------------------------------------------------------

Old:
----
  v2.3.2.tar.gz

New:
----
  v2.3.3.tar.gz

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

Other differences:
------------------
++++++ rofi-calc.spec ++++++
--- /var/tmp/diff_new_pack.Hc3aHX/_old  2025-06-27 23:02:35.948455274 +0200
+++ /var/tmp/diff_new_pack.Hc3aHX/_new  2025-06-27 23:02:35.948455274 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           rofi-calc
-Version:        2.3.2
+Version:        2.3.3
 Release:        0
 Summary:        Calculator for rofi
 License:        MIT

++++++ v2.3.2.tar.gz -> v2.3.3.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rofi-calc-2.3.2/CHANGELOG.md 
new/rofi-calc-2.3.3/CHANGELOG.md
--- old/rofi-calc-2.3.2/CHANGELOG.md    2025-06-12 16:29:48.000000000 +0200
+++ new/rofi-calc-2.3.3/CHANGELOG.md    2025-06-26 09:02:02.000000000 +0200
@@ -5,6 +5,9 @@
 The format is based on [Keep a Changelog](http://keepachangelog.com/)
 and this project adheres to [Semantic Versioning](http://semver.org/).
 
+## [2.3.3] - 2025-06-26
+- Fix quick switch not working 
[#139](https://github.com/svenstaro/rofi-calc/pull/139) (thanks @zspher)
+
 ## [2.3.2] - 2025-06-12
 - Switched from autotools to meson 
[#136](https://github.com/svenstaro/rofi-calc/pull/136) (thanks @zspher)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rofi-calc-2.3.2/src/calc.c 
new/rofi-calc-2.3.3/src/calc.c
--- old/rofi-calc-2.3.2/src/calc.c      2025-06-12 16:29:48.000000000 +0200
+++ new/rofi-calc-2.3.3/src/calc.c      2025-06-26 09:02:02.000000000 +0200
@@ -438,11 +438,7 @@
                                  unsigned int selected_line) {
     ModeMode retv = MODE_EXIT;
     CALCModePrivateData *pd = (CALCModePrivateData *)mode_get_private_data(sw);
-    if (menu_entry & MENU_NEXT) {
-        retv = NEXT_DIALOG;
-    } else if (menu_entry & MENU_PREVIOUS) {
-        retv = PREVIOUS_DIALOG;
-    } else if (menu_entry & MENU_QUICK_SWITCH) {
+    if (menu_entry & MENU_CUSTOM_COMMAND) {
         retv = (menu_entry & MENU_LOWER_MASK);
     } else if ((menu_entry & MENU_OK) &&
                (selected_line == 0 && find_arg(NO_HISTORY_OPTION) == -1)) {
@@ -493,11 +489,9 @@
     g_debug("ding: %x", menu_entry);
     g_debug("MENU_OK: %x", menu_entry & MENU_OK);
     g_debug("MENU_CANCEL: %x", menu_entry & MENU_CANCEL);
-    g_debug("MENU_NEXT: %x", menu_entry & MENU_NEXT);
     g_debug("MENU_CUSTOM_INPUT: %x", menu_entry & MENU_CUSTOM_INPUT);
     g_debug("MENU_ENTRY_DELETE: %x", menu_entry & MENU_ENTRY_DELETE);
-    g_debug("MENU_QUICK_SWITCH: %x", menu_entry & MENU_QUICK_SWITCH);
-    g_debug("MENU_PREVIOUS: %x", menu_entry & MENU_PREVIOUS);
+    g_debug("MENU_CUSTOM_COMMAND: %x", menu_entry & MENU_CUSTOM_COMMAND);
     g_debug("MENU_CUSTOM_ACTION: %x", menu_entry & MENU_CUSTOM_ACTION);
     g_debug("MENU_LOWER_MASK: %x", menu_entry & MENU_LOWER_MASK);
     return retv;

Reply via email to