Skip to content
Snippets Groups Projects
Commit 82bd0a03 authored by Van Herck, Walter's avatar Van Herck, Walter
Browse files

Merge branch 'hotfix-1.5.1' into develop

parents cc5031e3 64f9b0b7
No related branches found
No related tags found
No related merge requests found
BornAgain-1.5.1, released 2016.02.18
Hotfix:
* Bug #1341: GUI crashes if simulating with 1D lattice interference function
* Bug #1338: Crash while saving certain project file
BornAgain-1.5.0, released 2016.02.15
> API changes
1) FTDecayFunctions introduced to use together with lattices (setDecayFunction)
......
......@@ -102,7 +102,7 @@ void JobResultsPresenter::updateDataAxes(IntensityDataItem *intensityItem,
void JobResultsPresenter::saveIntensityData(JobItem *jobItem, const QString &projectDir)
{
IntensityDataItem *dataItem = jobItem->getIntensityDataItem();
if (dataItem) {
if (dataItem && dataItem->getOutputData()) {
QString filename = projectDir + QStringLiteral("/") + dataItem->itemName();
std::unique_ptr<OutputData<double>> dataToSave(
......
......@@ -156,7 +156,7 @@ const ModelType DistributionExtendedGroup = "Distribution extended group";
const ModelType FTDistribution1DGroup = "PDF 1D";
const ModelType FTDistribution2DGroup = "PDF 2D";
const ModelType FTDecayFunction1DGroup = "Decay function 1D";
const ModelType FTDecayFunction2DGroup = "Decay function 1D";
const ModelType FTDecayFunction2DGroup = "Decay function 2D";
const ModelType LatticeGroup = "Lattice group";
const ModelType MaterialGroup = "Material group";
const ModelType ResolutionFunctionGroup = "Resolution function group";
......
set(BornAgain_VERSION_MAJOR 1)
set(BornAgain_VERSION_MINOR 5)
set(BornAgain_VERSION_PATCH 0)
set(BornAgain_VERSION_PATCH 1)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment