Origin 2022b SR1 Bug Fixes

Graphing

JIRA

SUMMARY

DETAILS

JIRA

SUMMARY

DETAILS

ORG-25177

Value failed to update when resizing or moving distance annotator tool

Exists in Origin 2022b SR0 when the tool is newly introduced.

Add distance annotator tool in graph.

Resize or move it

==> The value failed to change the 1st time. No problem if u resize or move again.

Fixed in Origin 2022b SR1.

ORG-25265

Crash after ungrouping multiple groups with context menu

If there are multiple groups of plots in a graph, in Object manager, hold Ctrl key and select the groups, e.g. g1, g2, etc.

Click the Ungroup button on mini toolbar

==> Crash.

Fixed in Origin 2022b SR1.

Miscellaneous

JIRA

SUMMARY

DETAILS

JIRA

SUMMARY

DETAILS

ORG-24662

Return to Last Window Broken

Broken since Origin 2022b SR0

Fixed in Origin 2022b SR1.

Suppose there are multiple folders in project file (opju)

Navigate to a different folder in Project Explorer and choose Window: Return to Last Window.

==> It failed to return to the previous folder.

 

ORG-24043

GDI Objects Leaks with Color Well

This was introduced in Origin 2022 and existed in Origin 2022b SR0 as well.

Fixed in Origin 2022b SR1

There is GDI object leaks when using Color Well.

Open Task Manager and show GDI objects column in processes tab or Details tab to watch the increase. If it reaches 5000, and you open any project file (opju), you will get message about too many windows in current folder even if this isn’t true.

Workaround: Restart Origin.

ORG-24952

Failure to open App Center under some circumstances

Origin’s Internet detection fails under some circumstances and App Center fails to be opened:

 

ORG-25382

Failed to open project with % in file name

This issue has existed since Origin 2017 to Origin 2022b Sr0.

Fixed by Origin 2022b Sr1.

Programming

JIRA

SUMMARY

DETAILS

JIRA

SUMMARY

DETAILS

ORG-25334

Column Formula Argument Separator Convert failed

We use ; as function argument separator in Labtalk functions.

  • Operating systems where comma (,) is used as decimal separator by default, e.g. G OS.

  • In Origin, Separator is set to 1.000,0 on Numeric Format tab in Preferences: Options dialog manually.

If user types comma (,) as argument separator, Origin will convert it to ; automatically.

But it failed in some Labtalk functions. It also failed in Python or Origin C.

E.g. in Set Column Values or F(x)

  • enter text(value(Dec2bin(A)), "#8"), it was turned into text(value(Dec2bin(A)). "#8"). It should be turned into text(value(Dec2bin(A)); "#8")

  • Define some python function and then call py.group_sum(A,5) as formula. It turned into py.group_sum(A.5). It should be turned into py.group_sum(A;5)

Fixed in Origin 2022b SR1.

ORG-25393

LabTalk command to install and uninstall template missing

Exists in Origin 2022b SR0, and fixed in Orgin 2022b SR1.

run.section(dofile.ogs, OnInstallTemplate, "%YCopyOfGraph.otpu") run.section(dofile.ogs, OnUnInstallTemplate, "%YCopyOfGraph.otpu")