Hello community, here is the log from the commit of package kmplot for openSUSE:Factory checked in at Thu Oct 6 16:41:27 CEST 2011.
-------- --- openSUSE:Factory/kmplot/kmplot.changes 2011-09-23 02:06:55.000000000 +0200 +++ /mounts/work_src_done/STABLE/kmplot/kmplot.changes 2011-10-02 16:51:27.000000000 +0200 @@ -1,0 +2,6 @@ +Sun Oct 2 16:50:38 CEST 2011 - [email protected] + +- update to 4.7.2 + * see http://kde.org/announcements/changelogs/changelog4_7_1to4_7_2.php for details + +------------------------------------------------------------------- calling whatdependson for head-i586 Old: ---- kmplot-4.7.1.tar.bz2 New: ---- kmplot-4.7.2.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kmplot.spec ++++++ --- /var/tmp/diff_new_pack.2BjmtM/_old 2011-10-06 16:41:18.000000000 +0200 +++ /var/tmp/diff_new_pack.2BjmtM/_new 2011-10-06 16:41:18.000000000 +0200 @@ -47,7 +47,7 @@ BuildRequires: ocaml BuildRequires: ocaml-facile %endif -Version: 4.7.1 +Version: 4.7.2 Release: 1 License: GPLv2+ Summary: Mathematical Function Plotter ++++++ kmplot-4.7.1.tar.bz2 -> kmplot-4.7.2.tar.bz2 ++++++ Files old/kmplot-4.7.1/doc/index.cache.bz2 and new/kmplot-4.7.2/doc/index.cache.bz2 differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmplot-4.7.1/doc/using.docbook new/kmplot-4.7.2/doc/using.docbook --- old/kmplot-4.7.1/doc/using.docbook 2011-05-20 22:34:09.000000000 +0200 +++ new/kmplot-4.7.2/doc/using.docbook 2011-10-02 15:25:19.000000000 +0200 @@ -106,8 +106,8 @@ In the definition box, complete the function definition, including the name of the theta variable you want to use, ⪚, to draw the Archimedes' spiral r = &thgr;, enter: - <screen><userinput>r(&thgr;) = &thgr;</userinput></screen>. Note that - you can use any name for the theta variable, so + <screen><userinput>r(&thgr;) = &thgr;</userinput></screen> + Note that you can use any name for the theta variable, so <quote>r(t) = t</quote> or <quote>f(x) = x</quote> will produce exactly the same output. </para> </sect2> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmplot-4.7.1/kmplot/kmplot.cpp new/kmplot-4.7.2/kmplot/kmplot.cpp --- old/kmplot-4.7.1/kmplot/kmplot.cpp 2011-05-20 22:34:09.000000000 +0200 +++ new/kmplot-4.7.2/kmplot/kmplot.cpp 2011-10-02 15:25:19.000000000 +0200 @@ -72,6 +72,7 @@ setCentralWidget(m_part->widget()); //m_part->widget()->setFocus(); // and integrate the part's GUI with the shell's + setupGUI(Keys | ToolBar | Save); createGUI(m_part); } } @@ -159,9 +160,6 @@ createStandardStatusBarAction(); setStandardToolBarMenuEnabled(true); - KStandardAction::keyBindings(this, SLOT(optionsConfigureKeys()), actionCollection()); - KStandardAction::configureToolbars(this, SLOT(optionsConfigureToolbars()), actionCollection()); - m_fullScreen = KStandardAction::fullScreen( NULL, NULL, this, actionCollection()); actionCollection()->addAction("fullscreen", m_fullScreen); connect( m_fullScreen, SIGNAL( toggled( bool )), this, SLOT( slotUpdateFullScreen( bool ))); @@ -178,23 +176,6 @@ KToolInvocation::kdeinitExec("kmplot"); } - -void KmPlot::optionsConfigureKeys() -{ - /// \todo check that configuring keys works -// KShortcutsDialog::configure(actionCollection(), "kmplot_shell.rc"); - KShortcutsDialog::configure( actionCollection() ); -} - -void KmPlot::optionsConfigureToolbars() -{ - saveMainWindowSettings( KGlobal::config()->group( QString() )); - // use the standard toolbar editor - KEditToolBar dlg(factory()); - connect(&dlg, SIGNAL(newToolBarConfig()), this, SLOT(applyNewToolbarConfig())); - dlg.exec(); -} - void KmPlot::applyNewToolbarConfig() { applyMainWindowSettings(KGlobal::config()->group( QString() )); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmplot-4.7.1/kmplot/kmplot.h new/kmplot-4.7.2/kmplot/kmplot.h --- old/kmplot-4.7.1/kmplot/kmplot.h 2011-05-20 22:34:09.000000000 +0200 +++ new/kmplot-4.7.2/kmplot/kmplot.h 2011-10-02 15:25:19.000000000 +0200 @@ -72,8 +72,6 @@ public Q_SLOTS: // DBus interface Q_SCRIPTABLE void fileOpen(); - Q_SCRIPTABLE void optionsConfigureKeys(); - Q_SCRIPTABLE void optionsConfigureToolbars(); Q_SCRIPTABLE void setStatusBarText(const QString &, int id); Q_SCRIPTABLE void openFileInNewWindow(const KUrl &url); /** diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmplot-4.7.1/kmplot/kmplot_part.rc new/kmplot-4.7.2/kmplot/kmplot_part.rc --- old/kmplot-4.7.1/kmplot/kmplot_part.rc 2011-05-20 22:34:09.000000000 +0200 +++ new/kmplot-4.7.2/kmplot/kmplot_part.rc 2011-10-02 15:25:19.000000000 +0200 @@ -32,10 +32,7 @@ <Action name="maximumvalue"/> <Action name="minimumvalue"/> </Menu> - <Menu name="settings"><text>&Settings</text> - <Separator /> - <Action name="options_configure_keybinding"/> - <Action name="options_configure_toolbars"/> + <Menu name="settings"> <Action name="options_configure"/> </Menu> <Menu name="help"><text>&Help</text> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmplot-4.7.1/kmplot/kmplot_part_readonly.rc new/kmplot-4.7.2/kmplot/kmplot_part_readonly.rc --- old/kmplot-4.7.1/kmplot/kmplot_part_readonly.rc 2011-05-20 22:34:09.000000000 +0200 +++ new/kmplot-4.7.2/kmplot/kmplot_part_readonly.rc 2011-10-02 15:25:19.000000000 +0200 @@ -29,7 +29,7 @@ <Action name="maximumvalue"/> <Action name="minimumvalue"/> </Menu> - <Menu name="settings"><text>&Settings</text> + <Menu name="settings"> <Action name="options_configure"/> </Menu> <Menu name="help"><text>&Help</text> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmplot-4.7.1/kmplot/kmplot_shell.rc new/kmplot-4.7.2/kmplot/kmplot_shell.rc --- old/kmplot-4.7.1/kmplot/kmplot_shell.rc 2011-05-20 22:34:09.000000000 +0200 +++ new/kmplot-4.7.2/kmplot/kmplot_shell.rc 2011-10-02 15:25:19.000000000 +0200 @@ -10,19 +10,6 @@ <Action name="file_quit"/> </Menu> <Merge/> - <Menu noMerge="1" name="settings"><text>&Settings</text> - <!--<Action name="options_show_toolbar"/>--> - <Merge name="StandardToolBarMenuHandler" /> - <Action name="options_show_statusbar"/> - <Separator/> - <Action name="fullscreen" /> - <Merge/> -<!-- <Separator/> - <Action name="options_configure_keybinding"/> - <Action name="options_configure_toolbars"/> - <Action name="options_configure"/>--> - <Separator/> - </Menu> <Menu name="help"><text>&Help</text> <DefineGroup name="names_group" /> </Menu> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmplot-4.7.1/kmplot/maindlg.cpp new/kmplot-4.7.2/kmplot/maindlg.cpp --- old/kmplot-4.7.1/kmplot/maindlg.cpp 2011-05-20 22:34:09.000000000 +0200 +++ new/kmplot-4.7.2/kmplot/maindlg.cpp 2011-10-02 15:25:19.000000000 +0200 @@ -240,9 +240,6 @@ QAction *prefs = KStandardAction::preferences( this, SLOT( slotSettings() ), actionCollection()); prefs->setText( i18n( "Configure KmPlot..." ) ); - KStandardAction::keyBindings(this, SLOT(optionsConfigureKeys()), actionCollection()); - KStandardAction::configureToolbars(this, SLOT(optionsConfigureToolbars()), actionCollection()); - // KmPlot specific actions @@ -782,16 +779,6 @@ setStatusBarText(text); } -void MainDlg::optionsConfigureKeys() -{ -// KApplication::kApplication()->dcopClient()->send(KApplication::kApplication()->dcopClient()->appId(), "KmPlotShell","optionsConfigureKeys()", QByteArray()); -} - -void MainDlg::optionsConfigureToolbars() -{ -// KApplication::kApplication()->dcopClient()->send(KApplication::kApplication()->dcopClient()->appId(), "KmPlotShell","optionsConfigureToolbars()", QByteArray()); -} - bool MainDlg::queryClose() { return checkModified(); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmplot-4.7.1/kmplot/maindlg.h new/kmplot-4.7.2/kmplot/maindlg.h --- old/kmplot-4.7.1/kmplot/maindlg.h 2011-05-20 22:34:09.000000000 +0200 +++ new/kmplot-4.7.2/kmplot/maindlg.h 2011-10-02 15:25:19.000000000 +0200 @@ -226,10 +226,6 @@ void resetUndoRedo(); void setReadOnlyStatusBarText(const QString &); - - /// slots for the settings-menu - void optionsConfigureKeys(); - void optionsConfigureToolbars(); }; class KmPlotPartFactory : public KParts::Factory diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmplot-4.7.1/kmplot/org.kde.kmplot.KmPlot.xml new/kmplot-4.7.2/kmplot/org.kde.kmplot.KmPlot.xml --- old/kmplot-4.7.1/kmplot/org.kde.kmplot.KmPlot.xml 2011-05-20 22:34:09.000000000 +0200 +++ new/kmplot-4.7.2/kmplot/org.kde.kmplot.KmPlot.xml 2011-10-02 15:25:19.000000000 +0200 @@ -9,8 +9,6 @@ <method name="setDrawProgress"> <arg name="progress" type="d" direction="in"/> </method> - <method name="optionsConfigureKeys"/> - <method name="optionsConfigureToolbars"/> <method name="openFileInNewWindow"> <arg name="url" type="s" direction="in"/> </method> continue with "q"... Remember to have fun... -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
