[Kst] branches/work/kst/portto4/kst
Barth Netterfield
netterfield at astro.utoronto.ca
Wed Nov 16 00:41:46 UTC 2011
SVN commit 1264479 by netterfield:
Fix bug which caused generated vectors to hang from scripting.
Changes to INSTALL instructions
cmake install of scripting now seems to work on ubuntu.
M +4 -0 devel-docs/Kst2Specs/Bugs
M +6 -1 pyKst/INSTALL
M +1 -1 src/libkstapp/vectordialog.cpp
--- branches/work/kst/portto4/kst/devel-docs/Kst2Specs/Bugs #1264478:1264479
@@ -1,3 +1,7 @@
+Names from matrixes are not properly escaped (eg, a field called flux_89)
+
+-------------------
+
More than one shared axis group. Tied zoom doesn't work right.
--------------------
--- branches/work/kst/portto4/kst/pyKst/INSTALL #1264478:1264479
@@ -52,5 +52,10 @@
========
Try with cmake:
-sudo cmake ../kst/cmake/pyKst
+# install the python files where they belong
+sudo cmake ../cmake/pyKst
+
+# Download, build, and install the right versions of numpy and scipy.
+# This is not needed if you already have them
sudo make
+
--- branches/work/kst/portto4/kst/src/libkstapp/vectordialog.cpp #1264478:1264479
@@ -563,7 +563,7 @@
}
void VectorDialog::waitForValidation() {
- while (_vectorTab->validating) {
+ while (_vectorTab->validating && (_vectorTab->vectorMode() == VectorTab::DataVector)) {
Sleep::ms(10);
QApplication::processEvents();
}
More information about the Kst
mailing list