Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package unrar for openSUSE:Factory:NonFree checked in at 2021-04-14 10:08:39 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory:NonFree/unrar (Old) and /work/SRC/openSUSE:Factory:NonFree/.unrar.new.2401 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "unrar" Wed Apr 14 10:08:39 2021 rev:95 rq:884890 version:6.0.5 Changes: -------- --- /work/SRC/openSUSE:Factory:NonFree/unrar/unrar.changes 2021-03-10 08:44:15.498084118 +0100 +++ /work/SRC/openSUSE:Factory:NonFree/.unrar.new.2401/unrar.changes 2021-04-14 10:08:40.293259907 +0200 @@ -1,0 +2,6 @@ +Tue Apr 13 08:59:34 UTC 2021 - Ismail D??nmez <idon...@suse.com> + +- Update to version 6.0.5 + * Based on WinRAR 6.0.1 + +------------------------------------------------------------------- Old: ---- unrarsrc-6.0.4.tar.gz New: ---- unrarsrc-6.0.5.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ unrar.spec ++++++ --- /var/tmp/diff_new_pack.uHNTwj/_old 2021-04-14 10:08:40.793260750 +0200 +++ /var/tmp/diff_new_pack.uHNTwj/_new 2021-04-14 10:08:40.797260758 +0200 @@ -18,10 +18,10 @@ # majorversion should match the major version number. %define majorversion 6 -%define libsuffix 6_0_4 +%define libsuffix 6_0_5 Name: unrar -Version: 6.0.4 +Version: 6.0.5 Release: 0 Summary: A program to extract, test, and view RAR archives License: NonFree ++++++ unrarsrc-6.0.4.tar.gz -> unrarsrc-6.0.5.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/unrar/dll.rc new/unrar/dll.rc --- old/unrar/dll.rc 2021-03-03 15:56:31.000000000 +0100 +++ new/unrar/dll.rc 2021-04-07 16:08:55.000000000 +0200 @@ -2,8 +2,8 @@ #include <commctrl.h> VS_VERSION_INFO VERSIONINFO -FILEVERSION 6, 1, 1, 3721 -PRODUCTVERSION 6, 1, 1, 3721 +FILEVERSION 6, 1, 100, 3756 +PRODUCTVERSION 6, 1, 100, 3756 FILEOS VOS__WINDOWS32 FILETYPE VFT_APP { @@ -14,8 +14,8 @@ VALUE "CompanyName", "Alexander Roshal\0" VALUE "ProductName", "RAR decompression library\0" VALUE "FileDescription", "RAR decompression library\0" - VALUE "FileVersion", "6.1.1\0" - VALUE "ProductVersion", "6.1.1\0" + VALUE "FileVersion", "6.1.0\0" + VALUE "ProductVersion", "6.1.0\0" VALUE "LegalCopyright", "Copyright ? Alexander Roshal 1993-2021\0" VALUE "OriginalFilename", "Unrar.dll\0" } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/unrar/uiconsole.cpp new/unrar/uiconsole.cpp --- old/unrar/uiconsole.cpp 2021-03-05 10:34:05.000000000 +0100 +++ new/unrar/uiconsole.cpp 2021-04-07 16:41:27.000000000 +0200 @@ -85,7 +85,18 @@ void uiMsgStore::Msg() { - AnyMessageDisplayed=true; + // When creating volumes, AnyMessageDisplayed must be reset for UIEVENT_NEWARCHIVE, + // so it ignores this and all earlier messages like UIEVENT_PROTECTEND + // and UIEVENT_PROTECTEND, because they precede "Creating archive" message + // and do not interfere with -idn and file names. If we do not ignore them, + // uiEolAfterMsg() in uiStartFileAddit() can cause unneeded carriage return + // in archiving percent after creating a new volume with -v -idn (and -rr + // for UIEVENT_PROTECT*) switches. AnyMessageDisplayed is set for messages + // after UIEVENT_NEWARCHIVE, so archiving percent with -idn is moved to + // next line and does not delete their last characters. + // Similarly we ignore UIEVENT_RRTESTINGEND for volumes, because it is issued + // before "Testing archive" and would add an excessive \n otherwise. + AnyMessageDisplayed=(Code!=UIEVENT_NEWARCHIVE && Code!=UIEVENT_RRTESTINGEND); switch(Code) { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/unrar/version.hpp new/unrar/version.hpp --- old/unrar/version.hpp 2021-03-05 10:34:06.000000000 +0100 +++ new/unrar/version.hpp 2021-04-07 16:41:27.000000000 +0200 @@ -1,6 +1,6 @@ #define RARVER_MAJOR 6 #define RARVER_MINOR 1 -#define RARVER_BETA 1 -#define RARVER_DAY 3 -#define RARVER_MONTH 3 +#define RARVER_BETA 0 +#define RARVER_DAY 7 +#define RARVER_MONTH 4 #define RARVER_YEAR 2021 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/unrar/volume.cpp new/unrar/volume.cpp --- old/unrar/volume.cpp 2021-03-05 10:34:06.000000000 +0100 +++ new/unrar/volume.cpp 2021-04-07 16:41:27.000000000 +0200 @@ -136,7 +136,7 @@ Arc.ConvertAttributes(); Arc.Seek(Arc.NextBlockPos-Arc.FileHead.PackSize,SEEK_SET); } - if (ShowFileName) + if (ShowFileName && !Cmd->DisableNames) { mprintf(St(MExtrPoints),Arc.FileHead.FileName); if (!Cmd->DisablePercentage)