Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

JIRA

SUMMARY

DETAILS

ORG-20032 S1

Don't generate loose dataset when copy folder in same session

  1. Suppose in Folder1, Graph1 plotted by Book1.

  2. New a Folder2, then drag Graph1 to Folder2,

  3. Copy Folder2, then go to root folder and paste.

==>In the Folder2 2, the Graph1A Legend and axis titles show as Book1A(Loose dataset), which should be the same as Graph1, plotting data from Book1.

Fixed in Origin 2023

ORG-25046

Double clicking to open OPJ introduce Display Card issue

In some laptops with an integrated display card and an individual display card. Double clicking to open OPJ always uses as integrated display card.

Fixed in Origin 2023 by new system variable @SPF=0, need to restart Origin as Admin once to make it take effect after changing system variable.

ORG-25344

Cell formula label row in summary sheet failed to be kept after batch processing

If adding cell formula label row to summary sheet, such as mean(this), after do batch processing, In new created summary sheet, the cell formula will not be kept,but use fixed value instead.

Fixed in Origin 2023

ORG-25392

dataset identifier will be broken after recalculate when set as categorical data

when do statistics on column, if set dataset identifier column as categorical data, dataset identifier will be broken after recalculate, show like ?$OP:A=1.

Fixed in Origin 2023

ORG-24043

GDI objects Leaks

There are GDI object leaks when using

  • Notes window

  • Code Builder

Fixed in Origin 2023.

ORG-25499

Mouse cursor changes to Busy state after paste string from Word to graph

Copy some text in Word and paste in Origin graph window directly, click the pasted text, mouse cursor changes to Busy state

Fixed in Origin 2023

ORG-25542

Origin crashed when opening certain 2022 saved OPJU project file

Origin crashed when opening certain 2022 saved OPJU project file

Fixed in Origin 2023

ORG-25168

R console crashes for R 4.2 packages("qpcR")

In Origin 2022b and earlier versions, R console crashes for R 4.2 packages("qpcR") and has the issue failed to load library after restart Origin.

Fixed in Origin 2023

Programming

LabTalk

JIRA

SUMMARY

DETAILS

ORG-25655

layer -du causes Origin crash if worksheet has operation

When worksheet contains operation, run layer -du to delete worksheet will cause Origin crash.

Fixed in Origin 2023

ORG-25780

Origin crashes with specific LabTalk script menu -e

Run script like below will cause Origin crashes,

Code Block
doc -ef w {
   work -s 1 0;
   menu -e 36444; //fill row numbers 
} 

Fixed in Origin 2023

ORG-25414

Set column value fails to recognize range argument

For example, define below function in the Before Formula Scripts edit box, then input "MyFunc(A)" as formula, failed to work in Origin 2022b.

Code Block
function double MyFunc(range rr)
{
  return rr[1];
}

Fixed in Origin 2023

ORG-25234

LabTalk/OC Dataset Init Value issue

  • LabTalk

    Code Block
    dataset dsA, dsB;
    dsA.SetSize(200);dsB.SetSize(200);		
    dataset ds1 = data(1, 200, 1);
    dsA += ds1;
    dsA[100]=;
    dsA[101]=; //returns missing, but should be 101
    range rr = [??]!ds1[1:50];
    dsB = 0;
    dsB += rr;
    dsB[100]=; //returns 100, but should be 0
  • OC

    Code Block
    void testDatasetCreate()
    {
    	Dataset ds;
    	ds.Create(200);
    	out_double( "ds[99]=", ds[99]); //correctly output 0
    	out_double( "ds[100]=", ds[100]); //output missing, should be 0 
    }

Fixed in Origin 2023

ORG-25234

Dataset function to interpolate fails if specify dataset directly for 2nd argument

Set column value with formula like B(C, data(1,100,5)) will be failed in Origin 2022.

Fixed in Origin 2023.

ORG-25260

XOP stats on rows doesn't support to use column label rows as grouping

  1. In Origin 2023, XOP to do statistics on rows uses as below:

Code Block
statGUI.GUI.InputData.Range1.F$="A[U]:D[U]"; //grouping

2. In Origin 2022b and earlier versions, the 2nd group variable is lost when Change Statistics on rows Parameters.

Fixed in Origin 2023.

...