File scidavis.changes of Package scidavis
-------------------------------------------------------------------
Wed Apr 18 14:05:27 UTC 2018 - guillaume.gardet@opensuse.org
- Handle aarch64 arch
- Make use of optflags
-------------------------------------------------------------------
Wed Nov 1 15:21:04 UTC 2017 - ronisbr@gmail.com
- Update to version 1.22.
- Run spec-cleaner.
-------------------------------------------------------------------
Sat Aug 12 14:51:47 UTC 2017 - aloisio@gmx.com
- Update to version 1.21
- Dropped man.patch (merged upstream)
-------------------------------------------------------------------
Sun Aug 6 19:45:24 UTC 2017 - mailaender@opensuse.org
- Update to 1.19
- Add man.patch to solve man page installation properly
-------------------------------------------------------------------
Tue Aug 9 16:14:05 UTC 2016 - ronisbr@gmail.com
- Update to 1.14.
* No changelog available.
- Remove unneeded patch (solved by upstream):
* scidavis-tableitem.patch
-------------------------------------------------------------------
Wed Jun 29 17:55:21 UTC 2016 - ronisbr@gmail.com
- Update to 1.D13.
* No changelog available
- Add patch `scidavis-tableitem.patch` to fix compilation with
GCC6.
- Remove unneeded patch (solved by upstream):
* scidavis.1.D9_correct_return.patch
-------------------------------------------------------------------
Tue Dec 22 15:09:45 UTC 2015 - ronisbr@gmail.com
- Update to 1.D9.
* No changelog available.
- Remove _service.
- Remove patches (solved by upstream):
* scidavis.1.D8_comment_python.patch;
* scidavis.1.D8_graph_const.patch;
* scidavis.1.D8_not_orig_liborigin.patch;
* scidavis.1.D8_ts.patch.
- Update patch to version 1.D9:
* scidavis.1.D9_correct_return.patch.
- Run spec-cleaner.
- Minor fixes in .spec.
-------------------------------------------------------------------
Wed May 6 02:02:02 UTC 2015 - avvissu@yandex.ru
- Fix files is compiled without RPM_OPT_FLAG
- Update the system MIME cache:
* add %mime_database_{post,postun} %desktop_database__{post,postun}
- Fix error found by RPMlint: directories not owned by a package:
* add BuildRequires: kde4-filesystem
-------------------------------------------------------------------
Wed Nov 5 00:12:06 UTC 2014 - avvissu@yandex.ru
- Fix path of translations (scidavis.1.D8_ts.patch)
-------------------------------------------------------------------
Mon Nov 3 13:19:03 UTC 2014 - avvissu@yandex.ru
- Add Python expressions and scripts:
- add BuildRequires: python-devel python-qt4 python-qt4-devel
-------------------------------------------------------------------
Wed Oct 29 15:23:15 UTC 2014 - avvissu@yandex.ru
- Update to 1.D8
- Remove a patches (solved in upstream):
* scidavis-0.2.4-documentation.patch
* scidavis-0.2.4-link.patch
* scidavis-0.2.4-qassistantclient.patch
* scidavis-0.2.4-undefined_operation.patch
- Update a patches:
* scidavis.1.D8_correct_return.patch
* scidavis.1.D8_graph_const.patch
- Comment for the line include( ../python.pri ):
* add scidavis.1.D8_comment_python.patch
- Used a package from openSUSE instead of a static library:
* add scidavis.1.D8_not_orig_liborigin.patch
- Add BuildRequires: cmake boost-devel liborigin2-devel
- Add binary readWriteProject file
- Updated manual page
-------------------------------------------------------------------
Wed Oct 29 07:54:13 UTC 2014 - avvissu@yandex.ru
- Fix for 64bit build
-------------------------------------------------------------------
Mon Mar 25 13:13:00 UTC 2013 - joop.boonen@opensuse.org
- Added BuildRequires: glu-devel as it's not a
BuildRequirement for Mesa-devel anymore for openSUSE > 12.2
- The package name of libqwtplot3d-devel has been
changed to qwtplot3d-devel
-------------------------------------------------------------------
Tue Aug 28 17:36:39 UTC 2012 - scorot@free.fr
- fix build on recent product with patch5
-------------------------------------------------------------------
Tue Feb 21 12:20:01 UTC 2012 - lars@linux-schulserver.de
- run spec-cleaner
- splitted out separate changes file
- added the following patches:
+ scidavis-0.2.4-undefined_operation.patch
+ scidavis-0.2.4-graph_const.patch
+ scidavis-0.2.4-correct_return.patch
+ scidavis-0.2.4-documentation.patch
- build parallel
- compile with optflags
-------------------------------------------------------------------
Thu Oct 28 00:00:00 UTC 2010 - Leon Freitag <leon@links2linux.de>
- update to version 0.2.4, official 0.2.4 changelog:
Most important changes since 0.2.3:
- Some parts of the Python API have been marked as deprecated and generate warnings when used. This
may be a bit unusual for a bugfix release; on the other hand, they won't be removed any time soon
and inserting the deprecation warnings now will give everyone as much time as possible for getting
accustomed to the API we're moving towards.
Most prominently,
Table.cell(column,row) and
Table.setCell(column,row,value)
are deprecated in favour of
Table.column(column - 1).valueAt(row - 1) and
Table.column(column - 1).setValueAt(row - 1, value)
(note that the column/row INDICES DIFFER BY ONE!); the same goes for
Table.text(c,r) -> Table.column(c - 1).textAt(r - 1) and
Table.setText(c,r,text) -> Table.column(c - 1).setTextAt(r - 1,text).
This serves multiple purposes. It simplifies the interfaces by grouping all functionality specific
to a certain column in the Column class; it allows column objects to be stored and passed around;
and it moves from the unconventional 1-based indexing to the more conventional 0-based indexing.
Future additions to the API will increasingly make use of the columns-as-objects paradigm.
- lots of bugfixes, again including crashes
- fixed compatibility issues with Qt 4.6 and SIP 4.9
- performance improvements
- substantially improved support for plots involving date/time data
- added two Czech translations: a default one by Pavel Fric (feedback requested via
http://fripohled.blogspot.com) and an alternative one by Jan Helebrant
- updated Spanish translation, thanks to Mauricio Troviano; Brazilian Portuguese translation, thanks
to Fellyp do Nascimento; and German translation
- fixed and extended many parts of the API for Python scripts, including the new methods
Layer.pickPoint()
MDIWindow.clone()
Folder.save(filename)
newGraph(string)
Layer.printDialog()
Graph.printDialog()
Layer.setRightTitle(string)
Layer.setTopTitle(string)
Layer.grid() # => returns an instance of the new class Grid
Layer.insertFunctionCurve(formula,from=0,to=1,points=100,title="")
Layer.insertPolarCurve(radial_formula,angular_formula,from=0,to=2*pi,parameter="t",points=100,title="")
Layer.insertParametricCurve(x_formal,y_formula,from=0,to=1,parameter="t",points=100,title="")
Matrix.recalculate()
the constants QwtPlot.yLeft, QwtPlot.yRight, QwtPlot.xBottom,
QwtPlot.xTop for specifying axes and the Grid class
- multiple graphs can have active tools simultaneously
- based on user feedback, the default behaviour when importing ASCII
files has been changed to interpret the data as numeric (only applies
to fresh installations of SciDAVis)
- automatic resizing of table rows for multi-line cells intentionally
dropped, because this seems to be rarely needed and has a huge impact
on performance for large tables
For older changes, see the CHANGES file in the documentation.
-------------------------------------------------------------------
Thu Mar 26 00:00:00 UTC 2009 - Leon Freitag <leon@links2linux.de>
- update to version 0.2.1, official 0.2.1 changelog:
This is the first bugfix release in the 0.2 series. Most importantly,
saving project files containing fit/function curves works again.
Other fixes include:
- fixed opening of backup copy on discovery of a corrupt project file
- Spanish translation update by Mauricio Troviano
- fixed several regressions introduced by the table/matrix rewrites in 0.2.0
- added per mille and per ten thousand signs to SymbolDialog
- compatibility problems between SIP versions triggers a warning instead
of a crash (happens sometimes when SIP version at runtime differs from
the one used at compile time)
Changes from 0.1.4 to 0.2.0:
Most important changes (since 0.1.4)
- multi-level undo/redo for all operations on tables and matrices
- many operations on tables and matrices now support non-contiguous selections
- the important options/controls for matrices and tables are now integrated in a sidebar
of control tabs which make working with column or matrix based data much more
convenient (almost no more opening and closing of dialogs necessary)
- tables now support different formulas for each cell
- numeric values are now stored independent of their textual representation,
i.e., you don't lose data when hiding decimal digits
- formula edit mode: tables feature a new mode which allows the user to
individually edit the formula for each cell
- invalid cells: tables now mark cells without input as invalid rather
than treating them as 0; these cells are ignored in plots
- date/time values are now internally stored as QDateTime objects which
opens up many new possibilities of date/time manipulation using
PyQt/Python scripting
- many bug fixes
-------------------------------------------------------------------
Sun May 4 00:00:00 UTC 2008 - Leon Freitag <leon@links2linux.de>
- moved the manual to /usr/share/doc/packages/scidavis-manual
- updated to version 0.1.3, official 0.1.3 changelog:
Most important changes (since 0.1.2)
- page orientation for PDF/EPS export can now be chosen manually
- executing script code now gives a visual feedback
- new Windows installer
- many improvements to make compilation and Linux packaging easier
- fixed graph duplication
- fixed unnecessary graph rescaling
- several other bugs fixed
-------------------------------------------------------------------
Tue Aug 07 00:00:00 UTC 2007 - Quentin Denis <quentin@links2linux.de>
- initial package for SUSE