Skip to content

Commit fc09b21

Browse files
authored
Merge pull request #18 from cryptpad/update-oo
Update oo
2 parents 4fcd833 + ea0e2b6 commit fc09b21

1,460 files changed

Lines changed: 305324 additions & 269305 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ make test
2121
## sdkjs
2222

2323
```sh
24-
git fetch --depth=1 https://github.com/ONLYOFFICE/sdkjs.git v9.2.0.119
24+
git fetch --depth=1 https://github.com/ONLYOFFICE/sdkjs.git v9.3.0.140
2525
git diff FETCH_HEAD HEAD:sdkjs
2626
```
2727

2828
## web-apps
2929

3030
```sh
31-
git fetch --depth=1 https://github.com/ONLYOFFICE/web-apps.git v9.2.0.119
31+
git fetch --depth=1 https://github.com/ONLYOFFICE/web-apps.git v9.3.0.140
3232
git diff FETCH_HEAD HEAD:web-apps
3333
```
3434

sdkjs/.github/actions/send-message/action.yml

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,20 @@ runs:
2121
shell: bash
2222
env:
2323
MESSAGE: ${{ inputs.message }}
24+
TELEGRAM_TOKEN: ${{ inputs.token }}
25+
TELEGRAM_CHAT: ${{ inputs.chat }}
2426
run: |
25-
MESSAGE=$(echo "$MESSAGE" | sed 's/"/\\"/g')
26-
curl -s -X POST "https://api.telegram.org/bot${{ inputs.token }}/sendMessage" \
27+
PAYLOAD=$(jq -n \
28+
--arg chat_id "$TELEGRAM_CHAT" \
29+
--arg text "$MESSAGE" \
30+
'{
31+
chat_id: $chat_id,
32+
text: $text,
33+
parse_mode: "Markdown",
34+
disable_notification: true,
35+
disable_web_page_preview: true
36+
}')
37+
38+
curl -s -X POST "https://api.telegram.org/bot${TELEGRAM_TOKEN}/sendMessage" \
2739
-H "Content-Type: application/json" \
28-
-d "{
29-
\"chat_id\": \"${{ inputs.chat }}\",
30-
\"text\": \"$MESSAGE\",
31-
\"parse_mode\": \"Markdown\",
32-
\"disable_notification\": true,
33-
\"disable_web_page_preview\": true
34-
}"
40+
-d "$PAYLOAD"

sdkjs/.github/workflows/check-build.yml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,17 @@ jobs:
4848
node node_modules/grunt-cli/bin/grunt --gruntfile build/Gruntfile.js develop
4949
node node_modules/node-qunit-puppeteer/cli.js tests/common/api/api.html 30000 "--no-sandbox"
5050
node node_modules/node-qunit-puppeteer/cli.js tests/cell/shortcuts/shortcuts.html 30000 "--no-sandbox"
51-
node node_modules/node-qunit-puppeteer/cli.js tests/cell/spreadsheet-calculation/FormulaTests.html 30000 "--no-sandbox"
51+
node node_modules/node-qunit-puppeteer/cli.js tests/cell/spreadsheet-calculation/formula-tests/FormulaTests.html 30000 "--no-sandbox"
52+
node node_modules/node-qunit-puppeteer/cli.js tests/cell/spreadsheet-calculation/formula-tests/databaseTests.html 30000 "--no-sandbox"
53+
node node_modules/node-qunit-puppeteer/cli.js tests/cell/spreadsheet-calculation/formula-tests/dateTimeTests.html 30000 "--no-sandbox"
54+
node node_modules/node-qunit-puppeteer/cli.js tests/cell/spreadsheet-calculation/formula-tests/financialTests.html 30000 "--no-sandbox"
55+
node node_modules/node-qunit-puppeteer/cli.js tests/cell/spreadsheet-calculation/formula-tests/informationTests.html 30000 "--no-sandbox"
56+
node node_modules/node-qunit-puppeteer/cli.js tests/cell/spreadsheet-calculation/formula-tests/engineeringTests.html 30000 "--no-sandbox"
57+
node node_modules/node-qunit-puppeteer/cli.js tests/cell/spreadsheet-calculation/formula-tests/logicalTests.html 30000 "--no-sandbox"
58+
node node_modules/node-qunit-puppeteer/cli.js tests/cell/spreadsheet-calculation/formula-tests/lookupAndReferenceTests.html 30000 "--no-sandbox"
59+
node node_modules/node-qunit-puppeteer/cli.js tests/cell/spreadsheet-calculation/formula-tests/mathematicTests.html 30000 "--no-sandbox"
60+
node node_modules/node-qunit-puppeteer/cli.js tests/cell/spreadsheet-calculation/formula-tests/statisticalTests.html 30000 "--no-sandbox"
61+
node node_modules/node-qunit-puppeteer/cli.js tests/cell/spreadsheet-calculation/formula-tests/textAndDataTests.html 30000 "--no-sandbox"
5262
node node_modules/node-qunit-puppeteer/cli.js tests/cell/spreadsheet-calculation/PivotTests.html 30000 "--no-sandbox"
5363
node node_modules/node-qunit-puppeteer/cli.js tests/cell/spreadsheet-calculation/copy-paste-tests.html 30000 "--no-sandbox"
5464
node node_modules/node-qunit-puppeteer/cli.js tests/cell/spreadsheet-calculation/SheetStructureTests.html 30000 "--no-sandbox"
@@ -61,6 +71,8 @@ jobs:
6171
node node_modules/node-qunit-puppeteer/cli.js tests/cell/spreadsheet-calculation/ExternalReference.html 30000 "--no-sandbox"
6272
node node_modules/node-qunit-puppeteer/cli.js tests/cell/spreadsheet-calculation/SheetMemoryTest.html 30000 "--no-sandbox"
6373
node node_modules/node-qunit-puppeteer/cli.js tests/cell/spreadsheet-calculation/whatIfAnalysisTests.html 30000 "--no-sandbox"
74+
node node_modules/node-qunit-puppeteer/cli.js tests/cell/spreadsheet-calculation/DynamicArraysTests.html 30000 "--no-sandbox"
75+
node node_modules/node-qunit-puppeteer/cli.js tests/cell/js-api/js-api.html 30000 "--no-sandbox"
6476
node node_modules/node-qunit-puppeteer/cli.js tests/word/unit-tests/paragraphContentPos.html 30000 "--no-sandbox"
6577
node node_modules/node-qunit-puppeteer/cli.js tests/word/unit-tests/deleted-text-recovery.html 30000 "--no-sandbox"
6678
node node_modules/node-qunit-puppeteer/cli.js tests/word/content-control/block-level/cursorAndSelection.html 30000 "--no-sandbox"
@@ -74,6 +86,7 @@ jobs:
7486
node node_modules/node-qunit-puppeteer/cli.js tests/word/document-calculation/table/flowTablePosition.html 30000 "--no-sandbox"
7587
node node_modules/node-qunit-puppeteer/cli.js tests/word/document-calculation/table/pageBreak.html 30000 "--no-sandbox"
7688
node node_modules/node-qunit-puppeteer/cli.js tests/word/document-calculation/table/table-flow.html 30000 "--no-sandbox"
89+
node node_modules/node-qunit-puppeteer/cli.js tests/word/document-calculation/table/table-grid.html 30000 "--no-sandbox"
7790
node node_modules/node-qunit-puppeteer/cli.js tests/word/document-calculation/table/table-header.html 30000 "--no-sandbox"
7891
node node_modules/node-qunit-puppeteer/cli.js tests/word/document-calculation/textShaper/textShaper.html 30000 "--no-sandbox"
7992
node node_modules/node-qunit-puppeteer/cli.js tests/word/document-calculation/text-hyphenator/text-hyphenator.html 30000 "--no-sandbox"
@@ -97,6 +110,7 @@ jobs:
97110
node node_modules/node-qunit-puppeteer/cli.js tests/word/change-case/change-case.html 30000 "--no-sandbox"
98111
node node_modules/node-qunit-puppeteer/cli.js tests/word/js-api/js-api.html 30000 "--no-sandbox"
99112
node node_modules/node-qunit-puppeteer/cli.js tests/word/shortcuts/shortcuts.html 30000 "--no-sandbox"
113+
node node_modules/node-qunit-puppeteer/cli.js tests/word/copypaste/copy-paste-tests.html 30000 "--no-sandbox"
100114
node node_modules/node-qunit-puppeteer/cli.js tests/slide/shortcuts/shortcuts.html 30000 "--no-sandbox"
101115
102116
- name: Send message to telegram if failure

sdkjs/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,4 @@ package-lock.json
1818
*/package-lock.json
1919
connector
2020
tests/package*
21+
.claude/

0 commit comments

Comments
 (0)