Hello community,

here is the log from the commit of package libyui for openSUSE:Factory checked 
in at 2015-07-16 17:14:47
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libyui (Old)
 and      /work/SRC/openSUSE:Factory/.libyui.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libyui"

Changes:
--------
--- /work/SRC/openSUSE:Factory/libyui/libyui.changes    2015-01-21 
21:52:06.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.libyui.new/libyui.changes       2015-07-16 
17:14:48.000000000 +0200
@@ -1,0 +2,6 @@
+Wed Jul  8 11:58:56 UTC 2015 - mvid...@suse.com
+
+- Added YApplication::openUI/closeUI (boo#937026)
+- 3.2.0
+
+-------------------------------------------------------------------

Old:
----
  libyui-3.1.5.tar.bz2

New:
----
  libyui-3.2.0.tar.bz2

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

Other differences:
------------------
++++++ libyui-doc.spec ++++++
--- /var/tmp/diff_new_pack.Uu3Lp7/_old  2015-07-16 17:14:49.000000000 +0200
+++ /var/tmp/diff_new_pack.Uu3Lp7/_new  2015-07-16 17:14:49.000000000 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           libyui-doc
-Version:        3.1.5
+Version:        3.2.0
 Release:        0
 Source:         libyui-%{version}.tar.bz2
 

++++++ libyui.spec ++++++
--- /var/tmp/diff_new_pack.Uu3Lp7/_old  2015-07-16 17:14:49.000000000 +0200
+++ /var/tmp/diff_new_pack.Uu3Lp7/_new  2015-07-16 17:14:49.000000000 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           libyui
-Version:        3.1.5
+Version:        3.2.0
 Release:        0
 Source:         libyui-%{version}.tar.bz2
 

++++++ libyui-3.1.5.tar.bz2 -> libyui-3.2.0.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-3.1.5/ChangeLog new/libyui-3.2.0/ChangeLog
--- old/libyui-3.1.5/ChangeLog  2015-01-20 15:11:09.000000000 +0100
+++ new/libyui-3.2.0/ChangeLog  2015-07-08 15:11:36.000000000 +0200
@@ -1,4 +1,10 @@
 -------------------------------------------------------------------
+Wed Jul  8 11:58:56 UTC 2015 - mvid...@suse.com
+
+- Added YApplication::openUI/closeUI (boo#937026)
+- 3.2.0
+
+-------------------------------------------------------------------
 Tue Jan 20 13:44:13 UTC 2015 - mvid...@suse.com
 
 - Fix cmake also in the spec file, duh.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-3.1.5/Rakefile new/libyui-3.2.0/Rakefile
--- old/libyui-3.1.5/Rakefile   2015-01-13 10:26:09.000000000 +0100
+++ new/libyui-3.2.0/Rakefile   2015-07-09 17:51:36.000000000 +0200
@@ -16,8 +16,8 @@
   if ENV["LIBYUI_SUBMIT"] == "SLES"
     conf.obs_api        = "https://api.suse.de/";
     conf.obs_project    = "Devel:YaST:Head"
-    conf.obs_target     = "SLE-12"
-    conf.obs_sr_project = "SUSE:SLE-12:GA"
+    conf.obs_target     = "SLE-12-SP1"
+    conf.obs_sr_project = "SUSE:SLE-12-SP1:GA"
   else
     conf.obs_project    = "devel:libraries:libyui"
     conf.obs_sr_project = "openSUSE:Factory"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-3.1.5/VERSION.cmake 
new/libyui-3.2.0/VERSION.cmake
--- old/libyui-3.1.5/VERSION.cmake      2015-01-13 10:26:09.000000000 +0100
+++ new/libyui-3.2.0/VERSION.cmake      2015-07-08 15:11:36.000000000 +0200
@@ -1,6 +1,6 @@
 SET( VERSION_MAJOR "3")
-SET( VERSION_MINOR "1" )
-SET( VERSION_PATCH "5" )
+SET( VERSION_MINOR "2" )
+SET( VERSION_PATCH "0" )
 SET( VERSION 
"${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}${GIT_SHA1_VERSION}" )
 
 ##### This is need for the libyui core, ONLY.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-3.1.5/src/YApplication.h 
new/libyui-3.2.0/src/YApplication.h
--- old/libyui-3.1.5/src/YApplication.h 2014-04-18 13:07:40.000000000 +0200
+++ new/libyui-3.2.0/src/YApplication.h 2015-07-08 15:11:36.000000000 +0200
@@ -369,6 +369,17 @@
     virtual int runInTerminal( const std::string & command );
 
 
+    /// @{
+    /**
+     * To mix TUI (NCurses) with stdio, enclose the UI parts
+     * within openUI/closeUI
+     *
+     * This default implementation does nothing.
+     */
+    virtual void openUI() {}
+    virtual void closeUI() {}
+    /// @}
+
     //
     // Display information.
     //
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-3.1.5/src/YUISymbols.h 
new/libyui-3.2.0/src/YUISymbols.h
--- old/libyui-3.1.5/src/YUISymbols.h   2014-04-10 11:27:37.000000000 +0200
+++ new/libyui-3.2.0/src/YUISymbols.h   2015-07-08 15:11:36.000000000 +0200
@@ -36,6 +36,7 @@
 #define YUIBuiltin_OpenContextMenu             "OpenContextMenu"
 #define YUIBuiltin_ChangeWidget                        "ChangeWidget"
 #define YUIBuiltin_CloseDialog                 "CloseDialog"
+#define YUIBuiltin_CloseUI                     "CloseUI"
 #define YUIBuiltin_DumpWidgetTree              "DumpWidgetTree"
 #define YUIBuiltin_GetDisplayInfo              "GetDisplayInfo"
 #define YUIBuiltin_GetLanguage                 "GetLanguage"
@@ -45,6 +46,7 @@
 #define YUIBuiltin_MakeScreenShot              "MakeScreenShot"
 #define YUIBuiltin_NormalCursor                        "NormalCursor"
 #define YUIBuiltin_OpenDialog                  "OpenDialog"
+#define YUIBuiltin_OpenUI                      "OpenUI"
 #define YUIBuiltin_PollInput                   "PollInput"
 #define YUIBuiltin_QueryWidget                 "QueryWidget"
 #define YUIBuiltin_RecalcLayout                        "RecalcLayout"


Reply via email to