Hello community,

here is the log from the commit of package rocs for openSUSE:Factory checked in 
at 2013-06-11 06:08:27
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rocs (Old)
 and      /work/SRC/openSUSE:Factory/.rocs.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rocs"

Changes:
--------
--- /work/SRC/openSUSE:Factory/rocs/rocs.changes        2013-05-16 
18:14:56.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.rocs.new/rocs.changes   2013-06-11 
09:37:17.000000000 +0200
@@ -1,0 +2,8 @@
+Sat Jun  1 09:45:59 UTC 2013 - [email protected]
+
+- Update to 4.10.4
+   * Bugfix release
+   * See http://www.kde.org/announcements/announce-4.10.4.php
+   * resolves bnc#8122760
+
+-------------------------------------------------------------------

Old:
----
  rocs-4.10.3.tar.xz

New:
----
  rocs-4.10.4.tar.xz

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

Other differences:
------------------
++++++ rocs.spec ++++++
--- /var/tmp/diff_new_pack.y3cAWL/_old  2013-06-11 09:37:18.000000000 +0200
+++ /var/tmp/diff_new_pack.y3cAWL/_new  2013-06-11 09:37:18.000000000 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           rocs
-Version:        4.10.3
+Version:        4.10.4
 Release:        0
 Summary:        Graph Theory IDE
 License:        GPL-3.0+

++++++ rocs-4.10.3.tar.xz -> rocs-4.10.4.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rocs-4.10.3/App/CMakeLists.txt 
new/rocs-4.10.4/App/CMakeLists.txt
--- old/rocs-4.10.3/App/CMakeLists.txt  2013-05-03 06:38:39.000000000 +0200
+++ new/rocs-4.10.4/App/CMakeLists.txt  2013-05-28 21:17:28.000000000 +0200
@@ -22,7 +22,7 @@
 
 set(ROCS_VERSION_MAJOR 1)
 set(ROCS_VERSION_MINOR 8)
-set(ROCS_VERSION_PATCH 0)
+set(ROCS_VERSION_PATCH 1)
 
 configure_file( "${rocs_SOURCE_DIR}/rocsversion.h.cmake" 
"${rocs_BINARY_DIR}/rocsversion.h" @ONLY )
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/rocs-4.10.3/App/Interface/ConfigureDefaultProperties.cpp 
new/rocs-4.10.4/App/Interface/ConfigureDefaultProperties.cpp
--- old/rocs-4.10.3/App/Interface/ConfigureDefaultProperties.cpp        
2013-05-03 06:38:39.000000000 +0200
+++ new/rocs-4.10.4/App/Interface/ConfigureDefaultProperties.cpp        
2013-05-28 21:17:28.000000000 +0200
@@ -30,10 +30,10 @@
     ui->setupUi(this);
 
     readConfig();
-    ui->nodeInformationComboBox->setCurrentIndex(_displayPositionNode);
-    ui->edgeInformationComboBox->setCurrentIndex(_displayPositionEdge);
-    ui->showDebugExecutionCheckBox->setChecked(_excutionModeDebugVisible);
-    ui->showOneStepExecutionCheckBox->setChecked(_excutionModeOneStepVisible);
+    ui->kcfg_dataNodeDisplay->setCurrentIndex(_displayPositionNode);
+    ui->kcfg_dataEdgeDisplay->setCurrentIndex(_displayPositionEdge);
+    ui->kcfg_executionModeDebugVisible->setChecked(_executionModeDebugVisible);
+    
ui->kcfg_executionModeOneStepVisible->setChecked(_executionModeOneStepVisible);
 }
 
 
@@ -47,8 +47,8 @@
 {
     _displayPositionNode = Settings::dataNodeDisplay();
     _displayPositionEdge = Settings::dataEdgeDisplay();
-    _excutionModeDebugVisible = Settings::excutionModeDebugVisible();
-    _excutionModeOneStepVisible = Settings::excutionModeOneStepVisible();
+    _executionModeDebugVisible = Settings::executionModeDebugVisible();
+    _executionModeOneStepVisible = Settings::executionModeOneStepVisible();
 }
 
 
@@ -56,14 +56,14 @@
 {
     Settings::setDataNodeDisplay(_displayPositionNode);
     Settings::setDataEdgeDisplay(_displayPositionEdge);
-    Settings::setExcutionModeDebugVisible(_excutionModeDebugVisible);
-    Settings::setExcutionModeOneStepVisible(_excutionModeOneStepVisible);
+    Settings::setExecutionModeDebugVisible(_executionModeDebugVisible);
+    Settings::setExecutionModeOneStepVisible(_executionModeOneStepVisible);
 
     GraphicsLayout::self()->setViewStyleDataNode(_displayPositionNode);
     GraphicsLayout::self()->setViewStyleDataEdge(_displayPositionEdge);
 
-    emit showExecuteModeDebugChanged(_excutionModeDebugVisible);
-    emit showExecuteModeOneStepChanged(_excutionModeOneStepVisible);
+    emit showExecuteModeDebugChanged(_executionModeDebugVisible);
+    emit showExecuteModeOneStepChanged(_executionModeOneStepVisible);
 }
 
 
@@ -89,13 +89,13 @@
 
 void ConfigureDefaultProperties::setExecutionModeDebugVisible(bool visible)
 {
-    _excutionModeDebugVisible = visible;
+    _executionModeDebugVisible = visible;
     emit changed(true);
 }
 
 
 void ConfigureDefaultProperties::setExecutionModeOneStepVisible(bool visible)
 {
-    _excutionModeOneStepVisible = visible;
+    _executionModeOneStepVisible = visible;
     emit changed(true);
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/rocs-4.10.3/App/Interface/ConfigureDefaultProperties.h 
new/rocs-4.10.4/App/Interface/ConfigureDefaultProperties.h
--- old/rocs-4.10.3/App/Interface/ConfigureDefaultProperties.h  2013-05-03 
06:38:39.000000000 +0200
+++ new/rocs-4.10.4/App/Interface/ConfigureDefaultProperties.h  2013-05-28 
21:17:28.000000000 +0200
@@ -53,8 +53,8 @@
     Ui::ConfigureDefaultProperties *ui;
     int _displayPositionNode;
     int _displayPositionEdge;
-    bool _excutionModeDebugVisible;
-    bool _excutionModeOneStepVisible;
+    bool _executionModeDebugVisible;
+    bool _executionModeOneStepVisible;
 
 signals:
     /**
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/rocs-4.10.3/App/Interface/ConfigureDefaultProperties.ui 
new/rocs-4.10.4/App/Interface/ConfigureDefaultProperties.ui
--- old/rocs-4.10.3/App/Interface/ConfigureDefaultProperties.ui 2013-05-03 
06:38:39.000000000 +0200
+++ new/rocs-4.10.4/App/Interface/ConfigureDefaultProperties.ui 2013-05-28 
21:17:28.000000000 +0200
@@ -28,7 +28,7 @@
        </widget>
       </item>
       <item row="0" column="1">
-       <widget class="KComboBox" name="nodeInformationComboBox">
+       <widget class="KComboBox" name="kcfg_dataNodeDisplay">
         <item>
          <property name="text">
           <string>centered</string>
@@ -54,7 +54,7 @@
        </widget>
       </item>
       <item row="1" column="1">
-       <widget class="KComboBox" name="edgeInformationComboBox">
+       <widget class="KComboBox" name="kcfg_dataEdgeDisplay">
         <item>
          <property name="text">
           <string>centered</string>
@@ -92,7 +92,7 @@
        </widget>
       </item>
       <item row="0" column="1">
-       <widget class="QCheckBox" name="showDebugExecutionCheckBox"/>
+       <widget class="QCheckBox" name="kcfg_executionModeDebugVisible"/>
       </item>
       <item row="1" column="0">
        <widget class="QLabel" name="showOneStepExecutionLabel">
@@ -102,7 +102,7 @@
        </widget>
       </item>
       <item row="1" column="1">
-       <widget class="QCheckBox" name="showOneStepExecutionCheckBox"/>
+       <widget class="QCheckBox" name="kcfg_executionModeOneStepVisible"/>
       </item>
      </layout>
     </widget>
@@ -119,7 +119,7 @@
  <resources/>
  <connections>
   <connection>
-   <sender>nodeInformationComboBox</sender>
+   <sender>kcfg_dataNodeDisplay</sender>
    <signal>currentIndexChanged(int)</signal>
    <receiver>ConfigureDefaultProperties</receiver>
    <slot>setDisplayPositionNode(int)</slot>
@@ -135,7 +135,7 @@
    </hints>
   </connection>
   <connection>
-   <sender>edgeInformationComboBox</sender>
+   <sender>kcfg_dataEdgeDisplay</sender>
    <signal>currentIndexChanged(int)</signal>
    <receiver>ConfigureDefaultProperties</receiver>
    <slot>setDisplayPositionEdge(int)</slot>
@@ -151,7 +151,7 @@
    </hints>
   </connection>
   <connection>
-   <sender>showDebugExecutionCheckBox</sender>
+   <sender>kcfg_executionModeDebugVisible</sender>
    <signal>toggled(bool)</signal>
    <receiver>ConfigureDefaultProperties</receiver>
    <slot>setExecutionModeDebugVisible(bool)</slot>
@@ -167,7 +167,7 @@
    </hints>
   </connection>
   <connection>
-   <sender>showOneStepExecutionCheckBox</sender>
+   <sender>kcfg_executionModeOneStepVisible</sender>
    <signal>toggled(bool)</signal>
    <receiver>ConfigureDefaultProperties</receiver>
    <slot>setExecutionModeOneStepVisible(bool)</slot>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rocs-4.10.3/App/Interface/MainWindow.cpp 
new/rocs-4.10.4/App/Interface/MainWindow.cpp
--- old/rocs-4.10.3/App/Interface/MainWindow.cpp        2013-05-03 
06:38:39.000000000 +0200
+++ new/rocs-4.10.4/App/Interface/MainWindow.cpp        2013-05-28 
21:17:28.000000000 +0200
@@ -307,8 +307,8 @@
     actionCollection()->addAction("_interruptScript", _interruptScript);
 
     // set toolbar visibility defaults
-    showExecutionButtonDebug(Settings::excutionModeDebugVisible());
-    showExecutionButtonOneStep(Settings::excutionModeOneStepVisible());
+    showExecutionButtonDebug(Settings::executionModeDebugVisible());
+    showExecutionButtonOneStep(Settings::executionModeOneStepVisible());
 
     connect(_runScript, SIGNAL(triggered()), this, SLOT(executeScriptFull()));
     connect(_stepRunScript, SIGNAL(triggered()), this, 
SLOT(executeScriptOneStep()));
@@ -412,10 +412,9 @@
     connect(action, SIGNAL(triggered(bool)), parent, slot);
 }
 
-
 void MainWindow::showSettings()
 {
-    QPointer<KConfigDialog> dialog = new KConfigDialog(this,  "settings", 
Settings::self());
+    QPointer<KConfigDialog> dialog = new KConfigDialog(this, "settings", 
Settings::self());
 
     IncludeManagerSettings * set = new IncludeManagerSettings(dialog);
     ConfigureDefaultProperties * defaultProperties = new 
ConfigureDefaultProperties(dialog);
@@ -423,17 +422,11 @@
     dialog->addPage(set, i18nc("@title:tab", "Include Manager"), QString(), 
i18nc("@title:tab", "Include Manager"), true);
     dialog->addPage(defaultProperties, i18nc("@title:tab", "Default 
Settings"), QString(), i18nc("@title:tab", "Default Settings"), true);
 
-
+    // TODO port include manager to kcfg_ elements and remove signals
+    // since then everything is handled by KConfigDialog
     connect(set,               SIGNAL(changed(bool)), dialog, 
SLOT(enableButtonApply(bool)));
-    connect(defaultProperties, SIGNAL(changed(bool)), dialog, 
SLOT(enableButtonApply(bool)));
-
     connect(dialog, SIGNAL(applyClicked()),   set, SLOT(saveSettings()));
     connect(dialog, SIGNAL(okClicked()),      set, SLOT(saveSettings()));
-    connect(dialog, SIGNAL(defaultClicked()), set, SLOT(readConfig()));
-
-    connect(dialog, SIGNAL(applyClicked()),   defaultProperties, 
SLOT(saveConfig()));
-    connect(dialog, SIGNAL(okClicked()),      defaultProperties, 
SLOT(saveConfig()));
-    connect(dialog, SIGNAL(defaultClicked()), defaultProperties, 
SLOT(readConfig()));
 
     connect(defaultProperties, SIGNAL(showExecuteModeDebugChanged(bool)),
             this, SLOT(showExecutionButtonDebug(bool)));
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rocs-4.10.3/App/rocs.kcfg 
new/rocs-4.10.4/App/rocs.kcfg
--- old/rocs-4.10.3/App/rocs.kcfg       2013-05-03 06:38:39.000000000 +0200
+++ new/rocs-4.10.4/App/rocs.kcfg       2013-05-28 21:17:28.000000000 +0200
@@ -52,17 +52,21 @@
     <group name="DefaultElementDisplay">
         <entry name="dataNodeDisplay" type="Enum">
             <label>Position where name and value of a node shall be 
shown.</label>
+            <default> 0 </default>
         </entry>
         <entry name="dataEdgeDisplay" type="Enum">
             <label>Position where name and value of an edge shall be 
shown.</label>
+            <default> 0 </default>
         </entry>
     </group>
     <group name="DefaultExecutionModeDisplay">
-        <entry name="excutionModeDebugVisible" type="Bool">
+        <entry name="executionModeDebugVisible" type="Bool">
             <label>Specifies whether execution button for debug execution 
shall be shown.</label>
+            <default> true </default>
         </entry>
-        <entry name="excutionModeOneStepVisible" type="Bool">
+        <entry name="executionModeOneStepVisible" type="Bool">
             <label>Specifies whether execution button for stepped execution 
shall be shown.</label>
+            <default> true </default>
         </entry>
     </group>
 </kcfg>
Files old/rocs-4.10.3/doc/index.cache.bz2 and 
new/rocs-4.10.4/doc/index.cache.bz2 differ

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to