Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package vim-plugins for openSUSE:Factory 
checked in at 2022-09-16 13:32:25
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/vim-plugins (Old)
 and      /work/SRC/openSUSE:Factory/.vim-plugins.new.2083 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "vim-plugins"

Fri Sep 16 13:32:25 2022 rev:43 rq:1003987 version:unknown

Changes:
--------
--- /work/SRC/openSUSE:Factory/vim-plugins/vim-plugins.changes  2022-08-16 
17:07:25.051819576 +0200
+++ /work/SRC/openSUSE:Factory/.vim-plugins.new.2083/vim-plugins.changes        
2022-09-16 13:32:48.945360767 +0200
@@ -1,0 +2,7 @@
+Thu Sep 15 14:27:41 UTC 2022 - Ond??ej S??kup <mimi...@gmail.com>
+
+- update
+  * tlib           1.28
+- fixes boo#1203460
+
+-------------------------------------------------------------------

Old:
----
  vimplugin-tlib-1.27.tar.gz

New:
----
  vimplugin-tlib-1.28.tar.gz

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

Other differences:
------------------
++++++ vim-plugins.spec ++++++
--- /var/tmp/diff_new_pack.Tv6DJ8/_old  2022-09-16 13:32:49.705363222 +0200
+++ /var/tmp/diff_new_pack.Tv6DJ8/_new  2022-09-16 13:32:49.709363235 +0200
@@ -49,7 +49,7 @@
 %define snipmate_version       0.83
 %define supertab_version       2.1
 %define taglist_version                4.6
-%define tlib_version           1.27
+%define tlib_version           1.28
 %define tregisters_version     0.2
 %define tselectbuffer_version  0.7
 %define tselectfiles_version   0.11


++++++ vimplugin-tlib-1.27.tar.gz -> vimplugin-tlib-1.28.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tlib_vim-1.27/CHANGES.TXT 
new/tlib_vim-1.28/CHANGES.TXT
--- old/tlib_vim-1.27/CHANGES.TXT       2019-04-27 13:23:47.000000000 +0200
+++ new/tlib_vim-1.28/CHANGES.TXT       2022-07-21 16:24:23.000000000 +0200
@@ -895,3 +895,15 @@
   MD5 checksum: c4d6e018cbbd3b286a9b1648b748c1f3
 version: "1.23"
 
+  - bump version 1.23 + misc changes
+  - FIX #24: avoid vim8 features
+  - tlib#win#GetID(): Alternative implementation sets a window variable to 
identify the window
+  - tlib#arg#GetOpts(): If args is a dict, return it
+  - tlib#file#FilterFiles(): FIX typo
+  - tlib#trace#Set: Experimental support for log levels
+  - tlib#input#ListW: make sure to close scratch when <= 1 items are in the 
list
+  - FIX #25: set win_nr again; fix some lint warnings
+  - tlib#progressbar#Init(): returns a statusline definition that can be used 
for restor
+  MD5 checksum: c4d6e018cbbd3b286a9b1648b748c1f3
+version: "1.23"
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tlib_vim-1.27/autoload/tlib/number.vim 
new/tlib_vim-1.28/autoload/tlib/number.vim
--- old/tlib_vim-1.27/autoload/tlib/number.vim  2019-04-27 13:23:47.000000000 
+0200
+++ new/tlib_vim-1.28/autoload/tlib/number.vim  2022-07-21 16:24:23.000000000 
+0200
@@ -1,17 +1,24 @@
 " @Author:      Tom Link (mailto:micathom AT gmail com?subject=[vim])
 " @License:     GPL (see http://www.gnu.org/licenses/gpl.txt)
-" @Revision:    18
+" @Revision:    26
 
 
 function! tlib#number#ConvertBase(num, base, ...) "{{{3
     let rtype = a:0 >= 1 ? a:1 : 'string'
-    if a:base > 36
-        throw 'tlib#number#ConvertBase: base > 36 is not supported'
-    endif
     " TLogVAR a:num, a:base, rtype
+    if a:base == 32
+        let chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZ234567"
+    elseif a:base == 63 || a:base == 64
+        let chars = 
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"
+    elseif a:base == 85
+        let chars = 
"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz!#$%&()*+-;<=>?@^_`{|}~"
+    elseif a:base <= 62
+        let chars = 
"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
+    else
+        throw 'tlib#number#ConvertBase: base is not supported'
+    endif
     let rv = []
     let num = 0.0 + a:num
-    let chars = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
     while floor(num) > 0.0
         let div = floor(num / a:base)
         let num1 = float2nr(num - a:base * div)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tlib_vim-1.27/autoload/tlib/win.vim 
new/tlib_vim-1.28/autoload/tlib/win.vim
--- old/tlib_vim-1.27/autoload/tlib/win.vim     2019-04-27 13:23:47.000000000 
+0200
+++ new/tlib_vim-1.28/autoload/tlib/win.vim     2022-07-21 16:24:23.000000000 
+0200
@@ -73,7 +73,11 @@
 " Return vim code to jump back to the original window.
 function! tlib#win#SetById(win_id) "{{{3
     if a:win_id != g:tlib#win#null_id
-        let win_id = tlib#win#GetID()
+        if g:tlib#win#use_winid
+            let win_id = tlib#win#GetID()
+        else
+            let win_id = tlib#win#GetID().win_id
+        endif
         call tlib#win#GotoID(a:win_id)
         return printf('call tlib#win#GotoID(%s)', win_id)
         " " TLogVAR a:winnr
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tlib_vim-1.27/plugin/02tlib.vim 
new/tlib_vim-1.28/plugin/02tlib.vim
--- old/tlib_vim-1.27/plugin/02tlib.vim 2019-04-27 13:23:47.000000000 +0200
+++ new/tlib_vim-1.28/plugin/02tlib.vim 2022-07-21 16:24:23.000000000 +0200
@@ -74,7 +74,7 @@
 "
 " EXAMPLES: >
 "   TBrowseScriptnames 
-command! -nargs=0 -complete=command TBrowseScriptnames call 
tlib#cmd#TBrowseScriptnames()
+command! -nargs=0 TBrowseScriptnames call tlib#cmd#TBrowseScriptnames()
 
 
 " :display: :Texecqfl CMD

Reply via email to