Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package vit for openSUSE:Factory checked in 
at 2023-10-23 23:40:36
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/vit (Old)
 and      /work/SRC/openSUSE:Factory/.vit.new.1945 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "vit"

Mon Oct 23 23:40:36 2023 rev:10 rq:1119466 version:2.3.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/vit/vit.changes  2023-07-17 19:23:28.617803654 
+0200
+++ /work/SRC/openSUSE:Factory/.vit.new.1945/vit.changes        2023-10-23 
23:40:47.175139904 +0200
@@ -1,0 +2,8 @@
+Mon Oct 23 01:18:26 UTC 2023 - Mia Herkt <m...@0x0.st>
+
+- Update to 2.3.2
+  * fix(py3.12): SafeConfigParser -> ConfigParser
+  * fix: Clarify how to interact inside 'Denotate' window
+    gh#vit-project/vit#340
+
+-------------------------------------------------------------------

Old:
----
  vit-2.3.1.tar.gz

New:
----
  vit-2.3.2.tar.gz

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

Other differences:
------------------
++++++ vit.spec ++++++
--- /var/tmp/diff_new_pack.XeSr9m/_old  2023-10-23 23:40:47.755160960 +0200
+++ /var/tmp/diff_new_pack.XeSr9m/_new  2023-10-23 23:40:47.755160960 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           vit
-Version:        2.3.1
+Version:        2.3.2
 Release:        0
 Summary:        Visual Interactive Taskwarrior full-screen terminal interface
 License:        MIT

++++++ vit-2.3.1.tar.gz -> vit-2.3.2.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vit-2.3.1/PKG-INFO new/vit-2.3.2/PKG-INFO
--- old/vit-2.3.1/PKG-INFO      2023-06-25 02:59:42.065125200 +0200
+++ new/vit-2.3.2/PKG-INFO      2023-10-17 04:13:45.499879600 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: vit
-Version: 2.3.1
+Version: 2.3.2
 Summary: Visual Interactive Taskwarrior full-screen terminal interface
 Home-page: https://github.com/vit-project/vit
 Author: Chad Phillips
@@ -16,6 +16,9 @@
 Description-Content-Type: text/markdown
 License-File: LICENSE
 License-File: AUTHORS.md
+Requires-Dist: tasklib>=2.4.3
+Requires-Dist: urwid>=2.1.2
+Requires-Dist: backports.zoneinfo; python_version < "3.9"
 
 # VIT
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vit-2.3.1/vit/config_parser.py 
new/vit-2.3.2/vit/config_parser.py
--- old/vit-2.3.1/vit/config_parser.py  2023-04-14 06:10:49.000000000 +0200
+++ new/vit-2.3.2/vit/config_parser.py  2023-09-17 17:28:41.000000000 +0200
@@ -100,7 +100,7 @@
 class ConfigParser:
     def __init__(self, loader):
         self.loader = loader
-        self.config = configparser.SafeConfigParser()
+        self.config = configparser.ConfigParser()
         self.config.optionxform = str
         self.user_config_dir = self.loader.user_config_dir
         self.user_config_filepath = '%s/%s' % (self.user_config_dir, 
VIT_CONFIG_FILE)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vit-2.3.1/vit/denotation.py 
new/vit-2.3.2/vit/denotation.py
--- old/vit-2.3.1/vit/denotation.py     2020-12-24 04:52:45.000000000 +0100
+++ new/vit-2.3.2/vit/denotation.py     2023-07-07 03:25:46.000000000 +0200
@@ -10,6 +10,7 @@
     def __init__(self, body, **kwargs):
         self.listbox = body.original_widget
         return super().__init__(body, **kwargs)
+
     def keypress(self, size, key):
         """Overrides Frame.keypress method.
         """
@@ -124,7 +125,7 @@
             lambda button:self._emit("close"))
         frame = AnnotationFrame(
             urwid.Padding(self.listbox, left=1, right=1),
-            header=urwid.Text("Select the annotation, then select 
'Denotate'\n"),
+            header=urwid.Text("Select the annotation, then select 
'Denotate'\nTab to move focus between list/buttons\n"),
             footer=urwid.Columns([urwid.Padding(denotate_button, left=5, 
right=6), urwid.Padding(cancel_button, left=6, right=5)]),
         )
         padded_frame = urwid.Padding(frame, left=1, right=1)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vit-2.3.1/vit/keybinding_parser.py 
new/vit-2.3.2/vit/keybinding_parser.py
--- old/vit-2.3.1/vit/keybinding_parser.py      2023-04-14 06:10:49.000000000 
+0200
+++ new/vit-2.3.2/vit/keybinding_parser.py      2023-09-17 17:28:41.000000000 
+0200
@@ -31,7 +31,7 @@
         self.actions = self.action_registry.get_actions()
         self.noop_action_name = 
self.action_registry.make_action_name(self.action_registry.noop_action_name)
         self.default_keybinding_name = self.config.get('vit', 
'default_keybindings')
-        self.default_keybindings = configparser.SafeConfigParser()
+        self.default_keybindings = configparser.ConfigParser()
         self.default_keybindings.optionxform=str
         self.sections = DEFAULT_KEYBINDINGS_SECTIONS
         self.keybindings = {}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vit-2.3.1/vit/version.py new/vit-2.3.2/vit/version.py
--- old/vit-2.3.1/vit/version.py        2023-06-25 02:58:01.000000000 +0200
+++ new/vit-2.3.2/vit/version.py        2023-10-17 04:09:21.000000000 +0200
@@ -1 +1 @@
-VIT = '2.3.1'
+VIT = '2.3.2'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vit-2.3.1/vit.egg-info/PKG-INFO 
new/vit-2.3.2/vit.egg-info/PKG-INFO
--- old/vit-2.3.1/vit.egg-info/PKG-INFO 2023-06-25 02:59:42.000000000 +0200
+++ new/vit-2.3.2/vit.egg-info/PKG-INFO 2023-10-17 04:13:45.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: vit
-Version: 2.3.1
+Version: 2.3.2
 Summary: Visual Interactive Taskwarrior full-screen terminal interface
 Home-page: https://github.com/vit-project/vit
 Author: Chad Phillips
@@ -16,6 +16,9 @@
 Description-Content-Type: text/markdown
 License-File: LICENSE
 License-File: AUTHORS.md
+Requires-Dist: tasklib>=2.4.3
+Requires-Dist: urwid>=2.1.2
+Requires-Dist: backports.zoneinfo; python_version < "3.9"
 
 # VIT
 

Reply via email to