Skip to content

Commit

Permalink
Merge remote-tracking branch 'remotes/origin/release/v8.3.0' into dev…
Browse files Browse the repository at this point in the history
…elop
  • Loading branch information
SergeyLuzyanin committed Jan 24, 2025
2 parents 233792d + 17e3db2 commit 24608a5
Show file tree
Hide file tree
Showing 226 changed files with 44,552 additions and 32,516 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/common_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ jobs:
node node_modules/node-qunit-puppeteer/cli.js tests/word/content-control/inline-level/checkbox.html 30000 "--no-sandbox"
node node_modules/node-qunit-puppeteer/cli.js tests/word/content-control/inline-level/cursorAndSelection.html 30000 "--no-sandbox"
node node_modules/node-qunit-puppeteer/cli.js tests/word/content-control/inline-level/date-time.html 30000 "--no-sandbox"
node node_modules/node-qunit-puppeteer/cli.js tests/word/custom-xml/custom-xml.html 30000 "--no-sandbox"
node node_modules/node-qunit-puppeteer/cli.js tests/word/document-calculation/floating-position/drawing.html 30000 "--no-sandbox"
node node_modules/node-qunit-puppeteer/cli.js tests/word/document-calculation/paragraph.html 30000 "--no-sandbox"
node node_modules/node-qunit-puppeteer/cli.js tests/word/document-calculation/table/correctBadTable.html 30000 "--no-sandbox"
Expand Down Expand Up @@ -130,4 +131,4 @@ jobs:
-v $PWD/deploy/sdkjs/word:/opt/onlyoffice/documentbuilder/sdkjs/word \
-v $PWD/deploy/sdkjs/cell:/opt/onlyoffice/documentbuilder/sdkjs/cell \
-v $PWD/deploy/sdkjs/slide:/opt/onlyoffice/documentbuilder/sdkjs/slide \
onlyoffice/doc-builder-testing:next-release rake rspec_critical
onlyoffice/doc-builder-testing:next-release rspec_critical
3 changes: 2 additions & 1 deletion .github/workflows/dev_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ jobs:
node-qunit-puppeteer tests/word/content-control/inline-level/checkbox.html
node-qunit-puppeteer tests/word/content-control/inline-level/cursorAndSelection.html
node-qunit-puppeteer tests/word/content-control/inline-level/date-time.html
node-qunit-puppeteer tests/word/custom-xml/custom-xml.html
node-qunit-puppeteer tests/word/document-calculation/floating-position/drawing.html
node-qunit-puppeteer tests/word/document-calculation/paragraph.html
node-qunit-puppeteer tests/word/document-calculation/table/correctBadTable.html
Expand Down Expand Up @@ -103,4 +104,4 @@ jobs:
-v $PWD/deploy/sdkjs/word:/opt/onlyoffice/documentbuilder/sdkjs/word \
-v $PWD/deploy/sdkjs/cell:/opt/onlyoffice/documentbuilder/sdkjs/cell \
-v $PWD/deploy/sdkjs/slide:/opt/onlyoffice/documentbuilder/sdkjs/slide \
onlyoffice/doc-builder-testing:next-release rake rspec_critical
onlyoffice/doc-builder-testing:next-release rspec_critical
6 changes: 5 additions & 1 deletion build/Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,7 @@ module.exports = function(grunt) {
{
cwd: '../common/',
src: [
'Drawings/Format/path-boolean-min.js',
'Charts/ChartStyles.js',
'SmartArts/SmartArtData/*',
'SmartArts/SmartArtDrawing/*',
Expand Down Expand Up @@ -232,7 +233,10 @@ module.exports = function(grunt) {
},
{
cwd: '../pdf/',
src: ['src/engine/*'],
src: [
'src/engine/*',
'src/annotations/stamps.json'
],
dest: path.join(deploy, 'pdf'),
name: 'pdf'
}
Expand Down
2 changes: 2 additions & 0 deletions cell/Local/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,8 @@ var c_oAscError = Asc.c_oAscError;
printOptionsObj["adjustOptions"]["startPageIndex"] = options.advancedOptions.asc_getStartPageIndex();
if (null != options.advancedOptions.asc_getEndPageIndex())
printOptionsObj["adjustOptions"]["endPageIndex"] = options.advancedOptions.asc_getEndPageIndex();
if (null != options.advancedOptions.asc_getActiveSheetsArray())
printOptionsObj["adjustOptions"]["activeSheetsArray"] = options.advancedOptions.asc_getActiveSheetsArray();
}

printOptions = JSON.stringify(printOptionsObj);
Expand Down
Loading

0 comments on commit 24608a5

Please sign in to comment.