Skip to content
This repository was archived by the owner on Jun 24, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
0f47a49
refactor(canvas): proof of concept for preact-based canvas
eliandoran Jun 10, 2025
3e0f420
chore(canvas): reintroduce wrapper
eliandoran Jun 10, 2025
5ad3d7d
chore(canvas): missing API endpoint
eliandoran Jun 10, 2025
dd58685
chore(canvas): bring back scene API
eliandoran Jun 10, 2025
ddbd268
chore(canvas): bring back load/save
eliandoran Jun 10, 2025
5b98277
chore(canvas): bring back more options
eliandoran Jun 10, 2025
4bd5644
refactor(canvas): access to wrapper
eliandoran Jun 10, 2025
a7c115c
chore(canvas): solve type errors
eliandoran Jun 10, 2025
00c5497
chore(cI): use pnpm exec instead of pnpx
eliandoran Jun 11, 2025
e032e6f
refactor(deps): remove package lock from package
eliandoran Jun 11, 2025
963c738
chore(ci): remove accidental workflow
eliandoran Jun 11, 2025
b27d017
chore(deps): update dependency @types/mime-types to v3.0.1
renovate[bot] Jun 11, 2025
c8530bc
chore(deps): update dependency serve-favicon to v2.5.1
renovate[bot] Jun 11, 2025
509e328
chore(deps): update vitest monorepo to v3.2.3
renovate[bot] Jun 11, 2025
e728557
chore(deps): update dependency openai to v5.3.0
renovate[bot] Jun 11, 2025
51d06ec
chore(deps): fix lockfile
eliandoran Jun 11, 2025
5b4ceb2
refactor(canvas): remove unnecessary ref
eliandoran Jun 11, 2025
dab9b02
refactor(canvas): remove unnecessary fragment
eliandoran Jun 11, 2025
0da05a7
refactor(canvas): don't expose API directly
eliandoran Jun 11, 2025
9d296dd
refactor(canvas): use deferred promise instead of sleep
eliandoran Jun 11, 2025
bb762cf
refactor(canvas): remove use of any
eliandoran Jun 11, 2025
892c27c
chore(canvas): set up cleanup
eliandoran Jun 11, 2025
9bab8f0
refactor(canvas): remove unnecessary env setup
eliandoran Jun 11, 2025
6596431
chore(client): force mermaid to avoid double packaging
eliandoran Jun 11, 2025
65f9b1c
Merge remote-tracking branch 'origin/develop' into feature/client_siz…
eliandoran Jun 11, 2025
89d32db
fix(canvas): loading of fonts under dev mode
eliandoran Jun 11, 2025
26f44ea
chore(deps): deduplicate preact
eliandoran Jun 11, 2025
7c2a29e
chore(deps): deduplicate roughjs
eliandoran Jun 11, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions apps/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,7 @@
"mind-elixir": "4.6.0",
"normalize.css": "8.0.1",
"panzoom": "9.4.3",
"react": "19.1.0",
"react-dom": "19.1.0",
"preact": "10.26.8",
"split.js": "1.6.5",
"svg-pan-zoom": "3.6.2",
"vanilla-js-wheel-zoom": "9.0.4"
Expand All @@ -64,8 +63,6 @@
"@types/leaflet": "1.9.18",
"@types/leaflet-gpx": "1.3.7",
"@types/mark.js": "8.11.12",
"@types/react": "19.1.7",
"@types/react-dom": "19.1.6",
"copy-webpack-plugin": "13.0.0",
"happy-dom": "18.0.1",
"script-loader": "0.7.2",
Expand All @@ -75,7 +72,9 @@
"name": "client",
"targets": {
"serve": {
"dependsOn": ["^build"]
"dependsOn": [
"^build"
]
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion apps/client/src/types-assets.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ declare module "*.png" {
export default path;
}

declare module "@triliumnext/ckeditor5/emoji_definitions/en.json?url" {
declare module "*?url" {
var path: string;
export default path;
}
Expand Down
2 changes: 2 additions & 0 deletions apps/client/src/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ declare global {

process?: ElectronProcess;
glob?: CustomGlobals;

EXCALIDRAW_ASSET_PATH?: string;
}

interface AutoCompleteConfig {
Expand Down
Loading