Skip to content

Commit fc37331

Browse files
authored
Merge pull request #48 from eclipse/patrick/ui-replay-record
ui: Add replay and canvas recording functionalities
2 parents bb3ec7c + 798b3f9 commit fc37331

17 files changed

+803
-75
lines changed

ui/LICENSE-3RD-PARTY.txt

+5-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ The following licenses are used by dependencies of cloe-ui:
1111
├─ MIT*: 4
1212
├─ BSD*: 3
1313
├─ BSD: 2
14+
├─ (MIT AND Zlib): 2
1415
├─ BSD-3-Clause OR MIT: 1
1516
├─ (MIT OR Apache-2.0): 1
1617
├─ CC-BY-4.0: 1
@@ -20,7 +21,6 @@ The following licenses are used by dependencies of cloe-ui:
2021
├─ Public Domain: 1
2122
├─ WTFPL: 1
2223
├─ (BSD-3-Clause OR GPL-2.0): 1
23-
├─ (MIT AND Zlib): 1
2424
├─ (WTFPL OR MIT): 1
2525
├─ Custom: https://randomcolor.lllllllllllllllll.com: 1
2626
├─ (BSD-2-Clause OR MIT OR Apache-2.0): 1
@@ -5464,6 +5464,10 @@ The following libraries are used by cloe-ui:
54645464
54655465
│ ├─ licenses: (MIT AND Zlib)
54665466
│ ├─ repository: https://github.com/nodeca/pako
5467+
│ └─ licenseFile: node_modules/browserify-zlib/node_modules/pako/LICENSE
5468+
5469+
│ ├─ licenses: (MIT AND Zlib)
5470+
│ ├─ repository: https://github.com/nodeca/pako
54675471
│ └─ licenseFile: node_modules/pako/LICENSE
54685472
54695473
│ ├─ licenses: MIT

ui/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33

44
CLOE_ROOT := ..
5-
CLOE_VERSION := $(shell cat ${CLOE_ROOT}/VERSION)
5+
CLOE_VERSION := $(shell $(MAKE) -s -C ../ -f Makefile.package info-version)
66

77
HAS_GIT := $(shell [ -d ${CLOE_ROOT}/.git ] && echo "true")
88
ifeq (${HAS_GIT},true)

ui/package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
"license": "Apache-2.0",
66
"private": true,
77
"dependencies": {
8-
"antd": "^4.2.0",
9-
"@ant-design/icons": "^4.1.0",
108
"@ant-design/compatible": "^1.0.2",
9+
"@ant-design/icons": "^4.1.0",
10+
"antd": "^4.2.0",
1111
"axios": "^0.21.1",
1212
"bootstrap": "^4.3.1",
1313
"chart.js": "^2.8.0",
@@ -17,6 +17,7 @@
1717
"less": "^3.9.0",
1818
"mathjs": "^7.5.1",
1919
"node-sass": "^4.12.0",
20+
"pako": "^2.0.3",
2021
"randomcolor": "^0.5.4",
2122
"react": "^16.8.6",
2223
"react-beautiful-dnd": "^11.0.4",

0 commit comments

Comments
 (0)