Skip to content

Commit

Permalink
Fix one-time data migration
Browse files Browse the repository at this point in the history
  • Loading branch information
GarboMuffin committed Jun 2, 2024
1 parent c71fd92 commit 98617fa
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src-main/protocols.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ const FILE_SCHEMES = {
root: path.resolve(__dirname, '../dist-renderer-webpack/editor'),
standard: true,
supportFetch: true,
secure: true
secure: true,
embeddable: true, // migration helper
},
'tw-desktop-settings': {
root: path.resolve(__dirname, '../src-renderer/desktop-settings')
Expand All @@ -36,7 +37,8 @@ const FILE_SCHEMES = {
'tw-packager': {
root: path.resolve(__dirname, '../src-renderer/packager'),
standard: true,
secure: true
secure: true,
embeddable: true, // migration helper
},
'tw-library': {
root: path.resolve(__dirname, '../dist-library-files'),
Expand Down

0 comments on commit 98617fa

Please sign in to comment.