Skip to content

Commit

Permalink
Final upgrades
Browse files Browse the repository at this point in the history
  • Loading branch information
JTPetter committed Apr 2, 2024
1 parent 5d68090 commit 10f917a
Showing 1 changed file with 78 additions and 0 deletions.
78 changes: 78 additions & 0 deletions inst/Upgrades.qml
Original file line number Diff line number Diff line change
Expand Up @@ -1240,4 +1240,82 @@ Upgrades
}
}
}

// Variables Charts Subgroups
Upgrade
{
functionName: "variablesChartsSubgroups"
fromVersion: "0.18.3"
toVersion: "0.19.0"

ChangeRename
{
from: "stages"
to: "stagesLongFormat"
condition: function(options)
{
return options["dataFormat"] == "longFormat"
}
}

ChangeRename
{
from: "stages"
to: "stagesWideFormat"
condition: function(options)
{
return options["dataFormat"] == "wideFormat"
}
}

ChangeRename { from: "reportTitle"; to: "reportTitleText"}
ChangeRename { from: "reportMeasurementName"; to: "reportMeasurementNameText"}
ChangeRename { from: "reportDate"; to: "reportDateText"}
ChangeRename { from: "reportReportedBy"; to: "reportPerformedByText"}
ChangeRename { from: "reportSubtitle"; to: "reportSubtitleText"}
ChangeRename { from: "reportChartName"; to: "reportChartNameText"}
}

// Process Capability Study
Upgrade
{
functionName: "processCapabilityStudies"
fromVersion: "0.18.3"
toVersion: "0.19.0"

ChangeRename
{
from: "stages"
to: "stagesLongFormat"
condition: function(options)
{
return options["dataFormat"] == "longFormat"
}
}

ChangeRename
{
from: "stages"
to: "stagesWideFormat"
condition: function(options)
{
return options["dataFormat"] == "wideFormat"
}
}

ChangeRename
{
from: "subgroup"
to: "axisLabels"
condition: function(options)
{
return options["dataFormat"] == "wideFormat"
}
}

ChangeRename { from: "reportTitle"; to: "reportTitleText"}
ChangeRename { from: "reportProcessName"; to: "reportProcessText"}
ChangeRename { from: "reportDate"; to: "reportDateText"}
ChangeRename { from: "reportReportedBy"; to: "reportPerformedByText"}
}
}

0 comments on commit 10f917a

Please sign in to comment.