diff --git a/.dockerignore b/.dockerignore index cfbfa63b..04c01ba7 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,3 +1,2 @@ -.env node_modules/ dist/ \ No newline at end of file diff --git a/.env b/.env index 9f63d72a..31d68bd7 100644 --- a/.env +++ b/.env @@ -1,63 +1,37 @@ -VITE_DISABLED_EDITORS=powerhouse/document-drive -VITE_DEFAULT_DRIVES_URL=https://apps.powerhouse.io/staging/makerdao/switchboard/d/monetalis -VITE_BASE_HREF=/ -ASSET_URL=/ - -VITE_APP_REQUIRES_HARD_REFRESH=true - -######## RENOWN CONFIG ######## -# Renown instance to use for login -# VITE_RENOWN_URL=http://localhost:3000 - -# Network Id to use for signing the Renown credential (default: 1 for Ethereum mainnet) -# VITE_RENOWN_NETWORK_ID=1 - -# Set the base URL of the app (default: /) -VITE_ROUTER_BASENAME=/ - -######## CONNECT CONTENT CONFIG ######## -# Set to false to hide searchbar in folder conent (default: true) -VITE_SEARCH_BAR_ENABLED=false - -VITE_SENTRY_DSN="" -VITE_SENTRY_ENV=dev - -######## CONNECT SETTINGS ######## -# Set to true to hide document model selection from connect settings (default: false) -# VITE_HIDE_DOCUMENT_MODEL_SELECTION_SETTINGS=true - -######## PUBLIC DRIVES CONFIG ######## -# Set to false to hide public drives section in the sidebar (default: true) -# VITE_PUBLIC_DRIVES_ENABLED=false - -# Set to true to disable adding public drives (default: false) -#VITE_DISABLE_ADD_PUBLIC_DRIVES=false - -# Set to true to disable deleting public drives (default: false) -#VITE_DISABLE_DELETE_PUBLIC_DRIVES=false - - - - -######## CLOUD DRIVES CONFIG ######## -# Set to false to hide cloud drives section in the sidebar (default: true) -# VITE_CLOUD_DRIVES_ENABLED=false - -# Set to true to disable adding cloud drives (default: false) -#VITE_DISABLE_ADD_CLOUD_DRIVES=false - -# Set to true to disable deleting cloud drives (default: false) -#VITE_DISABLE_DELETE_CLOUD_DRIVES=false - - - - -######## LOCAL DRIVES CONFIG ######## -# Set to false to hide local drives section in the sidebar (default: true) -# VITE_LOCAL_DRIVES_ENABLED=false - -# Set to true to disable adding local drives (default: false) -#VITE_DISABLE_ADD_LOCAL_DRIVES=true - -# Set to true to disable deleting local drives (default: false) -#VITE_DISABLE_DELETE_LOCAL_DRIVES=false +# build arguments +BASE_PATH="/" # vite base path +BASE_HREF="./" # electron-forge base href +PH_CONNECT_APP_REQUIRES_HARD_REFRESH="true" +SENTRY_AUTH_TOKEN= +SENTRY_ORG= +SENTRY_PROJECT= + +# environment variables + +## app configuration & feature flags +PH_CONNECT_ROUTER_BASENAME="/develop/powerhouse/connect" +PH_CONNECT_DEFAULT_DRIVES_URL="https://apps.powerhouse.io/develop/powerhouse/switchboard/d/core-dev" +PH_CONNECT_ENABLED_EDITORS="*" +PH_CONNECT_DISABLE_ADD_PUBLIC_DRIVES="false" +PH_CONNECT_SEARCH_BAR_ENABLED="false" +PH_CONNECT_DISABLE_ADD_CLOUD_DRIVES="false" +PH_CONNECT_DISABLE_ADD_LOCAL_DRIVES="false" +PH_CONNECT_DISABLE_DELETE_PUBLIC_DRIVES="false" +PH_CONNECT_DISABLE_DELETE_CLOUD_DRIVES="false" +PH_CONNECT_DISABLE_DELETE_LOCAL_DRIVES="false" +PH_CONNECT_PUBLIC_DRIVES_ENABLED="true" +PH_CONNECT_CLOUD_DRIVES_ENABLED="true" +PH_CONNECT_LOCAL_DRIVES_ENABLED="true" +PH_CONNECT_ARBITRUM_ALLOW_LIST="" +PH_CONNECT_RWA_ALLOW_LIST="" +PH_CONNECT_HIDE_DOCUMENT_MODEL_SELECTION_SETTINGS="true" + +PH_CONNECT_RENOWN_URL="https://www.renown.id" +PH_CONNECT_RENOWN_NETWORK_ID="eip155" +PH_CONNECT_RENOWN_CHAIN_ID=1 +PH_CONNECT_DISABLED_EDITORS="" + +## error tracking +PH_CONNECT_SENTRY_DSN="" +PH_CONNECT_SENTRY_PROJECT="" +PH_CONNECT_SENTRY_ENV="prod" diff --git a/.env.prod b/.env.prod deleted file mode 100644 index 4f208e58..00000000 --- a/.env.prod +++ /dev/null @@ -1,3 +0,0 @@ -VITE_BASE_HREF=/staging/powerhouse/connect -ASSET_URL=/staging/powerhouse/connect -VITE_ROUTER_BASENAME=/staging/powerhouse/connect \ No newline at end of file diff --git a/.github/workflows/build-and-deploy-arbitrum-prod.yaml b/.github/workflows/build-and-deploy-arbitrum-prod.yaml index 25ba2aea..77f347b6 100644 --- a/.github/workflows/build-and-deploy-arbitrum-prod.yaml +++ b/.github/workflows/build-and-deploy-arbitrum-prod.yaml @@ -24,20 +24,20 @@ jobs: heroku_app_name: ${{ secrets.HEROKU_APP_NAME }} docker_options: >- --build-arg BASE_PATH=/arbitrum/connect - --build-arg VITE_BASE_HREF=/arbitrum/connect/ - --build-arg VITE_ROUTER_BASENAME=/arbitrum/connect - --build-arg VITE_SENTRY_DSN=${{ secrets.SENTRY_DSN }} - --build-arg VITE_SENTRY_ENV=${{ secrets.SENTRY_ENV }} - --build-arg VITE_ENABLED_EDITORS=ARBLTIPGrantee - --build-arg VITE_DISABLE_ADD_PUBLIC_DRIVES=true - --build-arg VITE_DISABLE_ADD_CLOUD_DRIVES=true - --build-arg VITE_DISABLE_ADD_LOCAL_DRIVES=true - --build-arg VITE_DISABLE_DELETE_PUBLIC_DRIVES=true - --build-arg VITE_DISABLE_DELETE_CLOUD_DRIVES=true - --build-arg VITE_DISABLE_DELETE_LOCAL_DRIVES=true - --build-arg VITE_LOCAL_DRIVES_ENABLED=false - --build-arg VITE_SEARCH_BAR_ENABLED=false - --build-arg VITE_DEFAULT_DRIVES_URL=https://apps.powerhouse.io/arbitrum/switchboard/d/arbitrum - --build-arg VITE_RENOWN_CHAIN_ID=42161 - --build-arg VITE_HIDE_DOCUMENT_MODEL_SELECTION_SETTINGS=true + --build-arg PH_CONNECT_BASE_HREF=/arbitrum/connect/ + --build-arg PH_CONNECT_ROUTER_BASENAME=/arbitrum/connect + --build-arg PH_CONNECT_SENTRY_DSN=${{ secrets.SENTRY_DSN }} + --build-arg PH_CONNECT_SENTRY_ENV=${{ secrets.SENTRY_ENV }} + --build-arg PH_CONNECT_ENABLED_EDITORS=ARBLTIPGrantee + --build-arg PH_CONNECT_DISABLE_ADD_PUBLIC_DRIVES=true + --build-arg PH_CONNECT_DISABLE_ADD_CLOUD_DRIVES=true + --build-arg PH_CONNECT_DISABLE_ADD_LOCAL_DRIVES=true + --build-arg PH_CONNECT_DISABLE_DELETE_PUBLIC_DRIVES=true + --build-arg PH_CONNECT_DISABLE_DELETE_CLOUD_DRIVES=true + --build-arg PH_CONNECT_DISABLE_DELETE_LOCAL_DRIVES=true + --build-arg PH_CONNECT_LOCAL_DRIVES_ENABLED=false + --build-arg PH_CONNECT_SEARCH_BAR_ENABLED=false + --build-arg PH_CONNECT_DEFAULT_DRIVES_URL=https://apps.powerhouse.io/arbitrum/switchboard/d/arbitrum + --build-arg PH_CONNECT_RENOWN_CHAIN_ID=42161 + --build-arg PH_CONNECT_HIDE_DOCUMENT_MODEL_SELECTION_SETTINGS=true process_type: web \ No newline at end of file diff --git a/.github/workflows/build-and-deploy-arbitrum-staging.yaml b/.github/workflows/build-and-deploy-arbitrum-staging.yaml index 219765d3..6c73948d 100644 --- a/.github/workflows/build-and-deploy-arbitrum-staging.yaml +++ b/.github/workflows/build-and-deploy-arbitrum-staging.yaml @@ -24,23 +24,23 @@ jobs: heroku_app_name: ${{ secrets.HEROKU_APP_NAME }} docker_options: >- --build-arg BASE_PATH=/staging/arbitrum/connect - --build-arg VITE_BASE_HREF=/staging/arbitrum/connect/ - --build-arg VITE_ROUTER_BASENAME=/staging/arbitrum/connect - --build-arg VITE_ENABLED_EDITORS=ARBLTIPGrantee - --build-arg VITE_DISABLE_ADD_PUBLIC_DRIVES=true - --build-arg VITE_DISABLE_ADD_CLOUD_DRIVES=true - --build-arg VITE_DISABLE_ADD_LOCAL_DRIVES=true - --build-arg VITE_DISABLE_DELETE_PUBLIC_DRIVES=true - --build-arg VITE_DISABLE_DELETE_CLOUD_DRIVES=true - --build-arg VITE_DISABLE_DELETE_LOCAL_DRIVES=true - --build-arg VITE_LOCAL_DRIVES_ENABLED=false - --build-arg VITE_DEFAULT_DRIVES_URL=https://apps.powerhouse.io/staging/arbitrum/switchboard/d/arbitrum - --build-arg VITE_RENOWN_CHAIN_ID=42161 - --build-arg VITE_SEARCH_BAR_ENABLED=false - --build-arg VITE_SENTRY_DSN=${{ secrets.SENTRY_DSN }} - --build-arg VITE_SENTRY_ENV=${{ secrets.SENTRY_ENV }} - --build-arg VITE_ARBITRUM_ALLOW_LIST=${{secrets.VITE_ARBITRUM_ALLOW_LIST}} - --build-arg VITE_HIDE_DOCUMENT_MODEL_SELECTION_SETTINGS=true + --build-arg PH_CONNECT_BASE_HREF=/staging/arbitrum/connect/ + --build-arg PH_CONNECT_ROUTER_BASENAME=/staging/arbitrum/connect + --build-arg PH_CONNECT_ENABLED_EDITORS=ARBLTIPGrantee + --build-arg PH_CONNECT_DISABLE_ADD_PUBLIC_DRIVES=true + --build-arg PH_CONNECT_DISABLE_ADD_CLOUD_DRIVES=true + --build-arg PH_CONNECT_DISABLE_ADD_LOCAL_DRIVES=true + --build-arg PH_CONNECT_DISABLE_DELETE_PUBLIC_DRIVES=true + --build-arg PH_CONNECT_DISABLE_DELETE_CLOUD_DRIVES=true + --build-arg PH_CONNECT_DISABLE_DELETE_LOCAL_DRIVES=true + --build-arg PH_CONNECT_LOCAL_DRIVES_ENABLED=false + --build-arg PH_CONNECT_DEFAULT_DRIVES_URL=https://apps.powerhouse.io/staging/arbitrum/switchboard/d/arbitrum + --build-arg PH_CONNECT_RENOWN_CHAIN_ID=42161 + --build-arg PH_CONNECT_SEARCH_BAR_ENABLED=false + --build-arg PH_CONNECT_SENTRY_DSN=${{ secrets.SENTRY_DSN }} + --build-arg PH_CONNECT_SENTRY_ENV=${{ secrets.SENTRY_ENV }} + --build-arg PH_CONNECT_ARBITRUM_ALLOW_LIST=${{secrets.PH_CONNECT_ARBITRUM_ALLOW_LIST}} + --build-arg PH_CONNECT_HIDE_DOCUMENT_MODEL_SELECTION_SETTINGS=true --build-arg SENTRY_AUTH_TOKEN=${{ secrets.SENTRY_AUTH_TOKEN }} --build-arg SENTRY_ORG=${{ secrets.SENTRY_ORG }} --build-arg SENTRY_PROJECT=${{ secrets.SENTRY_PROJECT }} diff --git a/.github/workflows/build-and-deploy-makerdao-prod.yaml b/.github/workflows/build-and-deploy-makerdao-prod.yaml index 09322a8c..40cb563e 100644 --- a/.github/workflows/build-and-deploy-makerdao-prod.yaml +++ b/.github/workflows/build-and-deploy-makerdao-prod.yaml @@ -24,11 +24,11 @@ jobs: heroku_app_name: ${{ secrets.HEROKU_APP_NAME }} docker_options: >- --build-arg BASE_PATH=/makerdao/connect - --build-arg VITE_BASE_HREF=/makerdao/connect/ - --build-arg VITE_ROUTER_BASENAME=/makerdao/connect - --build-arg VITE_SENTRY_DSN=${{ secrets.SENTRY_DSN }} - --build-arg VITE_SENTRY_ENV=${{ secrets.SENTRY_ENV }} - --build-arg VITE_SEARCH_BAR_ENABLED=false - --build-arg VITE_DEFAULT_DRIVES_URL=https://apps.powerhouse.io/makerdao/switchboard/d/b443d823-3e4d-4e60-ae44-45edafd5f632 - --build-arg VITE_RWA_ALLOW_LIST=${{secrets.VITE_RWA_ALLOW_LIST}} + --build-arg PH_CONNECT_BASE_HREF=/makerdao/connect/ + --build-arg PH_CONNECT_ROUTER_BASENAME=/makerdao/connect + --build-arg PH_CONNECT_SENTRY_DSN=${{ secrets.SENTRY_DSN }} + --build-arg PH_CONNECT_SENTRY_ENV=${{ secrets.SENTRY_ENV }} + --build-arg PH_CONNECT_SEARCH_BAR_ENABLED=false + --build-arg PH_CONNECT_DEFAULT_DRIVES_URL=https://apps.powerhouse.io/makerdao/switchboard/d/b443d823-3e4d-4e60-ae44-45edafd5f632 + --build-arg PH_CONNECT_RWA_ALLOW_LIST=${{secrets.PH_CONNECT_RWA_ALLOW_LIST}} process_type: web \ No newline at end of file diff --git a/.github/workflows/build-and-deploy-makerdao-staging.yaml b/.github/workflows/build-and-deploy-makerdao-staging.yaml index b6c5e93f..064ead94 100644 --- a/.github/workflows/build-and-deploy-makerdao-staging.yaml +++ b/.github/workflows/build-and-deploy-makerdao-staging.yaml @@ -24,11 +24,11 @@ jobs: heroku_app_name: ${{ secrets.HEROKU_APP_NAME }} docker_options: >- --build-arg BASE_PATH=/staging/makerdao/connect - --build-arg VITE_BASE_HREF=/staging/makerdao/connect/ - --build-arg VITE_ROUTER_BASENAME=/staging/makerdao/connect - --build-arg VITE_SENTRY_DSN=${{ secrets.SENTRY_DSN }} - --build-arg VITE_SENTRY_ENV=${{ secrets.SENTRY_ENV }} - --build-arg VITE_SEARCH_BAR_ENABLED=false - --build-arg VITE_DEFAULT_DRIVES_URL=https://apps.powerhouse.io/staging/makerdao/switchboard/d/280dd289-ec51-40f0-adad-c154967fc2b2 - --build-arg VITE_RWA_ALLOW_LIST=${{secrets.VITE_RWA_ALLOW_LIST}} + --build-arg PH_CONNECT_BASE_HREF=/staging/makerdao/connect/ + --build-arg PH_CONNECT_ROUTER_BASENAME=/staging/makerdao/connect + --build-arg PH_CONNECT_SENTRY_DSN=${{ secrets.SENTRY_DSN }} + --build-arg PH_CONNECT_SENTRY_ENV=${{ secrets.SENTRY_ENV }} + --build-arg PH_CONNECT_SEARCH_BAR_ENABLED=false + --build-arg PH_CONNECT_DEFAULT_DRIVES_URL=https://apps.powerhouse.io/staging/makerdao/switchboard/d/280dd289-ec51-40f0-adad-c154967fc2b2 + --build-arg PH_CONNECT_RWA_ALLOW_LIST=${{secrets.PH_CONNECT_RWA_ALLOW_LIST}} process_type: web \ No newline at end of file diff --git a/.github/workflows/build-and-deploy-powerhouse-develop.yaml b/.github/workflows/build-and-deploy-powerhouse-develop.yaml index 1642a3c6..35855aa2 100644 --- a/.github/workflows/build-and-deploy-powerhouse-develop.yaml +++ b/.github/workflows/build-and-deploy-powerhouse-develop.yaml @@ -24,12 +24,8 @@ jobs: heroku_app_name: ${{ secrets.HEROKU_APP_NAME }} docker_options: >- --build-arg BASE_PATH=/develop/powerhouse/connect - --build-arg VITE_BASE_HREF=/develop/powerhouse/connect/ - --build-arg VITE_ROUTER_BASENAME=/develop/powerhouse/connect - --build-arg VITE_DEFAULT_DRIVES_URL=https://apps.powerhouse.io/develop/powerhouse/switchboard/d/core-dev - --build-arg VITE_SEARCH_BAR_ENABLED=false - --build-arg VITE_SENTRY_DSN=${{ secrets.SENTRY_DSN }} - --build-arg VITE_SENTRY_ENV=${{ secrets.SENTRY_ENV }} + --build-arg PH_CONNECT_SENTRY_DSN=${{ secrets.SENTRY_DSN }} + --build-arg PH_CONNECT_SENTRY_ENV=${{ secrets.SENTRY_ENV }} --build-arg SENTRY_AUTH_TOKEN=${{ secrets.SENTRY_AUTH_TOKEN }} --build-arg SENTRY_ORG=${{ secrets.SENTRY_ORG }} --build-arg SENTRY_PROJECT=${{ secrets.SENTRY_PROJECT }} diff --git a/.github/workflows/build-and-deploy-powerhouse-prod.yaml b/.github/workflows/build-and-deploy-powerhouse-prod.yaml index a11290f6..52090ba8 100644 --- a/.github/workflows/build-and-deploy-powerhouse-prod.yaml +++ b/.github/workflows/build-and-deploy-powerhouse-prod.yaml @@ -24,10 +24,10 @@ jobs: heroku_app_name: ${{ secrets.HEROKU_APP_NAME }} docker_options: >- --build-arg BASE_PATH=/powerhouse/connect - --build-arg VITE_BASE_HREF=/powerhouse/connect/ - --build-arg VITE_ROUTER_BASENAME=/powerhouse/connect - --build-arg VITE_SENTRY_DSN=${{ secrets.SENTRY_DSN }} - --build-arg VITE_SENTRY_ENV=${{ secrets.SENTRY_ENV }} - --build-arg VITE_DEFAULT_DRIVES_URL=https://apps.powerhouse.io/powerhouse/switchboard/d/powerhouse - --build-arg VITE_SEARCH_BAR_ENABLED=false + --build-arg PH_CONNECT_BASE_HREF=/powerhouse/connect/ + --build-arg PH_CONNECT_ROUTER_BASENAME=/powerhouse/connect + --build-arg PH_CONNECT_SENTRY_DSN=${{ secrets.SENTRY_DSN }} + --build-arg PH_CONNECT_SENTRY_ENV=${{ secrets.SENTRY_ENV }} + --build-arg PH_CONNECT_DEFAULT_DRIVES_URL=https://apps.powerhouse.io/powerhouse/switchboard/d/powerhouse + --build-arg PH_CONNECT_SEARCH_BAR_ENABLED=false process_type: web \ No newline at end of file diff --git a/.github/workflows/build-and-deploy-powerhouse-staging.yaml b/.github/workflows/build-and-deploy-powerhouse-staging.yaml index cffca31d..c49990ac 100644 --- a/.github/workflows/build-and-deploy-powerhouse-staging.yaml +++ b/.github/workflows/build-and-deploy-powerhouse-staging.yaml @@ -24,10 +24,10 @@ jobs: heroku_app_name: ${{ secrets.HEROKU_APP_NAME }} docker_options: >- --build-arg BASE_PATH=/staging/powerhouse/connect - --build-arg VITE_BASE_HREF=/staging/powerhouse/connect/ - --build-arg VITE_ROUTER_BASENAME=/staging/powerhouse/connect - --build-arg VITE_SENTRY_DSN=${{ secrets.SENTRY_DSN }} - --build-arg VITE_SENTRY_ENV=${{ secrets.SENTRY_ENV }} - --build-arg VITE_DEFAULT_DRIVES_URL=https://apps.powerhouse.io/staging/powerhouse/switchboard/d/powerhouse - --build-arg VITE_SEARCH_BAR_ENABLED=false + --build-arg PH_CONNECT_BASE_HREF=/staging/powerhouse/connect/ + --build-arg PH_CONNECT_ROUTER_BASENAME=/staging/powerhouse/connect + --build-arg PH_CONNECT_SENTRY_DSN=${{ secrets.SENTRY_DSN }} + --build-arg PH_CONNECT_SENTRY_ENV=${{ secrets.SENTRY_ENV }} + --build-arg PH_CONNECT_DEFAULT_DRIVES_URL=https://apps.powerhouse.io/staging/powerhouse/switchboard/d/powerhouse + --build-arg PH_CONNECT_SEARCH_BAR_ENABLED=false process_type: web \ No newline at end of file diff --git a/.github/workflows/e2e-dev.yml b/.github/workflows/e2e-dev.yml index 1e4200c1..fbb644af 100644 --- a/.github/workflows/e2e-dev.yml +++ b/.github/workflows/e2e-dev.yml @@ -1,8 +1,13 @@ name: End-to-end tests on: - push: - branches: [develop] + pull_request: + branches: + - main + - develop + - staging + - production + - deployments/** workflow_dispatch: jobs: cypress-run: @@ -24,4 +29,6 @@ jobs: wait-on: 'http://localhost:5173/' env: CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + PH_CONNECT_ROUTER_BASENAME: / + PH_CONNECT_DEFAULT_DRIVES_URL: \ No newline at end of file diff --git a/.prettierignore b/.prettierignore index 03c52d09..05e4d805 100644 --- a/.prettierignore +++ b/.prettierignore @@ -19,4 +19,5 @@ vite.renderer.config.ts .commitlintrc. .github .releaserc -scripts \ No newline at end of file +scripts +src/vite-env.d.ts \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 85f8700c..1b4b77ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,2619 +1,2522 @@ # [1.0.0-next.8](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-next.7...v1.0.0-next.8) (2024-08-16) - ### Bug Fixes -* fixes undefined this in logger methods ([d5a8fac](https://github.com/powerhouse-inc/document-model-electron/commit/d5a8face9f25e54cf1bd51c9118db1fff80394b0)) -* parse renown base url ([160b4df](https://github.com/powerhouse-inc/document-model-electron/commit/160b4df770bd2c0e181b69aa68c01feba101b173)) - +- fixes undefined this in logger methods ([d5a8fac](https://github.com/powerhouse-inc/document-model-electron/commit/d5a8face9f25e54cf1bd51c9118db1fff80394b0)) +- parse renown base url ([160b4df](https://github.com/powerhouse-inc/document-model-electron/commit/160b4df770bd2c0e181b69aa68c01feba101b173)) ### Features -* added browser refresh when a new version of connect is deployed ([0208c62](https://github.com/powerhouse-inc/document-model-electron/commit/0208c62b20dc3b9c0a9aa9845426c803b3e9d57e)) -* added drive operations context ([0c9d5fe](https://github.com/powerhouse-inc/document-model-electron/commit/0c9d5fee4b79d387c985ecd3ee755f0ae83fe399)) -* fix fix-urlBranchMap ([aeadba1](https://github.com/powerhouse-inc/document-model-electron/commit/aeadba1524bf31ed04b9a44b6de57a32cfdec0c3)) -* update design-system and document-model-libs ver ([78c2745](https://github.com/powerhouse-inc/document-model-electron/commit/78c2745394a6d0ae1508e71ef8284e7d4c7711e7)) -* upload sourcemaps to sentry ([47190fa](https://github.com/powerhouse-inc/document-model-electron/commit/47190faeda45bdad8250420bee4cbe1b546c0dd5)) -* use pkg version instead of random ver ([c2255c9](https://github.com/powerhouse-inc/document-model-electron/commit/c2255c9c9830d285d23e798aa0d799a396e2bb7b)) +- added browser refresh when a new version of connect is deployed ([0208c62](https://github.com/powerhouse-inc/document-model-electron/commit/0208c62b20dc3b9c0a9aa9845426c803b3e9d57e)) +- added drive operations context ([0c9d5fe](https://github.com/powerhouse-inc/document-model-electron/commit/0c9d5fee4b79d387c985ecd3ee755f0ae83fe399)) +- fix fix-urlBranchMap ([aeadba1](https://github.com/powerhouse-inc/document-model-electron/commit/aeadba1524bf31ed04b9a44b6de57a32cfdec0c3)) +- update design-system and document-model-libs ver ([78c2745](https://github.com/powerhouse-inc/document-model-electron/commit/78c2745394a6d0ae1508e71ef8284e7d4c7711e7)) +- upload sourcemaps to sentry ([47190fa](https://github.com/powerhouse-inc/document-model-electron/commit/47190faeda45bdad8250420bee4cbe1b546c0dd5)) +- use pkg version instead of random ver ([c2255c9](https://github.com/powerhouse-inc/document-model-electron/commit/c2255c9c9830d285d23e798aa0d799a396e2bb7b)) # [1.0.0-next.7](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-next.6...v1.0.0-next.7) (2024-08-12) - ### Features -* bump libs ([e0b08c3](https://github.com/powerhouse-inc/document-model-electron/commit/e0b08c3af686b9a4e1b2ea02342ae74e35445e7c)) -* bump libs ([a62aaf3](https://github.com/powerhouse-inc/document-model-electron/commit/a62aaf3b350974f50245f424c072a1cfc86c2d87)) -* bump libs ([6729c7a](https://github.com/powerhouse-inc/document-model-electron/commit/6729c7a9ca6efc8971e455ff9ccddf4d78a7f4e1)) -* bump libs ([3ad26e8](https://github.com/powerhouse-inc/document-model-electron/commit/3ad26e8957aaf8ab982c24f42e473886d4ef164e)) -* fixed sentry console capture ([2962d91](https://github.com/powerhouse-inc/document-model-electron/commit/2962d916c6335f9a6cdef864917bdacd0d967d78)) -* log catched errors to sentry ([8e5e9ba](https://github.com/powerhouse-inc/document-model-electron/commit/8e5e9baf3bbe47894b67f0ca9652dfb855996f30)) -* only open document when we know node is file ([9669a74](https://github.com/powerhouse-inc/document-model-electron/commit/9669a74d923d2a5c3b88ab857530731239a3d3f7)) -* remove to lower case from slug generation ([180e747](https://github.com/powerhouse-inc/document-model-electron/commit/180e74792b54b707c15d0192ed01909723ca39fc)) -* show at most one drive error toast ([f7644ae](https://github.com/powerhouse-inc/document-model-electron/commit/f7644ae54ec60c06a176cac8c5f023d81c296052)) +- bump libs ([e0b08c3](https://github.com/powerhouse-inc/document-model-electron/commit/e0b08c3af686b9a4e1b2ea02342ae74e35445e7c)) +- bump libs ([a62aaf3](https://github.com/powerhouse-inc/document-model-electron/commit/a62aaf3b350974f50245f424c072a1cfc86c2d87)) +- bump libs ([6729c7a](https://github.com/powerhouse-inc/document-model-electron/commit/6729c7a9ca6efc8971e455ff9ccddf4d78a7f4e1)) +- bump libs ([3ad26e8](https://github.com/powerhouse-inc/document-model-electron/commit/3ad26e8957aaf8ab982c24f42e473886d4ef164e)) +- fixed sentry console capture ([2962d91](https://github.com/powerhouse-inc/document-model-electron/commit/2962d916c6335f9a6cdef864917bdacd0d967d78)) +- log catched errors to sentry ([8e5e9ba](https://github.com/powerhouse-inc/document-model-electron/commit/8e5e9baf3bbe47894b67f0ca9652dfb855996f30)) +- only open document when we know node is file ([9669a74](https://github.com/powerhouse-inc/document-model-electron/commit/9669a74d923d2a5c3b88ab857530731239a3d3f7)) +- remove to lower case from slug generation ([180e747](https://github.com/powerhouse-inc/document-model-electron/commit/180e74792b54b707c15d0192ed01909723ca39fc)) +- show at most one drive error toast ([f7644ae](https://github.com/powerhouse-inc/document-model-electron/commit/f7644ae54ec60c06a176cac8c5f023d81c296052)) # [1.0.0-next.6](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-next.5...v1.0.0-next.6) (2024-08-02) - ### Bug Fixes -* refresh drive methods when user permissions change ([a9677cd](https://github.com/powerhouse-inc/document-model-electron/commit/a9677cd087bcc4655623aa224cf6bc5d07e99ee3)) -* release ([387a9ed](https://github.com/powerhouse-inc/document-model-electron/commit/387a9edcdfb7de801ed83209a9fa1d127f61c305)) -* set old drive private and new drive public ([fa29b90](https://github.com/powerhouse-inc/document-model-electron/commit/fa29b9042e764cd58f96073f2967478372b289ce)) -* switchboard graphql query ([8d354d3](https://github.com/powerhouse-inc/document-model-electron/commit/8d354d33b8cf63cf4d2b34800b8ff2a77bb79646)) - +- refresh drive methods when user permissions change ([a9677cd](https://github.com/powerhouse-inc/document-model-electron/commit/a9677cd087bcc4655623aa224cf6bc5d07e99ee3)) +- release ([387a9ed](https://github.com/powerhouse-inc/document-model-electron/commit/387a9edcdfb7de801ed83209a9fa1d127f61c305)) +- set old drive private and new drive public ([fa29b90](https://github.com/powerhouse-inc/document-model-electron/commit/fa29b9042e764cd58f96073f2967478372b289ce)) +- switchboard graphql query ([8d354d3](https://github.com/powerhouse-inc/document-model-electron/commit/8d354d33b8cf63cf4d2b34800b8ff2a77bb79646)) ### Features -<<<<<<< HEAD -* add animated loader for editors ([0ef0cc5](https://github.com/powerhouse-inc/document-model-electron/commit/0ef0cc587bb04d3fa65a4fd133c4c42f5998c92c)) -* add comments ([a5e81b2](https://github.com/powerhouse-inc/document-model-electron/commit/a5e81b22b1d634548a6323ef5b4a5efa2b0a87ec)) -* add file icon logic ([3ba0aae](https://github.com/powerhouse-inc/document-model-electron/commit/3ba0aae6d692a2368b19e1defeb655d582c5c220)) -* add node slugs ([e6a538a](https://github.com/powerhouse-inc/document-model-electron/commit/e6a538a39d00ad7c5fa9873805ae8532ac009259)) -* add suspense for editor component ([62f78e7](https://github.com/powerhouse-inc/document-model-electron/commit/62f78e7b2288c4ce346c9bcfde638c9fc943145f)) -* add wagmi context ([7f638be](https://github.com/powerhouse-inc/document-model-electron/commit/7f638be54fc5b778c7abd9f991d0b01f6606cf59)) -* added base e2e tests ([fab24e1](https://github.com/powerhouse-inc/document-model-electron/commit/fab24e14247b31a96df09ccc17e7a3d05b065194)) -* added debug tools modal ([c88989b](https://github.com/powerhouse-inc/document-model-electron/commit/c88989b3b29f501089234dcfc3a03ae94cc6d009)) -* added sign operation ([0427a11](https://github.com/powerhouse-inc/document-model-electron/commit/0427a11283e675c2c16dca4fd1cccffbeeecb420)) -* added user tracking for sentry ([2a98795](https://github.com/powerhouse-inc/document-model-electron/commit/2a987956c6d77705b73a32090adb34799325f847)) -* allow renown.id ([63fda39](https://github.com/powerhouse-inc/document-model-electron/commit/63fda3999ab7d5748783c89da909ef30d7794407)) -* allow url for file ([d7b762d](https://github.com/powerhouse-inc/document-model-electron/commit/d7b762d7c79c679acb212f4bfc3da50c010d397a)) -* bump design system ([5870d52](https://github.com/powerhouse-inc/document-model-electron/commit/5870d5285014f3ee721af522c042a06cc8b18d51)) -* bump design system ([09079b6](https://github.com/powerhouse-inc/document-model-electron/commit/09079b6534eed29bdacf6017675e720078ff0e80)) -* bump design system ([8d322c1](https://github.com/powerhouse-inc/document-model-electron/commit/8d322c1e1096c0ceb0be787dbd186e6f19ac2a54)) -* bump document-model-libs ([9f5516c](https://github.com/powerhouse-inc/document-model-electron/commit/9f5516c502769a4056e36d92187595c0ea53ea33)) -* bump libs ([67c43fe](https://github.com/powerhouse-inc/document-model-electron/commit/67c43fe7257f9bd5890f89105417ed193353491e)) -* bump libs ([977b43f](https://github.com/powerhouse-inc/document-model-electron/commit/977b43ff4611b34de8591047393f5fc328e80029)) -* bump libs ([2837f01](https://github.com/powerhouse-inc/document-model-electron/commit/2837f01af47c38bb132e887cc5717f52bab71731)) -* bump libs ([72ff365](https://github.com/powerhouse-inc/document-model-electron/commit/72ff365bfd8d76227bad15203366cb49a5297b73)) -* bump libs ([e431ef5](https://github.com/powerhouse-inc/document-model-electron/commit/e431ef529c7e2c6ff3e016b22ef4c1573c8e480e)) -* bump libs ([3db0a2b](https://github.com/powerhouse-inc/document-model-electron/commit/3db0a2baaf3e8739782ff7c7800147d5fcd13e07)) -* bump libs ([415ca8e](https://github.com/powerhouse-inc/document-model-electron/commit/415ca8e37fe56ee2c8c654cc1380cd7586610ca8)) -* check status code and error message when handling invalid listenerId ([86982ff](https://github.com/powerhouse-inc/document-model-electron/commit/86982ffa16aea9667f6083263ecea8c8ac49ad43)) -* disable sync icon for local folders ([9996fa3](https://github.com/powerhouse-inc/document-model-electron/commit/9996fa3f8b11edd5da0d16185c44822ddfec9233)) -* enabled support for multiple default drives ([8f6386b](https://github.com/powerhouse-inc/document-model-electron/commit/8f6386bec7a6e0f5c241baaf8fe153b06dfa33c4)) -* expect undefined document ([d10ef75](https://github.com/powerhouse-inc/document-model-electron/commit/d10ef751d363f56dce29626ec8fbcc7d38fe945a)) -* fix merge conflict when adding a new pullResponder ([6941c0a](https://github.com/powerhouse-inc/document-model-electron/commit/6941c0a836cd43aca631b626f2312957a201ca50)) -* fix renown url ([b46dd75](https://github.com/powerhouse-inc/document-model-electron/commit/b46dd750eaf0fb01f1c25fd63ff150fab8f79484)) -* fix sidebar props ([11b50b4](https://github.com/powerhouse-inc/document-model-electron/commit/11b50b453b802cc97dde620df4b6e1b1ad97cd6a)) -* fixed file import ([b5d4d72](https://github.com/powerhouse-inc/document-model-electron/commit/b5d4d72fbed6f7540b0a33849e829311b4e4af92)) -* handle async editor switching ([453939b](https://github.com/powerhouse-inc/document-model-electron/commit/453939bdb2f110dca48a61e91707aaee3eeb9b9d)) -* handle back button clicked when editor open ([99b58e1](https://github.com/powerhouse-inc/document-model-electron/commit/99b58e1a2fc286b3258e8c0232f7d21deb5516f3)) -* handle delete ([d541580](https://github.com/powerhouse-inc/document-model-electron/commit/d5415807add427e013d71df4cd7754618c423e22)) -* handle drive id change is history ([07c9aeb](https://github.com/powerhouse-inc/document-model-electron/commit/07c9aeb41d345ef4435044352b9d4f417f7e98ff)) -* handle history stack ([c1fb104](https://github.com/powerhouse-inc/document-model-electron/commit/c1fb104bbbe4c8cde3277d62f27348b66b249123)) -* handle invalid listener id with status error 400 instead of 404 ([febbe2d](https://github.com/powerhouse-inc/document-model-electron/commit/febbe2d2499fe68704044ef145cd3fa77c1196a5)) -* handle modal opening ([9404452](https://github.com/powerhouse-inc/document-model-electron/commit/9404452521f66177c859ebcf3fdea1ef5ad8002a)) -* handle url navigation ([fe18c02](https://github.com/powerhouse-inc/document-model-electron/commit/fe18c02cd3a3c795f87a0f7b90fb3ecb21b0ee4c)) -* ignore AbortError when user cancels file picker ([9c3cf4d](https://github.com/powerhouse-inc/document-model-electron/commit/9c3cf4d47b1d28442b21c491e7443c48969b5140)) -* include copy and move handlers ([3b1342f](https://github.com/powerhouse-inc/document-model-electron/commit/3b1342f4ceb9c07eb1e1175daeb4647fde1d8792)) -* integrate revision history ([3edb50a](https://github.com/powerhouse-inc/document-model-electron/commit/3edb50ac4d93693c1caa9adc2a0167d16a1fadb0)) -* make sure move target is not existing parent ([f96a9e3](https://github.com/powerhouse-inc/document-model-electron/commit/f96a9e37a4318aee2dc93690d3288e0b3e2ab4f1)) -* merge branch 'develop' into staging ([92680ec](https://github.com/powerhouse-inc/document-model-electron/commit/92680eca2ffedb80b5f88fb5f671aaced6229f1b)) -* merge branch 'develop' into staging ([5eefcd8](https://github.com/powerhouse-inc/document-model-electron/commit/5eefcd8bb7c3e6cb3a930d0d5fd91c516e07e8ae)) -* merge branch 'staging' into deployments/staging/makerdao ([bc2bd10](https://github.com/powerhouse-inc/document-model-electron/commit/bc2bd10b75865d8b6104be80a464d44375fe3e5a)) -* move modals out of components ([300d094](https://github.com/powerhouse-inc/document-model-electron/commit/300d0947f54eb1893601542c26bb780767356cde)) -* only copy icons post install ([9866258](https://github.com/powerhouse-inc/document-model-electron/commit/9866258f1da336e3161232e279b68bbaf7c901b0)) -* outdated app check improvements ([800b4b2](https://github.com/powerhouse-inc/document-model-electron/commit/800b4b25952417f7ecfdd78ecf3db291776d14a9)) -* push operations by chunks ([ec6c80b](https://github.com/powerhouse-inc/document-model-electron/commit/ec6c80b42fbb08b07d8bbd4ed2aad936da647680)) -* readd drive by slug ([631bcc3](https://github.com/powerhouse-inc/document-model-electron/commit/631bcc36fafaa9fe8502820d9ac872563377d32a)) -* readd drive error handler ([42b647b](https://github.com/powerhouse-inc/document-model-electron/commit/42b647bd570caf94f66bcff9fcaae4368ecc3f42)) -* regenerate lockfile ([b88daf9](https://github.com/powerhouse-inc/document-model-electron/commit/b88daf91e491729e7b25e4e490293be0fa57cd63)) -* regenerate lockfile ([4048486](https://github.com/powerhouse-inc/document-model-electron/commit/404848647c21309a9dd9f0a4a28583a9640c9bd8)) -* regenerate lockfile ([1cda4b3](https://github.com/powerhouse-inc/document-model-electron/commit/1cda4b33f8174ad9b447973a5f074a4cab131bd1)) -* regenerate lockfile ([184a379](https://github.com/powerhouse-inc/document-model-electron/commit/184a379d04c60e2f1404639ad1cd76185bb589e6)) -* regenerate lockfile ([0095c6b](https://github.com/powerhouse-inc/document-model-electron/commit/0095c6b5159f8c768566778454e0286069fed1e5)) -* register new pullResponderTrigger when the current one is not longer valid ([1a96a4d](https://github.com/powerhouse-inc/document-model-electron/commit/1a96a4d291ccb430f8f960ea7450c90dd1e0ae43)) -* reload default drives when config has been updated ([edd9bfc](https://github.com/powerhouse-inc/document-model-electron/commit/edd9bfc1f1914c13855343d77b6fc8029df6f737)) -* remove copy icons script ([23a309a](https://github.com/powerhouse-inc/document-model-electron/commit/23a309a181711bc150c65ee931138f0ba822de0a)) -* remove csp ([fdff1c6](https://github.com/powerhouse-inc/document-model-electron/commit/fdff1c653a0dd744ea5db01561d029ef466bb600)) -* remove old store tabs ([816406e](https://github.com/powerhouse-inc/document-model-electron/commit/816406e8a04a48ac3dc659a8274162693f4d735f)) -* remove old tabs ([8a7f62d](https://github.com/powerhouse-inc/document-model-electron/commit/8a7f62dd4e6f2145f0f86fd3652a63645624e5da)) -* remove react aria drag and drop ([80e0353](https://github.com/powerhouse-inc/document-model-electron/commit/80e035328daa59c423cde9199887df11b54b0934)) -* remove selected node check ([0803390](https://github.com/powerhouse-inc/document-model-electron/commit/0803390c9281bb7c30c9908fca8fffeb55bcb034)) -* removed file extension when importing a document file ([b2da3b0](https://github.com/powerhouse-inc/document-model-electron/commit/b2da3b05eba3af229a99667c6d454d51aaec3bfd)) -* rename hook for clarity ([f48848e](https://github.com/powerhouse-inc/document-model-electron/commit/f48848e269c6a3c494b447097994d34e350d99c9)) -* replaced react-window by tanstack/react-virtual ([7e9b024](https://github.com/powerhouse-inc/document-model-electron/commit/7e9b024fefbadcb36640e5757f33b9f83ed369be)) -* set VITE_RWA_ALLOW_LIST ([34c5dad](https://github.com/powerhouse-inc/document-model-electron/commit/34c5dad0e6c384c81980bd7f6622842d922c9da8)) -* simplify passing of props ([c7c3779](https://github.com/powerhouse-inc/document-model-electron/commit/c7c377933fe83e2612c97194de3d8a22eb1e579c)) -* sort folders and files alphabetically ([74aa081](https://github.com/powerhouse-inc/document-model-electron/commit/74aa081a2b01325101321f5baffe14b523e9b53b)) -* split file creation and operations push ([ce1ede8](https://github.com/powerhouse-inc/document-model-electron/commit/ce1ede8b3df3a13dc12ac89d8106cbfc8ee1efc7)) -* split navigation functions out of hooks ([7be8044](https://github.com/powerhouse-inc/document-model-electron/commit/7be8044978c50f2691121b9e92df4110ef95e906)) -* update document-drive ([2b95857](https://github.com/powerhouse-inc/document-model-electron/commit/2b958573b812147f09e006025f465879c894ca02)) -* update document-model 1.7.0 ([02e8083](https://github.com/powerhouse-inc/document-model-electron/commit/02e80837c097fc339933a74907647c9547156b53)) -* update node lifecycle scripts ([e959228](https://github.com/powerhouse-inc/document-model-electron/commit/e959228254441df256a4477812b941623c64feea)) -* update query ([3ca3f2a](https://github.com/powerhouse-inc/document-model-electron/commit/3ca3f2a4e25f8ab1a650630ae8e67f500097da09)) -* updated document model deps ([efc3814](https://github.com/powerhouse-inc/document-model-electron/commit/efc38147792002975a87e433d2cf7f4091534b5e)) -* updated renown url ([b2ddc9d](https://github.com/powerhouse-inc/document-model-electron/commit/b2ddc9dda69791a75047afd4ad8436ad6e3cc327)) -* use function for slug ([f107e92](https://github.com/powerhouse-inc/document-model-electron/commit/f107e92cff8e8a302abfa8c3822c9385de79c4ac)) -* use new ui nodes context ([fa5dba4](https://github.com/powerhouse-inc/document-model-electron/commit/fa5dba456879cca391f40fbf4d1a6aaa4e2bfeef)) -* use node parent folder in tree item ([8513783](https://github.com/powerhouse-inc/document-model-electron/commit/851378308a8d4cd49ffb1ec462e8e6ac546ed04a)) -* use src name in copy ([409cff0](https://github.com/powerhouse-inc/document-model-electron/commit/409cff0dd75cd827e3103acd8d22a4a6a117d66f)) +- add animated loader for editors ([0ef0cc5](https://github.com/powerhouse-inc/document-model-electron/commit/0ef0cc587bb04d3fa65a4fd133c4c42f5998c92c)) +- add comments ([a5e81b2](https://github.com/powerhouse-inc/document-model-electron/commit/a5e81b22b1d634548a6323ef5b4a5efa2b0a87ec)) +- add file icon logic ([3ba0aae](https://github.com/powerhouse-inc/document-model-electron/commit/3ba0aae6d692a2368b19e1defeb655d582c5c220)) +- add node slugs ([e6a538a](https://github.com/powerhouse-inc/document-model-electron/commit/e6a538a39d00ad7c5fa9873805ae8532ac009259)) +- add suspense for editor component ([62f78e7](https://github.com/powerhouse-inc/document-model-electron/commit/62f78e7b2288c4ce346c9bcfde638c9fc943145f)) +- add wagmi context ([7f638be](https://github.com/powerhouse-inc/document-model-electron/commit/7f638be54fc5b778c7abd9f991d0b01f6606cf59)) +- added base e2e tests ([fab24e1](https://github.com/powerhouse-inc/document-model-electron/commit/fab24e14247b31a96df09ccc17e7a3d05b065194)) +- added debug tools modal ([c88989b](https://github.com/powerhouse-inc/document-model-electron/commit/c88989b3b29f501089234dcfc3a03ae94cc6d009)) +- added sign operation ([0427a11](https://github.com/powerhouse-inc/document-model-electron/commit/0427a11283e675c2c16dca4fd1cccffbeeecb420)) +- added user tracking for sentry ([2a98795](https://github.com/powerhouse-inc/document-model-electron/commit/2a987956c6d77705b73a32090adb34799325f847)) +- allow renown.id ([63fda39](https://github.com/powerhouse-inc/document-model-electron/commit/63fda3999ab7d5748783c89da909ef30d7794407)) +- allow url for file ([d7b762d](https://github.com/powerhouse-inc/document-model-electron/commit/d7b762d7c79c679acb212f4bfc3da50c010d397a)) +- bump design system ([5870d52](https://github.com/powerhouse-inc/document-model-electron/commit/5870d5285014f3ee721af522c042a06cc8b18d51)) +- bump design system ([09079b6](https://github.com/powerhouse-inc/document-model-electron/commit/09079b6534eed29bdacf6017675e720078ff0e80)) +- bump design system ([8d322c1](https://github.com/powerhouse-inc/document-model-electron/commit/8d322c1e1096c0ceb0be787dbd186e6f19ac2a54)) +- bump document-model-libs ([9f5516c](https://github.com/powerhouse-inc/document-model-electron/commit/9f5516c502769a4056e36d92187595c0ea53ea33)) +- bump libs ([67c43fe](https://github.com/powerhouse-inc/document-model-electron/commit/67c43fe7257f9bd5890f89105417ed193353491e)) +- bump libs ([977b43f](https://github.com/powerhouse-inc/document-model-electron/commit/977b43ff4611b34de8591047393f5fc328e80029)) +- bump libs ([2837f01](https://github.com/powerhouse-inc/document-model-electron/commit/2837f01af47c38bb132e887cc5717f52bab71731)) +- bump libs ([72ff365](https://github.com/powerhouse-inc/document-model-electron/commit/72ff365bfd8d76227bad15203366cb49a5297b73)) +- bump libs ([e431ef5](https://github.com/powerhouse-inc/document-model-electron/commit/e431ef529c7e2c6ff3e016b22ef4c1573c8e480e)) +- bump libs ([3db0a2b](https://github.com/powerhouse-inc/document-model-electron/commit/3db0a2baaf3e8739782ff7c7800147d5fcd13e07)) +- bump libs ([415ca8e](https://github.com/powerhouse-inc/document-model-electron/commit/415ca8e37fe56ee2c8c654cc1380cd7586610ca8)) +- check status code and error message when handling invalid listenerId ([86982ff](https://github.com/powerhouse-inc/document-model-electron/commit/86982ffa16aea9667f6083263ecea8c8ac49ad43)) +- disable sync icon for local folders ([9996fa3](https://github.com/powerhouse-inc/document-model-electron/commit/9996fa3f8b11edd5da0d16185c44822ddfec9233)) +- enabled support for multiple default drives ([8f6386b](https://github.com/powerhouse-inc/document-model-electron/commit/8f6386bec7a6e0f5c241baaf8fe153b06dfa33c4)) +- expect undefined document ([d10ef75](https://github.com/powerhouse-inc/document-model-electron/commit/d10ef751d363f56dce29626ec8fbcc7d38fe945a)) +- fix merge conflict when adding a new pullResponder ([6941c0a](https://github.com/powerhouse-inc/document-model-electron/commit/6941c0a836cd43aca631b626f2312957a201ca50)) +- fix renown url ([b46dd75](https://github.com/powerhouse-inc/document-model-electron/commit/b46dd750eaf0fb01f1c25fd63ff150fab8f79484)) +- fix sidebar props ([11b50b4](https://github.com/powerhouse-inc/document-model-electron/commit/11b50b453b802cc97dde620df4b6e1b1ad97cd6a)) +- fixed file import ([b5d4d72](https://github.com/powerhouse-inc/document-model-electron/commit/b5d4d72fbed6f7540b0a33849e829311b4e4af92)) +- handle async editor switching ([453939b](https://github.com/powerhouse-inc/document-model-electron/commit/453939bdb2f110dca48a61e91707aaee3eeb9b9d)) +- handle back button clicked when editor open ([99b58e1](https://github.com/powerhouse-inc/document-model-electron/commit/99b58e1a2fc286b3258e8c0232f7d21deb5516f3)) +- handle delete ([d541580](https://github.com/powerhouse-inc/document-model-electron/commit/d5415807add427e013d71df4cd7754618c423e22)) +- handle drive id change is history ([07c9aeb](https://github.com/powerhouse-inc/document-model-electron/commit/07c9aeb41d345ef4435044352b9d4f417f7e98ff)) +- handle history stack ([c1fb104](https://github.com/powerhouse-inc/document-model-electron/commit/c1fb104bbbe4c8cde3277d62f27348b66b249123)) +- handle invalid listener id with status error 400 instead of 404 ([febbe2d](https://github.com/powerhouse-inc/document-model-electron/commit/febbe2d2499fe68704044ef145cd3fa77c1196a5)) +- handle modal opening ([9404452](https://github.com/powerhouse-inc/document-model-electron/commit/9404452521f66177c859ebcf3fdea1ef5ad8002a)) +- handle url navigation ([fe18c02](https://github.com/powerhouse-inc/document-model-electron/commit/fe18c02cd3a3c795f87a0f7b90fb3ecb21b0ee4c)) +- ignore AbortError when user cancels file picker ([9c3cf4d](https://github.com/powerhouse-inc/document-model-electron/commit/9c3cf4d47b1d28442b21c491e7443c48969b5140)) +- include copy and move handlers ([3b1342f](https://github.com/powerhouse-inc/document-model-electron/commit/3b1342f4ceb9c07eb1e1175daeb4647fde1d8792)) +- integrate revision history ([3edb50a](https://github.com/powerhouse-inc/document-model-electron/commit/3edb50ac4d93693c1caa9adc2a0167d16a1fadb0)) +- make sure move target is not existing parent ([f96a9e3](https://github.com/powerhouse-inc/document-model-electron/commit/f96a9e37a4318aee2dc93690d3288e0b3e2ab4f1)) +- merge branch 'develop' into staging ([92680ec](https://github.com/powerhouse-inc/document-model-electron/commit/92680eca2ffedb80b5f88fb5f671aaced6229f1b)) +- merge branch 'develop' into staging ([5eefcd8](https://github.com/powerhouse-inc/document-model-electron/commit/5eefcd8bb7c3e6cb3a930d0d5fd91c516e07e8ae)) +- merge branch 'staging' into deployments/staging/makerdao ([bc2bd10](https://github.com/powerhouse-inc/document-model-electron/commit/bc2bd10b75865d8b6104be80a464d44375fe3e5a)) +- move modals out of components ([300d094](https://github.com/powerhouse-inc/document-model-electron/commit/300d0947f54eb1893601542c26bb780767356cde)) +- only copy icons post install ([9866258](https://github.com/powerhouse-inc/document-model-electron/commit/9866258f1da336e3161232e279b68bbaf7c901b0)) +- outdated app check improvements ([800b4b2](https://github.com/powerhouse-inc/document-model-electron/commit/800b4b25952417f7ecfdd78ecf3db291776d14a9)) +- push operations by chunks ([ec6c80b](https://github.com/powerhouse-inc/document-model-electron/commit/ec6c80b42fbb08b07d8bbd4ed2aad936da647680)) +- readd drive by slug ([631bcc3](https://github.com/powerhouse-inc/document-model-electron/commit/631bcc36fafaa9fe8502820d9ac872563377d32a)) +- readd drive error handler ([42b647b](https://github.com/powerhouse-inc/document-model-electron/commit/42b647bd570caf94f66bcff9fcaae4368ecc3f42)) +- regenerate lockfile ([b88daf9](https://github.com/powerhouse-inc/document-model-electron/commit/b88daf91e491729e7b25e4e490293be0fa57cd63)) +- regenerate lockfile ([4048486](https://github.com/powerhouse-inc/document-model-electron/commit/404848647c21309a9dd9f0a4a28583a9640c9bd8)) +- regenerate lockfile ([1cda4b3](https://github.com/powerhouse-inc/document-model-electron/commit/1cda4b33f8174ad9b447973a5f074a4cab131bd1)) +- regenerate lockfile ([184a379](https://github.com/powerhouse-inc/document-model-electron/commit/184a379d04c60e2f1404639ad1cd76185bb589e6)) +- regenerate lockfile ([0095c6b](https://github.com/powerhouse-inc/document-model-electron/commit/0095c6b5159f8c768566778454e0286069fed1e5)) +- register new pullResponderTrigger when the current one is not longer valid ([1a96a4d](https://github.com/powerhouse-inc/document-model-electron/commit/1a96a4d291ccb430f8f960ea7450c90dd1e0ae43)) +- reload default drives when config has been updated ([edd9bfc](https://github.com/powerhouse-inc/document-model-electron/commit/edd9bfc1f1914c13855343d77b6fc8029df6f737)) +- remove copy icons script ([23a309a](https://github.com/powerhouse-inc/document-model-electron/commit/23a309a181711bc150c65ee931138f0ba822de0a)) +- remove csp ([fdff1c6](https://github.com/powerhouse-inc/document-model-electron/commit/fdff1c653a0dd744ea5db01561d029ef466bb600)) +- remove old store tabs ([816406e](https://github.com/powerhouse-inc/document-model-electron/commit/816406e8a04a48ac3dc659a8274162693f4d735f)) +- remove old tabs ([8a7f62d](https://github.com/powerhouse-inc/document-model-electron/commit/8a7f62dd4e6f2145f0f86fd3652a63645624e5da)) +- remove react aria drag and drop ([80e0353](https://github.com/powerhouse-inc/document-model-electron/commit/80e035328daa59c423cde9199887df11b54b0934)) +- remove selected node check ([0803390](https://github.com/powerhouse-inc/document-model-electron/commit/0803390c9281bb7c30c9908fca8fffeb55bcb034)) +- removed file extension when importing a document file ([b2da3b0](https://github.com/powerhouse-inc/document-model-electron/commit/b2da3b05eba3af229a99667c6d454d51aaec3bfd)) +- rename hook for clarity ([f48848e](https://github.com/powerhouse-inc/document-model-electron/commit/f48848e269c6a3c494b447097994d34e350d99c9)) +- replaced react-window by tanstack/react-virtual ([7e9b024](https://github.com/powerhouse-inc/document-model-electron/commit/7e9b024fefbadcb36640e5757f33b9f83ed369be)) +- set VITE_RWA_ALLOW_LIST ([34c5dad](https://github.com/powerhouse-inc/document-model-electron/commit/34c5dad0e6c384c81980bd7f6622842d922c9da8)) +- simplify passing of props ([c7c3779](https://github.com/powerhouse-inc/document-model-electron/commit/c7c377933fe83e2612c97194de3d8a22eb1e579c)) +- sort folders and files alphabetically ([74aa081](https://github.com/powerhouse-inc/document-model-electron/commit/74aa081a2b01325101321f5baffe14b523e9b53b)) +- split file creation and operations push ([ce1ede8](https://github.com/powerhouse-inc/document-model-electron/commit/ce1ede8b3df3a13dc12ac89d8106cbfc8ee1efc7)) +- split navigation functions out of hooks ([7be8044](https://github.com/powerhouse-inc/document-model-electron/commit/7be8044978c50f2691121b9e92df4110ef95e906)) +- update document-drive ([2b95857](https://github.com/powerhouse-inc/document-model-electron/commit/2b958573b812147f09e006025f465879c894ca02)) +- update document-model 1.7.0 ([02e8083](https://github.com/powerhouse-inc/document-model-electron/commit/02e80837c097fc339933a74907647c9547156b53)) +- update node lifecycle scripts ([e959228](https://github.com/powerhouse-inc/document-model-electron/commit/e959228254441df256a4477812b941623c64feea)) +- update query ([3ca3f2a](https://github.com/powerhouse-inc/document-model-electron/commit/3ca3f2a4e25f8ab1a650630ae8e67f500097da09)) +- updated document model deps ([efc3814](https://github.com/powerhouse-inc/document-model-electron/commit/efc38147792002975a87e433d2cf7f4091534b5e)) +- updated renown url ([b2ddc9d](https://github.com/powerhouse-inc/document-model-electron/commit/b2ddc9dda69791a75047afd4ad8436ad6e3cc327)) +- use function for slug ([f107e92](https://github.com/powerhouse-inc/document-model-electron/commit/f107e92cff8e8a302abfa8c3822c9385de79c4ac)) +- use new ui nodes context ([fa5dba4](https://github.com/powerhouse-inc/document-model-electron/commit/fa5dba456879cca391f40fbf4d1a6aaa4e2bfeef)) +- use node parent folder in tree item ([8513783](https://github.com/powerhouse-inc/document-model-electron/commit/851378308a8d4cd49ffb1ec462e8e6ac546ed04a)) +- use src name in copy ([409cff0](https://github.com/powerhouse-inc/document-model-electron/commit/409cff0dd75cd827e3103acd8d22a4a6a117d66f)) # [1.0.0-next.5](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-next.4...v1.0.0-next.5) (2024-07-30) - ### Bug Fixes -* renown env var ([0b6bb86](https://github.com/powerhouse-inc/document-model-electron/commit/0b6bb86c10a525462f45db82a1cd5607b16a88be)) +- renown env var ([0b6bb86](https://github.com/powerhouse-inc/document-model-electron/commit/0b6bb86c10a525462f45db82a1cd5607b16a88be)) # [1.0.0-next.4](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-next.3...v1.0.0-next.4) (2024-07-01) -======= -* updated document model deps ([efc3814](https://github.com/powerhouse-inc/document-model-electron/commit/efc38147792002975a87e433d2cf7f4091534b5e)) - -# [1.0.0-dev.55](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-dev.54...v1.0.0-dev.55) (2024-08-02) ->>>>>>> develop - ### Features -* bump libs ([67c43fe](https://github.com/powerhouse-inc/document-model-electron/commit/67c43fe7257f9bd5890f89105417ed193353491e)) +- bump libs ([67c43fe](https://github.com/powerhouse-inc/document-model-electron/commit/67c43fe7257f9bd5890f89105417ed193353491e)) # [1.0.0-dev.54](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-dev.53...v1.0.0-dev.54) (2024-08-01) - ### Features -* outdated app check improvements ([800b4b2](https://github.com/powerhouse-inc/document-model-electron/commit/800b4b25952417f7ecfdd78ecf3db291776d14a9)) +- outdated app check improvements ([800b4b2](https://github.com/powerhouse-inc/document-model-electron/commit/800b4b25952417f7ecfdd78ecf3db291776d14a9)) # [1.0.0-dev.53](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-dev.52...v1.0.0-dev.53) (2024-08-01) - ### Features -* add animated loader for editors ([0ef0cc5](https://github.com/powerhouse-inc/document-model-electron/commit/0ef0cc587bb04d3fa65a4fd133c4c42f5998c92c)) +- add animated loader for editors ([0ef0cc5](https://github.com/powerhouse-inc/document-model-electron/commit/0ef0cc587bb04d3fa65a4fd133c4c42f5998c92c)) # [1.0.0-dev.52](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-dev.51...v1.0.0-dev.52) (2024-08-01) - ### Features -* add suspense for editor component ([62f78e7](https://github.com/powerhouse-inc/document-model-electron/commit/62f78e7b2288c4ce346c9bcfde638c9fc943145f)) -* expect undefined document ([d10ef75](https://github.com/powerhouse-inc/document-model-electron/commit/d10ef751d363f56dce29626ec8fbcc7d38fe945a)) -* handle async editor switching ([453939b](https://github.com/powerhouse-inc/document-model-electron/commit/453939bdb2f110dca48a61e91707aaee3eeb9b9d)) -* remove old store tabs ([816406e](https://github.com/powerhouse-inc/document-model-electron/commit/816406e8a04a48ac3dc659a8274162693f4d735f)) +- add suspense for editor component ([62f78e7](https://github.com/powerhouse-inc/document-model-electron/commit/62f78e7b2288c4ce346c9bcfde638c9fc943145f)) +- expect undefined document ([d10ef75](https://github.com/powerhouse-inc/document-model-electron/commit/d10ef751d363f56dce29626ec8fbcc7d38fe945a)) +- handle async editor switching ([453939b](https://github.com/powerhouse-inc/document-model-electron/commit/453939bdb2f110dca48a61e91707aaee3eeb9b9d)) +- remove old store tabs ([816406e](https://github.com/powerhouse-inc/document-model-electron/commit/816406e8a04a48ac3dc659a8274162693f4d735f)) # [1.0.0-dev.51](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-dev.50...v1.0.0-dev.51) (2024-07-31) - ### Features -* remove copy icons script ([23a309a](https://github.com/powerhouse-inc/document-model-electron/commit/23a309a181711bc150c65ee931138f0ba822de0a)) +- remove copy icons script ([23a309a](https://github.com/powerhouse-inc/document-model-electron/commit/23a309a181711bc150c65ee931138f0ba822de0a)) # [1.0.0-dev.50](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-dev.49...v1.0.0-dev.50) (2024-07-31) - ### Features -* bump document-model-libs ([9f5516c](https://github.com/powerhouse-inc/document-model-electron/commit/9f5516c502769a4056e36d92187595c0ea53ea33)) -* include copy and move handlers ([3b1342f](https://github.com/powerhouse-inc/document-model-electron/commit/3b1342f4ceb9c07eb1e1175daeb4647fde1d8792)) -* only copy icons post install ([9866258](https://github.com/powerhouse-inc/document-model-electron/commit/9866258f1da336e3161232e279b68bbaf7c901b0)) -* remove old tabs ([8a7f62d](https://github.com/powerhouse-inc/document-model-electron/commit/8a7f62dd4e6f2145f0f86fd3652a63645624e5da)) -* remove react aria drag and drop ([80e0353](https://github.com/powerhouse-inc/document-model-electron/commit/80e035328daa59c423cde9199887df11b54b0934)) -* update node lifecycle scripts ([e959228](https://github.com/powerhouse-inc/document-model-electron/commit/e959228254441df256a4477812b941623c64feea)) +- bump document-model-libs ([9f5516c](https://github.com/powerhouse-inc/document-model-electron/commit/9f5516c502769a4056e36d92187595c0ea53ea33)) +- include copy and move handlers ([3b1342f](https://github.com/powerhouse-inc/document-model-electron/commit/3b1342f4ceb9c07eb1e1175daeb4647fde1d8792)) +- only copy icons post install ([9866258](https://github.com/powerhouse-inc/document-model-electron/commit/9866258f1da336e3161232e279b68bbaf7c901b0)) +- remove old tabs ([8a7f62d](https://github.com/powerhouse-inc/document-model-electron/commit/8a7f62dd4e6f2145f0f86fd3652a63645624e5da)) +- remove react aria drag and drop ([80e0353](https://github.com/powerhouse-inc/document-model-electron/commit/80e035328daa59c423cde9199887df11b54b0934)) +- update node lifecycle scripts ([e959228](https://github.com/powerhouse-inc/document-model-electron/commit/e959228254441df256a4477812b941623c64feea)) # [1.0.0-dev.49](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-dev.48...v1.0.0-dev.49) (2024-07-30) - ### Features -* regenerate lockfile ([b88daf9](https://github.com/powerhouse-inc/document-model-electron/commit/b88daf91e491729e7b25e4e490293be0fa57cd63)) +- regenerate lockfile ([b88daf9](https://github.com/powerhouse-inc/document-model-electron/commit/b88daf91e491729e7b25e4e490293be0fa57cd63)) # [1.0.0-dev.48](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-dev.47...v1.0.0-dev.48) (2024-07-30) - ### Features -* bump design system ([5870d52](https://github.com/powerhouse-inc/document-model-electron/commit/5870d5285014f3ee721af522c042a06cc8b18d51)) +- bump design system ([5870d52](https://github.com/powerhouse-inc/document-model-electron/commit/5870d5285014f3ee721af522c042a06cc8b18d51)) # [1.0.0-dev.47](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-dev.46...v1.0.0-dev.47) (2024-07-29) - ### Features -* add comments ([a5e81b2](https://github.com/powerhouse-inc/document-model-electron/commit/a5e81b22b1d634548a6323ef5b4a5efa2b0a87ec)) -* add node slugs ([e6a538a](https://github.com/powerhouse-inc/document-model-electron/commit/e6a538a39d00ad7c5fa9873805ae8532ac009259)) -* bump libs ([977b43f](https://github.com/powerhouse-inc/document-model-electron/commit/977b43ff4611b34de8591047393f5fc328e80029)) -* handle delete ([d541580](https://github.com/powerhouse-inc/document-model-electron/commit/d5415807add427e013d71df4cd7754618c423e22)) -* handle drive id change is history ([07c9aeb](https://github.com/powerhouse-inc/document-model-electron/commit/07c9aeb41d345ef4435044352b9d4f417f7e98ff)) -* handle history stack ([c1fb104](https://github.com/powerhouse-inc/document-model-electron/commit/c1fb104bbbe4c8cde3277d62f27348b66b249123)) -* handle modal opening ([9404452](https://github.com/powerhouse-inc/document-model-electron/commit/9404452521f66177c859ebcf3fdea1ef5ad8002a)) -* handle url navigation ([fe18c02](https://github.com/powerhouse-inc/document-model-electron/commit/fe18c02cd3a3c795f87a0f7b90fb3ecb21b0ee4c)) -* move modals out of components ([300d094](https://github.com/powerhouse-inc/document-model-electron/commit/300d0947f54eb1893601542c26bb780767356cde)) -* readd drive error handler ([42b647b](https://github.com/powerhouse-inc/document-model-electron/commit/42b647bd570caf94f66bcff9fcaae4368ecc3f42)) -* remove selected node check ([0803390](https://github.com/powerhouse-inc/document-model-electron/commit/0803390c9281bb7c30c9908fca8fffeb55bcb034)) -* rename hook for clarity ([f48848e](https://github.com/powerhouse-inc/document-model-electron/commit/f48848e269c6a3c494b447097994d34e350d99c9)) -* simplify passing of props ([c7c3779](https://github.com/powerhouse-inc/document-model-electron/commit/c7c377933fe83e2612c97194de3d8a22eb1e579c)) -* split navigation functions out of hooks ([7be8044](https://github.com/powerhouse-inc/document-model-electron/commit/7be8044978c50f2691121b9e92df4110ef95e906)) -* use function for slug ([f107e92](https://github.com/powerhouse-inc/document-model-electron/commit/f107e92cff8e8a302abfa8c3822c9385de79c4ac)) -* use new ui nodes context ([fa5dba4](https://github.com/powerhouse-inc/document-model-electron/commit/fa5dba456879cca391f40fbf4d1a6aaa4e2bfeef)) -* use src name in copy ([409cff0](https://github.com/powerhouse-inc/document-model-electron/commit/409cff0dd75cd827e3103acd8d22a4a6a117d66f)) +- add comments ([a5e81b2](https://github.com/powerhouse-inc/document-model-electron/commit/a5e81b22b1d634548a6323ef5b4a5efa2b0a87ec)) +- add node slugs ([e6a538a](https://github.com/powerhouse-inc/document-model-electron/commit/e6a538a39d00ad7c5fa9873805ae8532ac009259)) +- bump libs ([977b43f](https://github.com/powerhouse-inc/document-model-electron/commit/977b43ff4611b34de8591047393f5fc328e80029)) +- handle delete ([d541580](https://github.com/powerhouse-inc/document-model-electron/commit/d5415807add427e013d71df4cd7754618c423e22)) +- handle drive id change is history ([07c9aeb](https://github.com/powerhouse-inc/document-model-electron/commit/07c9aeb41d345ef4435044352b9d4f417f7e98ff)) +- handle history stack ([c1fb104](https://github.com/powerhouse-inc/document-model-electron/commit/c1fb104bbbe4c8cde3277d62f27348b66b249123)) +- handle modal opening ([9404452](https://github.com/powerhouse-inc/document-model-electron/commit/9404452521f66177c859ebcf3fdea1ef5ad8002a)) +- handle url navigation ([fe18c02](https://github.com/powerhouse-inc/document-model-electron/commit/fe18c02cd3a3c795f87a0f7b90fb3ecb21b0ee4c)) +- move modals out of components ([300d094](https://github.com/powerhouse-inc/document-model-electron/commit/300d0947f54eb1893601542c26bb780767356cde)) +- readd drive error handler ([42b647b](https://github.com/powerhouse-inc/document-model-electron/commit/42b647bd570caf94f66bcff9fcaae4368ecc3f42)) +- remove selected node check ([0803390](https://github.com/powerhouse-inc/document-model-electron/commit/0803390c9281bb7c30c9908fca8fffeb55bcb034)) +- rename hook for clarity ([f48848e](https://github.com/powerhouse-inc/document-model-electron/commit/f48848e269c6a3c494b447097994d34e350d99c9)) +- simplify passing of props ([c7c3779](https://github.com/powerhouse-inc/document-model-electron/commit/c7c377933fe83e2612c97194de3d8a22eb1e579c)) +- split navigation functions out of hooks ([7be8044](https://github.com/powerhouse-inc/document-model-electron/commit/7be8044978c50f2691121b9e92df4110ef95e906)) +- use function for slug ([f107e92](https://github.com/powerhouse-inc/document-model-electron/commit/f107e92cff8e8a302abfa8c3822c9385de79c4ac)) +- use new ui nodes context ([fa5dba4](https://github.com/powerhouse-inc/document-model-electron/commit/fa5dba456879cca391f40fbf4d1a6aaa4e2bfeef)) +- use src name in copy ([409cff0](https://github.com/powerhouse-inc/document-model-electron/commit/409cff0dd75cd827e3103acd8d22a4a6a117d66f)) # [1.0.0-dev.46](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-dev.45...v1.0.0-dev.46) (2024-07-26) - ### Features -* fix merge conflict when adding a new pullResponder ([6941c0a](https://github.com/powerhouse-inc/document-model-electron/commit/6941c0a836cd43aca631b626f2312957a201ca50)) +- fix merge conflict when adding a new pullResponder ([6941c0a](https://github.com/powerhouse-inc/document-model-electron/commit/6941c0a836cd43aca631b626f2312957a201ca50)) # [1.0.0-dev.45](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-dev.44...v1.0.0-dev.45) (2024-07-22) - ### Features -* ignore AbortError when user cancels file picker ([9c3cf4d](https://github.com/powerhouse-inc/document-model-electron/commit/9c3cf4d47b1d28442b21c491e7443c48969b5140)) +- ignore AbortError when user cancels file picker ([9c3cf4d](https://github.com/powerhouse-inc/document-model-electron/commit/9c3cf4d47b1d28442b21c491e7443c48969b5140)) # [1.0.0-dev.44](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-dev.43...v1.0.0-dev.44) (2024-07-17) - ### Features -* removed file extension when importing a document file ([b2da3b0](https://github.com/powerhouse-inc/document-model-electron/commit/b2da3b05eba3af229a99667c6d454d51aaec3bfd)) +- removed file extension when importing a document file ([b2da3b0](https://github.com/powerhouse-inc/document-model-electron/commit/b2da3b05eba3af229a99667c6d454d51aaec3bfd)) # [1.0.0-dev.43](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-dev.42...v1.0.0-dev.43) (2024-07-17) - ### Features -* added base e2e tests ([fab24e1](https://github.com/powerhouse-inc/document-model-electron/commit/fab24e14247b31a96df09ccc17e7a3d05b065194)) +- added base e2e tests ([fab24e1](https://github.com/powerhouse-inc/document-model-electron/commit/fab24e14247b31a96df09ccc17e7a3d05b065194)) # [1.0.0-dev.42](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-dev.41...v1.0.0-dev.42) (2024-07-11) - ### Features -* added debug tools modal ([c88989b](https://github.com/powerhouse-inc/document-model-electron/commit/c88989b3b29f501089234dcfc3a03ae94cc6d009)) +- added debug tools modal ([c88989b](https://github.com/powerhouse-inc/document-model-electron/commit/c88989b3b29f501089234dcfc3a03ae94cc6d009)) # [1.0.0-dev.41](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-dev.40...v1.0.0-dev.41) (2024-07-09) - ### Features -* reload default drives when config has been updated ([edd9bfc](https://github.com/powerhouse-inc/document-model-electron/commit/edd9bfc1f1914c13855343d77b6fc8029df6f737)) +- reload default drives when config has been updated ([edd9bfc](https://github.com/powerhouse-inc/document-model-electron/commit/edd9bfc1f1914c13855343d77b6fc8029df6f737)) # [1.0.0-dev.40](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-dev.39...v1.0.0-dev.40) (2024-07-09) - ### Bug Fixes -* endpoints for connect ([7c81639](https://github.com/powerhouse-inc/document-model-electron/commit/7c81639f01764ee0703c0a0313305f7557994f06)) -* semantic release ([b24fa8d](https://github.com/powerhouse-inc/document-model-electron/commit/b24fa8d03309c4f2f5d43372a34388dd0a168e59)) - +- endpoints for connect ([7c81639](https://github.com/powerhouse-inc/document-model-electron/commit/7c81639f01764ee0703c0a0313305f7557994f06)) +- semantic release ([b24fa8d](https://github.com/powerhouse-inc/document-model-electron/commit/b24fa8d03309c4f2f5d43372a34388dd0a168e59)) ### Features -* added addpublicdrive util ([4dc536f](https://github.com/powerhouse-inc/document-model-electron/commit/4dc536f82216f47a8db46225ac1f6d6e1f9c7a23)) -* added cypress CI config ([6418f6d](https://github.com/powerhouse-inc/document-model-electron/commit/6418f6d06b8f9d14012ab660a21f0b8b35af008a)) -* added Cypress Cloud Config ([24deddb](https://github.com/powerhouse-inc/document-model-electron/commit/24deddb0518dc49e14538e29045e56eeab735b62)) -* added cypress setup ([380db83](https://github.com/powerhouse-inc/document-model-electron/commit/380db83614f692230bbd11ebff63007599745f0d)) -* added develop environment ([4ceabce](https://github.com/powerhouse-inc/document-model-electron/commit/4ceabce3c8e5d43488abda4a83d524b59da0c338)) -* added develop to release cycle ([3e1058e](https://github.com/powerhouse-inc/document-model-electron/commit/3e1058eac31ac13d74aaed32418d6ac56ad4e3dd)) -* added reload Connect toast ([37cb55e](https://github.com/powerhouse-inc/document-model-electron/commit/37cb55ecf4b746025de9c613d176a250505559c6)) -* added version comparison ([866e979](https://github.com/powerhouse-inc/document-model-electron/commit/866e979684d884528cb06568ee92d02ec1253308)) -* avoid recreate fileOptions and clickOptionsHandler for each file node ([08557e9](https://github.com/powerhouse-inc/document-model-electron/commit/08557e983c663e58a0bb68534b11df579f9be045)) -* avoid recreate folderOptions and clickFolderOptionsHandler for each folder node ([efa90d2](https://github.com/powerhouse-inc/document-model-electron/commit/efa90d2664c025247ae6636a2c06706b12b1ad96)) -* bump libs ([e11a238](https://github.com/powerhouse-inc/document-model-electron/commit/e11a23886304d971c1bf8ae7db92cbbe63c5d185)) -* bump libs ([4e0863a](https://github.com/powerhouse-inc/document-model-electron/commit/4e0863af39e148053154fdcd2cb5ca5f3c801c6b)) -* bump libs ([87d0d1a](https://github.com/powerhouse-inc/document-model-electron/commit/87d0d1af3997d258065bcdf91f7eba74e1e845ae)) -* enabled sync icons for folders and files ([3e0451e](https://github.com/powerhouse-inc/document-model-electron/commit/3e0451e923151a497894c2b282a3324c11be2867)) -* moved isAllowedToCreateDocuments to folderView ([8ef573b](https://github.com/powerhouse-inc/document-model-electron/commit/8ef573bafb079ebf5e32e6611c25d85225fe6190)) -* re-use decodedDriveID ([bb11105](https://github.com/powerhouse-inc/document-model-electron/commit/bb111052681fd6fb73671ad026b16a22c03ec139)) -* removed debug code ([5f0c930](https://github.com/powerhouse-inc/document-model-electron/commit/5f0c930c3c2fb19dfbd46a957fda4655f8549a72)) -* update query ([2e5d77f](https://github.com/powerhouse-inc/document-model-electron/commit/2e5d77fdfd0cab9794563ef70e88954c9b99c73f)) -* updated design-system alpha 119 ([b337897](https://github.com/powerhouse-inc/document-model-electron/commit/b3378976dd6f75b11b028734ad0e4dee09918b33)) -* updated document drive ([39f3218](https://github.com/powerhouse-inc/document-model-electron/commit/39f3218c6919b4fb72a5641733da60b8eeac69c2)) -* updated document-drive ([2a08adb](https://github.com/powerhouse-inc/document-model-electron/commit/2a08adb7fdd6a46af4c8d8ff31c946e043dbb016)) -* updated libs ([adbadc1](https://github.com/powerhouse-inc/document-model-electron/commit/adbadc1d0b826acfc7e112d07d1c478496ac93cb)) -* updated release script ([d5b4fd6](https://github.com/powerhouse-inc/document-model-electron/commit/d5b4fd60008696328dea4bf69b382ed8e1be527e)) -* use memoized version of FileItem component ([8b0314b](https://github.com/powerhouse-inc/document-model-electron/commit/8b0314ba7ef8d538dc680d4a036b9c010a039273)) - +- added addpublicdrive util ([4dc536f](https://github.com/powerhouse-inc/document-model-electron/commit/4dc536f82216f47a8db46225ac1f6d6e1f9c7a23)) +- added cypress CI config ([6418f6d](https://github.com/powerhouse-inc/document-model-electron/commit/6418f6d06b8f9d14012ab660a21f0b8b35af008a)) +- added Cypress Cloud Config ([24deddb](https://github.com/powerhouse-inc/document-model-electron/commit/24deddb0518dc49e14538e29045e56eeab735b62)) +- added cypress setup ([380db83](https://github.com/powerhouse-inc/document-model-electron/commit/380db83614f692230bbd11ebff63007599745f0d)) +- added develop environment ([4ceabce](https://github.com/powerhouse-inc/document-model-electron/commit/4ceabce3c8e5d43488abda4a83d524b59da0c338)) +- added develop to release cycle ([3e1058e](https://github.com/powerhouse-inc/document-model-electron/commit/3e1058eac31ac13d74aaed32418d6ac56ad4e3dd)) +- added reload Connect toast ([37cb55e](https://github.com/powerhouse-inc/document-model-electron/commit/37cb55ecf4b746025de9c613d176a250505559c6)) +- added version comparison ([866e979](https://github.com/powerhouse-inc/document-model-electron/commit/866e979684d884528cb06568ee92d02ec1253308)) +- avoid recreate fileOptions and clickOptionsHandler for each file node ([08557e9](https://github.com/powerhouse-inc/document-model-electron/commit/08557e983c663e58a0bb68534b11df579f9be045)) +- avoid recreate folderOptions and clickFolderOptionsHandler for each folder node ([efa90d2](https://github.com/powerhouse-inc/document-model-electron/commit/efa90d2664c025247ae6636a2c06706b12b1ad96)) +- bump libs ([e11a238](https://github.com/powerhouse-inc/document-model-electron/commit/e11a23886304d971c1bf8ae7db92cbbe63c5d185)) +- bump libs ([4e0863a](https://github.com/powerhouse-inc/document-model-electron/commit/4e0863af39e148053154fdcd2cb5ca5f3c801c6b)) +- bump libs ([87d0d1a](https://github.com/powerhouse-inc/document-model-electron/commit/87d0d1af3997d258065bcdf91f7eba74e1e845ae)) +- enabled sync icons for folders and files ([3e0451e](https://github.com/powerhouse-inc/document-model-electron/commit/3e0451e923151a497894c2b282a3324c11be2867)) +- moved isAllowedToCreateDocuments to folderView ([8ef573b](https://github.com/powerhouse-inc/document-model-electron/commit/8ef573bafb079ebf5e32e6611c25d85225fe6190)) +- re-use decodedDriveID ([bb11105](https://github.com/powerhouse-inc/document-model-electron/commit/bb111052681fd6fb73671ad026b16a22c03ec139)) +- removed debug code ([5f0c930](https://github.com/powerhouse-inc/document-model-electron/commit/5f0c930c3c2fb19dfbd46a957fda4655f8549a72)) +- update query ([2e5d77f](https://github.com/powerhouse-inc/document-model-electron/commit/2e5d77fdfd0cab9794563ef70e88954c9b99c73f)) +- updated design-system alpha 119 ([b337897](https://github.com/powerhouse-inc/document-model-electron/commit/b3378976dd6f75b11b028734ad0e4dee09918b33)) +- updated document drive ([39f3218](https://github.com/powerhouse-inc/document-model-electron/commit/39f3218c6919b4fb72a5641733da60b8eeac69c2)) +- updated document-drive ([2a08adb](https://github.com/powerhouse-inc/document-model-electron/commit/2a08adb7fdd6a46af4c8d8ff31c946e043dbb016)) +- updated libs ([adbadc1](https://github.com/powerhouse-inc/document-model-electron/commit/adbadc1d0b826acfc7e112d07d1c478496ac93cb)) +- updated release script ([d5b4fd6](https://github.com/powerhouse-inc/document-model-electron/commit/d5b4fd60008696328dea4bf69b382ed8e1be527e)) +- use memoized version of FileItem component ([8b0314b](https://github.com/powerhouse-inc/document-model-electron/commit/8b0314ba7ef8d538dc680d4a036b9c010a039273)) ### Performance Improvements -* decode id only one when getting readable item path ([9d0b5ad](https://github.com/powerhouse-inc/document-model-electron/commit/9d0b5ad785a7a7e1c174f3190f87c6ee26f30251)) -* implemented scalable way to compare drive state ([bb5fecb](https://github.com/powerhouse-inc/document-model-electron/commit/bb5fecb8e31385abc5697a4635c2dfb0823ba853)) +- decode id only one when getting readable item path ([9d0b5ad](https://github.com/powerhouse-inc/document-model-electron/commit/9d0b5ad785a7a7e1c174f3190f87c6ee26f30251)) +- implemented scalable way to compare drive state ([bb5fecb](https://github.com/powerhouse-inc/document-model-electron/commit/bb5fecb8e31385abc5697a4635c2dfb0823ba853)) # [1.0.0-dev.39](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-dev.38...v1.0.0-dev.39) (2024-07-09) - ### Bug Fixes -* set old drive private and new drive public ([fa29b90](https://github.com/powerhouse-inc/document-model-electron/commit/fa29b9042e764cd58f96073f2967478372b289ce)) -* switchboard graphql query ([8d354d3](https://github.com/powerhouse-inc/document-model-electron/commit/8d354d33b8cf63cf4d2b34800b8ff2a77bb79646)) - +- set old drive private and new drive public ([fa29b90](https://github.com/powerhouse-inc/document-model-electron/commit/fa29b9042e764cd58f96073f2967478372b289ce)) +- switchboard graphql query ([8d354d3](https://github.com/powerhouse-inc/document-model-electron/commit/8d354d33b8cf63cf4d2b34800b8ff2a77bb79646)) ### Features -* readd drive by slug ([631bcc3](https://github.com/powerhouse-inc/document-model-electron/commit/631bcc36fafaa9fe8502820d9ac872563377d32a)) +- readd drive by slug ([631bcc3](https://github.com/powerhouse-inc/document-model-electron/commit/631bcc36fafaa9fe8502820d9ac872563377d32a)) # [1.0.0-dev.38](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-dev.37...v1.0.0-dev.38) (2024-07-08) - ### Features -* check status code and error message when handling invalid listenerId ([86982ff](https://github.com/powerhouse-inc/document-model-electron/commit/86982ffa16aea9667f6083263ecea8c8ac49ad43)) -* handle invalid listener id with status error 400 instead of 404 ([febbe2d](https://github.com/powerhouse-inc/document-model-electron/commit/febbe2d2499fe68704044ef145cd3fa77c1196a5)) +- check status code and error message when handling invalid listenerId ([86982ff](https://github.com/powerhouse-inc/document-model-electron/commit/86982ffa16aea9667f6083263ecea8c8ac49ad43)) +- handle invalid listener id with status error 400 instead of 404 ([febbe2d](https://github.com/powerhouse-inc/document-model-electron/commit/febbe2d2499fe68704044ef145cd3fa77c1196a5)) # [1.0.0-dev.37](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-dev.36...v1.0.0-dev.37) (2024-07-05) - ### Features -* enabled support for multiple default drives ([8f6386b](https://github.com/powerhouse-inc/document-model-electron/commit/8f6386bec7a6e0f5c241baaf8fe153b06dfa33c4)) +- enabled support for multiple default drives ([8f6386b](https://github.com/powerhouse-inc/document-model-electron/commit/8f6386bec7a6e0f5c241baaf8fe153b06dfa33c4)) # [1.0.0-dev.36](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-dev.35...v1.0.0-dev.36) (2024-07-05) - ### Features -* register new pullResponderTrigger when the current one is not longer valid ([1a96a4d](https://github.com/powerhouse-inc/document-model-electron/commit/1a96a4d291ccb430f8f960ea7450c90dd1e0ae43)) +- register new pullResponderTrigger when the current one is not longer valid ([1a96a4d](https://github.com/powerhouse-inc/document-model-electron/commit/1a96a4d291ccb430f8f960ea7450c90dd1e0ae43)) # [1.0.0-dev.35](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-dev.34...v1.0.0-dev.35) (2024-07-04) - ### Features -* sort folders and files alphabetically ([74aa081](https://github.com/powerhouse-inc/document-model-electron/commit/74aa081a2b01325101321f5baffe14b523e9b53b)) +- sort folders and files alphabetically ([74aa081](https://github.com/powerhouse-inc/document-model-electron/commit/74aa081a2b01325101321f5baffe14b523e9b53b)) # [1.0.0-dev.34](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-dev.33...v1.0.0-dev.34) (2024-07-04) - ### Bug Fixes -* refresh drive methods when user permissions change ([a9677cd](https://github.com/powerhouse-inc/document-model-electron/commit/a9677cd087bcc4655623aa224cf6bc5d07e99ee3)) +- refresh drive methods when user permissions change ([a9677cd](https://github.com/powerhouse-inc/document-model-electron/commit/a9677cd087bcc4655623aa224cf6bc5d07e99ee3)) # [1.0.0-dev.33](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-dev.32...v1.0.0-dev.33) (2024-07-03) - ### Features -* bump libs ([2837f01](https://github.com/powerhouse-inc/document-model-electron/commit/2837f01af47c38bb132e887cc5717f52bab71731)) +- bump libs ([2837f01](https://github.com/powerhouse-inc/document-model-electron/commit/2837f01af47c38bb132e887cc5717f52bab71731)) # [1.0.0-dev.32](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-dev.31...v1.0.0-dev.32) (2024-07-03) - ### Bug Fixes -* release ([387a9ed](https://github.com/powerhouse-inc/document-model-electron/commit/387a9edcdfb7de801ed83209a9fa1d127f61c305)) +- release ([387a9ed](https://github.com/powerhouse-inc/document-model-electron/commit/387a9edcdfb7de801ed83209a9fa1d127f61c305)) # [1.0.0-dev.31](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-dev.30...v1.0.0-dev.31) (2024-07-03) - ### Features -* bump libs ([72ff365](https://github.com/powerhouse-inc/document-model-electron/commit/72ff365bfd8d76227bad15203366cb49a5297b73)) +- bump libs ([72ff365](https://github.com/powerhouse-inc/document-model-electron/commit/72ff365bfd8d76227bad15203366cb49a5297b73)) # [1.0.0-dev.30](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-dev.29...v1.0.0-dev.30) (2024-07-02) - ### Features -* push operations by chunks ([ec6c80b](https://github.com/powerhouse-inc/document-model-electron/commit/ec6c80b42fbb08b07d8bbd4ed2aad936da647680)) +- push operations by chunks ([ec6c80b](https://github.com/powerhouse-inc/document-model-electron/commit/ec6c80b42fbb08b07d8bbd4ed2aad936da647680)) # [1.0.0-dev.29](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-dev.28...v1.0.0-dev.29) (2024-07-02) - ### Features -* allow renown.id ([63fda39](https://github.com/powerhouse-inc/document-model-electron/commit/63fda3999ab7d5748783c89da909ef30d7794407)) -* allow url for file ([d7b762d](https://github.com/powerhouse-inc/document-model-electron/commit/d7b762d7c79c679acb212f4bfc3da50c010d397a)) -* fix renown url ([b46dd75](https://github.com/powerhouse-inc/document-model-electron/commit/b46dd750eaf0fb01f1c25fd63ff150fab8f79484)) -* fixed file import ([b5d4d72](https://github.com/powerhouse-inc/document-model-electron/commit/b5d4d72fbed6f7540b0a33849e829311b4e4af92)) -* merge branch 'staging' into deployments/staging/makerdao ([bc2bd10](https://github.com/powerhouse-inc/document-model-electron/commit/bc2bd10b75865d8b6104be80a464d44375fe3e5a)) -* remove csp ([fdff1c6](https://github.com/powerhouse-inc/document-model-electron/commit/fdff1c653a0dd744ea5db01561d029ef466bb600)) -* set VITE_RWA_ALLOW_LIST ([34c5dad](https://github.com/powerhouse-inc/document-model-electron/commit/34c5dad0e6c384c81980bd7f6622842d922c9da8)) -* updated renown url ([b2ddc9d](https://github.com/powerhouse-inc/document-model-electron/commit/b2ddc9dda69791a75047afd4ad8436ad6e3cc327)) +- allow renown.id ([63fda39](https://github.com/powerhouse-inc/document-model-electron/commit/63fda3999ab7d5748783c89da909ef30d7794407)) +- allow url for file ([d7b762d](https://github.com/powerhouse-inc/document-model-electron/commit/d7b762d7c79c679acb212f4bfc3da50c010d397a)) +- fix renown url ([b46dd75](https://github.com/powerhouse-inc/document-model-electron/commit/b46dd750eaf0fb01f1c25fd63ff150fab8f79484)) +- fixed file import ([b5d4d72](https://github.com/powerhouse-inc/document-model-electron/commit/b5d4d72fbed6f7540b0a33849e829311b4e4af92)) +- merge branch 'staging' into deployments/staging/makerdao ([bc2bd10](https://github.com/powerhouse-inc/document-model-electron/commit/bc2bd10b75865d8b6104be80a464d44375fe3e5a)) +- remove csp ([fdff1c6](https://github.com/powerhouse-inc/document-model-electron/commit/fdff1c653a0dd744ea5db01561d029ef466bb600)) +- set VITE_RWA_ALLOW_LIST ([34c5dad](https://github.com/powerhouse-inc/document-model-electron/commit/34c5dad0e6c384c81980bd7f6622842d922c9da8)) +- updated renown url ([b2ddc9d](https://github.com/powerhouse-inc/document-model-electron/commit/b2ddc9dda69791a75047afd4ad8436ad6e3cc327)) # [1.0.0-dev.28](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-dev.27...v1.0.0-dev.28) (2024-07-02) - ### Features -* bump libs ([e431ef5](https://github.com/powerhouse-inc/document-model-electron/commit/e431ef529c7e2c6ff3e016b22ef4c1573c8e480e)) +- bump libs ([e431ef5](https://github.com/powerhouse-inc/document-model-electron/commit/e431ef529c7e2c6ff3e016b22ef4c1573c8e480e)) # [1.0.0-dev.27](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-dev.26...v1.0.0-dev.27) (2024-07-02) - ### Features -* split file creation and operations push ([ce1ede8](https://github.com/powerhouse-inc/document-model-electron/commit/ce1ede8b3df3a13dc12ac89d8106cbfc8ee1efc7)) +- split file creation and operations push ([ce1ede8](https://github.com/powerhouse-inc/document-model-electron/commit/ce1ede8b3df3a13dc12ac89d8106cbfc8ee1efc7)) # [1.0.0-dev.26](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-dev.25...v1.0.0-dev.26) (2024-07-02) - ### Features -* fix sidebar props ([11b50b4](https://github.com/powerhouse-inc/document-model-electron/commit/11b50b453b802cc97dde620df4b6e1b1ad97cd6a)) +- fix sidebar props ([11b50b4](https://github.com/powerhouse-inc/document-model-electron/commit/11b50b453b802cc97dde620df4b6e1b1ad97cd6a)) # [1.0.0-dev.25](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-dev.24...v1.0.0-dev.25) (2024-07-02) - ### Features -* add file icon logic ([3ba0aae](https://github.com/powerhouse-inc/document-model-electron/commit/3ba0aae6d692a2368b19e1defeb655d582c5c220)) -* add wagmi context ([7f638be](https://github.com/powerhouse-inc/document-model-electron/commit/7f638be54fc5b778c7abd9f991d0b01f6606cf59)) -* regenerate lockfile ([4048486](https://github.com/powerhouse-inc/document-model-electron/commit/404848647c21309a9dd9f0a4a28583a9640c9bd8)) +- add file icon logic ([3ba0aae](https://github.com/powerhouse-inc/document-model-electron/commit/3ba0aae6d692a2368b19e1defeb655d582c5c220)) +- add wagmi context ([7f638be](https://github.com/powerhouse-inc/document-model-electron/commit/7f638be54fc5b778c7abd9f991d0b01f6606cf59)) +- regenerate lockfile ([4048486](https://github.com/powerhouse-inc/document-model-electron/commit/404848647c21309a9dd9f0a4a28583a9640c9bd8)) # [1.0.0-dev.24](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-dev.23...v1.0.0-dev.24) (2024-07-02) - ### Features -* replaced react-window by tanstack/react-virtual ([7e9b024](https://github.com/powerhouse-inc/document-model-electron/commit/7e9b024fefbadcb36640e5757f33b9f83ed369be)) +- replaced react-window by tanstack/react-virtual ([7e9b024](https://github.com/powerhouse-inc/document-model-electron/commit/7e9b024fefbadcb36640e5757f33b9f83ed369be)) # [1.0.0-dev.23](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-dev.22...v1.0.0-dev.23) (2024-07-01) - ### Features -* update query ([3ca3f2a](https://github.com/powerhouse-inc/document-model-electron/commit/3ca3f2a4e25f8ab1a650630ae8e67f500097da09)) +- update query ([3ca3f2a](https://github.com/powerhouse-inc/document-model-electron/commit/3ca3f2a4e25f8ab1a650630ae8e67f500097da09)) # [1.0.0-dev.22](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-dev.21...v1.0.0-dev.22) (2024-07-01) - ### Features -* added sign operation ([0427a11](https://github.com/powerhouse-inc/document-model-electron/commit/0427a11283e675c2c16dca4fd1cccffbeeecb420)) -* regenerate lockfile ([1cda4b3](https://github.com/powerhouse-inc/document-model-electron/commit/1cda4b33f8174ad9b447973a5f074a4cab131bd1)) -* regenerate lockfile ([184a379](https://github.com/powerhouse-inc/document-model-electron/commit/184a379d04c60e2f1404639ad1cd76185bb589e6)) -* update document-drive ([2b95857](https://github.com/powerhouse-inc/document-model-electron/commit/2b958573b812147f09e006025f465879c894ca02)) -* update document-model 1.7.0 ([02e8083](https://github.com/powerhouse-inc/document-model-electron/commit/02e80837c097fc339933a74907647c9547156b53)) +- added sign operation ([0427a11](https://github.com/powerhouse-inc/document-model-electron/commit/0427a11283e675c2c16dca4fd1cccffbeeecb420)) +- regenerate lockfile ([1cda4b3](https://github.com/powerhouse-inc/document-model-electron/commit/1cda4b33f8174ad9b447973a5f074a4cab131bd1)) +- regenerate lockfile ([184a379](https://github.com/powerhouse-inc/document-model-electron/commit/184a379d04c60e2f1404639ad1cd76185bb589e6)) +- update document-drive ([2b95857](https://github.com/powerhouse-inc/document-model-electron/commit/2b958573b812147f09e006025f465879c894ca02)) +- update document-model 1.7.0 ([02e8083](https://github.com/powerhouse-inc/document-model-electron/commit/02e80837c097fc339933a74907647c9547156b53)) # [1.0.0-dev.21](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-dev.20...v1.0.0-dev.21) (2024-07-01) - ### Features -* bump design system ([09079b6](https://github.com/powerhouse-inc/document-model-electron/commit/09079b6534eed29bdacf6017675e720078ff0e80)) +- bump design system ([09079b6](https://github.com/powerhouse-inc/document-model-electron/commit/09079b6534eed29bdacf6017675e720078ff0e80)) # [1.0.0-dev.20](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-dev.19...v1.0.0-dev.20) (2024-06-28) - ### Features -* bump design system ([8d322c1](https://github.com/powerhouse-inc/document-model-electron/commit/8d322c1e1096c0ceb0be787dbd186e6f19ac2a54)) -* handle back button clicked when editor open ([99b58e1](https://github.com/powerhouse-inc/document-model-electron/commit/99b58e1a2fc286b3258e8c0232f7d21deb5516f3)) -* make sure move target is not existing parent ([f96a9e3](https://github.com/powerhouse-inc/document-model-electron/commit/f96a9e37a4318aee2dc93690d3288e0b3e2ab4f1)) -* regenerate lockfile ([0095c6b](https://github.com/powerhouse-inc/document-model-electron/commit/0095c6b5159f8c768566778454e0286069fed1e5)) -* use node parent folder in tree item ([8513783](https://github.com/powerhouse-inc/document-model-electron/commit/851378308a8d4cd49ffb1ec462e8e6ac546ed04a)) +- bump design system ([8d322c1](https://github.com/powerhouse-inc/document-model-electron/commit/8d322c1e1096c0ceb0be787dbd186e6f19ac2a54)) +- handle back button clicked when editor open ([99b58e1](https://github.com/powerhouse-inc/document-model-electron/commit/99b58e1a2fc286b3258e8c0232f7d21deb5516f3)) +- make sure move target is not existing parent ([f96a9e3](https://github.com/powerhouse-inc/document-model-electron/commit/f96a9e37a4318aee2dc93690d3288e0b3e2ab4f1)) +- regenerate lockfile ([0095c6b](https://github.com/powerhouse-inc/document-model-electron/commit/0095c6b5159f8c768566778454e0286069fed1e5)) +- use node parent folder in tree item ([8513783](https://github.com/powerhouse-inc/document-model-electron/commit/851378308a8d4cd49ffb1ec462e8e6ac546ed04a)) # [1.0.0-dev.19](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-dev.18...v1.0.0-dev.19) (2024-06-27) - ### Features -* disable sync icon for local folders ([9996fa3](https://github.com/powerhouse-inc/document-model-electron/commit/9996fa3f8b11edd5da0d16185c44822ddfec9233)) +- disable sync icon for local folders ([9996fa3](https://github.com/powerhouse-inc/document-model-electron/commit/9996fa3f8b11edd5da0d16185c44822ddfec9233)) # [1.0.0-dev.18](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-dev.17...v1.0.0-dev.18) (2024-06-27) - ### Features -* bump libs ([3db0a2b](https://github.com/powerhouse-inc/document-model-electron/commit/3db0a2baaf3e8739782ff7c7800147d5fcd13e07)) +- bump libs ([3db0a2b](https://github.com/powerhouse-inc/document-model-electron/commit/3db0a2baaf3e8739782ff7c7800147d5fcd13e07)) # [1.0.0-dev.17](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-dev.16...v1.0.0-dev.17) (2024-06-26) - ### Features -* integrate revision history ([3edb50a](https://github.com/powerhouse-inc/document-model-electron/commit/3edb50ac4d93693c1caa9adc2a0167d16a1fadb0)) +- integrate revision history ([3edb50a](https://github.com/powerhouse-inc/document-model-electron/commit/3edb50ac4d93693c1caa9adc2a0167d16a1fadb0)) # [1.0.0-dev.16](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-dev.15...v1.0.0-dev.16) (2024-06-25) - ### Features -* bump libs ([415ca8e](https://github.com/powerhouse-inc/document-model-electron/commit/415ca8e37fe56ee2c8c654cc1380cd7586610ca8)) +- bump libs ([415ca8e](https://github.com/powerhouse-inc/document-model-electron/commit/415ca8e37fe56ee2c8c654cc1380cd7586610ca8)) # [1.0.0-dev.15](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-dev.14...v1.0.0-dev.15) (2024-06-24) - ### Features -* added user tracking for sentry ([2a98795](https://github.com/powerhouse-inc/document-model-electron/commit/2a987956c6d77705b73a32090adb34799325f847)) +- added user tracking for sentry ([2a98795](https://github.com/powerhouse-inc/document-model-electron/commit/2a987956c6d77705b73a32090adb34799325f847)) # [1.0.0-dev.14](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-dev.13...v1.0.0-dev.14) (2024-06-24) - ### Bug Fixes -* remove resulting state from cache ([4d8c6fe](https://github.com/powerhouse-inc/document-model-electron/commit/4d8c6feef417c9254e12a9aac0c58d7769d34d84)) - +- remove resulting state from cache ([4d8c6fe](https://github.com/powerhouse-inc/document-model-electron/commit/4d8c6feef417c9254e12a9aac0c58d7769d34d84)) ### Features -* added virtualization for files content ([f8e9093](https://github.com/powerhouse-inc/document-model-electron/commit/f8e9093d72a8db79338c68220f09a83d4e7ea2be)) -* bump libs ([b3d7fa9](https://github.com/powerhouse-inc/document-model-electron/commit/b3d7fa9e0e9c52b12d5671f3db77425a6b343e9e)) +- added virtualization for files content ([f8e9093](https://github.com/powerhouse-inc/document-model-electron/commit/f8e9093d72a8db79338c68220f09a83d4e7ea2be)) +- bump libs ([b3d7fa9](https://github.com/powerhouse-inc/document-model-electron/commit/b3d7fa9e0e9c52b12d5671f3db77425a6b343e9e)) # [1.0.0-next.2](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-next.1...v1.0.0-next.2) (2024-06-20) - ### Bug Fixes -* endpoints for connect ([f35f853](https://github.com/powerhouse-inc/document-model-electron/commit/f35f8532e14475e74cc80119e5df0274f2b5f1e7)) -* semantic release ([1ccdf9e](https://github.com/powerhouse-inc/document-model-electron/commit/1ccdf9e6cbcaa9de8c9a51627311f94a032a039a)) - +- endpoints for connect ([f35f853](https://github.com/powerhouse-inc/document-model-electron/commit/f35f8532e14475e74cc80119e5df0274f2b5f1e7)) +- semantic release ([1ccdf9e](https://github.com/powerhouse-inc/document-model-electron/commit/1ccdf9e6cbcaa9de8c9a51627311f94a032a039a)) ### Features -* added addpublicdrive util ([123ed8b](https://github.com/powerhouse-inc/document-model-electron/commit/123ed8be07321eafcac2521f4ae7452e86a6895f)) -* added cypress CI config ([e50fb06](https://github.com/powerhouse-inc/document-model-electron/commit/e50fb062eccf6387399bad9403f59a20bc478d89)) -* added Cypress Cloud Config ([3439c54](https://github.com/powerhouse-inc/document-model-electron/commit/3439c5493098d66a6e7563068f35afcae255b142)) -* added cypress setup ([be8e1b6](https://github.com/powerhouse-inc/document-model-electron/commit/be8e1b6e702f3f9209d694d5642ee82465a6bb9b)) -* added develop environment ([c33ab9d](https://github.com/powerhouse-inc/document-model-electron/commit/c33ab9d6977712a3015d28a0cd27208f7fd727e5)) -* added develop to release cycle ([b9247e6](https://github.com/powerhouse-inc/document-model-electron/commit/b9247e66d19ffc9400caae9403d9b5b06048eacc)) -* added reload Connect toast ([944b086](https://github.com/powerhouse-inc/document-model-electron/commit/944b0866bf7ca830581a21ed828f81c880891922)) -* added version comparison ([85661ea](https://github.com/powerhouse-inc/document-model-electron/commit/85661eaa9aac0a8f38ce465adf1c0c227a442846)) -* avoid recreate fileOptions and clickOptionsHandler for each file node ([0a0ef3a](https://github.com/powerhouse-inc/document-model-electron/commit/0a0ef3a181489ec91a8c8439f25dcb9f3713f9a9)) -* avoid recreate folderOptions and clickFolderOptionsHandler for each folder node ([6329b29](https://github.com/powerhouse-inc/document-model-electron/commit/6329b291adee5895070f3b2192f84c36c86406a8)) -* bump libs ([e9d7a4f](https://github.com/powerhouse-inc/document-model-electron/commit/e9d7a4f40f16bc9a50d1191d04d4c0d3e8f54ad4)) -* bump libs ([32b2f39](https://github.com/powerhouse-inc/document-model-electron/commit/32b2f390eee0d613b86b4988e970db27077868c3)) -* bump libs ([1216c33](https://github.com/powerhouse-inc/document-model-electron/commit/1216c33f4c713d4c7ac6eeb76725a51a6e6cf9a0)) -* bump libs ([153909c](https://github.com/powerhouse-inc/document-model-electron/commit/153909c5c7e0bc2c97511f9001c1b3e4f7ec5f79)) -* bump libs ([fe4d49a](https://github.com/powerhouse-inc/document-model-electron/commit/fe4d49a4acdccb5a24678ca38b914257599a63b9)) -* enabled sync icons for folders and files ([9336e8a](https://github.com/powerhouse-inc/document-model-electron/commit/9336e8a3d1c818a962b5c0d0ef108ab07c2d3872)) -* handle empty string as parent folder ([3260ccb](https://github.com/powerhouse-inc/document-model-electron/commit/3260ccbcd0b1b4b188a7881d8881fae604bbf8f3)) -* moved isAllowedToCreateDocuments to folderView ([8af8020](https://github.com/powerhouse-inc/document-model-electron/commit/8af8020109d85cd1d6cae167cd51ddf722d2bb46)) -* re-use decodedDriveID ([1a82d60](https://github.com/powerhouse-inc/document-model-electron/commit/1a82d60b5bbfc5f99f99d38e3909da4364325817)) -* removed debug code ([4aa9c4c](https://github.com/powerhouse-inc/document-model-electron/commit/4aa9c4c2fa205a2f2823d2816b64e420efe2cf2a)) -* updated design-system alpha 119 ([c27a968](https://github.com/powerhouse-inc/document-model-electron/commit/c27a968f2bfd745d48a7a69a451d4c18e72acdf9)) -* updated document-drive ([cce5625](https://github.com/powerhouse-inc/document-model-electron/commit/cce5625d5392f3860a2f5b71ad144dd99d98ebda)) -* updated libs ([5edef9d](https://github.com/powerhouse-inc/document-model-electron/commit/5edef9d1d1936f3bb7c9006c180c7a352f8d6bb9)) -* updated release script ([639b2a5](https://github.com/powerhouse-inc/document-model-electron/commit/639b2a50405d32f884f941457702ba12a6fa3a6b)) -* use memoized version of FileItem component ([040c2b6](https://github.com/powerhouse-inc/document-model-electron/commit/040c2b6ca0cdd8c87d313d27169213a50cffb4cd)) - +- added addpublicdrive util ([123ed8b](https://github.com/powerhouse-inc/document-model-electron/commit/123ed8be07321eafcac2521f4ae7452e86a6895f)) +- added cypress CI config ([e50fb06](https://github.com/powerhouse-inc/document-model-electron/commit/e50fb062eccf6387399bad9403f59a20bc478d89)) +- added Cypress Cloud Config ([3439c54](https://github.com/powerhouse-inc/document-model-electron/commit/3439c5493098d66a6e7563068f35afcae255b142)) +- added cypress setup ([be8e1b6](https://github.com/powerhouse-inc/document-model-electron/commit/be8e1b6e702f3f9209d694d5642ee82465a6bb9b)) +- added develop environment ([c33ab9d](https://github.com/powerhouse-inc/document-model-electron/commit/c33ab9d6977712a3015d28a0cd27208f7fd727e5)) +- added develop to release cycle ([b9247e6](https://github.com/powerhouse-inc/document-model-electron/commit/b9247e66d19ffc9400caae9403d9b5b06048eacc)) +- added reload Connect toast ([944b086](https://github.com/powerhouse-inc/document-model-electron/commit/944b0866bf7ca830581a21ed828f81c880891922)) +- added version comparison ([85661ea](https://github.com/powerhouse-inc/document-model-electron/commit/85661eaa9aac0a8f38ce465adf1c0c227a442846)) +- avoid recreate fileOptions and clickOptionsHandler for each file node ([0a0ef3a](https://github.com/powerhouse-inc/document-model-electron/commit/0a0ef3a181489ec91a8c8439f25dcb9f3713f9a9)) +- avoid recreate folderOptions and clickFolderOptionsHandler for each folder node ([6329b29](https://github.com/powerhouse-inc/document-model-electron/commit/6329b291adee5895070f3b2192f84c36c86406a8)) +- bump libs ([e9d7a4f](https://github.com/powerhouse-inc/document-model-electron/commit/e9d7a4f40f16bc9a50d1191d04d4c0d3e8f54ad4)) +- bump libs ([32b2f39](https://github.com/powerhouse-inc/document-model-electron/commit/32b2f390eee0d613b86b4988e970db27077868c3)) +- bump libs ([1216c33](https://github.com/powerhouse-inc/document-model-electron/commit/1216c33f4c713d4c7ac6eeb76725a51a6e6cf9a0)) +- bump libs ([153909c](https://github.com/powerhouse-inc/document-model-electron/commit/153909c5c7e0bc2c97511f9001c1b3e4f7ec5f79)) +- bump libs ([fe4d49a](https://github.com/powerhouse-inc/document-model-electron/commit/fe4d49a4acdccb5a24678ca38b914257599a63b9)) +- enabled sync icons for folders and files ([9336e8a](https://github.com/powerhouse-inc/document-model-electron/commit/9336e8a3d1c818a962b5c0d0ef108ab07c2d3872)) +- handle empty string as parent folder ([3260ccb](https://github.com/powerhouse-inc/document-model-electron/commit/3260ccbcd0b1b4b188a7881d8881fae604bbf8f3)) +- moved isAllowedToCreateDocuments to folderView ([8af8020](https://github.com/powerhouse-inc/document-model-electron/commit/8af8020109d85cd1d6cae167cd51ddf722d2bb46)) +- re-use decodedDriveID ([1a82d60](https://github.com/powerhouse-inc/document-model-electron/commit/1a82d60b5bbfc5f99f99d38e3909da4364325817)) +- removed debug code ([4aa9c4c](https://github.com/powerhouse-inc/document-model-electron/commit/4aa9c4c2fa205a2f2823d2816b64e420efe2cf2a)) +- updated design-system alpha 119 ([c27a968](https://github.com/powerhouse-inc/document-model-electron/commit/c27a968f2bfd745d48a7a69a451d4c18e72acdf9)) +- updated document-drive ([cce5625](https://github.com/powerhouse-inc/document-model-electron/commit/cce5625d5392f3860a2f5b71ad144dd99d98ebda)) +- updated libs ([5edef9d](https://github.com/powerhouse-inc/document-model-electron/commit/5edef9d1d1936f3bb7c9006c180c7a352f8d6bb9)) +- updated release script ([639b2a5](https://github.com/powerhouse-inc/document-model-electron/commit/639b2a50405d32f884f941457702ba12a6fa3a6b)) +- use memoized version of FileItem component ([040c2b6](https://github.com/powerhouse-inc/document-model-electron/commit/040c2b6ca0cdd8c87d313d27169213a50cffb4cd)) ### Performance Improvements -* decode id only one when getting readable item path ([5c019b9](https://github.com/powerhouse-inc/document-model-electron/commit/5c019b951db04c31e8f2f163fd32a4e465eb3264)) -* implemented scalable way to compare drive state ([5b4f360](https://github.com/powerhouse-inc/document-model-electron/commit/5b4f360f9be815e52131f56fedf3f6a97e77ed7f)) +- decode id only one when getting readable item path ([5c019b9](https://github.com/powerhouse-inc/document-model-electron/commit/5c019b951db04c31e8f2f163fd32a4e465eb3264)) +- implemented scalable way to compare drive state ([5b4f360](https://github.com/powerhouse-inc/document-model-electron/commit/5b4f360f9be815e52131f56fedf3f6a97e77ed7f)) # 1.0.0-next.1 (2024-06-18) - ### Bug Fixes -* added callback support for document dispatch ([a4f4c04](https://github.com/powerhouse-inc/document-model-electron/commit/a4f4c04ead0d2aca54983da2e79e9ff6e673da15)) -* allow concurrent drive operations ([17658ee](https://github.com/powerhouse-inc/document-model-electron/commit/17658ee1a67dc787896508d25ea329ca9b657a13)) -* apply auto lint fix ([dfa1ec0](https://github.com/powerhouse-inc/document-model-electron/commit/dfa1ec02caddba3e9b06e1a18855f47abf959eda)) -* base hrefs ([1ff517c](https://github.com/powerhouse-inc/document-model-electron/commit/1ff517c31991b6ad836b173c0df916b396f59fe1)) -* base path cmd ([070b4af](https://github.com/powerhouse-inc/document-model-electron/commit/070b4af1a148be00ca8b4e4bf8e24f22adbea28c)) -* build issues ([f2b084b](https://github.com/powerhouse-inc/document-model-electron/commit/f2b084b21a7826c491bc4d5977608892bfedfeba)) -* change config file names in scripts ([37fa872](https://github.com/powerhouse-inc/document-model-electron/commit/37fa872932c8f455e4844e6bd838a65720ad5380)) -* downgraded document drive ([7d287c4](https://github.com/powerhouse-inc/document-model-electron/commit/7d287c4d08d73226e7ba1ec8aabaeeb9a088c8e2)) -* endpoints for connect ([7c81639](https://github.com/powerhouse-inc/document-model-electron/commit/7c81639f01764ee0703c0a0313305f7557994f06)) -* fix file types ([11d1b18](https://github.com/powerhouse-inc/document-model-electron/commit/11d1b1833442ee302196b3e50f73f0380a372507)) -* fix rerenders when refreshing document drives ([5429f61](https://github.com/powerhouse-inc/document-model-electron/commit/5429f613784535e430809b751d879e60b2f5fb68)) -* fixed build error ([3027483](https://github.com/powerhouse-inc/document-model-electron/commit/30274832089143d616c3c55935735ad6f275e8c2)) -* fixed build error ([f280459](https://github.com/powerhouse-inc/document-model-electron/commit/f2804594d3f764477c06fc4183a2427df9e4c86b)) -* folder selection in folder view ([f7e3681](https://github.com/powerhouse-inc/document-model-electron/commit/f7e36810b5d0223afc64736a9e8ec48e11f7fc57)) -* header text color ([4ee9745](https://github.com/powerhouse-inc/document-model-electron/commit/4ee9745dbbeddf0e2ea41f6d8c4c800d9f5bfd99)) -* heroku nginx config ([0ca0df1](https://github.com/powerhouse-inc/document-model-electron/commit/0ca0df1e853522fb0d21ded35d6f61964c48ea62)) -* lint errors ([ac490b4](https://github.com/powerhouse-inc/document-model-electron/commit/ac490b4cdf693d62d57a865b55952ca7b46bfe94)) -* missing return ([f81d0e9](https://github.com/powerhouse-inc/document-model-electron/commit/f81d0e9a0a58c4079a6359d0dc45f90861d4acb4)) -* only call useMemo in hook ([76a1505](https://github.com/powerhouse-inc/document-model-electron/commit/76a15059e825ec0e1d6215e450ec0339d7c33bbe)) -* package.lock ([1c2a1f5](https://github.com/powerhouse-inc/document-model-electron/commit/1c2a1f55bf33953fa1834da2e84dcc0e93710c7b)) -* properly encode switchboard query ([4c5001f](https://github.com/powerhouse-inc/document-model-electron/commit/4c5001fb3aa34249bee0550331a314872b05c614)) -* remove allow list ([ac2475d](https://github.com/powerhouse-inc/document-model-electron/commit/ac2475d866195b18b23ca094457ccce93b9b0508)) -* remove duplicate package ([364afdd](https://github.com/powerhouse-inc/document-model-electron/commit/364afdde2e2c9c3d6c12d0364e6d0cfd612f5429)) -* remove yalc from package json ([9e184d8](https://github.com/powerhouse-inc/document-model-electron/commit/9e184d8df68d74803e9cbf95f7cf480f97a6d03e)) -* removed unused css import ([6da080c](https://github.com/powerhouse-inc/document-model-electron/commit/6da080c53ea57352b997de941fc303f11a5d2a42)) -* rename node id ([45235e5](https://github.com/powerhouse-inc/document-model-electron/commit/45235e516ce5ea52345c7ff9d1f7238ff4e9e095)) -* renown endpoint ([10461f5](https://github.com/powerhouse-inc/document-model-electron/commit/10461f566fd49a8fd79b23fdaa66871d8d8cff76)) -* renown login ([432e5bc](https://github.com/powerhouse-inc/document-model-electron/commit/432e5bcc1eaa13a043720b0c9d1165222188ecfc)) -* revert setSelectedDocument in addOperation document ([df06317](https://github.com/powerhouse-inc/document-model-electron/commit/df06317cc067b3f25deedb9832c1aa54d308158a)) -* rwa query ([09fcd52](https://github.com/powerhouse-inc/document-model-electron/commit/09fcd52fdf4adbeee9f6a6aa26c1d0309b525510)) -* semantic release ([b24fa8d](https://github.com/powerhouse-inc/document-model-electron/commit/b24fa8d03309c4f2f5d43372a34388dd0a168e59)) -* settings modal typo ([6ef1286](https://github.com/powerhouse-inc/document-model-electron/commit/6ef12861fdda344c7c45f54657b6f56c67217162)) -* show local drives ([893b0df](https://github.com/powerhouse-inc/document-model-electron/commit/893b0dfe9d8004b12114842b082e4672a630aa38)) -* subscribe to server updates when load initial data ([35bf948](https://github.com/powerhouse-inc/document-model-electron/commit/35bf948de2acb3a23684060c978138f2b5ad5f75)) -* suppress less important rules ([679af22](https://github.com/powerhouse-inc/document-model-electron/commit/679af2256b8e6a4739006048056d452ba7fbf988)) -* switchboard endpoint ([2e570f3](https://github.com/powerhouse-inc/document-model-electron/commit/2e570f39bc355e4f387c0d371e8af81a0b92bb38)) -* switchboard link ([78bbdd0](https://github.com/powerhouse-inc/document-model-electron/commit/78bbdd0ec278a7685023cf9482d5990f6cf18a6d)) -* tmp build fix ([4a4be40](https://github.com/powerhouse-inc/document-model-electron/commit/4a4be4098131a946ce919792e3028e0f4e92c46e)) -* undefined default drive ([e5f2749](https://github.com/powerhouse-inc/document-model-electron/commit/e5f27494a57a29c4e4ae921d2014198af8614df3)) -* undefined default drive ([6ad9412](https://github.com/powerhouse-inc/document-model-electron/commit/6ad94127e15ebb43507cd0cae8404e9e2bc17e5b)) -* update selectedDocument when a new operation is dispatched ([b2c4401](https://github.com/powerhouse-inc/document-model-electron/commit/b2c4401c676d1c2621334375f132c6367c234ca5)) -* use selectedDocument as source of truth for document editor ([b5204e7](https://github.com/powerhouse-inc/document-model-electron/commit/b5204e7153028459ef3ace07e719736d971d577a)) -* wait for renown to load ([1d2f019](https://github.com/powerhouse-inc/document-model-electron/commit/1d2f019dc992239873e19e35fe8d5c0dde1396f5)) - +- added callback support for document dispatch ([a4f4c04](https://github.com/powerhouse-inc/document-model-electron/commit/a4f4c04ead0d2aca54983da2e79e9ff6e673da15)) +- allow concurrent drive operations ([17658ee](https://github.com/powerhouse-inc/document-model-electron/commit/17658ee1a67dc787896508d25ea329ca9b657a13)) +- apply auto lint fix ([dfa1ec0](https://github.com/powerhouse-inc/document-model-electron/commit/dfa1ec02caddba3e9b06e1a18855f47abf959eda)) +- base hrefs ([1ff517c](https://github.com/powerhouse-inc/document-model-electron/commit/1ff517c31991b6ad836b173c0df916b396f59fe1)) +- base path cmd ([070b4af](https://github.com/powerhouse-inc/document-model-electron/commit/070b4af1a148be00ca8b4e4bf8e24f22adbea28c)) +- build issues ([f2b084b](https://github.com/powerhouse-inc/document-model-electron/commit/f2b084b21a7826c491bc4d5977608892bfedfeba)) +- change config file names in scripts ([37fa872](https://github.com/powerhouse-inc/document-model-electron/commit/37fa872932c8f455e4844e6bd838a65720ad5380)) +- downgraded document drive ([7d287c4](https://github.com/powerhouse-inc/document-model-electron/commit/7d287c4d08d73226e7ba1ec8aabaeeb9a088c8e2)) +- endpoints for connect ([7c81639](https://github.com/powerhouse-inc/document-model-electron/commit/7c81639f01764ee0703c0a0313305f7557994f06)) +- fix file types ([11d1b18](https://github.com/powerhouse-inc/document-model-electron/commit/11d1b1833442ee302196b3e50f73f0380a372507)) +- fix rerenders when refreshing document drives ([5429f61](https://github.com/powerhouse-inc/document-model-electron/commit/5429f613784535e430809b751d879e60b2f5fb68)) +- fixed build error ([3027483](https://github.com/powerhouse-inc/document-model-electron/commit/30274832089143d616c3c55935735ad6f275e8c2)) +- fixed build error ([f280459](https://github.com/powerhouse-inc/document-model-electron/commit/f2804594d3f764477c06fc4183a2427df9e4c86b)) +- folder selection in folder view ([f7e3681](https://github.com/powerhouse-inc/document-model-electron/commit/f7e36810b5d0223afc64736a9e8ec48e11f7fc57)) +- header text color ([4ee9745](https://github.com/powerhouse-inc/document-model-electron/commit/4ee9745dbbeddf0e2ea41f6d8c4c800d9f5bfd99)) +- heroku nginx config ([0ca0df1](https://github.com/powerhouse-inc/document-model-electron/commit/0ca0df1e853522fb0d21ded35d6f61964c48ea62)) +- lint errors ([ac490b4](https://github.com/powerhouse-inc/document-model-electron/commit/ac490b4cdf693d62d57a865b55952ca7b46bfe94)) +- missing return ([f81d0e9](https://github.com/powerhouse-inc/document-model-electron/commit/f81d0e9a0a58c4079a6359d0dc45f90861d4acb4)) +- only call useMemo in hook ([76a1505](https://github.com/powerhouse-inc/document-model-electron/commit/76a15059e825ec0e1d6215e450ec0339d7c33bbe)) +- package.lock ([1c2a1f5](https://github.com/powerhouse-inc/document-model-electron/commit/1c2a1f55bf33953fa1834da2e84dcc0e93710c7b)) +- properly encode switchboard query ([4c5001f](https://github.com/powerhouse-inc/document-model-electron/commit/4c5001fb3aa34249bee0550331a314872b05c614)) +- remove allow list ([ac2475d](https://github.com/powerhouse-inc/document-model-electron/commit/ac2475d866195b18b23ca094457ccce93b9b0508)) +- remove duplicate package ([364afdd](https://github.com/powerhouse-inc/document-model-electron/commit/364afdde2e2c9c3d6c12d0364e6d0cfd612f5429)) +- remove yalc from package json ([9e184d8](https://github.com/powerhouse-inc/document-model-electron/commit/9e184d8df68d74803e9cbf95f7cf480f97a6d03e)) +- removed unused css import ([6da080c](https://github.com/powerhouse-inc/document-model-electron/commit/6da080c53ea57352b997de941fc303f11a5d2a42)) +- rename node id ([45235e5](https://github.com/powerhouse-inc/document-model-electron/commit/45235e516ce5ea52345c7ff9d1f7238ff4e9e095)) +- renown endpoint ([10461f5](https://github.com/powerhouse-inc/document-model-electron/commit/10461f566fd49a8fd79b23fdaa66871d8d8cff76)) +- renown login ([432e5bc](https://github.com/powerhouse-inc/document-model-electron/commit/432e5bcc1eaa13a043720b0c9d1165222188ecfc)) +- revert setSelectedDocument in addOperation document ([df06317](https://github.com/powerhouse-inc/document-model-electron/commit/df06317cc067b3f25deedb9832c1aa54d308158a)) +- rwa query ([09fcd52](https://github.com/powerhouse-inc/document-model-electron/commit/09fcd52fdf4adbeee9f6a6aa26c1d0309b525510)) +- semantic release ([b24fa8d](https://github.com/powerhouse-inc/document-model-electron/commit/b24fa8d03309c4f2f5d43372a34388dd0a168e59)) +- settings modal typo ([6ef1286](https://github.com/powerhouse-inc/document-model-electron/commit/6ef12861fdda344c7c45f54657b6f56c67217162)) +- show local drives ([893b0df](https://github.com/powerhouse-inc/document-model-electron/commit/893b0dfe9d8004b12114842b082e4672a630aa38)) +- subscribe to server updates when load initial data ([35bf948](https://github.com/powerhouse-inc/document-model-electron/commit/35bf948de2acb3a23684060c978138f2b5ad5f75)) +- suppress less important rules ([679af22](https://github.com/powerhouse-inc/document-model-electron/commit/679af2256b8e6a4739006048056d452ba7fbf988)) +- switchboard endpoint ([2e570f3](https://github.com/powerhouse-inc/document-model-electron/commit/2e570f39bc355e4f387c0d371e8af81a0b92bb38)) +- switchboard link ([78bbdd0](https://github.com/powerhouse-inc/document-model-electron/commit/78bbdd0ec278a7685023cf9482d5990f6cf18a6d)) +- tmp build fix ([4a4be40](https://github.com/powerhouse-inc/document-model-electron/commit/4a4be4098131a946ce919792e3028e0f4e92c46e)) +- undefined default drive ([e5f2749](https://github.com/powerhouse-inc/document-model-electron/commit/e5f27494a57a29c4e4ae921d2014198af8614df3)) +- undefined default drive ([6ad9412](https://github.com/powerhouse-inc/document-model-electron/commit/6ad94127e15ebb43507cd0cae8404e9e2bc17e5b)) +- update selectedDocument when a new operation is dispatched ([b2c4401](https://github.com/powerhouse-inc/document-model-electron/commit/b2c4401c676d1c2621334375f132c6367c234ca5)) +- use selectedDocument as source of truth for document editor ([b5204e7](https://github.com/powerhouse-inc/document-model-electron/commit/b5204e7153028459ef3ace07e719736d971d577a)) +- wait for renown to load ([1d2f019](https://github.com/powerhouse-inc/document-model-electron/commit/1d2f019dc992239873e19e35fe8d5c0dde1396f5)) ### Features -* 🚀 Added ItemsContext integration ([41fc40f](https://github.com/powerhouse-inc/document-model-electron/commit/41fc40f93420101ca9b2ec34e1b4f4cab4a43a4b)) -* 🚀 added readable item path for File Items ([9f6a4ac](https://github.com/powerhouse-inc/document-model-electron/commit/9f6a4ac45318bb757e7c7c60df463e67b066771b)) -* 🚀 Implemented base folder-view design ([22ad4fc](https://github.com/powerhouse-inc/document-model-electron/commit/22ad4fc5046e27016ce1a47eda3282125af4db71)) -* activate queue ([#290](https://github.com/powerhouse-inc/document-model-electron/issues/290)) ([5b5a4fd](https://github.com/powerhouse-inc/document-model-electron/commit/5b5a4fd317ce624cc734f186778e49899dd3b148)) -* add dep array to use effect ([0a88d92](https://github.com/powerhouse-inc/document-model-electron/commit/0a88d92a664b877929978f05753f3d38e471625d)) -* add dependency versions to settings modal ([d01c0de](https://github.com/powerhouse-inc/document-model-electron/commit/d01c0de124cb9af00312e4c53e934d8a233e02af)) -* add design system preset ([a6cb51c](https://github.com/powerhouse-inc/document-model-electron/commit/a6cb51c31d4500d31fd091f165a4f01ae37ff4d7)) -* add duplicate action ([a9d2e29](https://github.com/powerhouse-inc/document-model-electron/commit/a9d2e29318badb84ca51acc9603a2c2dc7f25a0e)) -* add duplicate to folder ([a6212a8](https://github.com/powerhouse-inc/document-model-electron/commit/a6212a8fe3c62f49d1b624e75152e48f80034ed2)) -* add generate assets hook for icons copying ([4c25ebe](https://github.com/powerhouse-inc/document-model-electron/commit/4c25ebecc94941502e35dff28555664b3985f67b)) -* add is allowed to create documents hook ([0a457fc](https://github.com/powerhouse-inc/document-model-electron/commit/0a457fc35f5e78cb16eac1664c3def10b29b5229)) -* add optional dep ([a079cc7](https://github.com/powerhouse-inc/document-model-electron/commit/a079cc799c0d7987193ee209618151c10c743282)) -* add pull trigger on cloud drives ([9f86849](https://github.com/powerhouse-inc/document-model-electron/commit/9f868495ced48b9b23a3d128469ce7ac20d32a57)) -* add react aria dep ([499dda0](https://github.com/powerhouse-inc/document-model-electron/commit/499dda05d52469c85f0dc31d1da5639dc926c9c4)) -* add tailwind eslint plugin ([6e639bc](https://github.com/powerhouse-inc/document-model-electron/commit/6e639bc71bddeafe855c210c0f573cec7b2ce622)) -* add user context to actions ([6a3241d](https://github.com/powerhouse-inc/document-model-electron/commit/6a3241d3e98c58262ffc7bbbcaa66f6f5d8878b3)) -* added addpublicdrive util ([4dc536f](https://github.com/powerhouse-inc/document-model-electron/commit/4dc536f82216f47a8db46225ac1f6d6e1f9c7a23)) -* added base path for nginx ([22a270b](https://github.com/powerhouse-inc/document-model-electron/commit/22a270b978e189a8a9afd20e0ae8f568e8c3336e)) -* added browser key storage ([6562881](https://github.com/powerhouse-inc/document-model-electron/commit/6562881b2eb603b59b55f1595a7f46b96dbbded6)) -* added clear storage setting ([922f5e1](https://github.com/powerhouse-inc/document-model-electron/commit/922f5e19ebd68e07440858c2f7308e3f6d1a2aae)) -* added config to hide drive sections ([aa67a3f](https://github.com/powerhouse-inc/document-model-electron/commit/aa67a3f392891e195fbc24a2ff858b66265eccc5)) -* added csp headers ([bd398aa](https://github.com/powerhouse-inc/document-model-electron/commit/bd398aa0bc6d748b740e17d4ddf197232d701c62)) -* added cypress CI config ([6418f6d](https://github.com/powerhouse-inc/document-model-electron/commit/6418f6d06b8f9d14012ab660a21f0b8b35af008a)) -* added Cypress Cloud Config ([24deddb](https://github.com/powerhouse-inc/document-model-electron/commit/24deddb0518dc49e14538e29045e56eeab735b62)) -* added cypress setup ([380db83](https://github.com/powerhouse-inc/document-model-electron/commit/380db83614f692230bbd11ebff63007599745f0d)) -* added deeplink support to link to specific drive node ([ae1f97f](https://github.com/powerhouse-inc/document-model-electron/commit/ae1f97fb17e3cbc422a2e242e9ff530c598284a5)) -* added delete drive modal + enable delete file modal confirmation ([4ce110e](https://github.com/powerhouse-inc/document-model-electron/commit/4ce110e7baaaad3ea75a33eff45fab9994184658)) -* added develop environment ([4ceabce](https://github.com/powerhouse-inc/document-model-electron/commit/4ceabce3c8e5d43488abda4a83d524b59da0c338)) -* added develop to release cycle ([3e1058e](https://github.com/powerhouse-inc/document-model-electron/commit/3e1058eac31ac13d74aaed32418d6ac56ad4e3dd)) -* added e2e playwright setup ([2d37330](https://github.com/powerhouse-inc/document-model-electron/commit/2d37330f103456dc9d3e24cc4a74d3ed7abb20c8)) -* added editor debug tools ([6928bed](https://github.com/powerhouse-inc/document-model-electron/commit/6928bed61c46322bc341da7bed48dcde60454b9e)) -* added env var to hide document model setting ([840a561](https://github.com/powerhouse-inc/document-model-electron/commit/840a5615ba0b5eafab123b0f0e5c21b3c880d670)) -* added env vars for renown ([f464d68](https://github.com/powerhouse-inc/document-model-electron/commit/f464d68172be57798be364a804b9de0e7f1733c1)) -* added feature flag setup + disable editors for demo ([7fa64f2](https://github.com/powerhouse-inc/document-model-electron/commit/7fa64f2634cea508ebfb8b20732a730dc8b0624b)) -* added gzip and brotli compression to nginx ([f52a0c3](https://github.com/powerhouse-inc/document-model-electron/commit/f52a0c3205b1fd7fc99875fae0ad5a1d5cd24dd5)) -* added heroku deployment for powerhouse staging env ([f4c538a](https://github.com/powerhouse-inc/document-model-electron/commit/f4c538a3e02781276996e30b759d50f248037c86)) -* added modal confirmation when export document with errors ([d22a447](https://github.com/powerhouse-inc/document-model-electron/commit/d22a447c98d50589f61e37cd6284155223824057)) -* added network id to user ([908a50e](https://github.com/powerhouse-inc/document-model-electron/commit/908a50e8df9c1ae7e53940dc801157a5ca665706)) -* added new env var to dockerfile ([64afb40](https://github.com/powerhouse-inc/document-model-electron/commit/64afb40dfec060e8ebfaaeddf8f47f3f925d21be)) -* added nginx config ([069be2c](https://github.com/powerhouse-inc/document-model-electron/commit/069be2cd98aee6fe3a6b686b4112a435e81d11b3)) -* added notification toast ([39ed0c2](https://github.com/powerhouse-inc/document-model-electron/commit/39ed0c2319c2a6e1c2044aff5cda1fd1dc51d24b)) -* added open file and delete file ([01793c8](https://github.com/powerhouse-inc/document-model-electron/commit/01793c8a5f21b8e1701e649cc926c8baa7ece4fe)) -* added opengraph and twitter meta data ([280da91](https://github.com/powerhouse-inc/document-model-electron/commit/280da914bbe8129ead8559d4169ea266fbb327bc)) -* added PH logo ([e9ec94b](https://github.com/powerhouse-inc/document-model-electron/commit/e9ec94b3373495aa0d03673b241c78605b61d396)) -* added prepare script ([abeaa41](https://github.com/powerhouse-inc/document-model-electron/commit/abeaa41bb7bfc7a8d3a7332a9dd0ba0dad088659)) -* added reload Connect toast ([37cb55e](https://github.com/powerhouse-inc/document-model-electron/commit/37cb55ecf4b746025de9c613d176a250505559c6)) -* added renown login on browser ([5b77016](https://github.com/powerhouse-inc/document-model-electron/commit/5b77016508fd448b23999919a8d9e40bc701e1f9)) -* added rewrite rules to vercel.json config ([b66cdb0](https://github.com/powerhouse-inc/document-model-electron/commit/b66cdb0fb264412710c1d3bf67f06d48df52408c)) -* added route to open document drive node ([6700f13](https://github.com/powerhouse-inc/document-model-electron/commit/6700f132435dd4ce175b036d5e906d1194976ed0)) -* added RWA doc name fix for demo ([05dfd07](https://github.com/powerhouse-inc/document-model-electron/commit/05dfd0781038523b86437ebe1164e20a848c65b2)) -* added scope of work ([742aae0](https://github.com/powerhouse-inc/document-model-electron/commit/742aae0cab712068d2f8dbe2804da3ba802416bd)) -* added sentry dsn to environments ([c4cfef1](https://github.com/powerhouse-inc/document-model-electron/commit/c4cfef161be9db837d29aca316949957412e4c25)) -* added sentry environments ([68fefd0](https://github.com/powerhouse-inc/document-model-electron/commit/68fefd095cbffcec9eeebedb786d5ab7afc9c9bf)) -* added sentry to connect ([d51ec53](https://github.com/powerhouse-inc/document-model-electron/commit/d51ec538d376cb533882f9c4b0ee057d80ce7d1a)) -* added settings modal integration ([dfb9d28](https://github.com/powerhouse-inc/document-model-electron/commit/dfb9d287bb99dec4316c9eee5098816b6f498926)) -* added sidebar login ([2917809](https://github.com/powerhouse-inc/document-model-electron/commit/29178094a9d711e1d7303dde1511a7b73bc37199)) -* added sort nodes + fix input styles + cancel new folders with empty name ([4a2f9fb](https://github.com/powerhouse-inc/document-model-electron/commit/4a2f9fbf2c4dc5427c58633f18e40eb10574600c)) -* added support for delete option in FolderItem and FileItem ([85800ab](https://github.com/powerhouse-inc/document-model-electron/commit/85800ab374da9be041d6e8c547d186a0671a6b91)) -* added support for document in addfile action ([0706ce2](https://github.com/powerhouse-inc/document-model-electron/commit/0706ce25a515024a37b61aec11c930601a0869e5)) -* added support for rename files + create file name modal ([8a76691](https://github.com/powerhouse-inc/document-model-electron/commit/8a76691426d671128c4cfbc98864a9a669e395f3)) -* added support for renown user ([3853b37](https://github.com/powerhouse-inc/document-model-electron/commit/3853b371349ee14051b666a19fbb0b0c564c8ac6)) -* added support for router basename ([251afe2](https://github.com/powerhouse-inc/document-model-electron/commit/251afe2b1d4eab690f9592e25edc6c555e2fe44a)) -* added switchboard link to document files ([5f31b71](https://github.com/powerhouse-inc/document-model-electron/commit/5f31b710a6ae65f42aac65840da422134e48ee6c)) -* added useConnectConfig hook ([a600091](https://github.com/powerhouse-inc/document-model-electron/commit/a60009131ad8600174311b45a696d0c3219ae8ce)) -* added vercel redirect ([7100848](https://github.com/powerhouse-inc/document-model-electron/commit/7100848213fe6e5d0811229e67c82b8997648fa2)) -* added version comparison ([866e979](https://github.com/powerhouse-inc/document-model-electron/commit/866e979684d884528cb06568ee92d02ec1253308)) -* added vite env as build args ([c76d4f4](https://github.com/powerhouse-inc/document-model-electron/commit/c76d4f431017df7f9b40a5063a71618084333c24)) -* allow connect-src for renown.id ([7357d4a](https://github.com/powerhouse-inc/document-model-electron/commit/7357d4a4a2c9aff400e55d9c8eed9630aaec4ed5)) -* allow external images ([171efac](https://github.com/powerhouse-inc/document-model-electron/commit/171efac183458b993ac11849345b3fb8765a10f4)) -* allow per deploy drive restrictions ([8779d84](https://github.com/powerhouse-inc/document-model-electron/commit/8779d84cb1be5128ac7b1c63a8666c5d03b2f593)) -* allow url for file ([474ad4d](https://github.com/powerhouse-inc/document-model-electron/commit/474ad4d0b90e9e882bb52d4ca479a4314d15eec1)) -* also disable when env is production ([6f60688](https://github.com/powerhouse-inc/document-model-electron/commit/6f60688a7bcf92e19afe5a4a49a1baa9f0c44507)) -* also do src === target check in move node function ([3e80c1e](https://github.com/powerhouse-inc/document-model-electron/commit/3e80c1e4dface07c9d101c39f6a0dce6d0654a26)) -* apply auto fixes ([b10b111](https://github.com/powerhouse-inc/document-model-electron/commit/b10b111374636b145c52fa15f38ebc0751912483)) -* auto-select first drive if there's no selected path ([daf3083](https://github.com/powerhouse-inc/document-model-electron/commit/daf3083b4fff8dd6f033ce9806affe932fea4f04)) -* avoid recreate fileOptions and clickOptionsHandler for each file node ([08557e9](https://github.com/powerhouse-inc/document-model-electron/commit/08557e983c663e58a0bb68534b11df579f9be045)) -* avoid recreate folderOptions and clickFolderOptionsHandler for each folder node ([efa90d2](https://github.com/powerhouse-inc/document-model-electron/commit/efa90d2664c025247ae6636a2c06706b12b1ad96)) -* bump ([40fd30a](https://github.com/powerhouse-inc/document-model-electron/commit/40fd30a489214a512a7dc43fbe9dea1e0c33604a)) -* bump ([11fb69f](https://github.com/powerhouse-inc/document-model-electron/commit/11fb69f6f507d4240e72b1208982c814bce185a8)) -* bump deps ([7d7206c](https://github.com/powerhouse-inc/document-model-electron/commit/7d7206c5ae9bc7c9e7d26713fc8ff4e7ef5f459d)) -* bump design system ([fb12d70](https://github.com/powerhouse-inc/document-model-electron/commit/fb12d70fcd3237f1cacb0375e99e4a1ae01cc342)) -* bump design system ([4e1d168](https://github.com/powerhouse-inc/document-model-electron/commit/4e1d168298355beea31e2216edeb7b7cef8e8257)) -* bump design system and document model libs ([165e2cc](https://github.com/powerhouse-inc/document-model-electron/commit/165e2ccc41d5d72a6f2f834292c18aa2388ebb86)) -* bump design system to integrate dep version component ([a18c621](https://github.com/powerhouse-inc/document-model-electron/commit/a18c621a24d97b3bfa9f103365b3890f6fd342d7)) -* bump design-system and document-model-lib deps ([7d90802](https://github.com/powerhouse-inc/document-model-electron/commit/7d9080289ce258cf9d299d13b4cf7e092fd51535)) -* bump document drive version ([254a2cd](https://github.com/powerhouse-inc/document-model-electron/commit/254a2cd967b07d22352d38509ad55c2ffcd19bf5)) -* bump libs ([e11a238](https://github.com/powerhouse-inc/document-model-electron/commit/e11a23886304d971c1bf8ae7db92cbbe63c5d185)) -* bump libs ([4e0863a](https://github.com/powerhouse-inc/document-model-electron/commit/4e0863af39e148053154fdcd2cb5ca5f3c801c6b)) -* bump libs ([87d0d1a](https://github.com/powerhouse-inc/document-model-electron/commit/87d0d1af3997d258065bcdf91f7eba74e1e845ae)) -* bump libs ([24a9cd3](https://github.com/powerhouse-inc/document-model-electron/commit/24a9cd3427eecc32697f15d7479bf5ee53c95084)) -* bump libs ([b27b036](https://github.com/powerhouse-inc/document-model-electron/commit/b27b036a487fbe989f9f7b585603e15bcdd3fa3a)) -* bump libs ([5fb15d3](https://github.com/powerhouse-inc/document-model-electron/commit/5fb15d321de8649ac2fc6953d9ec5312aeabefeb)) -* bump libs ([1f38863](https://github.com/powerhouse-inc/document-model-electron/commit/1f38863cb3e6fff081218ce59d7cf1a6f3c44621)) -* bump libs ([7df97b0](https://github.com/powerhouse-inc/document-model-electron/commit/7df97b03882c012f035b259aebb85ba42704008b)) -* bump libs ([78baf1d](https://github.com/powerhouse-inc/document-model-electron/commit/78baf1dee6da3f18208f23973f65b5a1b930ba81)) -* bump libs ([d766c36](https://github.com/powerhouse-inc/document-model-electron/commit/d766c36649f3575b2d10bcaf532249437a79b36c)) -* bump libs ([6b3f58f](https://github.com/powerhouse-inc/document-model-electron/commit/6b3f58fd3aad9e628cf2312629280f12984648e2)) -* bump libs ([f98b523](https://github.com/powerhouse-inc/document-model-electron/commit/f98b523acb0e2f2599d4d8927bf8fe5b26374856)) -* bump libs ([2a9a29d](https://github.com/powerhouse-inc/document-model-electron/commit/2a9a29d0d9d129abbbe6b16567151f3ecd0d525e)) -* bump libs ([62117a9](https://github.com/powerhouse-inc/document-model-electron/commit/62117a90490e9bbb32c4a84fdbdb3d930ca7ebfb)) -* bump libs ([62cd43d](https://github.com/powerhouse-inc/document-model-electron/commit/62cd43dd7f80cfd6202c251a9c1af1bad0978b67)) -* bump lint deps ([544fcea](https://github.com/powerhouse-inc/document-model-electron/commit/544fcea7cdcf450756b8deb913c47047a9161849)) -* bump react aria ([3a8ed93](https://github.com/powerhouse-inc/document-model-electron/commit/3a8ed934d371b11c7deb8c8894b43c323d04f06f)) -* cancel rename operation when new name is empty ([6c7a815](https://github.com/powerhouse-inc/document-model-electron/commit/6c7a815500339ebbced23214450750bacbfdebc9)) -* change term to allow list ([af99e9b](https://github.com/powerhouse-inc/document-model-electron/commit/af99e9ba0a3eee7074cc763922caf1656f024e83)) -* changed default renown env variables ([c87ee69](https://github.com/powerhouse-inc/document-model-electron/commit/c87ee697507eba7235150e5156bbe7d0cd121e36)) -* changed nginx image to nginx-brotli ([3d497da](https://github.com/powerhouse-inc/document-model-electron/commit/3d497da7806bdb77a6352aad9ad5f64ddcfa93e4)) -* check if operations with same index are submitted ([b7ad973](https://github.com/powerhouse-inc/document-model-electron/commit/b7ad97307106467a39060da44420515f10ce3921)) -* check user auth on startup ([6820f27](https://github.com/powerhouse-inc/document-model-electron/commit/6820f27a8defb40d72e3580d00fe11f1170bbe22)) -* commented renown env variables ([cd18bab](https://github.com/powerhouse-inc/document-model-electron/commit/cd18babc471fef7b1939bed4478265bd5a38abc1)) -* configure available editors with env variables ([00fad56](https://github.com/powerhouse-inc/document-model-electron/commit/00fad56259d24c1dc9fe3009ec5d4d8d9a51782a)) -* default drive handling improvements ([57be63e](https://github.com/powerhouse-inc/document-model-electron/commit/57be63e34a368769eb159728194f70d60ad98290)) -* detect circular reference in node path ([c113d03](https://github.com/powerhouse-inc/document-model-electron/commit/c113d035118d418ed8006b55112d101f030b4caa)) -* disable dev tools when app is packaged ([2326a77](https://github.com/powerhouse-inc/document-model-electron/commit/2326a7774f74d2c8af949cf55c18b12b38d0b7d9)) -* disable document drive editor by default ([a61249f](https://github.com/powerhouse-inc/document-model-electron/commit/a61249f43e50219b7b6aebc27f63b2d07a4735ec)) -* disallow create operations ([9cb4a8e](https://github.com/powerhouse-inc/document-model-electron/commit/9cb4a8e4d902f67692e696b60c283a3ec59ca137)) -* downloadFile fallback ([9836f4c](https://github.com/powerhouse-inc/document-model-electron/commit/9836f4c1e6edf68d1239f69cfb86324cb1e4d6f0)) -* enable transactions editor ([28967c2](https://github.com/powerhouse-inc/document-model-electron/commit/28967c2c6a4465494f682e55e914bfdd719bc07b)) -* enabled add cloud drive modal ([d54f579](https://github.com/powerhouse-inc/document-model-electron/commit/d54f579bd903e57cf193cdc11a727eed5526971d)) -* enabled drop target for FolderItem ([70aeaad](https://github.com/powerhouse-inc/document-model-electron/commit/70aeaadde2844def0c0cc648dbb8f496d51b96dd)) -* enabled editor controls ([f7aa503](https://github.com/powerhouse-inc/document-model-electron/commit/f7aa50343c0a124056811f1ce29ab0c8539263da)) -* enabled keyboard shortcut for undo/redo ([82fe517](https://github.com/powerhouse-inc/document-model-electron/commit/82fe517dbbf01006c6fbaae0b1c493c57eeeb422)) -* enabled onErrorCallback for dispatch fn ([8bd3c7c](https://github.com/powerhouse-inc/document-model-electron/commit/8bd3c7ccfafbf1d1b32ada0bb941585bd0ee1907)) -* enabled rename option for folders in folder view ([d7a9b34](https://github.com/powerhouse-inc/document-model-electron/commit/d7a9b3490b0cb91d647ecb803513dbea590f04e0)) -* enabled rename option when copy/move an item ([3ef5ea4](https://github.com/powerhouse-inc/document-model-electron/commit/3ef5ea474997e10b670a989460dca939431f3a9a)) -* enabled rwa editor ([b7df486](https://github.com/powerhouse-inc/document-model-electron/commit/b7df486a82c0c044fab5dd434ecceba1a2c24dc1)) -* enabled switchboard link in RWA editor ([cece18e](https://github.com/powerhouse-inc/document-model-electron/commit/cece18e3cb900cbe2fe7d77c0c329a2c430e2539)) -* enabled sync icons for folders and files ([3e0451e](https://github.com/powerhouse-inc/document-model-electron/commit/3e0451e923151a497894c2b282a3324c11be2867)) -* enabled undo/redo with new document structure ([f6af1e0](https://github.com/powerhouse-inc/document-model-electron/commit/f6af1e002121456e5e9cc4befe6c41ac4ddf8aa9)) -* expand selected path in sidebar on initial path load ([9b5e053](https://github.com/powerhouse-inc/document-model-electron/commit/9b5e0533e7e02d4ae9ea3c6bb01c9827eada160c)) -* export did:key instead of public key ([a358371](https://github.com/powerhouse-inc/document-model-electron/commit/a3583718047f447f2f59a8153e3e2ac15a8cd732)) -* fetch user's ens info ([229a1ae](https://github.com/powerhouse-inc/document-model-electron/commit/229a1ae1bcd145858f867cdf449d9ed2709c8ffc)) -* fix Authorize Connect font color ([25ba2e7](https://github.com/powerhouse-inc/document-model-electron/commit/25ba2e7af5c81c442fed8d919b31a66ba2959e77)) -* fix console warnings ([3024578](https://github.com/powerhouse-inc/document-model-electron/commit/3024578d93e4a70a89a3b3681d34f78a4bd0f1d0)) -* fix css import order ([9216a27](https://github.com/powerhouse-inc/document-model-electron/commit/9216a277e488f73cc892ad015c4ea35dd22bb2a9)) -* fix linux build ([433e6f9](https://github.com/powerhouse-inc/document-model-electron/commit/433e6f9b0a92f72d33e16bbcb71a8965c034c6be)) -* fix logo + position ([278ebeb](https://github.com/powerhouse-inc/document-model-electron/commit/278ebeb39cac2b6d1edb3b096161bb3810669f31)) -* fix rwa document name ([b3f39d1](https://github.com/powerhouse-inc/document-model-electron/commit/b3f39d16c09cb87295d53a7be249b4e2be3895ab)) -* fix sync status ([9ff69fe](https://github.com/powerhouse-inc/document-model-electron/commit/9ff69fedf729b7e70b07bf121c9feed00c1ddc58)) -* fix tailwind class conflicts ([341d8ba](https://github.com/powerhouse-inc/document-model-electron/commit/341d8ba945fd1a20c6014fcb6e5ce77faf458b5f)) -* fixed addDriveOperations ([4c33a1f](https://github.com/powerhouse-inc/document-model-electron/commit/4c33a1f891eeba1b9845768fbc0395cb01dd9e70)) -* fixed base route ([606e919](https://github.com/powerhouse-inc/document-model-electron/commit/606e9191be0f32309e7a0a59e82dc49aa88690bb)) -* fixed default document-models ([0d51154](https://github.com/powerhouse-inc/document-model-electron/commit/0d511546e95a1d5a534f92b549d7120076792040)) -* fixed editors loading ([4fda671](https://github.com/powerhouse-inc/document-model-electron/commit/4fda67192ca075aa66079cbf769548e53e1a2ef3)) -* fixed file import ([23cd72d](https://github.com/powerhouse-inc/document-model-electron/commit/23cd72da07e8fa12bb6f5c739d392432057d6812)) -* fixed file operations error ([5d123af](https://github.com/powerhouse-inc/document-model-electron/commit/5d123af045f0409222bd61404b2249db2a4ec19d)) -* fixes browser key storage ([bfb2a72](https://github.com/powerhouse-inc/document-model-electron/commit/bfb2a725ec7fb4ec507751e52aa743879e39b428)) -* generate key pair on desktop ([ebc0204](https://github.com/powerhouse-inc/document-model-electron/commit/ebc020405e0b289aa4cfdf4935b2afcd53494a7f)) -* go back from fixed version ([41684c4](https://github.com/powerhouse-inc/document-model-electron/commit/41684c4f9cb55bef7f4e8bea46e7ab2eedc26b5c)) -* handle empty string or wrong formatted string in env var ([0099615](https://github.com/powerhouse-inc/document-model-electron/commit/009961513edaba39ad8fb4daacd6dd702a9fedd8)) -* handle null parent folder ([21f9370](https://github.com/powerhouse-inc/document-model-electron/commit/21f93703b08e39c6c97312a232a609a53dacf1c0)) -* handle sync events on node document drive ([3855ce4](https://github.com/powerhouse-inc/document-model-electron/commit/3855ce42a72865ed48e7729d25ec1481e462851d)) -* handle undefined whitelist ([1672fa8](https://github.com/powerhouse-inc/document-model-electron/commit/1672fa86ab863d8d2fc88604a775f524f7b86614)) -* hide searchbar from config ([0bd4444](https://github.com/powerhouse-inc/document-model-electron/commit/0bd4444fca256b28bf413122a870f343963dc801)) -* ignore drives with error ([25a27d5](https://github.com/powerhouse-inc/document-model-electron/commit/25a27d51fed340a22530d5d13e784bf5f9f66fab)) -* ignore operation hashes when importing zip ([634bcd5](https://github.com/powerhouse-inc/document-model-electron/commit/634bcd5cd534d22db9813cc17be28359d94a1e61)) -* ignores document drive result when adding an operation from the editor ([74140e2](https://github.com/powerhouse-inc/document-model-electron/commit/74140e2400ea1c1b5bb9baf5f7b26ed7cbb2a9cb)) -* implemented rename and new folder actions ([45dbf5e](https://github.com/powerhouse-inc/document-model-electron/commit/45dbf5e527841f1107f9d444ac2b76f0dc6fa7c0)) -* import styles from design system ([f7ac8ad](https://github.com/powerhouse-inc/document-model-electron/commit/f7ac8adc2608e8d491618e01b1c98be9f8c43fe2)) -* improved url handling ([32b3dcd](https://github.com/powerhouse-inc/document-model-electron/commit/32b3dcd943518cba4f1f5a82f9dbb5b906096500)) -* install ts-reset ([228b082](https://github.com/powerhouse-inc/document-model-electron/commit/228b082e36b1e689b47d7ed923dfe3347e74ad7d)) -* install vite ([aa66a01](https://github.com/powerhouse-inc/document-model-electron/commit/aa66a01bc96f33984e9d6828fdd93d374916c2c4)) -* lighthouse recomendations ([dd3e594](https://github.com/powerhouse-inc/document-model-electron/commit/dd3e594c198ab2a9deb83420ed8bfb145475ec71)) -* load default drive ([589653f](https://github.com/powerhouse-inc/document-model-electron/commit/589653fab02bc030fbc4a99bea6ed6f4566fd57c)) -* log sync error ([204c38a](https://github.com/powerhouse-inc/document-model-electron/commit/204c38a5f2763edc2006119b8608f6dc39f40dc9)) -* manually install design system ([1b7c676](https://github.com/powerhouse-inc/document-model-electron/commit/1b7c6767c67efed2da903976a62a0bbbaf8a64fe)) -* move helpers ([e12240c](https://github.com/powerhouse-inc/document-model-electron/commit/e12240c40ca8368b9f99f0bdfa5d2881a9a71dc5)) -* move sync status invocation to hook ([dea3fa9](https://github.com/powerhouse-inc/document-model-electron/commit/dea3fa9f5fbcdf9cf355652bf32e2c434a366c13)) -* moved isAllowedToCreateDocuments to folderView ([8ef573b](https://github.com/powerhouse-inc/document-model-electron/commit/8ef573bafb079ebf5e32e6611c25d85225fe6190)) -* moved load initial data into a hook ([99c7417](https://github.com/powerhouse-inc/document-model-electron/commit/99c74175b899c9c1d3f7dbf27de174ebd053bdbf)) -* pass allow list credentials to components ([2fadac1](https://github.com/powerhouse-inc/document-model-electron/commit/2fadac18141430445138ec9446d46227cb69723a)) -* pass allow list props to components ([0df5de6](https://github.com/powerhouse-inc/document-model-electron/commit/0df5de6a1062538cfaee7dcd045abb53b5481106)) -* port config files to ts ([f78e7f5](https://github.com/powerhouse-inc/document-model-electron/commit/f78e7f5444a47d637cc6681dd25917524b03b659)) -* re-enable onErrorCallback with new operations error prop ([a408630](https://github.com/powerhouse-inc/document-model-electron/commit/a408630ee77596a83f2c3ee26a17d44447537647)) -* re-generate package-lock.json ([e48ac3d](https://github.com/powerhouse-inc/document-model-electron/commit/e48ac3dd16d25901565eaed94e4e82b4283f7287)) -* re-implemented copy/move nodes with new DocumentDrive ([c4fad11](https://github.com/powerhouse-inc/document-model-electron/commit/c4fad117827b929d69dd73824d46ef33f767c57f)) -* re-use decodedDriveID ([bb11105](https://github.com/powerhouse-inc/document-model-electron/commit/bb111052681fd6fb73671ad026b16a22c03ec139)) -* readd prepare script ([ad4577e](https://github.com/powerhouse-inc/document-model-electron/commit/ad4577ee92a812a4227e03f2923cbb5b5ca0efdc)) -* refresh UI when there are drive changes ([fca3c95](https://github.com/powerhouse-inc/document-model-electron/commit/fca3c9576679e1bdcb8cf017cad3e885cd245fdf)) -* regenerate lock ([0269b0b](https://github.com/powerhouse-inc/document-model-electron/commit/0269b0b47945bc6d53928ec975f3b0c4557706a9)) -* regenerate lockfile ([efa2f7f](https://github.com/powerhouse-inc/document-model-electron/commit/efa2f7f380e1e558b82a616f8d1ef1cda021371e)) -* regenerate lockfile ([c8aac44](https://github.com/powerhouse-inc/document-model-electron/commit/c8aac44f8cb0184962e5567ea3252e14cc686cce)) -* reinstall with npm ([f790b6c](https://github.com/powerhouse-inc/document-model-electron/commit/f790b6c8611e000b123723c014ef35c1ee9aa55b)) -* remove check ([1db971c](https://github.com/powerhouse-inc/document-model-electron/commit/1db971cf324e2ca0e92c8f9b01614f7ef64f3d6a)) -* remove csp ([b940c38](https://github.com/powerhouse-inc/document-model-electron/commit/b940c3849bb1f804c6d2d8ca7e2bced61be81a95)) -* remove default node logic ([217d6e5](https://github.com/powerhouse-inc/document-model-electron/commit/217d6e5ac54033bda7bd36473712e048fe775623)) -* remove hello from content ([decd9c4](https://github.com/powerhouse-inc/document-model-electron/commit/decd9c4a9dbce3d9ecacbee06ad91d5959b86f84)) -* remove old tailwind classes ([10a8b95](https://github.com/powerhouse-inc/document-model-electron/commit/10a8b95edbcf212c17cb9011b13b32d2b924a767)) -* remove redundant config ([0c4d334](https://github.com/powerhouse-inc/document-model-electron/commit/0c4d334f3f75ccef7597470e1ce2a490b449eca8)) -* remove redundant use effect ([9bb2950](https://github.com/powerhouse-inc/document-model-electron/commit/9bb29508084badc11d535fab2ba241fe8021bc5f)) -* remove restriction to send operations ([dc620c5](https://github.com/powerhouse-inc/document-model-electron/commit/dc620c5fda0dd9adff480ee2ea3494b2b1698cc5)) -* remove scrollbar styles ([a9a3080](https://github.com/powerhouse-inc/document-model-electron/commit/a9a30803d3bf1cf91a82cc9bac6133c9bb335691)) -* removed debug code ([5f0c930](https://github.com/powerhouse-inc/document-model-electron/commit/5f0c930c3c2fb19dfbd46a957fda4655f8549a72)) -* removed electron-deeplink pkg and updated deep links ([5cec527](https://github.com/powerhouse-inc/document-model-electron/commit/5cec527acc442886f35261affa1619efd30e2212)) -* removed networkId from signer ([89c2a1c](https://github.com/powerhouse-inc/document-model-electron/commit/89c2a1c676170878b4cb307b073b53e28bb9e1f5)) -* removed queue timeout ([8b517b7](https://github.com/powerhouse-inc/document-model-electron/commit/8b517b78c1529abe5c7ee6e69d1990c56c4fbb6e)) -* removed re-renders and prevent add default drive being called twice ([3104848](https://github.com/powerhouse-inc/document-model-electron/commit/3104848107ff53daea46d36930be8ca9e3f522e6)) -* removed usehooks-ts dep ([05ca45e](https://github.com/powerhouse-inc/document-model-electron/commit/05ca45ef3227c50a7d44bfd7c8d8730a89d3c369)) -* rename document drive node when document model name is changed ([b9008f7](https://github.com/powerhouse-inc/document-model-electron/commit/b9008f7e08e340329e16c0743133a09d044cb1dd)) -* replaced env vars by client.config file ([28f7a2f](https://github.com/powerhouse-inc/document-model-electron/commit/28f7a2f5fbe97403f4ed317303f19c43b1cbf300)) -* replaced feature flags context by atomWithStorage ([071b7aa](https://github.com/powerhouse-inc/document-model-electron/commit/071b7aacb44792851b45946f41abecaaa99f5633)) -* replaced sidebar input header by connect logo ([a845dfd](https://github.com/powerhouse-inc/document-model-electron/commit/a845dfd14df5167e25fe5530ae03e9400bb36d45)) -* separate browser storage ([9ea89b8](https://github.com/powerhouse-inc/document-model-electron/commit/9ea89b80a5094eaa56a2d3b417a0e8fb05c0ae91)) -* separated error and conflict messages for drive status notification ([e80ccfe](https://github.com/powerhouse-inc/document-model-electron/commit/e80ccfeff3bf1e739af33c0da97f5258f5007e5a)) -* set queue timeout to 10ms ([6c87c92](https://github.com/powerhouse-inc/document-model-electron/commit/6c87c92e4e4ed2246c642f6575db1b31c6611b06)) -* show success sync toast only after recover from error sync ([5c2a47a](https://github.com/powerhouse-inc/document-model-electron/commit/5c2a47a2d0232e13d9fd6047bbe88c3faee6caa3)) -* simplify copy ([2cd60c3](https://github.com/powerhouse-inc/document-model-electron/commit/2cd60c3957685049fc6ff64beb094b409bbd4f32)) -* support add drive ([f827d33](https://github.com/powerhouse-inc/document-model-electron/commit/f827d338d4b6b49bde54f58ec6eb133756f3c765)) -* support multiple separate allow lists ([74d6152](https://github.com/powerhouse-inc/document-model-electron/commit/74d615236b6a75d0602476a826787e37a3ab263f)) -* switch to using vars from design system ([587c258](https://github.com/powerhouse-inc/document-model-electron/commit/587c258c1f47b8f5f1004252aec491d91b14eb5a)) -* trigger build ([e85bf95](https://github.com/powerhouse-inc/document-model-electron/commit/e85bf95f96ece3f59ead521fe39588630203900d)) -* update connect opengraph meta data ([32b3720](https://github.com/powerhouse-inc/document-model-electron/commit/32b372038f27d9a062ad78de6fde36a70cf2d6d8)) -* update deeplink protocol ([45d0a58](https://github.com/powerhouse-inc/document-model-electron/commit/45d0a58d266bcc369fcef7e0a1cc88c71757e1fc)) -* update dependencies and increase pull interval to 3 seconds ([66d8aea](https://github.com/powerhouse-inc/document-model-electron/commit/66d8aea256ccc6f742347db03bf06901b777bc74)) -* update deps ([3b6fa8d](https://github.com/powerhouse-inc/document-model-electron/commit/3b6fa8daeedec0549451490c9a7efec733ab2b75)) -* update document drive ([ff37742](https://github.com/powerhouse-inc/document-model-electron/commit/ff37742d857e9445a30a4122f12ec8585f5d129e)) -* update document drive dep ([ad31bf0](https://github.com/powerhouse-inc/document-model-electron/commit/ad31bf08d09650a9c335e18cf7153c7bd7667081)) -* update document drive dep ([5baaf20](https://github.com/powerhouse-inc/document-model-electron/commit/5baaf2006c71885132bbdabb59976acf5cde8ce2)) -* update document-drive ([534fa80](https://github.com/powerhouse-inc/document-model-electron/commit/534fa802984035735710d220f2496add04704b64)) -* update document-drive ver ([393388e](https://github.com/powerhouse-inc/document-model-electron/commit/393388e0a45f0275e5ab6824695d70b931891777)) -* update document-model and document-drive ver ([d66225a](https://github.com/powerhouse-inc/document-model-electron/commit/d66225aefa67ed761e8c5a1f36b62685666f7d84)) -* update document-model and document-drive versions ([8d1f869](https://github.com/powerhouse-inc/document-model-electron/commit/8d1f8691bf1511aca38f96a1ca7488e9d6104af2)) -* update document-model dep ([c865770](https://github.com/powerhouse-inc/document-model-electron/commit/c8657706b488631cf5955a6677ae5e4e1252bc9c)) -* update document-model document-drive and document-model-libs deps ([aee1dce](https://github.com/powerhouse-inc/document-model-electron/commit/aee1dce7f1c927ca24ac5283ab3d4d48ca85b7f6)) -* update document-model lib to v1.0.29 ([9190869](https://github.com/powerhouse-inc/document-model-electron/commit/9190869ddea006ce0cad8c3fa264d83535e16950)) -* update drive sync icon on syncStatus event ([ded596e](https://github.com/powerhouse-inc/document-model-electron/commit/ded596eb4761ce7003e285a0b283d45242b66444)) -* update editor when opened document is changed ([88e1cad](https://github.com/powerhouse-inc/document-model-electron/commit/88e1cad21d61cc9675f53a4a67e51e8712b22696)) -* update env var names ([42ba363](https://github.com/powerhouse-inc/document-model-electron/commit/42ba363359b08b076fdb7d39fa7df9b2c7d963ba)) -* update experimental deps ([12d28d6](https://github.com/powerhouse-inc/document-model-electron/commit/12d28d695a58dfc9bb2ff1e288b6ea4ef39f1267)) -* update lint config ([170b252](https://github.com/powerhouse-inc/document-model-electron/commit/170b252cd35fe786147f4e5306948eecf6a3990c)) -* update submit handler ([9cd1a10](https://github.com/powerhouse-inc/document-model-electron/commit/9cd1a10a0fee03bf4ddd2ace4f1a3796e1b4de30)) -* update to use new sync icons ([e1cbf1d](https://github.com/powerhouse-inc/document-model-electron/commit/e1cbf1d22de3159c247b3356577f2fdc519a51c5)) -* update url params logic ([6450975](https://github.com/powerhouse-inc/document-model-electron/commit/645097513096fa26327e60ea510d2e4bd628a870)) -* updated deps ([e41734f](https://github.com/powerhouse-inc/document-model-electron/commit/e41734f70b7b8acae90c167df5884820ee99c3c9)) -* updated deps ([a328cd9](https://github.com/powerhouse-inc/document-model-electron/commit/a328cd93ec131d36f61c45fda4863f315fb3a2cc)) -* updated design system dep ([b378a42](https://github.com/powerhouse-inc/document-model-electron/commit/b378a420bad20debc06aeeb376401ecb311889ce)) -* updated design-system alpha 119 ([b337897](https://github.com/powerhouse-inc/document-model-electron/commit/b3378976dd6f75b11b028734ad0e4dee09918b33)) -* updated document drive ([39f3218](https://github.com/powerhouse-inc/document-model-electron/commit/39f3218c6919b4fb72a5641733da60b8eeac69c2)) -* updated document drive ([4b588b0](https://github.com/powerhouse-inc/document-model-electron/commit/4b588b0f602debb6d069c3c4d580292b87a94337)) -* updated document drive ([b0df564](https://github.com/powerhouse-inc/document-model-electron/commit/b0df564c0952c60b3202c392e9fb1a23e401bea8)) -* updated document drive lib ([5f30983](https://github.com/powerhouse-inc/document-model-electron/commit/5f30983ab3f07462d842e3f464c0723d3f8785dd)) -* updated document-drive ([2a08adb](https://github.com/powerhouse-inc/document-model-electron/commit/2a08adb7fdd6a46af4c8d8ff31c946e043dbb016)) -* updated document-drive ver ([f7b9c7d](https://github.com/powerhouse-inc/document-model-electron/commit/f7b9c7df9d9b569b296d599998e3a500bfb8735c)) -* updated document-drive version ([a92dd24](https://github.com/powerhouse-inc/document-model-electron/commit/a92dd24c3ae638ff02587623a3d33af7fd89e2b6)) -* updated document-drive@1.0.0-experimental.2 ([c2b2816](https://github.com/powerhouse-inc/document-model-electron/commit/c2b2816cc7eea0346ea7d958b39f4b25796bb2a0)) -* updated document-drive@1.0.0-experimental.4 ([f31d12d](https://github.com/powerhouse-inc/document-model-electron/commit/f31d12d18404882a1f3af00f9bca6ab79d7a667e)) -* updated document-model dep ([f487cff](https://github.com/powerhouse-inc/document-model-electron/commit/f487cff99198d7cc3d8fd9db944ca394cc788dec)) -* updated document-model lib ([9db149e](https://github.com/powerhouse-inc/document-model-electron/commit/9db149ecc91926c02f2fe8479ca08958b66977d3)) -* updated document-model-libs ([b0bb1d2](https://github.com/powerhouse-inc/document-model-electron/commit/b0bb1d2ef530ecacc8f722322149866f8fbce03d)) -* updated document-model-libs and design-system ver ([d4ab8f8](https://github.com/powerhouse-inc/document-model-electron/commit/d4ab8f881d0e04d5bf68e0748205cf25fcce90e1)) -* updated libs ([adbadc1](https://github.com/powerhouse-inc/document-model-electron/commit/adbadc1d0b826acfc7e112d07d1c478496ac93cb)) -* updated package.lock ([3c334f4](https://github.com/powerhouse-inc/document-model-electron/commit/3c334f4f714ec6a63ce63bbc7f60d0e67f99b17b)) -* updated release script ([d5b4fd6](https://github.com/powerhouse-inc/document-model-electron/commit/d5b4fd60008696328dea4bf69b382ed8e1be527e)) -* updated rwa query ([3709cfc](https://github.com/powerhouse-inc/document-model-electron/commit/3709cfc9543851fe77f8a930d1e0806d552069d6)) -* use default values if there is a missing key for feature flags ([cdb728a](https://github.com/powerhouse-inc/document-model-electron/commit/cdb728a3964ca1183bd38743744a8bdf51e04fb6)) -* use drive icon ([c82bebb](https://github.com/powerhouse-inc/document-model-electron/commit/c82bebb00516c95b2f6f48102672bf70333f9477)) -* use memoized version of FileItem component ([8b0314b](https://github.com/powerhouse-inc/document-model-electron/commit/8b0314ba7ef8d538dc680d4a036b9c010a039273)) -* use memoryBrowser on packaged app ([2d11200](https://github.com/powerhouse-inc/document-model-electron/commit/2d11200a47c861429edd0ad5c6a4eb13b46a7363)) -* use new svgr syntax ([e1db3b9](https://github.com/powerhouse-inc/document-model-electron/commit/e1db3b95b5330f95893b5511df8041ed04d33fb7)) -* use not equal ([8e33089](https://github.com/powerhouse-inc/document-model-electron/commit/8e330890f658224bc1e37d6504765e3d01cc7ede)) -* use setTimeout as fallback for requestIdleCallback ([730c8f2](https://github.com/powerhouse-inc/document-model-electron/commit/730c8f292eec07908410f7f2949c045bab8094fe)) -* use tailwind styles ([53dc69f](https://github.com/powerhouse-inc/document-model-electron/commit/53dc69f69663b4d315c03b57a64b87b274e698cd)) -* use yarn ([812fe5a](https://github.com/powerhouse-inc/document-model-electron/commit/812fe5af48fdea5cb5955f6b8336604722476b44)) -* waits 50ms for new operations to make a single addOperations call ([d4c9796](https://github.com/powerhouse-inc/document-model-electron/commit/d4c97965cc9b83128f6be225a27a64c2f88795f3)) -* waits for document drive server to be loaded before checking default drive is added ([fc10ee8](https://github.com/powerhouse-inc/document-model-electron/commit/fc10ee8428d9d9c24c6cef38cd104ac5f79d759c)) - +- 🚀 Added ItemsContext integration ([41fc40f](https://github.com/powerhouse-inc/document-model-electron/commit/41fc40f93420101ca9b2ec34e1b4f4cab4a43a4b)) +- 🚀 added readable item path for File Items ([9f6a4ac](https://github.com/powerhouse-inc/document-model-electron/commit/9f6a4ac45318bb757e7c7c60df463e67b066771b)) +- 🚀 Implemented base folder-view design ([22ad4fc](https://github.com/powerhouse-inc/document-model-electron/commit/22ad4fc5046e27016ce1a47eda3282125af4db71)) +- activate queue ([#290](https://github.com/powerhouse-inc/document-model-electron/issues/290)) ([5b5a4fd](https://github.com/powerhouse-inc/document-model-electron/commit/5b5a4fd317ce624cc734f186778e49899dd3b148)) +- add dep array to use effect ([0a88d92](https://github.com/powerhouse-inc/document-model-electron/commit/0a88d92a664b877929978f05753f3d38e471625d)) +- add dependency versions to settings modal ([d01c0de](https://github.com/powerhouse-inc/document-model-electron/commit/d01c0de124cb9af00312e4c53e934d8a233e02af)) +- add design system preset ([a6cb51c](https://github.com/powerhouse-inc/document-model-electron/commit/a6cb51c31d4500d31fd091f165a4f01ae37ff4d7)) +- add duplicate action ([a9d2e29](https://github.com/powerhouse-inc/document-model-electron/commit/a9d2e29318badb84ca51acc9603a2c2dc7f25a0e)) +- add duplicate to folder ([a6212a8](https://github.com/powerhouse-inc/document-model-electron/commit/a6212a8fe3c62f49d1b624e75152e48f80034ed2)) +- add generate assets hook for icons copying ([4c25ebe](https://github.com/powerhouse-inc/document-model-electron/commit/4c25ebecc94941502e35dff28555664b3985f67b)) +- add is allowed to create documents hook ([0a457fc](https://github.com/powerhouse-inc/document-model-electron/commit/0a457fc35f5e78cb16eac1664c3def10b29b5229)) +- add optional dep ([a079cc7](https://github.com/powerhouse-inc/document-model-electron/commit/a079cc799c0d7987193ee209618151c10c743282)) +- add pull trigger on cloud drives ([9f86849](https://github.com/powerhouse-inc/document-model-electron/commit/9f868495ced48b9b23a3d128469ce7ac20d32a57)) +- add react aria dep ([499dda0](https://github.com/powerhouse-inc/document-model-electron/commit/499dda05d52469c85f0dc31d1da5639dc926c9c4)) +- add tailwind eslint plugin ([6e639bc](https://github.com/powerhouse-inc/document-model-electron/commit/6e639bc71bddeafe855c210c0f573cec7b2ce622)) +- add user context to actions ([6a3241d](https://github.com/powerhouse-inc/document-model-electron/commit/6a3241d3e98c58262ffc7bbbcaa66f6f5d8878b3)) +- added addpublicdrive util ([4dc536f](https://github.com/powerhouse-inc/document-model-electron/commit/4dc536f82216f47a8db46225ac1f6d6e1f9c7a23)) +- added base path for nginx ([22a270b](https://github.com/powerhouse-inc/document-model-electron/commit/22a270b978e189a8a9afd20e0ae8f568e8c3336e)) +- added browser key storage ([6562881](https://github.com/powerhouse-inc/document-model-electron/commit/6562881b2eb603b59b55f1595a7f46b96dbbded6)) +- added clear storage setting ([922f5e1](https://github.com/powerhouse-inc/document-model-electron/commit/922f5e19ebd68e07440858c2f7308e3f6d1a2aae)) +- added config to hide drive sections ([aa67a3f](https://github.com/powerhouse-inc/document-model-electron/commit/aa67a3f392891e195fbc24a2ff858b66265eccc5)) +- added csp headers ([bd398aa](https://github.com/powerhouse-inc/document-model-electron/commit/bd398aa0bc6d748b740e17d4ddf197232d701c62)) +- added cypress CI config ([6418f6d](https://github.com/powerhouse-inc/document-model-electron/commit/6418f6d06b8f9d14012ab660a21f0b8b35af008a)) +- added Cypress Cloud Config ([24deddb](https://github.com/powerhouse-inc/document-model-electron/commit/24deddb0518dc49e14538e29045e56eeab735b62)) +- added cypress setup ([380db83](https://github.com/powerhouse-inc/document-model-electron/commit/380db83614f692230bbd11ebff63007599745f0d)) +- added deeplink support to link to specific drive node ([ae1f97f](https://github.com/powerhouse-inc/document-model-electron/commit/ae1f97fb17e3cbc422a2e242e9ff530c598284a5)) +- added delete drive modal + enable delete file modal confirmation ([4ce110e](https://github.com/powerhouse-inc/document-model-electron/commit/4ce110e7baaaad3ea75a33eff45fab9994184658)) +- added develop environment ([4ceabce](https://github.com/powerhouse-inc/document-model-electron/commit/4ceabce3c8e5d43488abda4a83d524b59da0c338)) +- added develop to release cycle ([3e1058e](https://github.com/powerhouse-inc/document-model-electron/commit/3e1058eac31ac13d74aaed32418d6ac56ad4e3dd)) +- added e2e playwright setup ([2d37330](https://github.com/powerhouse-inc/document-model-electron/commit/2d37330f103456dc9d3e24cc4a74d3ed7abb20c8)) +- added editor debug tools ([6928bed](https://github.com/powerhouse-inc/document-model-electron/commit/6928bed61c46322bc341da7bed48dcde60454b9e)) +- added env var to hide document model setting ([840a561](https://github.com/powerhouse-inc/document-model-electron/commit/840a5615ba0b5eafab123b0f0e5c21b3c880d670)) +- added env vars for renown ([f464d68](https://github.com/powerhouse-inc/document-model-electron/commit/f464d68172be57798be364a804b9de0e7f1733c1)) +- added feature flag setup + disable editors for demo ([7fa64f2](https://github.com/powerhouse-inc/document-model-electron/commit/7fa64f2634cea508ebfb8b20732a730dc8b0624b)) +- added gzip and brotli compression to nginx ([f52a0c3](https://github.com/powerhouse-inc/document-model-electron/commit/f52a0c3205b1fd7fc99875fae0ad5a1d5cd24dd5)) +- added heroku deployment for powerhouse staging env ([f4c538a](https://github.com/powerhouse-inc/document-model-electron/commit/f4c538a3e02781276996e30b759d50f248037c86)) +- added modal confirmation when export document with errors ([d22a447](https://github.com/powerhouse-inc/document-model-electron/commit/d22a447c98d50589f61e37cd6284155223824057)) +- added network id to user ([908a50e](https://github.com/powerhouse-inc/document-model-electron/commit/908a50e8df9c1ae7e53940dc801157a5ca665706)) +- added new env var to dockerfile ([64afb40](https://github.com/powerhouse-inc/document-model-electron/commit/64afb40dfec060e8ebfaaeddf8f47f3f925d21be)) +- added nginx config ([069be2c](https://github.com/powerhouse-inc/document-model-electron/commit/069be2cd98aee6fe3a6b686b4112a435e81d11b3)) +- added notification toast ([39ed0c2](https://github.com/powerhouse-inc/document-model-electron/commit/39ed0c2319c2a6e1c2044aff5cda1fd1dc51d24b)) +- added open file and delete file ([01793c8](https://github.com/powerhouse-inc/document-model-electron/commit/01793c8a5f21b8e1701e649cc926c8baa7ece4fe)) +- added opengraph and twitter meta data ([280da91](https://github.com/powerhouse-inc/document-model-electron/commit/280da914bbe8129ead8559d4169ea266fbb327bc)) +- added PH logo ([e9ec94b](https://github.com/powerhouse-inc/document-model-electron/commit/e9ec94b3373495aa0d03673b241c78605b61d396)) +- added prepare script ([abeaa41](https://github.com/powerhouse-inc/document-model-electron/commit/abeaa41bb7bfc7a8d3a7332a9dd0ba0dad088659)) +- added reload Connect toast ([37cb55e](https://github.com/powerhouse-inc/document-model-electron/commit/37cb55ecf4b746025de9c613d176a250505559c6)) +- added renown login on browser ([5b77016](https://github.com/powerhouse-inc/document-model-electron/commit/5b77016508fd448b23999919a8d9e40bc701e1f9)) +- added rewrite rules to vercel.json config ([b66cdb0](https://github.com/powerhouse-inc/document-model-electron/commit/b66cdb0fb264412710c1d3bf67f06d48df52408c)) +- added route to open document drive node ([6700f13](https://github.com/powerhouse-inc/document-model-electron/commit/6700f132435dd4ce175b036d5e906d1194976ed0)) +- added RWA doc name fix for demo ([05dfd07](https://github.com/powerhouse-inc/document-model-electron/commit/05dfd0781038523b86437ebe1164e20a848c65b2)) +- added scope of work ([742aae0](https://github.com/powerhouse-inc/document-model-electron/commit/742aae0cab712068d2f8dbe2804da3ba802416bd)) +- added sentry dsn to environments ([c4cfef1](https://github.com/powerhouse-inc/document-model-electron/commit/c4cfef161be9db837d29aca316949957412e4c25)) +- added sentry environments ([68fefd0](https://github.com/powerhouse-inc/document-model-electron/commit/68fefd095cbffcec9eeebedb786d5ab7afc9c9bf)) +- added sentry to connect ([d51ec53](https://github.com/powerhouse-inc/document-model-electron/commit/d51ec538d376cb533882f9c4b0ee057d80ce7d1a)) +- added settings modal integration ([dfb9d28](https://github.com/powerhouse-inc/document-model-electron/commit/dfb9d287bb99dec4316c9eee5098816b6f498926)) +- added sidebar login ([2917809](https://github.com/powerhouse-inc/document-model-electron/commit/29178094a9d711e1d7303dde1511a7b73bc37199)) +- added sort nodes + fix input styles + cancel new folders with empty name ([4a2f9fb](https://github.com/powerhouse-inc/document-model-electron/commit/4a2f9fbf2c4dc5427c58633f18e40eb10574600c)) +- added support for delete option in FolderItem and FileItem ([85800ab](https://github.com/powerhouse-inc/document-model-electron/commit/85800ab374da9be041d6e8c547d186a0671a6b91)) +- added support for document in addfile action ([0706ce2](https://github.com/powerhouse-inc/document-model-electron/commit/0706ce25a515024a37b61aec11c930601a0869e5)) +- added support for rename files + create file name modal ([8a76691](https://github.com/powerhouse-inc/document-model-electron/commit/8a76691426d671128c4cfbc98864a9a669e395f3)) +- added support for renown user ([3853b37](https://github.com/powerhouse-inc/document-model-electron/commit/3853b371349ee14051b666a19fbb0b0c564c8ac6)) +- added support for router basename ([251afe2](https://github.com/powerhouse-inc/document-model-electron/commit/251afe2b1d4eab690f9592e25edc6c555e2fe44a)) +- added switchboard link to document files ([5f31b71](https://github.com/powerhouse-inc/document-model-electron/commit/5f31b710a6ae65f42aac65840da422134e48ee6c)) +- added useConnectConfig hook ([a600091](https://github.com/powerhouse-inc/document-model-electron/commit/a60009131ad8600174311b45a696d0c3219ae8ce)) +- added vercel redirect ([7100848](https://github.com/powerhouse-inc/document-model-electron/commit/7100848213fe6e5d0811229e67c82b8997648fa2)) +- added version comparison ([866e979](https://github.com/powerhouse-inc/document-model-electron/commit/866e979684d884528cb06568ee92d02ec1253308)) +- added vite env as build args ([c76d4f4](https://github.com/powerhouse-inc/document-model-electron/commit/c76d4f431017df7f9b40a5063a71618084333c24)) +- allow connect-src for renown.id ([7357d4a](https://github.com/powerhouse-inc/document-model-electron/commit/7357d4a4a2c9aff400e55d9c8eed9630aaec4ed5)) +- allow external images ([171efac](https://github.com/powerhouse-inc/document-model-electron/commit/171efac183458b993ac11849345b3fb8765a10f4)) +- allow per deploy drive restrictions ([8779d84](https://github.com/powerhouse-inc/document-model-electron/commit/8779d84cb1be5128ac7b1c63a8666c5d03b2f593)) +- allow url for file ([474ad4d](https://github.com/powerhouse-inc/document-model-electron/commit/474ad4d0b90e9e882bb52d4ca479a4314d15eec1)) +- also disable when env is production ([6f60688](https://github.com/powerhouse-inc/document-model-electron/commit/6f60688a7bcf92e19afe5a4a49a1baa9f0c44507)) +- also do src === target check in move node function ([3e80c1e](https://github.com/powerhouse-inc/document-model-electron/commit/3e80c1e4dface07c9d101c39f6a0dce6d0654a26)) +- apply auto fixes ([b10b111](https://github.com/powerhouse-inc/document-model-electron/commit/b10b111374636b145c52fa15f38ebc0751912483)) +- auto-select first drive if there's no selected path ([daf3083](https://github.com/powerhouse-inc/document-model-electron/commit/daf3083b4fff8dd6f033ce9806affe932fea4f04)) +- avoid recreate fileOptions and clickOptionsHandler for each file node ([08557e9](https://github.com/powerhouse-inc/document-model-electron/commit/08557e983c663e58a0bb68534b11df579f9be045)) +- avoid recreate folderOptions and clickFolderOptionsHandler for each folder node ([efa90d2](https://github.com/powerhouse-inc/document-model-electron/commit/efa90d2664c025247ae6636a2c06706b12b1ad96)) +- bump ([40fd30a](https://github.com/powerhouse-inc/document-model-electron/commit/40fd30a489214a512a7dc43fbe9dea1e0c33604a)) +- bump ([11fb69f](https://github.com/powerhouse-inc/document-model-electron/commit/11fb69f6f507d4240e72b1208982c814bce185a8)) +- bump deps ([7d7206c](https://github.com/powerhouse-inc/document-model-electron/commit/7d7206c5ae9bc7c9e7d26713fc8ff4e7ef5f459d)) +- bump design system ([fb12d70](https://github.com/powerhouse-inc/document-model-electron/commit/fb12d70fcd3237f1cacb0375e99e4a1ae01cc342)) +- bump design system ([4e1d168](https://github.com/powerhouse-inc/document-model-electron/commit/4e1d168298355beea31e2216edeb7b7cef8e8257)) +- bump design system and document model libs ([165e2cc](https://github.com/powerhouse-inc/document-model-electron/commit/165e2ccc41d5d72a6f2f834292c18aa2388ebb86)) +- bump design system to integrate dep version component ([a18c621](https://github.com/powerhouse-inc/document-model-electron/commit/a18c621a24d97b3bfa9f103365b3890f6fd342d7)) +- bump design-system and document-model-lib deps ([7d90802](https://github.com/powerhouse-inc/document-model-electron/commit/7d9080289ce258cf9d299d13b4cf7e092fd51535)) +- bump document drive version ([254a2cd](https://github.com/powerhouse-inc/document-model-electron/commit/254a2cd967b07d22352d38509ad55c2ffcd19bf5)) +- bump libs ([e11a238](https://github.com/powerhouse-inc/document-model-electron/commit/e11a23886304d971c1bf8ae7db92cbbe63c5d185)) +- bump libs ([4e0863a](https://github.com/powerhouse-inc/document-model-electron/commit/4e0863af39e148053154fdcd2cb5ca5f3c801c6b)) +- bump libs ([87d0d1a](https://github.com/powerhouse-inc/document-model-electron/commit/87d0d1af3997d258065bcdf91f7eba74e1e845ae)) +- bump libs ([24a9cd3](https://github.com/powerhouse-inc/document-model-electron/commit/24a9cd3427eecc32697f15d7479bf5ee53c95084)) +- bump libs ([b27b036](https://github.com/powerhouse-inc/document-model-electron/commit/b27b036a487fbe989f9f7b585603e15bcdd3fa3a)) +- bump libs ([5fb15d3](https://github.com/powerhouse-inc/document-model-electron/commit/5fb15d321de8649ac2fc6953d9ec5312aeabefeb)) +- bump libs ([1f38863](https://github.com/powerhouse-inc/document-model-electron/commit/1f38863cb3e6fff081218ce59d7cf1a6f3c44621)) +- bump libs ([7df97b0](https://github.com/powerhouse-inc/document-model-electron/commit/7df97b03882c012f035b259aebb85ba42704008b)) +- bump libs ([78baf1d](https://github.com/powerhouse-inc/document-model-electron/commit/78baf1dee6da3f18208f23973f65b5a1b930ba81)) +- bump libs ([d766c36](https://github.com/powerhouse-inc/document-model-electron/commit/d766c36649f3575b2d10bcaf532249437a79b36c)) +- bump libs ([6b3f58f](https://github.com/powerhouse-inc/document-model-electron/commit/6b3f58fd3aad9e628cf2312629280f12984648e2)) +- bump libs ([f98b523](https://github.com/powerhouse-inc/document-model-electron/commit/f98b523acb0e2f2599d4d8927bf8fe5b26374856)) +- bump libs ([2a9a29d](https://github.com/powerhouse-inc/document-model-electron/commit/2a9a29d0d9d129abbbe6b16567151f3ecd0d525e)) +- bump libs ([62117a9](https://github.com/powerhouse-inc/document-model-electron/commit/62117a90490e9bbb32c4a84fdbdb3d930ca7ebfb)) +- bump libs ([62cd43d](https://github.com/powerhouse-inc/document-model-electron/commit/62cd43dd7f80cfd6202c251a9c1af1bad0978b67)) +- bump lint deps ([544fcea](https://github.com/powerhouse-inc/document-model-electron/commit/544fcea7cdcf450756b8deb913c47047a9161849)) +- bump react aria ([3a8ed93](https://github.com/powerhouse-inc/document-model-electron/commit/3a8ed934d371b11c7deb8c8894b43c323d04f06f)) +- cancel rename operation when new name is empty ([6c7a815](https://github.com/powerhouse-inc/document-model-electron/commit/6c7a815500339ebbced23214450750bacbfdebc9)) +- change term to allow list ([af99e9b](https://github.com/powerhouse-inc/document-model-electron/commit/af99e9ba0a3eee7074cc763922caf1656f024e83)) +- changed default renown env variables ([c87ee69](https://github.com/powerhouse-inc/document-model-electron/commit/c87ee697507eba7235150e5156bbe7d0cd121e36)) +- changed nginx image to nginx-brotli ([3d497da](https://github.com/powerhouse-inc/document-model-electron/commit/3d497da7806bdb77a6352aad9ad5f64ddcfa93e4)) +- check if operations with same index are submitted ([b7ad973](https://github.com/powerhouse-inc/document-model-electron/commit/b7ad97307106467a39060da44420515f10ce3921)) +- check user auth on startup ([6820f27](https://github.com/powerhouse-inc/document-model-electron/commit/6820f27a8defb40d72e3580d00fe11f1170bbe22)) +- commented renown env variables ([cd18bab](https://github.com/powerhouse-inc/document-model-electron/commit/cd18babc471fef7b1939bed4478265bd5a38abc1)) +- configure available editors with env variables ([00fad56](https://github.com/powerhouse-inc/document-model-electron/commit/00fad56259d24c1dc9fe3009ec5d4d8d9a51782a)) +- default drive handling improvements ([57be63e](https://github.com/powerhouse-inc/document-model-electron/commit/57be63e34a368769eb159728194f70d60ad98290)) +- detect circular reference in node path ([c113d03](https://github.com/powerhouse-inc/document-model-electron/commit/c113d035118d418ed8006b55112d101f030b4caa)) +- disable dev tools when app is packaged ([2326a77](https://github.com/powerhouse-inc/document-model-electron/commit/2326a7774f74d2c8af949cf55c18b12b38d0b7d9)) +- disable document drive editor by default ([a61249f](https://github.com/powerhouse-inc/document-model-electron/commit/a61249f43e50219b7b6aebc27f63b2d07a4735ec)) +- disallow create operations ([9cb4a8e](https://github.com/powerhouse-inc/document-model-electron/commit/9cb4a8e4d902f67692e696b60c283a3ec59ca137)) +- downloadFile fallback ([9836f4c](https://github.com/powerhouse-inc/document-model-electron/commit/9836f4c1e6edf68d1239f69cfb86324cb1e4d6f0)) +- enable transactions editor ([28967c2](https://github.com/powerhouse-inc/document-model-electron/commit/28967c2c6a4465494f682e55e914bfdd719bc07b)) +- enabled add cloud drive modal ([d54f579](https://github.com/powerhouse-inc/document-model-electron/commit/d54f579bd903e57cf193cdc11a727eed5526971d)) +- enabled drop target for FolderItem ([70aeaad](https://github.com/powerhouse-inc/document-model-electron/commit/70aeaadde2844def0c0cc648dbb8f496d51b96dd)) +- enabled editor controls ([f7aa503](https://github.com/powerhouse-inc/document-model-electron/commit/f7aa50343c0a124056811f1ce29ab0c8539263da)) +- enabled keyboard shortcut for undo/redo ([82fe517](https://github.com/powerhouse-inc/document-model-electron/commit/82fe517dbbf01006c6fbaae0b1c493c57eeeb422)) +- enabled onErrorCallback for dispatch fn ([8bd3c7c](https://github.com/powerhouse-inc/document-model-electron/commit/8bd3c7ccfafbf1d1b32ada0bb941585bd0ee1907)) +- enabled rename option for folders in folder view ([d7a9b34](https://github.com/powerhouse-inc/document-model-electron/commit/d7a9b3490b0cb91d647ecb803513dbea590f04e0)) +- enabled rename option when copy/move an item ([3ef5ea4](https://github.com/powerhouse-inc/document-model-electron/commit/3ef5ea474997e10b670a989460dca939431f3a9a)) +- enabled rwa editor ([b7df486](https://github.com/powerhouse-inc/document-model-electron/commit/b7df486a82c0c044fab5dd434ecceba1a2c24dc1)) +- enabled switchboard link in RWA editor ([cece18e](https://github.com/powerhouse-inc/document-model-electron/commit/cece18e3cb900cbe2fe7d77c0c329a2c430e2539)) +- enabled sync icons for folders and files ([3e0451e](https://github.com/powerhouse-inc/document-model-electron/commit/3e0451e923151a497894c2b282a3324c11be2867)) +- enabled undo/redo with new document structure ([f6af1e0](https://github.com/powerhouse-inc/document-model-electron/commit/f6af1e002121456e5e9cc4befe6c41ac4ddf8aa9)) +- expand selected path in sidebar on initial path load ([9b5e053](https://github.com/powerhouse-inc/document-model-electron/commit/9b5e0533e7e02d4ae9ea3c6bb01c9827eada160c)) +- export did:key instead of public key ([a358371](https://github.com/powerhouse-inc/document-model-electron/commit/a3583718047f447f2f59a8153e3e2ac15a8cd732)) +- fetch user's ens info ([229a1ae](https://github.com/powerhouse-inc/document-model-electron/commit/229a1ae1bcd145858f867cdf449d9ed2709c8ffc)) +- fix Authorize Connect font color ([25ba2e7](https://github.com/powerhouse-inc/document-model-electron/commit/25ba2e7af5c81c442fed8d919b31a66ba2959e77)) +- fix console warnings ([3024578](https://github.com/powerhouse-inc/document-model-electron/commit/3024578d93e4a70a89a3b3681d34f78a4bd0f1d0)) +- fix css import order ([9216a27](https://github.com/powerhouse-inc/document-model-electron/commit/9216a277e488f73cc892ad015c4ea35dd22bb2a9)) +- fix linux build ([433e6f9](https://github.com/powerhouse-inc/document-model-electron/commit/433e6f9b0a92f72d33e16bbcb71a8965c034c6be)) +- fix logo + position ([278ebeb](https://github.com/powerhouse-inc/document-model-electron/commit/278ebeb39cac2b6d1edb3b096161bb3810669f31)) +- fix rwa document name ([b3f39d1](https://github.com/powerhouse-inc/document-model-electron/commit/b3f39d16c09cb87295d53a7be249b4e2be3895ab)) +- fix sync status ([9ff69fe](https://github.com/powerhouse-inc/document-model-electron/commit/9ff69fedf729b7e70b07bf121c9feed00c1ddc58)) +- fix tailwind class conflicts ([341d8ba](https://github.com/powerhouse-inc/document-model-electron/commit/341d8ba945fd1a20c6014fcb6e5ce77faf458b5f)) +- fixed addDriveOperations ([4c33a1f](https://github.com/powerhouse-inc/document-model-electron/commit/4c33a1f891eeba1b9845768fbc0395cb01dd9e70)) +- fixed base route ([606e919](https://github.com/powerhouse-inc/document-model-electron/commit/606e9191be0f32309e7a0a59e82dc49aa88690bb)) +- fixed default document-models ([0d51154](https://github.com/powerhouse-inc/document-model-electron/commit/0d511546e95a1d5a534f92b549d7120076792040)) +- fixed editors loading ([4fda671](https://github.com/powerhouse-inc/document-model-electron/commit/4fda67192ca075aa66079cbf769548e53e1a2ef3)) +- fixed file import ([23cd72d](https://github.com/powerhouse-inc/document-model-electron/commit/23cd72da07e8fa12bb6f5c739d392432057d6812)) +- fixed file operations error ([5d123af](https://github.com/powerhouse-inc/document-model-electron/commit/5d123af045f0409222bd61404b2249db2a4ec19d)) +- fixes browser key storage ([bfb2a72](https://github.com/powerhouse-inc/document-model-electron/commit/bfb2a725ec7fb4ec507751e52aa743879e39b428)) +- generate key pair on desktop ([ebc0204](https://github.com/powerhouse-inc/document-model-electron/commit/ebc020405e0b289aa4cfdf4935b2afcd53494a7f)) +- go back from fixed version ([41684c4](https://github.com/powerhouse-inc/document-model-electron/commit/41684c4f9cb55bef7f4e8bea46e7ab2eedc26b5c)) +- handle empty string or wrong formatted string in env var ([0099615](https://github.com/powerhouse-inc/document-model-electron/commit/009961513edaba39ad8fb4daacd6dd702a9fedd8)) +- handle null parent folder ([21f9370](https://github.com/powerhouse-inc/document-model-electron/commit/21f93703b08e39c6c97312a232a609a53dacf1c0)) +- handle sync events on node document drive ([3855ce4](https://github.com/powerhouse-inc/document-model-electron/commit/3855ce42a72865ed48e7729d25ec1481e462851d)) +- handle undefined whitelist ([1672fa8](https://github.com/powerhouse-inc/document-model-electron/commit/1672fa86ab863d8d2fc88604a775f524f7b86614)) +- hide searchbar from config ([0bd4444](https://github.com/powerhouse-inc/document-model-electron/commit/0bd4444fca256b28bf413122a870f343963dc801)) +- ignore drives with error ([25a27d5](https://github.com/powerhouse-inc/document-model-electron/commit/25a27d51fed340a22530d5d13e784bf5f9f66fab)) +- ignore operation hashes when importing zip ([634bcd5](https://github.com/powerhouse-inc/document-model-electron/commit/634bcd5cd534d22db9813cc17be28359d94a1e61)) +- ignores document drive result when adding an operation from the editor ([74140e2](https://github.com/powerhouse-inc/document-model-electron/commit/74140e2400ea1c1b5bb9baf5f7b26ed7cbb2a9cb)) +- implemented rename and new folder actions ([45dbf5e](https://github.com/powerhouse-inc/document-model-electron/commit/45dbf5e527841f1107f9d444ac2b76f0dc6fa7c0)) +- import styles from design system ([f7ac8ad](https://github.com/powerhouse-inc/document-model-electron/commit/f7ac8adc2608e8d491618e01b1c98be9f8c43fe2)) +- improved url handling ([32b3dcd](https://github.com/powerhouse-inc/document-model-electron/commit/32b3dcd943518cba4f1f5a82f9dbb5b906096500)) +- install ts-reset ([228b082](https://github.com/powerhouse-inc/document-model-electron/commit/228b082e36b1e689b47d7ed923dfe3347e74ad7d)) +- install vite ([aa66a01](https://github.com/powerhouse-inc/document-model-electron/commit/aa66a01bc96f33984e9d6828fdd93d374916c2c4)) +- lighthouse recomendations ([dd3e594](https://github.com/powerhouse-inc/document-model-electron/commit/dd3e594c198ab2a9deb83420ed8bfb145475ec71)) +- load default drive ([589653f](https://github.com/powerhouse-inc/document-model-electron/commit/589653fab02bc030fbc4a99bea6ed6f4566fd57c)) +- log sync error ([204c38a](https://github.com/powerhouse-inc/document-model-electron/commit/204c38a5f2763edc2006119b8608f6dc39f40dc9)) +- manually install design system ([1b7c676](https://github.com/powerhouse-inc/document-model-electron/commit/1b7c6767c67efed2da903976a62a0bbbaf8a64fe)) +- move helpers ([e12240c](https://github.com/powerhouse-inc/document-model-electron/commit/e12240c40ca8368b9f99f0bdfa5d2881a9a71dc5)) +- move sync status invocation to hook ([dea3fa9](https://github.com/powerhouse-inc/document-model-electron/commit/dea3fa9f5fbcdf9cf355652bf32e2c434a366c13)) +- moved isAllowedToCreateDocuments to folderView ([8ef573b](https://github.com/powerhouse-inc/document-model-electron/commit/8ef573bafb079ebf5e32e6611c25d85225fe6190)) +- moved load initial data into a hook ([99c7417](https://github.com/powerhouse-inc/document-model-electron/commit/99c74175b899c9c1d3f7dbf27de174ebd053bdbf)) +- pass allow list credentials to components ([2fadac1](https://github.com/powerhouse-inc/document-model-electron/commit/2fadac18141430445138ec9446d46227cb69723a)) +- pass allow list props to components ([0df5de6](https://github.com/powerhouse-inc/document-model-electron/commit/0df5de6a1062538cfaee7dcd045abb53b5481106)) +- port config files to ts ([f78e7f5](https://github.com/powerhouse-inc/document-model-electron/commit/f78e7f5444a47d637cc6681dd25917524b03b659)) +- re-enable onErrorCallback with new operations error prop ([a408630](https://github.com/powerhouse-inc/document-model-electron/commit/a408630ee77596a83f2c3ee26a17d44447537647)) +- re-generate package-lock.json ([e48ac3d](https://github.com/powerhouse-inc/document-model-electron/commit/e48ac3dd16d25901565eaed94e4e82b4283f7287)) +- re-implemented copy/move nodes with new DocumentDrive ([c4fad11](https://github.com/powerhouse-inc/document-model-electron/commit/c4fad117827b929d69dd73824d46ef33f767c57f)) +- re-use decodedDriveID ([bb11105](https://github.com/powerhouse-inc/document-model-electron/commit/bb111052681fd6fb73671ad026b16a22c03ec139)) +- readd prepare script ([ad4577e](https://github.com/powerhouse-inc/document-model-electron/commit/ad4577ee92a812a4227e03f2923cbb5b5ca0efdc)) +- refresh UI when there are drive changes ([fca3c95](https://github.com/powerhouse-inc/document-model-electron/commit/fca3c9576679e1bdcb8cf017cad3e885cd245fdf)) +- regenerate lock ([0269b0b](https://github.com/powerhouse-inc/document-model-electron/commit/0269b0b47945bc6d53928ec975f3b0c4557706a9)) +- regenerate lockfile ([efa2f7f](https://github.com/powerhouse-inc/document-model-electron/commit/efa2f7f380e1e558b82a616f8d1ef1cda021371e)) +- regenerate lockfile ([c8aac44](https://github.com/powerhouse-inc/document-model-electron/commit/c8aac44f8cb0184962e5567ea3252e14cc686cce)) +- reinstall with npm ([f790b6c](https://github.com/powerhouse-inc/document-model-electron/commit/f790b6c8611e000b123723c014ef35c1ee9aa55b)) +- remove check ([1db971c](https://github.com/powerhouse-inc/document-model-electron/commit/1db971cf324e2ca0e92c8f9b01614f7ef64f3d6a)) +- remove csp ([b940c38](https://github.com/powerhouse-inc/document-model-electron/commit/b940c3849bb1f804c6d2d8ca7e2bced61be81a95)) +- remove default node logic ([217d6e5](https://github.com/powerhouse-inc/document-model-electron/commit/217d6e5ac54033bda7bd36473712e048fe775623)) +- remove hello from content ([decd9c4](https://github.com/powerhouse-inc/document-model-electron/commit/decd9c4a9dbce3d9ecacbee06ad91d5959b86f84)) +- remove old tailwind classes ([10a8b95](https://github.com/powerhouse-inc/document-model-electron/commit/10a8b95edbcf212c17cb9011b13b32d2b924a767)) +- remove redundant config ([0c4d334](https://github.com/powerhouse-inc/document-model-electron/commit/0c4d334f3f75ccef7597470e1ce2a490b449eca8)) +- remove redundant use effect ([9bb2950](https://github.com/powerhouse-inc/document-model-electron/commit/9bb29508084badc11d535fab2ba241fe8021bc5f)) +- remove restriction to send operations ([dc620c5](https://github.com/powerhouse-inc/document-model-electron/commit/dc620c5fda0dd9adff480ee2ea3494b2b1698cc5)) +- remove scrollbar styles ([a9a3080](https://github.com/powerhouse-inc/document-model-electron/commit/a9a30803d3bf1cf91a82cc9bac6133c9bb335691)) +- removed debug code ([5f0c930](https://github.com/powerhouse-inc/document-model-electron/commit/5f0c930c3c2fb19dfbd46a957fda4655f8549a72)) +- removed electron-deeplink pkg and updated deep links ([5cec527](https://github.com/powerhouse-inc/document-model-electron/commit/5cec527acc442886f35261affa1619efd30e2212)) +- removed networkId from signer ([89c2a1c](https://github.com/powerhouse-inc/document-model-electron/commit/89c2a1c676170878b4cb307b073b53e28bb9e1f5)) +- removed queue timeout ([8b517b7](https://github.com/powerhouse-inc/document-model-electron/commit/8b517b78c1529abe5c7ee6e69d1990c56c4fbb6e)) +- removed re-renders and prevent add default drive being called twice ([3104848](https://github.com/powerhouse-inc/document-model-electron/commit/3104848107ff53daea46d36930be8ca9e3f522e6)) +- removed usehooks-ts dep ([05ca45e](https://github.com/powerhouse-inc/document-model-electron/commit/05ca45ef3227c50a7d44bfd7c8d8730a89d3c369)) +- rename document drive node when document model name is changed ([b9008f7](https://github.com/powerhouse-inc/document-model-electron/commit/b9008f7e08e340329e16c0743133a09d044cb1dd)) +- replaced env vars by client.config file ([28f7a2f](https://github.com/powerhouse-inc/document-model-electron/commit/28f7a2f5fbe97403f4ed317303f19c43b1cbf300)) +- replaced feature flags context by atomWithStorage ([071b7aa](https://github.com/powerhouse-inc/document-model-electron/commit/071b7aacb44792851b45946f41abecaaa99f5633)) +- replaced sidebar input header by connect logo ([a845dfd](https://github.com/powerhouse-inc/document-model-electron/commit/a845dfd14df5167e25fe5530ae03e9400bb36d45)) +- separate browser storage ([9ea89b8](https://github.com/powerhouse-inc/document-model-electron/commit/9ea89b80a5094eaa56a2d3b417a0e8fb05c0ae91)) +- separated error and conflict messages for drive status notification ([e80ccfe](https://github.com/powerhouse-inc/document-model-electron/commit/e80ccfeff3bf1e739af33c0da97f5258f5007e5a)) +- set queue timeout to 10ms ([6c87c92](https://github.com/powerhouse-inc/document-model-electron/commit/6c87c92e4e4ed2246c642f6575db1b31c6611b06)) +- show success sync toast only after recover from error sync ([5c2a47a](https://github.com/powerhouse-inc/document-model-electron/commit/5c2a47a2d0232e13d9fd6047bbe88c3faee6caa3)) +- simplify copy ([2cd60c3](https://github.com/powerhouse-inc/document-model-electron/commit/2cd60c3957685049fc6ff64beb094b409bbd4f32)) +- support add drive ([f827d33](https://github.com/powerhouse-inc/document-model-electron/commit/f827d338d4b6b49bde54f58ec6eb133756f3c765)) +- support multiple separate allow lists ([74d6152](https://github.com/powerhouse-inc/document-model-electron/commit/74d615236b6a75d0602476a826787e37a3ab263f)) +- switch to using vars from design system ([587c258](https://github.com/powerhouse-inc/document-model-electron/commit/587c258c1f47b8f5f1004252aec491d91b14eb5a)) +- trigger build ([e85bf95](https://github.com/powerhouse-inc/document-model-electron/commit/e85bf95f96ece3f59ead521fe39588630203900d)) +- update connect opengraph meta data ([32b3720](https://github.com/powerhouse-inc/document-model-electron/commit/32b372038f27d9a062ad78de6fde36a70cf2d6d8)) +- update deeplink protocol ([45d0a58](https://github.com/powerhouse-inc/document-model-electron/commit/45d0a58d266bcc369fcef7e0a1cc88c71757e1fc)) +- update dependencies and increase pull interval to 3 seconds ([66d8aea](https://github.com/powerhouse-inc/document-model-electron/commit/66d8aea256ccc6f742347db03bf06901b777bc74)) +- update deps ([3b6fa8d](https://github.com/powerhouse-inc/document-model-electron/commit/3b6fa8daeedec0549451490c9a7efec733ab2b75)) +- update document drive ([ff37742](https://github.com/powerhouse-inc/document-model-electron/commit/ff37742d857e9445a30a4122f12ec8585f5d129e)) +- update document drive dep ([ad31bf0](https://github.com/powerhouse-inc/document-model-electron/commit/ad31bf08d09650a9c335e18cf7153c7bd7667081)) +- update document drive dep ([5baaf20](https://github.com/powerhouse-inc/document-model-electron/commit/5baaf2006c71885132bbdabb59976acf5cde8ce2)) +- update document-drive ([534fa80](https://github.com/powerhouse-inc/document-model-electron/commit/534fa802984035735710d220f2496add04704b64)) +- update document-drive ver ([393388e](https://github.com/powerhouse-inc/document-model-electron/commit/393388e0a45f0275e5ab6824695d70b931891777)) +- update document-model and document-drive ver ([d66225a](https://github.com/powerhouse-inc/document-model-electron/commit/d66225aefa67ed761e8c5a1f36b62685666f7d84)) +- update document-model and document-drive versions ([8d1f869](https://github.com/powerhouse-inc/document-model-electron/commit/8d1f8691bf1511aca38f96a1ca7488e9d6104af2)) +- update document-model dep ([c865770](https://github.com/powerhouse-inc/document-model-electron/commit/c8657706b488631cf5955a6677ae5e4e1252bc9c)) +- update document-model document-drive and document-model-libs deps ([aee1dce](https://github.com/powerhouse-inc/document-model-electron/commit/aee1dce7f1c927ca24ac5283ab3d4d48ca85b7f6)) +- update document-model lib to v1.0.29 ([9190869](https://github.com/powerhouse-inc/document-model-electron/commit/9190869ddea006ce0cad8c3fa264d83535e16950)) +- update drive sync icon on syncStatus event ([ded596e](https://github.com/powerhouse-inc/document-model-electron/commit/ded596eb4761ce7003e285a0b283d45242b66444)) +- update editor when opened document is changed ([88e1cad](https://github.com/powerhouse-inc/document-model-electron/commit/88e1cad21d61cc9675f53a4a67e51e8712b22696)) +- update env var names ([42ba363](https://github.com/powerhouse-inc/document-model-electron/commit/42ba363359b08b076fdb7d39fa7df9b2c7d963ba)) +- update experimental deps ([12d28d6](https://github.com/powerhouse-inc/document-model-electron/commit/12d28d695a58dfc9bb2ff1e288b6ea4ef39f1267)) +- update lint config ([170b252](https://github.com/powerhouse-inc/document-model-electron/commit/170b252cd35fe786147f4e5306948eecf6a3990c)) +- update submit handler ([9cd1a10](https://github.com/powerhouse-inc/document-model-electron/commit/9cd1a10a0fee03bf4ddd2ace4f1a3796e1b4de30)) +- update to use new sync icons ([e1cbf1d](https://github.com/powerhouse-inc/document-model-electron/commit/e1cbf1d22de3159c247b3356577f2fdc519a51c5)) +- update url params logic ([6450975](https://github.com/powerhouse-inc/document-model-electron/commit/645097513096fa26327e60ea510d2e4bd628a870)) +- updated deps ([e41734f](https://github.com/powerhouse-inc/document-model-electron/commit/e41734f70b7b8acae90c167df5884820ee99c3c9)) +- updated deps ([a328cd9](https://github.com/powerhouse-inc/document-model-electron/commit/a328cd93ec131d36f61c45fda4863f315fb3a2cc)) +- updated design system dep ([b378a42](https://github.com/powerhouse-inc/document-model-electron/commit/b378a420bad20debc06aeeb376401ecb311889ce)) +- updated design-system alpha 119 ([b337897](https://github.com/powerhouse-inc/document-model-electron/commit/b3378976dd6f75b11b028734ad0e4dee09918b33)) +- updated document drive ([39f3218](https://github.com/powerhouse-inc/document-model-electron/commit/39f3218c6919b4fb72a5641733da60b8eeac69c2)) +- updated document drive ([4b588b0](https://github.com/powerhouse-inc/document-model-electron/commit/4b588b0f602debb6d069c3c4d580292b87a94337)) +- updated document drive ([b0df564](https://github.com/powerhouse-inc/document-model-electron/commit/b0df564c0952c60b3202c392e9fb1a23e401bea8)) +- updated document drive lib ([5f30983](https://github.com/powerhouse-inc/document-model-electron/commit/5f30983ab3f07462d842e3f464c0723d3f8785dd)) +- updated document-drive ([2a08adb](https://github.com/powerhouse-inc/document-model-electron/commit/2a08adb7fdd6a46af4c8d8ff31c946e043dbb016)) +- updated document-drive ver ([f7b9c7d](https://github.com/powerhouse-inc/document-model-electron/commit/f7b9c7df9d9b569b296d599998e3a500bfb8735c)) +- updated document-drive version ([a92dd24](https://github.com/powerhouse-inc/document-model-electron/commit/a92dd24c3ae638ff02587623a3d33af7fd89e2b6)) +- updated document-drive@1.0.0-experimental.2 ([c2b2816](https://github.com/powerhouse-inc/document-model-electron/commit/c2b2816cc7eea0346ea7d958b39f4b25796bb2a0)) +- updated document-drive@1.0.0-experimental.4 ([f31d12d](https://github.com/powerhouse-inc/document-model-electron/commit/f31d12d18404882a1f3af00f9bca6ab79d7a667e)) +- updated document-model dep ([f487cff](https://github.com/powerhouse-inc/document-model-electron/commit/f487cff99198d7cc3d8fd9db944ca394cc788dec)) +- updated document-model lib ([9db149e](https://github.com/powerhouse-inc/document-model-electron/commit/9db149ecc91926c02f2fe8479ca08958b66977d3)) +- updated document-model-libs ([b0bb1d2](https://github.com/powerhouse-inc/document-model-electron/commit/b0bb1d2ef530ecacc8f722322149866f8fbce03d)) +- updated document-model-libs and design-system ver ([d4ab8f8](https://github.com/powerhouse-inc/document-model-electron/commit/d4ab8f881d0e04d5bf68e0748205cf25fcce90e1)) +- updated libs ([adbadc1](https://github.com/powerhouse-inc/document-model-electron/commit/adbadc1d0b826acfc7e112d07d1c478496ac93cb)) +- updated package.lock ([3c334f4](https://github.com/powerhouse-inc/document-model-electron/commit/3c334f4f714ec6a63ce63bbc7f60d0e67f99b17b)) +- updated release script ([d5b4fd6](https://github.com/powerhouse-inc/document-model-electron/commit/d5b4fd60008696328dea4bf69b382ed8e1be527e)) +- updated rwa query ([3709cfc](https://github.com/powerhouse-inc/document-model-electron/commit/3709cfc9543851fe77f8a930d1e0806d552069d6)) +- use default values if there is a missing key for feature flags ([cdb728a](https://github.com/powerhouse-inc/document-model-electron/commit/cdb728a3964ca1183bd38743744a8bdf51e04fb6)) +- use drive icon ([c82bebb](https://github.com/powerhouse-inc/document-model-electron/commit/c82bebb00516c95b2f6f48102672bf70333f9477)) +- use memoized version of FileItem component ([8b0314b](https://github.com/powerhouse-inc/document-model-electron/commit/8b0314ba7ef8d538dc680d4a036b9c010a039273)) +- use memoryBrowser on packaged app ([2d11200](https://github.com/powerhouse-inc/document-model-electron/commit/2d11200a47c861429edd0ad5c6a4eb13b46a7363)) +- use new svgr syntax ([e1db3b9](https://github.com/powerhouse-inc/document-model-electron/commit/e1db3b95b5330f95893b5511df8041ed04d33fb7)) +- use not equal ([8e33089](https://github.com/powerhouse-inc/document-model-electron/commit/8e330890f658224bc1e37d6504765e3d01cc7ede)) +- use setTimeout as fallback for requestIdleCallback ([730c8f2](https://github.com/powerhouse-inc/document-model-electron/commit/730c8f292eec07908410f7f2949c045bab8094fe)) +- use tailwind styles ([53dc69f](https://github.com/powerhouse-inc/document-model-electron/commit/53dc69f69663b4d315c03b57a64b87b274e698cd)) +- use yarn ([812fe5a](https://github.com/powerhouse-inc/document-model-electron/commit/812fe5af48fdea5cb5955f6b8336604722476b44)) +- waits 50ms for new operations to make a single addOperations call ([d4c9796](https://github.com/powerhouse-inc/document-model-electron/commit/d4c97965cc9b83128f6be225a27a64c2f88795f3)) +- waits for document drive server to be loaded before checking default drive is added ([fc10ee8](https://github.com/powerhouse-inc/document-model-electron/commit/fc10ee8428d9d9c24c6cef38cd104ac5f79d759c)) ### Performance Improvements -* decode id only one when getting readable item path ([9d0b5ad](https://github.com/powerhouse-inc/document-model-electron/commit/9d0b5ad785a7a7e1c174f3190f87c6ee26f30251)) -* implemented scalable way to compare drive state ([bb5fecb](https://github.com/powerhouse-inc/document-model-electron/commit/bb5fecb8e31385abc5697a4635c2dfb0823ba853)) +- decode id only one when getting readable item path ([9d0b5ad](https://github.com/powerhouse-inc/document-model-electron/commit/9d0b5ad785a7a7e1c174f3190f87c6ee26f30251)) +- implemented scalable way to compare drive state ([bb5fecb](https://github.com/powerhouse-inc/document-model-electron/commit/bb5fecb8e31385abc5697a4635c2dfb0823ba853)) # [1.0.0-dev.9](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-dev.8...v1.0.0-dev.9) (2024-06-18) - ### Features -* bump libs ([32b2f39](https://github.com/powerhouse-inc/document-model-electron/commit/32b2f390eee0d613b86b4988e970db27077868c3)) +- bump libs ([32b2f39](https://github.com/powerhouse-inc/document-model-electron/commit/32b2f390eee0d613b86b4988e970db27077868c3)) # [1.0.0-dev.8](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-dev.7...v1.0.0-dev.8) (2024-06-17) - ### Features -* bump libs ([1216c33](https://github.com/powerhouse-inc/document-model-electron/commit/1216c33f4c713d4c7ac6eeb76725a51a6e6cf9a0)) +- bump libs ([1216c33](https://github.com/powerhouse-inc/document-model-electron/commit/1216c33f4c713d4c7ac6eeb76725a51a6e6cf9a0)) # [1.0.0-dev.7](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-dev.6...v1.0.0-dev.7) (2024-06-14) - ### Features -* avoid recreate fileOptions and clickOptionsHandler for each file node ([0a0ef3a](https://github.com/powerhouse-inc/document-model-electron/commit/0a0ef3a181489ec91a8c8439f25dcb9f3713f9a9)) -* avoid recreate folderOptions and clickFolderOptionsHandler for each folder node ([6329b29](https://github.com/powerhouse-inc/document-model-electron/commit/6329b291adee5895070f3b2192f84c36c86406a8)) -* moved isAllowedToCreateDocuments to folderView ([8af8020](https://github.com/powerhouse-inc/document-model-electron/commit/8af8020109d85cd1d6cae167cd51ddf722d2bb46)) -* re-use decodedDriveID ([1a82d60](https://github.com/powerhouse-inc/document-model-electron/commit/1a82d60b5bbfc5f99f99d38e3909da4364325817)) -* removed debug code ([4aa9c4c](https://github.com/powerhouse-inc/document-model-electron/commit/4aa9c4c2fa205a2f2823d2816b64e420efe2cf2a)) -* use memoized version of FileItem component ([040c2b6](https://github.com/powerhouse-inc/document-model-electron/commit/040c2b6ca0cdd8c87d313d27169213a50cffb4cd)) +- avoid recreate fileOptions and clickOptionsHandler for each file node ([0a0ef3a](https://github.com/powerhouse-inc/document-model-electron/commit/0a0ef3a181489ec91a8c8439f25dcb9f3713f9a9)) +- avoid recreate folderOptions and clickFolderOptionsHandler for each folder node ([6329b29](https://github.com/powerhouse-inc/document-model-electron/commit/6329b291adee5895070f3b2192f84c36c86406a8)) +- moved isAllowedToCreateDocuments to folderView ([8af8020](https://github.com/powerhouse-inc/document-model-electron/commit/8af8020109d85cd1d6cae167cd51ddf722d2bb46)) +- re-use decodedDriveID ([1a82d60](https://github.com/powerhouse-inc/document-model-electron/commit/1a82d60b5bbfc5f99f99d38e3909da4364325817)) +- removed debug code ([4aa9c4c](https://github.com/powerhouse-inc/document-model-electron/commit/4aa9c4c2fa205a2f2823d2816b64e420efe2cf2a)) +- use memoized version of FileItem component ([040c2b6](https://github.com/powerhouse-inc/document-model-electron/commit/040c2b6ca0cdd8c87d313d27169213a50cffb4cd)) # [1.0.0-dev.6](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-dev.5...v1.0.0-dev.6) (2024-06-14) - ### Features -* bump libs ([153909c](https://github.com/powerhouse-inc/document-model-electron/commit/153909c5c7e0bc2c97511f9001c1b3e4f7ec5f79)) -* bump libs ([fe4d49a](https://github.com/powerhouse-inc/document-model-electron/commit/fe4d49a4acdccb5a24678ca38b914257599a63b9)) +- bump libs ([153909c](https://github.com/powerhouse-inc/document-model-electron/commit/153909c5c7e0bc2c97511f9001c1b3e4f7ec5f79)) +- bump libs ([fe4d49a](https://github.com/powerhouse-inc/document-model-electron/commit/fe4d49a4acdccb5a24678ca38b914257599a63b9)) # [1.0.0-dev.5](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-dev.4...v1.0.0-dev.5) (2024-06-13) - ### Features -* added reload Connect toast ([944b086](https://github.com/powerhouse-inc/document-model-electron/commit/944b0866bf7ca830581a21ed828f81c880891922)) -* added version comparison ([85661ea](https://github.com/powerhouse-inc/document-model-electron/commit/85661eaa9aac0a8f38ce465adf1c0c227a442846)) +- added reload Connect toast ([944b086](https://github.com/powerhouse-inc/document-model-electron/commit/944b0866bf7ca830581a21ed828f81c880891922)) +- added version comparison ([85661ea](https://github.com/powerhouse-inc/document-model-electron/commit/85661eaa9aac0a8f38ce465adf1c0c227a442846)) # [1.0.0-dev.4](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-dev.3...v1.0.0-dev.4) (2024-06-13) - ### Features -* added addpublicdrive util ([123ed8b](https://github.com/powerhouse-inc/document-model-electron/commit/123ed8be07321eafcac2521f4ae7452e86a6895f)) -* added cypress CI config ([e50fb06](https://github.com/powerhouse-inc/document-model-electron/commit/e50fb062eccf6387399bad9403f59a20bc478d89)) -* added Cypress Cloud Config ([3439c54](https://github.com/powerhouse-inc/document-model-electron/commit/3439c5493098d66a6e7563068f35afcae255b142)) -* added cypress setup ([be8e1b6](https://github.com/powerhouse-inc/document-model-electron/commit/be8e1b6e702f3f9209d694d5642ee82465a6bb9b)) +- added addpublicdrive util ([123ed8b](https://github.com/powerhouse-inc/document-model-electron/commit/123ed8be07321eafcac2521f4ae7452e86a6895f)) +- added cypress CI config ([e50fb06](https://github.com/powerhouse-inc/document-model-electron/commit/e50fb062eccf6387399bad9403f59a20bc478d89)) +- added Cypress Cloud Config ([3439c54](https://github.com/powerhouse-inc/document-model-electron/commit/3439c5493098d66a6e7563068f35afcae255b142)) +- added cypress setup ([be8e1b6](https://github.com/powerhouse-inc/document-model-electron/commit/be8e1b6e702f3f9209d694d5642ee82465a6bb9b)) # [1.0.0-dev.3](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-dev.2...v1.0.0-dev.3) (2024-06-12) - ### Features -* enabled sync icons for folders and files ([9336e8a](https://github.com/powerhouse-inc/document-model-electron/commit/9336e8a3d1c818a962b5c0d0ef108ab07c2d3872)) -* updated design-system alpha 119 ([c27a968](https://github.com/powerhouse-inc/document-model-electron/commit/c27a968f2bfd745d48a7a69a451d4c18e72acdf9)) -* updated document-drive ([cce5625](https://github.com/powerhouse-inc/document-model-electron/commit/cce5625d5392f3860a2f5b71ad144dd99d98ebda)) -* updated libs ([5edef9d](https://github.com/powerhouse-inc/document-model-electron/commit/5edef9d1d1936f3bb7c9006c180c7a352f8d6bb9)) +- enabled sync icons for folders and files ([9336e8a](https://github.com/powerhouse-inc/document-model-electron/commit/9336e8a3d1c818a962b5c0d0ef108ab07c2d3872)) +- updated design-system alpha 119 ([c27a968](https://github.com/powerhouse-inc/document-model-electron/commit/c27a968f2bfd745d48a7a69a451d4c18e72acdf9)) +- updated document-drive ([cce5625](https://github.com/powerhouse-inc/document-model-electron/commit/cce5625d5392f3860a2f5b71ad144dd99d98ebda)) +- updated libs ([5edef9d](https://github.com/powerhouse-inc/document-model-electron/commit/5edef9d1d1936f3bb7c9006c180c7a352f8d6bb9)) # [1.0.0-dev.2](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-dev.1...v1.0.0-dev.2) (2024-06-11) - ### Performance Improvements -* decode id only one when getting readable item path ([5c019b9](https://github.com/powerhouse-inc/document-model-electron/commit/5c019b951db04c31e8f2f163fd32a4e465eb3264)) +- decode id only one when getting readable item path ([5c019b9](https://github.com/powerhouse-inc/document-model-electron/commit/5c019b951db04c31e8f2f163fd32a4e465eb3264)) # 1.0.0-dev.1 (2024-06-11) - ### Bug Fixes -* added callback support for document dispatch ([a4f4c04](https://github.com/powerhouse-inc/document-model-electron/commit/a4f4c04ead0d2aca54983da2e79e9ff6e673da15)) -* allow concurrent drive operations ([17658ee](https://github.com/powerhouse-inc/document-model-electron/commit/17658ee1a67dc787896508d25ea329ca9b657a13)) -* apply auto lint fix ([dfa1ec0](https://github.com/powerhouse-inc/document-model-electron/commit/dfa1ec02caddba3e9b06e1a18855f47abf959eda)) -* base hrefs ([1ff517c](https://github.com/powerhouse-inc/document-model-electron/commit/1ff517c31991b6ad836b173c0df916b396f59fe1)) -* base path cmd ([070b4af](https://github.com/powerhouse-inc/document-model-electron/commit/070b4af1a148be00ca8b4e4bf8e24f22adbea28c)) -* build issues ([f2b084b](https://github.com/powerhouse-inc/document-model-electron/commit/f2b084b21a7826c491bc4d5977608892bfedfeba)) -* change config file names in scripts ([37fa872](https://github.com/powerhouse-inc/document-model-electron/commit/37fa872932c8f455e4844e6bd838a65720ad5380)) -* downgraded document drive ([7d287c4](https://github.com/powerhouse-inc/document-model-electron/commit/7d287c4d08d73226e7ba1ec8aabaeeb9a088c8e2)) -* endpoints for connect ([f35f853](https://github.com/powerhouse-inc/document-model-electron/commit/f35f8532e14475e74cc80119e5df0274f2b5f1e7)) -* fix file types ([11d1b18](https://github.com/powerhouse-inc/document-model-electron/commit/11d1b1833442ee302196b3e50f73f0380a372507)) -* fix rerenders when refreshing document drives ([5429f61](https://github.com/powerhouse-inc/document-model-electron/commit/5429f613784535e430809b751d879e60b2f5fb68)) -* fixed build error ([3027483](https://github.com/powerhouse-inc/document-model-electron/commit/30274832089143d616c3c55935735ad6f275e8c2)) -* fixed build error ([f280459](https://github.com/powerhouse-inc/document-model-electron/commit/f2804594d3f764477c06fc4183a2427df9e4c86b)) -* folder selection in folder view ([f7e3681](https://github.com/powerhouse-inc/document-model-electron/commit/f7e36810b5d0223afc64736a9e8ec48e11f7fc57)) -* header text color ([4ee9745](https://github.com/powerhouse-inc/document-model-electron/commit/4ee9745dbbeddf0e2ea41f6d8c4c800d9f5bfd99)) -* heroku nginx config ([0ca0df1](https://github.com/powerhouse-inc/document-model-electron/commit/0ca0df1e853522fb0d21ded35d6f61964c48ea62)) -* lint errors ([ac490b4](https://github.com/powerhouse-inc/document-model-electron/commit/ac490b4cdf693d62d57a865b55952ca7b46bfe94)) -* missing return ([f81d0e9](https://github.com/powerhouse-inc/document-model-electron/commit/f81d0e9a0a58c4079a6359d0dc45f90861d4acb4)) -* only call useMemo in hook ([76a1505](https://github.com/powerhouse-inc/document-model-electron/commit/76a15059e825ec0e1d6215e450ec0339d7c33bbe)) -* package.lock ([1c2a1f5](https://github.com/powerhouse-inc/document-model-electron/commit/1c2a1f55bf33953fa1834da2e84dcc0e93710c7b)) -* properly encode switchboard query ([4c5001f](https://github.com/powerhouse-inc/document-model-electron/commit/4c5001fb3aa34249bee0550331a314872b05c614)) -* remove allow list ([ac2475d](https://github.com/powerhouse-inc/document-model-electron/commit/ac2475d866195b18b23ca094457ccce93b9b0508)) -* remove duplicate package ([364afdd](https://github.com/powerhouse-inc/document-model-electron/commit/364afdde2e2c9c3d6c12d0364e6d0cfd612f5429)) -* remove yalc from package json ([9e184d8](https://github.com/powerhouse-inc/document-model-electron/commit/9e184d8df68d74803e9cbf95f7cf480f97a6d03e)) -* removed unused css import ([6da080c](https://github.com/powerhouse-inc/document-model-electron/commit/6da080c53ea57352b997de941fc303f11a5d2a42)) -* rename node id ([45235e5](https://github.com/powerhouse-inc/document-model-electron/commit/45235e516ce5ea52345c7ff9d1f7238ff4e9e095)) -* renown endpoint ([10461f5](https://github.com/powerhouse-inc/document-model-electron/commit/10461f566fd49a8fd79b23fdaa66871d8d8cff76)) -* renown login ([432e5bc](https://github.com/powerhouse-inc/document-model-electron/commit/432e5bcc1eaa13a043720b0c9d1165222188ecfc)) -* revert setSelectedDocument in addOperation document ([df06317](https://github.com/powerhouse-inc/document-model-electron/commit/df06317cc067b3f25deedb9832c1aa54d308158a)) -* rwa query ([09fcd52](https://github.com/powerhouse-inc/document-model-electron/commit/09fcd52fdf4adbeee9f6a6aa26c1d0309b525510)) -* semantic release ([1ccdf9e](https://github.com/powerhouse-inc/document-model-electron/commit/1ccdf9e6cbcaa9de8c9a51627311f94a032a039a)) -* settings modal typo ([6ef1286](https://github.com/powerhouse-inc/document-model-electron/commit/6ef12861fdda344c7c45f54657b6f56c67217162)) -* show local drives ([893b0df](https://github.com/powerhouse-inc/document-model-electron/commit/893b0dfe9d8004b12114842b082e4672a630aa38)) -* subscribe to server updates when load initial data ([35bf948](https://github.com/powerhouse-inc/document-model-electron/commit/35bf948de2acb3a23684060c978138f2b5ad5f75)) -* suppress less important rules ([679af22](https://github.com/powerhouse-inc/document-model-electron/commit/679af2256b8e6a4739006048056d452ba7fbf988)) -* switchboard endpoint ([2e570f3](https://github.com/powerhouse-inc/document-model-electron/commit/2e570f39bc355e4f387c0d371e8af81a0b92bb38)) -* switchboard link ([78bbdd0](https://github.com/powerhouse-inc/document-model-electron/commit/78bbdd0ec278a7685023cf9482d5990f6cf18a6d)) -* tmp build fix ([4a4be40](https://github.com/powerhouse-inc/document-model-electron/commit/4a4be4098131a946ce919792e3028e0f4e92c46e)) -* undefined default drive ([e5f2749](https://github.com/powerhouse-inc/document-model-electron/commit/e5f27494a57a29c4e4ae921d2014198af8614df3)) -* undefined default drive ([6ad9412](https://github.com/powerhouse-inc/document-model-electron/commit/6ad94127e15ebb43507cd0cae8404e9e2bc17e5b)) -* update selectedDocument when a new operation is dispatched ([b2c4401](https://github.com/powerhouse-inc/document-model-electron/commit/b2c4401c676d1c2621334375f132c6367c234ca5)) -* use selectedDocument as source of truth for document editor ([b5204e7](https://github.com/powerhouse-inc/document-model-electron/commit/b5204e7153028459ef3ace07e719736d971d577a)) -* wait for renown to load ([1d2f019](https://github.com/powerhouse-inc/document-model-electron/commit/1d2f019dc992239873e19e35fe8d5c0dde1396f5)) - +- added callback support for document dispatch ([a4f4c04](https://github.com/powerhouse-inc/document-model-electron/commit/a4f4c04ead0d2aca54983da2e79e9ff6e673da15)) +- allow concurrent drive operations ([17658ee](https://github.com/powerhouse-inc/document-model-electron/commit/17658ee1a67dc787896508d25ea329ca9b657a13)) +- apply auto lint fix ([dfa1ec0](https://github.com/powerhouse-inc/document-model-electron/commit/dfa1ec02caddba3e9b06e1a18855f47abf959eda)) +- base hrefs ([1ff517c](https://github.com/powerhouse-inc/document-model-electron/commit/1ff517c31991b6ad836b173c0df916b396f59fe1)) +- base path cmd ([070b4af](https://github.com/powerhouse-inc/document-model-electron/commit/070b4af1a148be00ca8b4e4bf8e24f22adbea28c)) +- build issues ([f2b084b](https://github.com/powerhouse-inc/document-model-electron/commit/f2b084b21a7826c491bc4d5977608892bfedfeba)) +- change config file names in scripts ([37fa872](https://github.com/powerhouse-inc/document-model-electron/commit/37fa872932c8f455e4844e6bd838a65720ad5380)) +- downgraded document drive ([7d287c4](https://github.com/powerhouse-inc/document-model-electron/commit/7d287c4d08d73226e7ba1ec8aabaeeb9a088c8e2)) +- endpoints for connect ([f35f853](https://github.com/powerhouse-inc/document-model-electron/commit/f35f8532e14475e74cc80119e5df0274f2b5f1e7)) +- fix file types ([11d1b18](https://github.com/powerhouse-inc/document-model-electron/commit/11d1b1833442ee302196b3e50f73f0380a372507)) +- fix rerenders when refreshing document drives ([5429f61](https://github.com/powerhouse-inc/document-model-electron/commit/5429f613784535e430809b751d879e60b2f5fb68)) +- fixed build error ([3027483](https://github.com/powerhouse-inc/document-model-electron/commit/30274832089143d616c3c55935735ad6f275e8c2)) +- fixed build error ([f280459](https://github.com/powerhouse-inc/document-model-electron/commit/f2804594d3f764477c06fc4183a2427df9e4c86b)) +- folder selection in folder view ([f7e3681](https://github.com/powerhouse-inc/document-model-electron/commit/f7e36810b5d0223afc64736a9e8ec48e11f7fc57)) +- header text color ([4ee9745](https://github.com/powerhouse-inc/document-model-electron/commit/4ee9745dbbeddf0e2ea41f6d8c4c800d9f5bfd99)) +- heroku nginx config ([0ca0df1](https://github.com/powerhouse-inc/document-model-electron/commit/0ca0df1e853522fb0d21ded35d6f61964c48ea62)) +- lint errors ([ac490b4](https://github.com/powerhouse-inc/document-model-electron/commit/ac490b4cdf693d62d57a865b55952ca7b46bfe94)) +- missing return ([f81d0e9](https://github.com/powerhouse-inc/document-model-electron/commit/f81d0e9a0a58c4079a6359d0dc45f90861d4acb4)) +- only call useMemo in hook ([76a1505](https://github.com/powerhouse-inc/document-model-electron/commit/76a15059e825ec0e1d6215e450ec0339d7c33bbe)) +- package.lock ([1c2a1f5](https://github.com/powerhouse-inc/document-model-electron/commit/1c2a1f55bf33953fa1834da2e84dcc0e93710c7b)) +- properly encode switchboard query ([4c5001f](https://github.com/powerhouse-inc/document-model-electron/commit/4c5001fb3aa34249bee0550331a314872b05c614)) +- remove allow list ([ac2475d](https://github.com/powerhouse-inc/document-model-electron/commit/ac2475d866195b18b23ca094457ccce93b9b0508)) +- remove duplicate package ([364afdd](https://github.com/powerhouse-inc/document-model-electron/commit/364afdde2e2c9c3d6c12d0364e6d0cfd612f5429)) +- remove yalc from package json ([9e184d8](https://github.com/powerhouse-inc/document-model-electron/commit/9e184d8df68d74803e9cbf95f7cf480f97a6d03e)) +- removed unused css import ([6da080c](https://github.com/powerhouse-inc/document-model-electron/commit/6da080c53ea57352b997de941fc303f11a5d2a42)) +- rename node id ([45235e5](https://github.com/powerhouse-inc/document-model-electron/commit/45235e516ce5ea52345c7ff9d1f7238ff4e9e095)) +- renown endpoint ([10461f5](https://github.com/powerhouse-inc/document-model-electron/commit/10461f566fd49a8fd79b23fdaa66871d8d8cff76)) +- renown login ([432e5bc](https://github.com/powerhouse-inc/document-model-electron/commit/432e5bcc1eaa13a043720b0c9d1165222188ecfc)) +- revert setSelectedDocument in addOperation document ([df06317](https://github.com/powerhouse-inc/document-model-electron/commit/df06317cc067b3f25deedb9832c1aa54d308158a)) +- rwa query ([09fcd52](https://github.com/powerhouse-inc/document-model-electron/commit/09fcd52fdf4adbeee9f6a6aa26c1d0309b525510)) +- semantic release ([1ccdf9e](https://github.com/powerhouse-inc/document-model-electron/commit/1ccdf9e6cbcaa9de8c9a51627311f94a032a039a)) +- settings modal typo ([6ef1286](https://github.com/powerhouse-inc/document-model-electron/commit/6ef12861fdda344c7c45f54657b6f56c67217162)) +- show local drives ([893b0df](https://github.com/powerhouse-inc/document-model-electron/commit/893b0dfe9d8004b12114842b082e4672a630aa38)) +- subscribe to server updates when load initial data ([35bf948](https://github.com/powerhouse-inc/document-model-electron/commit/35bf948de2acb3a23684060c978138f2b5ad5f75)) +- suppress less important rules ([679af22](https://github.com/powerhouse-inc/document-model-electron/commit/679af2256b8e6a4739006048056d452ba7fbf988)) +- switchboard endpoint ([2e570f3](https://github.com/powerhouse-inc/document-model-electron/commit/2e570f39bc355e4f387c0d371e8af81a0b92bb38)) +- switchboard link ([78bbdd0](https://github.com/powerhouse-inc/document-model-electron/commit/78bbdd0ec278a7685023cf9482d5990f6cf18a6d)) +- tmp build fix ([4a4be40](https://github.com/powerhouse-inc/document-model-electron/commit/4a4be4098131a946ce919792e3028e0f4e92c46e)) +- undefined default drive ([e5f2749](https://github.com/powerhouse-inc/document-model-electron/commit/e5f27494a57a29c4e4ae921d2014198af8614df3)) +- undefined default drive ([6ad9412](https://github.com/powerhouse-inc/document-model-electron/commit/6ad94127e15ebb43507cd0cae8404e9e2bc17e5b)) +- update selectedDocument when a new operation is dispatched ([b2c4401](https://github.com/powerhouse-inc/document-model-electron/commit/b2c4401c676d1c2621334375f132c6367c234ca5)) +- use selectedDocument as source of truth for document editor ([b5204e7](https://github.com/powerhouse-inc/document-model-electron/commit/b5204e7153028459ef3ace07e719736d971d577a)) +- wait for renown to load ([1d2f019](https://github.com/powerhouse-inc/document-model-electron/commit/1d2f019dc992239873e19e35fe8d5c0dde1396f5)) ### Features -* 🚀 Added ItemsContext integration ([41fc40f](https://github.com/powerhouse-inc/document-model-electron/commit/41fc40f93420101ca9b2ec34e1b4f4cab4a43a4b)) -* 🚀 added readable item path for File Items ([9f6a4ac](https://github.com/powerhouse-inc/document-model-electron/commit/9f6a4ac45318bb757e7c7c60df463e67b066771b)) -* 🚀 Implemented base folder-view design ([22ad4fc](https://github.com/powerhouse-inc/document-model-electron/commit/22ad4fc5046e27016ce1a47eda3282125af4db71)) -* activate queue ([#290](https://github.com/powerhouse-inc/document-model-electron/issues/290)) ([5b5a4fd](https://github.com/powerhouse-inc/document-model-electron/commit/5b5a4fd317ce624cc734f186778e49899dd3b148)) -* add dep array to use effect ([0a88d92](https://github.com/powerhouse-inc/document-model-electron/commit/0a88d92a664b877929978f05753f3d38e471625d)) -* add dependency versions to settings modal ([d01c0de](https://github.com/powerhouse-inc/document-model-electron/commit/d01c0de124cb9af00312e4c53e934d8a233e02af)) -* add design system preset ([a6cb51c](https://github.com/powerhouse-inc/document-model-electron/commit/a6cb51c31d4500d31fd091f165a4f01ae37ff4d7)) -* add duplicate action ([a9d2e29](https://github.com/powerhouse-inc/document-model-electron/commit/a9d2e29318badb84ca51acc9603a2c2dc7f25a0e)) -* add duplicate to folder ([a6212a8](https://github.com/powerhouse-inc/document-model-electron/commit/a6212a8fe3c62f49d1b624e75152e48f80034ed2)) -* add generate assets hook for icons copying ([4c25ebe](https://github.com/powerhouse-inc/document-model-electron/commit/4c25ebecc94941502e35dff28555664b3985f67b)) -* add is allowed to create documents hook ([0a457fc](https://github.com/powerhouse-inc/document-model-electron/commit/0a457fc35f5e78cb16eac1664c3def10b29b5229)) -* add optional dep ([a079cc7](https://github.com/powerhouse-inc/document-model-electron/commit/a079cc799c0d7987193ee209618151c10c743282)) -* add pull trigger on cloud drives ([9f86849](https://github.com/powerhouse-inc/document-model-electron/commit/9f868495ced48b9b23a3d128469ce7ac20d32a57)) -* add react aria dep ([499dda0](https://github.com/powerhouse-inc/document-model-electron/commit/499dda05d52469c85f0dc31d1da5639dc926c9c4)) -* add tailwind eslint plugin ([6e639bc](https://github.com/powerhouse-inc/document-model-electron/commit/6e639bc71bddeafe855c210c0f573cec7b2ce622)) -* add user context to actions ([6a3241d](https://github.com/powerhouse-inc/document-model-electron/commit/6a3241d3e98c58262ffc7bbbcaa66f6f5d8878b3)) -* added base path for nginx ([22a270b](https://github.com/powerhouse-inc/document-model-electron/commit/22a270b978e189a8a9afd20e0ae8f568e8c3336e)) -* added browser key storage ([6562881](https://github.com/powerhouse-inc/document-model-electron/commit/6562881b2eb603b59b55f1595a7f46b96dbbded6)) -* added clear storage setting ([922f5e1](https://github.com/powerhouse-inc/document-model-electron/commit/922f5e19ebd68e07440858c2f7308e3f6d1a2aae)) -* added config to hide drive sections ([aa67a3f](https://github.com/powerhouse-inc/document-model-electron/commit/aa67a3f392891e195fbc24a2ff858b66265eccc5)) -* added csp headers ([bd398aa](https://github.com/powerhouse-inc/document-model-electron/commit/bd398aa0bc6d748b740e17d4ddf197232d701c62)) -* added deeplink support to link to specific drive node ([ae1f97f](https://github.com/powerhouse-inc/document-model-electron/commit/ae1f97fb17e3cbc422a2e242e9ff530c598284a5)) -* added delete drive modal + enable delete file modal confirmation ([4ce110e](https://github.com/powerhouse-inc/document-model-electron/commit/4ce110e7baaaad3ea75a33eff45fab9994184658)) -* added develop environment ([c33ab9d](https://github.com/powerhouse-inc/document-model-electron/commit/c33ab9d6977712a3015d28a0cd27208f7fd727e5)) -* added develop to release cycle ([b9247e6](https://github.com/powerhouse-inc/document-model-electron/commit/b9247e66d19ffc9400caae9403d9b5b06048eacc)) -* added e2e playwright setup ([2d37330](https://github.com/powerhouse-inc/document-model-electron/commit/2d37330f103456dc9d3e24cc4a74d3ed7abb20c8)) -* added editor debug tools ([6928bed](https://github.com/powerhouse-inc/document-model-electron/commit/6928bed61c46322bc341da7bed48dcde60454b9e)) -* added env var to hide document model setting ([840a561](https://github.com/powerhouse-inc/document-model-electron/commit/840a5615ba0b5eafab123b0f0e5c21b3c880d670)) -* added env vars for renown ([f464d68](https://github.com/powerhouse-inc/document-model-electron/commit/f464d68172be57798be364a804b9de0e7f1733c1)) -* added feature flag setup + disable editors for demo ([7fa64f2](https://github.com/powerhouse-inc/document-model-electron/commit/7fa64f2634cea508ebfb8b20732a730dc8b0624b)) -* added gzip and brotli compression to nginx ([f52a0c3](https://github.com/powerhouse-inc/document-model-electron/commit/f52a0c3205b1fd7fc99875fae0ad5a1d5cd24dd5)) -* added heroku deployment for powerhouse staging env ([f4c538a](https://github.com/powerhouse-inc/document-model-electron/commit/f4c538a3e02781276996e30b759d50f248037c86)) -* added modal confirmation when export document with errors ([d22a447](https://github.com/powerhouse-inc/document-model-electron/commit/d22a447c98d50589f61e37cd6284155223824057)) -* added network id to user ([908a50e](https://github.com/powerhouse-inc/document-model-electron/commit/908a50e8df9c1ae7e53940dc801157a5ca665706)) -* added new env var to dockerfile ([64afb40](https://github.com/powerhouse-inc/document-model-electron/commit/64afb40dfec060e8ebfaaeddf8f47f3f925d21be)) -* added nginx config ([069be2c](https://github.com/powerhouse-inc/document-model-electron/commit/069be2cd98aee6fe3a6b686b4112a435e81d11b3)) -* added notification toast ([39ed0c2](https://github.com/powerhouse-inc/document-model-electron/commit/39ed0c2319c2a6e1c2044aff5cda1fd1dc51d24b)) -* added open file and delete file ([01793c8](https://github.com/powerhouse-inc/document-model-electron/commit/01793c8a5f21b8e1701e649cc926c8baa7ece4fe)) -* added opengraph and twitter meta data ([280da91](https://github.com/powerhouse-inc/document-model-electron/commit/280da914bbe8129ead8559d4169ea266fbb327bc)) -* added PH logo ([e9ec94b](https://github.com/powerhouse-inc/document-model-electron/commit/e9ec94b3373495aa0d03673b241c78605b61d396)) -* added prepare script ([abeaa41](https://github.com/powerhouse-inc/document-model-electron/commit/abeaa41bb7bfc7a8d3a7332a9dd0ba0dad088659)) -* added renown login on browser ([5b77016](https://github.com/powerhouse-inc/document-model-electron/commit/5b77016508fd448b23999919a8d9e40bc701e1f9)) -* added rewrite rules to vercel.json config ([b66cdb0](https://github.com/powerhouse-inc/document-model-electron/commit/b66cdb0fb264412710c1d3bf67f06d48df52408c)) -* added route to open document drive node ([6700f13](https://github.com/powerhouse-inc/document-model-electron/commit/6700f132435dd4ce175b036d5e906d1194976ed0)) -* added RWA doc name fix for demo ([05dfd07](https://github.com/powerhouse-inc/document-model-electron/commit/05dfd0781038523b86437ebe1164e20a848c65b2)) -* added scope of work ([742aae0](https://github.com/powerhouse-inc/document-model-electron/commit/742aae0cab712068d2f8dbe2804da3ba802416bd)) -* added sentry dsn to environments ([c4cfef1](https://github.com/powerhouse-inc/document-model-electron/commit/c4cfef161be9db837d29aca316949957412e4c25)) -* added sentry environments ([68fefd0](https://github.com/powerhouse-inc/document-model-electron/commit/68fefd095cbffcec9eeebedb786d5ab7afc9c9bf)) -* added sentry to connect ([d51ec53](https://github.com/powerhouse-inc/document-model-electron/commit/d51ec538d376cb533882f9c4b0ee057d80ce7d1a)) -* added settings modal integration ([dfb9d28](https://github.com/powerhouse-inc/document-model-electron/commit/dfb9d287bb99dec4316c9eee5098816b6f498926)) -* added sidebar login ([2917809](https://github.com/powerhouse-inc/document-model-electron/commit/29178094a9d711e1d7303dde1511a7b73bc37199)) -* added sort nodes + fix input styles + cancel new folders with empty name ([4a2f9fb](https://github.com/powerhouse-inc/document-model-electron/commit/4a2f9fbf2c4dc5427c58633f18e40eb10574600c)) -* added support for delete option in FolderItem and FileItem ([85800ab](https://github.com/powerhouse-inc/document-model-electron/commit/85800ab374da9be041d6e8c547d186a0671a6b91)) -* added support for document in addfile action ([0706ce2](https://github.com/powerhouse-inc/document-model-electron/commit/0706ce25a515024a37b61aec11c930601a0869e5)) -* added support for rename files + create file name modal ([8a76691](https://github.com/powerhouse-inc/document-model-electron/commit/8a76691426d671128c4cfbc98864a9a669e395f3)) -* added support for renown user ([3853b37](https://github.com/powerhouse-inc/document-model-electron/commit/3853b371349ee14051b666a19fbb0b0c564c8ac6)) -* added support for router basename ([251afe2](https://github.com/powerhouse-inc/document-model-electron/commit/251afe2b1d4eab690f9592e25edc6c555e2fe44a)) -* added switchboard link to document files ([5f31b71](https://github.com/powerhouse-inc/document-model-electron/commit/5f31b710a6ae65f42aac65840da422134e48ee6c)) -* added useConnectConfig hook ([a600091](https://github.com/powerhouse-inc/document-model-electron/commit/a60009131ad8600174311b45a696d0c3219ae8ce)) -* added vercel redirect ([7100848](https://github.com/powerhouse-inc/document-model-electron/commit/7100848213fe6e5d0811229e67c82b8997648fa2)) -* added vite env as build args ([c76d4f4](https://github.com/powerhouse-inc/document-model-electron/commit/c76d4f431017df7f9b40a5063a71618084333c24)) -* allow connect-src for renown.id ([7357d4a](https://github.com/powerhouse-inc/document-model-electron/commit/7357d4a4a2c9aff400e55d9c8eed9630aaec4ed5)) -* allow external images ([171efac](https://github.com/powerhouse-inc/document-model-electron/commit/171efac183458b993ac11849345b3fb8765a10f4)) -* allow per deploy drive restrictions ([8779d84](https://github.com/powerhouse-inc/document-model-electron/commit/8779d84cb1be5128ac7b1c63a8666c5d03b2f593)) -* allow url for file ([474ad4d](https://github.com/powerhouse-inc/document-model-electron/commit/474ad4d0b90e9e882bb52d4ca479a4314d15eec1)) -* also disable when env is production ([6f60688](https://github.com/powerhouse-inc/document-model-electron/commit/6f60688a7bcf92e19afe5a4a49a1baa9f0c44507)) -* also do src === target check in move node function ([3e80c1e](https://github.com/powerhouse-inc/document-model-electron/commit/3e80c1e4dface07c9d101c39f6a0dce6d0654a26)) -* apply auto fixes ([b10b111](https://github.com/powerhouse-inc/document-model-electron/commit/b10b111374636b145c52fa15f38ebc0751912483)) -* auto-select first drive if there's no selected path ([daf3083](https://github.com/powerhouse-inc/document-model-electron/commit/daf3083b4fff8dd6f033ce9806affe932fea4f04)) -* bump ([40fd30a](https://github.com/powerhouse-inc/document-model-electron/commit/40fd30a489214a512a7dc43fbe9dea1e0c33604a)) -* bump ([11fb69f](https://github.com/powerhouse-inc/document-model-electron/commit/11fb69f6f507d4240e72b1208982c814bce185a8)) -* bump deps ([7d7206c](https://github.com/powerhouse-inc/document-model-electron/commit/7d7206c5ae9bc7c9e7d26713fc8ff4e7ef5f459d)) -* bump design system ([fb12d70](https://github.com/powerhouse-inc/document-model-electron/commit/fb12d70fcd3237f1cacb0375e99e4a1ae01cc342)) -* bump design system ([4e1d168](https://github.com/powerhouse-inc/document-model-electron/commit/4e1d168298355beea31e2216edeb7b7cef8e8257)) -* bump design system and document model libs ([165e2cc](https://github.com/powerhouse-inc/document-model-electron/commit/165e2ccc41d5d72a6f2f834292c18aa2388ebb86)) -* bump design system to integrate dep version component ([a18c621](https://github.com/powerhouse-inc/document-model-electron/commit/a18c621a24d97b3bfa9f103365b3890f6fd342d7)) -* bump design-system and document-model-lib deps ([7d90802](https://github.com/powerhouse-inc/document-model-electron/commit/7d9080289ce258cf9d299d13b4cf7e092fd51535)) -* bump document drive version ([254a2cd](https://github.com/powerhouse-inc/document-model-electron/commit/254a2cd967b07d22352d38509ad55c2ffcd19bf5)) -* bump libs ([24a9cd3](https://github.com/powerhouse-inc/document-model-electron/commit/24a9cd3427eecc32697f15d7479bf5ee53c95084)) -* bump libs ([b27b036](https://github.com/powerhouse-inc/document-model-electron/commit/b27b036a487fbe989f9f7b585603e15bcdd3fa3a)) -* bump libs ([5fb15d3](https://github.com/powerhouse-inc/document-model-electron/commit/5fb15d321de8649ac2fc6953d9ec5312aeabefeb)) -* bump libs ([1f38863](https://github.com/powerhouse-inc/document-model-electron/commit/1f38863cb3e6fff081218ce59d7cf1a6f3c44621)) -* bump libs ([7df97b0](https://github.com/powerhouse-inc/document-model-electron/commit/7df97b03882c012f035b259aebb85ba42704008b)) -* bump libs ([78baf1d](https://github.com/powerhouse-inc/document-model-electron/commit/78baf1dee6da3f18208f23973f65b5a1b930ba81)) -* bump libs ([d766c36](https://github.com/powerhouse-inc/document-model-electron/commit/d766c36649f3575b2d10bcaf532249437a79b36c)) -* bump libs ([6b3f58f](https://github.com/powerhouse-inc/document-model-electron/commit/6b3f58fd3aad9e628cf2312629280f12984648e2)) -* bump libs ([f98b523](https://github.com/powerhouse-inc/document-model-electron/commit/f98b523acb0e2f2599d4d8927bf8fe5b26374856)) -* bump libs ([2a9a29d](https://github.com/powerhouse-inc/document-model-electron/commit/2a9a29d0d9d129abbbe6b16567151f3ecd0d525e)) -* bump libs ([62117a9](https://github.com/powerhouse-inc/document-model-electron/commit/62117a90490e9bbb32c4a84fdbdb3d930ca7ebfb)) -* bump libs ([62cd43d](https://github.com/powerhouse-inc/document-model-electron/commit/62cd43dd7f80cfd6202c251a9c1af1bad0978b67)) -* bump lint deps ([544fcea](https://github.com/powerhouse-inc/document-model-electron/commit/544fcea7cdcf450756b8deb913c47047a9161849)) -* bump react aria ([3a8ed93](https://github.com/powerhouse-inc/document-model-electron/commit/3a8ed934d371b11c7deb8c8894b43c323d04f06f)) -* cancel rename operation when new name is empty ([6c7a815](https://github.com/powerhouse-inc/document-model-electron/commit/6c7a815500339ebbced23214450750bacbfdebc9)) -* change term to allow list ([af99e9b](https://github.com/powerhouse-inc/document-model-electron/commit/af99e9ba0a3eee7074cc763922caf1656f024e83)) -* changed default renown env variables ([c87ee69](https://github.com/powerhouse-inc/document-model-electron/commit/c87ee697507eba7235150e5156bbe7d0cd121e36)) -* changed nginx image to nginx-brotli ([3d497da](https://github.com/powerhouse-inc/document-model-electron/commit/3d497da7806bdb77a6352aad9ad5f64ddcfa93e4)) -* check if operations with same index are submitted ([b7ad973](https://github.com/powerhouse-inc/document-model-electron/commit/b7ad97307106467a39060da44420515f10ce3921)) -* check user auth on startup ([6820f27](https://github.com/powerhouse-inc/document-model-electron/commit/6820f27a8defb40d72e3580d00fe11f1170bbe22)) -* commented renown env variables ([cd18bab](https://github.com/powerhouse-inc/document-model-electron/commit/cd18babc471fef7b1939bed4478265bd5a38abc1)) -* configure available editors with env variables ([00fad56](https://github.com/powerhouse-inc/document-model-electron/commit/00fad56259d24c1dc9fe3009ec5d4d8d9a51782a)) -* default drive handling improvements ([57be63e](https://github.com/powerhouse-inc/document-model-electron/commit/57be63e34a368769eb159728194f70d60ad98290)) -* detect circular reference in node path ([c113d03](https://github.com/powerhouse-inc/document-model-electron/commit/c113d035118d418ed8006b55112d101f030b4caa)) -* disable dev tools when app is packaged ([2326a77](https://github.com/powerhouse-inc/document-model-electron/commit/2326a7774f74d2c8af949cf55c18b12b38d0b7d9)) -* disable document drive editor by default ([a61249f](https://github.com/powerhouse-inc/document-model-electron/commit/a61249f43e50219b7b6aebc27f63b2d07a4735ec)) -* disallow create operations ([9cb4a8e](https://github.com/powerhouse-inc/document-model-electron/commit/9cb4a8e4d902f67692e696b60c283a3ec59ca137)) -* downloadFile fallback ([9836f4c](https://github.com/powerhouse-inc/document-model-electron/commit/9836f4c1e6edf68d1239f69cfb86324cb1e4d6f0)) -* enable transactions editor ([28967c2](https://github.com/powerhouse-inc/document-model-electron/commit/28967c2c6a4465494f682e55e914bfdd719bc07b)) -* enabled add cloud drive modal ([d54f579](https://github.com/powerhouse-inc/document-model-electron/commit/d54f579bd903e57cf193cdc11a727eed5526971d)) -* enabled drop target for FolderItem ([70aeaad](https://github.com/powerhouse-inc/document-model-electron/commit/70aeaadde2844def0c0cc648dbb8f496d51b96dd)) -* enabled editor controls ([f7aa503](https://github.com/powerhouse-inc/document-model-electron/commit/f7aa50343c0a124056811f1ce29ab0c8539263da)) -* enabled keyboard shortcut for undo/redo ([82fe517](https://github.com/powerhouse-inc/document-model-electron/commit/82fe517dbbf01006c6fbaae0b1c493c57eeeb422)) -* enabled onErrorCallback for dispatch fn ([8bd3c7c](https://github.com/powerhouse-inc/document-model-electron/commit/8bd3c7ccfafbf1d1b32ada0bb941585bd0ee1907)) -* enabled rename option for folders in folder view ([d7a9b34](https://github.com/powerhouse-inc/document-model-electron/commit/d7a9b3490b0cb91d647ecb803513dbea590f04e0)) -* enabled rename option when copy/move an item ([3ef5ea4](https://github.com/powerhouse-inc/document-model-electron/commit/3ef5ea474997e10b670a989460dca939431f3a9a)) -* enabled rwa editor ([b7df486](https://github.com/powerhouse-inc/document-model-electron/commit/b7df486a82c0c044fab5dd434ecceba1a2c24dc1)) -* enabled switchboard link in RWA editor ([cece18e](https://github.com/powerhouse-inc/document-model-electron/commit/cece18e3cb900cbe2fe7d77c0c329a2c430e2539)) -* enabled undo/redo with new document structure ([f6af1e0](https://github.com/powerhouse-inc/document-model-electron/commit/f6af1e002121456e5e9cc4befe6c41ac4ddf8aa9)) -* expand selected path in sidebar on initial path load ([9b5e053](https://github.com/powerhouse-inc/document-model-electron/commit/9b5e0533e7e02d4ae9ea3c6bb01c9827eada160c)) -* export did:key instead of public key ([a358371](https://github.com/powerhouse-inc/document-model-electron/commit/a3583718047f447f2f59a8153e3e2ac15a8cd732)) -* fetch user's ens info ([229a1ae](https://github.com/powerhouse-inc/document-model-electron/commit/229a1ae1bcd145858f867cdf449d9ed2709c8ffc)) -* fix Authorize Connect font color ([25ba2e7](https://github.com/powerhouse-inc/document-model-electron/commit/25ba2e7af5c81c442fed8d919b31a66ba2959e77)) -* fix console warnings ([3024578](https://github.com/powerhouse-inc/document-model-electron/commit/3024578d93e4a70a89a3b3681d34f78a4bd0f1d0)) -* fix css import order ([9216a27](https://github.com/powerhouse-inc/document-model-electron/commit/9216a277e488f73cc892ad015c4ea35dd22bb2a9)) -* fix linux build ([433e6f9](https://github.com/powerhouse-inc/document-model-electron/commit/433e6f9b0a92f72d33e16bbcb71a8965c034c6be)) -* fix logo + position ([278ebeb](https://github.com/powerhouse-inc/document-model-electron/commit/278ebeb39cac2b6d1edb3b096161bb3810669f31)) -* fix rwa document name ([b3f39d1](https://github.com/powerhouse-inc/document-model-electron/commit/b3f39d16c09cb87295d53a7be249b4e2be3895ab)) -* fix sync status ([9ff69fe](https://github.com/powerhouse-inc/document-model-electron/commit/9ff69fedf729b7e70b07bf121c9feed00c1ddc58)) -* fix tailwind class conflicts ([341d8ba](https://github.com/powerhouse-inc/document-model-electron/commit/341d8ba945fd1a20c6014fcb6e5ce77faf458b5f)) -* fixed addDriveOperations ([4c33a1f](https://github.com/powerhouse-inc/document-model-electron/commit/4c33a1f891eeba1b9845768fbc0395cb01dd9e70)) -* fixed base route ([606e919](https://github.com/powerhouse-inc/document-model-electron/commit/606e9191be0f32309e7a0a59e82dc49aa88690bb)) -* fixed default document-models ([0d51154](https://github.com/powerhouse-inc/document-model-electron/commit/0d511546e95a1d5a534f92b549d7120076792040)) -* fixed editors loading ([4fda671](https://github.com/powerhouse-inc/document-model-electron/commit/4fda67192ca075aa66079cbf769548e53e1a2ef3)) -* fixed file import ([23cd72d](https://github.com/powerhouse-inc/document-model-electron/commit/23cd72da07e8fa12bb6f5c739d392432057d6812)) -* fixed file operations error ([5d123af](https://github.com/powerhouse-inc/document-model-electron/commit/5d123af045f0409222bd61404b2249db2a4ec19d)) -* fixes browser key storage ([bfb2a72](https://github.com/powerhouse-inc/document-model-electron/commit/bfb2a725ec7fb4ec507751e52aa743879e39b428)) -* generate key pair on desktop ([ebc0204](https://github.com/powerhouse-inc/document-model-electron/commit/ebc020405e0b289aa4cfdf4935b2afcd53494a7f)) -* go back from fixed version ([41684c4](https://github.com/powerhouse-inc/document-model-electron/commit/41684c4f9cb55bef7f4e8bea46e7ab2eedc26b5c)) -* handle empty string or wrong formatted string in env var ([0099615](https://github.com/powerhouse-inc/document-model-electron/commit/009961513edaba39ad8fb4daacd6dd702a9fedd8)) -* handle null parent folder ([21f9370](https://github.com/powerhouse-inc/document-model-electron/commit/21f93703b08e39c6c97312a232a609a53dacf1c0)) -* handle sync events on node document drive ([3855ce4](https://github.com/powerhouse-inc/document-model-electron/commit/3855ce42a72865ed48e7729d25ec1481e462851d)) -* handle undefined whitelist ([1672fa8](https://github.com/powerhouse-inc/document-model-electron/commit/1672fa86ab863d8d2fc88604a775f524f7b86614)) -* hide searchbar from config ([0bd4444](https://github.com/powerhouse-inc/document-model-electron/commit/0bd4444fca256b28bf413122a870f343963dc801)) -* ignore drives with error ([25a27d5](https://github.com/powerhouse-inc/document-model-electron/commit/25a27d51fed340a22530d5d13e784bf5f9f66fab)) -* ignore operation hashes when importing zip ([634bcd5](https://github.com/powerhouse-inc/document-model-electron/commit/634bcd5cd534d22db9813cc17be28359d94a1e61)) -* ignores document drive result when adding an operation from the editor ([74140e2](https://github.com/powerhouse-inc/document-model-electron/commit/74140e2400ea1c1b5bb9baf5f7b26ed7cbb2a9cb)) -* implemented rename and new folder actions ([45dbf5e](https://github.com/powerhouse-inc/document-model-electron/commit/45dbf5e527841f1107f9d444ac2b76f0dc6fa7c0)) -* import styles from design system ([f7ac8ad](https://github.com/powerhouse-inc/document-model-electron/commit/f7ac8adc2608e8d491618e01b1c98be9f8c43fe2)) -* improved url handling ([32b3dcd](https://github.com/powerhouse-inc/document-model-electron/commit/32b3dcd943518cba4f1f5a82f9dbb5b906096500)) -* install ts-reset ([228b082](https://github.com/powerhouse-inc/document-model-electron/commit/228b082e36b1e689b47d7ed923dfe3347e74ad7d)) -* install vite ([aa66a01](https://github.com/powerhouse-inc/document-model-electron/commit/aa66a01bc96f33984e9d6828fdd93d374916c2c4)) -* lighthouse recomendations ([dd3e594](https://github.com/powerhouse-inc/document-model-electron/commit/dd3e594c198ab2a9deb83420ed8bfb145475ec71)) -* load default drive ([589653f](https://github.com/powerhouse-inc/document-model-electron/commit/589653fab02bc030fbc4a99bea6ed6f4566fd57c)) -* log sync error ([204c38a](https://github.com/powerhouse-inc/document-model-electron/commit/204c38a5f2763edc2006119b8608f6dc39f40dc9)) -* manually install design system ([1b7c676](https://github.com/powerhouse-inc/document-model-electron/commit/1b7c6767c67efed2da903976a62a0bbbaf8a64fe)) -* move helpers ([e12240c](https://github.com/powerhouse-inc/document-model-electron/commit/e12240c40ca8368b9f99f0bdfa5d2881a9a71dc5)) -* move sync status invocation to hook ([dea3fa9](https://github.com/powerhouse-inc/document-model-electron/commit/dea3fa9f5fbcdf9cf355652bf32e2c434a366c13)) -* moved load initial data into a hook ([99c7417](https://github.com/powerhouse-inc/document-model-electron/commit/99c74175b899c9c1d3f7dbf27de174ebd053bdbf)) -* pass allow list credentials to components ([2fadac1](https://github.com/powerhouse-inc/document-model-electron/commit/2fadac18141430445138ec9446d46227cb69723a)) -* pass allow list props to components ([0df5de6](https://github.com/powerhouse-inc/document-model-electron/commit/0df5de6a1062538cfaee7dcd045abb53b5481106)) -* port config files to ts ([f78e7f5](https://github.com/powerhouse-inc/document-model-electron/commit/f78e7f5444a47d637cc6681dd25917524b03b659)) -* re-enable onErrorCallback with new operations error prop ([a408630](https://github.com/powerhouse-inc/document-model-electron/commit/a408630ee77596a83f2c3ee26a17d44447537647)) -* re-generate package-lock.json ([e48ac3d](https://github.com/powerhouse-inc/document-model-electron/commit/e48ac3dd16d25901565eaed94e4e82b4283f7287)) -* re-implemented copy/move nodes with new DocumentDrive ([c4fad11](https://github.com/powerhouse-inc/document-model-electron/commit/c4fad117827b929d69dd73824d46ef33f767c57f)) -* readd prepare script ([ad4577e](https://github.com/powerhouse-inc/document-model-electron/commit/ad4577ee92a812a4227e03f2923cbb5b5ca0efdc)) -* refresh UI when there are drive changes ([fca3c95](https://github.com/powerhouse-inc/document-model-electron/commit/fca3c9576679e1bdcb8cf017cad3e885cd245fdf)) -* regenerate lock ([0269b0b](https://github.com/powerhouse-inc/document-model-electron/commit/0269b0b47945bc6d53928ec975f3b0c4557706a9)) -* regenerate lockfile ([efa2f7f](https://github.com/powerhouse-inc/document-model-electron/commit/efa2f7f380e1e558b82a616f8d1ef1cda021371e)) -* regenerate lockfile ([c8aac44](https://github.com/powerhouse-inc/document-model-electron/commit/c8aac44f8cb0184962e5567ea3252e14cc686cce)) -* reinstall with npm ([f790b6c](https://github.com/powerhouse-inc/document-model-electron/commit/f790b6c8611e000b123723c014ef35c1ee9aa55b)) -* remove check ([1db971c](https://github.com/powerhouse-inc/document-model-electron/commit/1db971cf324e2ca0e92c8f9b01614f7ef64f3d6a)) -* remove csp ([b940c38](https://github.com/powerhouse-inc/document-model-electron/commit/b940c3849bb1f804c6d2d8ca7e2bced61be81a95)) -* remove default node logic ([217d6e5](https://github.com/powerhouse-inc/document-model-electron/commit/217d6e5ac54033bda7bd36473712e048fe775623)) -* remove hello from content ([decd9c4](https://github.com/powerhouse-inc/document-model-electron/commit/decd9c4a9dbce3d9ecacbee06ad91d5959b86f84)) -* remove old tailwind classes ([10a8b95](https://github.com/powerhouse-inc/document-model-electron/commit/10a8b95edbcf212c17cb9011b13b32d2b924a767)) -* remove redundant config ([0c4d334](https://github.com/powerhouse-inc/document-model-electron/commit/0c4d334f3f75ccef7597470e1ce2a490b449eca8)) -* remove redundant use effect ([9bb2950](https://github.com/powerhouse-inc/document-model-electron/commit/9bb29508084badc11d535fab2ba241fe8021bc5f)) -* remove restriction to send operations ([dc620c5](https://github.com/powerhouse-inc/document-model-electron/commit/dc620c5fda0dd9adff480ee2ea3494b2b1698cc5)) -* remove scrollbar styles ([a9a3080](https://github.com/powerhouse-inc/document-model-electron/commit/a9a30803d3bf1cf91a82cc9bac6133c9bb335691)) -* removed electron-deeplink pkg and updated deep links ([5cec527](https://github.com/powerhouse-inc/document-model-electron/commit/5cec527acc442886f35261affa1619efd30e2212)) -* removed networkId from signer ([89c2a1c](https://github.com/powerhouse-inc/document-model-electron/commit/89c2a1c676170878b4cb307b073b53e28bb9e1f5)) -* removed queue timeout ([8b517b7](https://github.com/powerhouse-inc/document-model-electron/commit/8b517b78c1529abe5c7ee6e69d1990c56c4fbb6e)) -* removed re-renders and prevent add default drive being called twice ([3104848](https://github.com/powerhouse-inc/document-model-electron/commit/3104848107ff53daea46d36930be8ca9e3f522e6)) -* removed usehooks-ts dep ([05ca45e](https://github.com/powerhouse-inc/document-model-electron/commit/05ca45ef3227c50a7d44bfd7c8d8730a89d3c369)) -* rename document drive node when document model name is changed ([b9008f7](https://github.com/powerhouse-inc/document-model-electron/commit/b9008f7e08e340329e16c0743133a09d044cb1dd)) -* replaced env vars by client.config file ([28f7a2f](https://github.com/powerhouse-inc/document-model-electron/commit/28f7a2f5fbe97403f4ed317303f19c43b1cbf300)) -* replaced feature flags context by atomWithStorage ([071b7aa](https://github.com/powerhouse-inc/document-model-electron/commit/071b7aacb44792851b45946f41abecaaa99f5633)) -* replaced sidebar input header by connect logo ([a845dfd](https://github.com/powerhouse-inc/document-model-electron/commit/a845dfd14df5167e25fe5530ae03e9400bb36d45)) -* separate browser storage ([9ea89b8](https://github.com/powerhouse-inc/document-model-electron/commit/9ea89b80a5094eaa56a2d3b417a0e8fb05c0ae91)) -* separated error and conflict messages for drive status notification ([e80ccfe](https://github.com/powerhouse-inc/document-model-electron/commit/e80ccfeff3bf1e739af33c0da97f5258f5007e5a)) -* set queue timeout to 10ms ([6c87c92](https://github.com/powerhouse-inc/document-model-electron/commit/6c87c92e4e4ed2246c642f6575db1b31c6611b06)) -* show success sync toast only after recover from error sync ([5c2a47a](https://github.com/powerhouse-inc/document-model-electron/commit/5c2a47a2d0232e13d9fd6047bbe88c3faee6caa3)) -* simplify copy ([2cd60c3](https://github.com/powerhouse-inc/document-model-electron/commit/2cd60c3957685049fc6ff64beb094b409bbd4f32)) -* support add drive ([f827d33](https://github.com/powerhouse-inc/document-model-electron/commit/f827d338d4b6b49bde54f58ec6eb133756f3c765)) -* support multiple separate allow lists ([74d6152](https://github.com/powerhouse-inc/document-model-electron/commit/74d615236b6a75d0602476a826787e37a3ab263f)) -* switch to using vars from design system ([587c258](https://github.com/powerhouse-inc/document-model-electron/commit/587c258c1f47b8f5f1004252aec491d91b14eb5a)) -* trigger build ([e85bf95](https://github.com/powerhouse-inc/document-model-electron/commit/e85bf95f96ece3f59ead521fe39588630203900d)) -* update connect opengraph meta data ([32b3720](https://github.com/powerhouse-inc/document-model-electron/commit/32b372038f27d9a062ad78de6fde36a70cf2d6d8)) -* update deeplink protocol ([45d0a58](https://github.com/powerhouse-inc/document-model-electron/commit/45d0a58d266bcc369fcef7e0a1cc88c71757e1fc)) -* update dependencies and increase pull interval to 3 seconds ([66d8aea](https://github.com/powerhouse-inc/document-model-electron/commit/66d8aea256ccc6f742347db03bf06901b777bc74)) -* update deps ([3b6fa8d](https://github.com/powerhouse-inc/document-model-electron/commit/3b6fa8daeedec0549451490c9a7efec733ab2b75)) -* update document drive ([ff37742](https://github.com/powerhouse-inc/document-model-electron/commit/ff37742d857e9445a30a4122f12ec8585f5d129e)) -* update document drive dep ([ad31bf0](https://github.com/powerhouse-inc/document-model-electron/commit/ad31bf08d09650a9c335e18cf7153c7bd7667081)) -* update document drive dep ([5baaf20](https://github.com/powerhouse-inc/document-model-electron/commit/5baaf2006c71885132bbdabb59976acf5cde8ce2)) -* update document-drive ([534fa80](https://github.com/powerhouse-inc/document-model-electron/commit/534fa802984035735710d220f2496add04704b64)) -* update document-drive ver ([393388e](https://github.com/powerhouse-inc/document-model-electron/commit/393388e0a45f0275e5ab6824695d70b931891777)) -* update document-model and document-drive ver ([d66225a](https://github.com/powerhouse-inc/document-model-electron/commit/d66225aefa67ed761e8c5a1f36b62685666f7d84)) -* update document-model and document-drive versions ([8d1f869](https://github.com/powerhouse-inc/document-model-electron/commit/8d1f8691bf1511aca38f96a1ca7488e9d6104af2)) -* update document-model dep ([c865770](https://github.com/powerhouse-inc/document-model-electron/commit/c8657706b488631cf5955a6677ae5e4e1252bc9c)) -* update document-model document-drive and document-model-libs deps ([aee1dce](https://github.com/powerhouse-inc/document-model-electron/commit/aee1dce7f1c927ca24ac5283ab3d4d48ca85b7f6)) -* update document-model lib to v1.0.29 ([9190869](https://github.com/powerhouse-inc/document-model-electron/commit/9190869ddea006ce0cad8c3fa264d83535e16950)) -* update drive sync icon on syncStatus event ([ded596e](https://github.com/powerhouse-inc/document-model-electron/commit/ded596eb4761ce7003e285a0b283d45242b66444)) -* update editor when opened document is changed ([88e1cad](https://github.com/powerhouse-inc/document-model-electron/commit/88e1cad21d61cc9675f53a4a67e51e8712b22696)) -* update env var names ([42ba363](https://github.com/powerhouse-inc/document-model-electron/commit/42ba363359b08b076fdb7d39fa7df9b2c7d963ba)) -* update experimental deps ([12d28d6](https://github.com/powerhouse-inc/document-model-electron/commit/12d28d695a58dfc9bb2ff1e288b6ea4ef39f1267)) -* update lint config ([170b252](https://github.com/powerhouse-inc/document-model-electron/commit/170b252cd35fe786147f4e5306948eecf6a3990c)) -* update submit handler ([9cd1a10](https://github.com/powerhouse-inc/document-model-electron/commit/9cd1a10a0fee03bf4ddd2ace4f1a3796e1b4de30)) -* update to use new sync icons ([e1cbf1d](https://github.com/powerhouse-inc/document-model-electron/commit/e1cbf1d22de3159c247b3356577f2fdc519a51c5)) -* update url params logic ([6450975](https://github.com/powerhouse-inc/document-model-electron/commit/645097513096fa26327e60ea510d2e4bd628a870)) -* updated deps ([e41734f](https://github.com/powerhouse-inc/document-model-electron/commit/e41734f70b7b8acae90c167df5884820ee99c3c9)) -* updated deps ([a328cd9](https://github.com/powerhouse-inc/document-model-electron/commit/a328cd93ec131d36f61c45fda4863f315fb3a2cc)) -* updated design system dep ([b378a42](https://github.com/powerhouse-inc/document-model-electron/commit/b378a420bad20debc06aeeb376401ecb311889ce)) -* updated document drive ([4b588b0](https://github.com/powerhouse-inc/document-model-electron/commit/4b588b0f602debb6d069c3c4d580292b87a94337)) -* updated document drive ([b0df564](https://github.com/powerhouse-inc/document-model-electron/commit/b0df564c0952c60b3202c392e9fb1a23e401bea8)) -* updated document drive lib ([5f30983](https://github.com/powerhouse-inc/document-model-electron/commit/5f30983ab3f07462d842e3f464c0723d3f8785dd)) -* updated document-drive ver ([f7b9c7d](https://github.com/powerhouse-inc/document-model-electron/commit/f7b9c7df9d9b569b296d599998e3a500bfb8735c)) -* updated document-drive version ([a92dd24](https://github.com/powerhouse-inc/document-model-electron/commit/a92dd24c3ae638ff02587623a3d33af7fd89e2b6)) -* updated document-drive@1.0.0-experimental.2 ([c2b2816](https://github.com/powerhouse-inc/document-model-electron/commit/c2b2816cc7eea0346ea7d958b39f4b25796bb2a0)) -* updated document-drive@1.0.0-experimental.4 ([f31d12d](https://github.com/powerhouse-inc/document-model-electron/commit/f31d12d18404882a1f3af00f9bca6ab79d7a667e)) -* updated document-model dep ([f487cff](https://github.com/powerhouse-inc/document-model-electron/commit/f487cff99198d7cc3d8fd9db944ca394cc788dec)) -* updated document-model lib ([9db149e](https://github.com/powerhouse-inc/document-model-electron/commit/9db149ecc91926c02f2fe8479ca08958b66977d3)) -* updated document-model-libs ([b0bb1d2](https://github.com/powerhouse-inc/document-model-electron/commit/b0bb1d2ef530ecacc8f722322149866f8fbce03d)) -* updated document-model-libs and design-system ver ([d4ab8f8](https://github.com/powerhouse-inc/document-model-electron/commit/d4ab8f881d0e04d5bf68e0748205cf25fcce90e1)) -* updated package.lock ([3c334f4](https://github.com/powerhouse-inc/document-model-electron/commit/3c334f4f714ec6a63ce63bbc7f60d0e67f99b17b)) -* updated release script ([639b2a5](https://github.com/powerhouse-inc/document-model-electron/commit/639b2a50405d32f884f941457702ba12a6fa3a6b)) -* updated rwa query ([3709cfc](https://github.com/powerhouse-inc/document-model-electron/commit/3709cfc9543851fe77f8a930d1e0806d552069d6)) -* use default values if there is a missing key for feature flags ([cdb728a](https://github.com/powerhouse-inc/document-model-electron/commit/cdb728a3964ca1183bd38743744a8bdf51e04fb6)) -* use drive icon ([c82bebb](https://github.com/powerhouse-inc/document-model-electron/commit/c82bebb00516c95b2f6f48102672bf70333f9477)) -* use memoryBrowser on packaged app ([2d11200](https://github.com/powerhouse-inc/document-model-electron/commit/2d11200a47c861429edd0ad5c6a4eb13b46a7363)) -* use new svgr syntax ([e1db3b9](https://github.com/powerhouse-inc/document-model-electron/commit/e1db3b95b5330f95893b5511df8041ed04d33fb7)) -* use not equal ([8e33089](https://github.com/powerhouse-inc/document-model-electron/commit/8e330890f658224bc1e37d6504765e3d01cc7ede)) -* use setTimeout as fallback for requestIdleCallback ([730c8f2](https://github.com/powerhouse-inc/document-model-electron/commit/730c8f292eec07908410f7f2949c045bab8094fe)) -* use tailwind styles ([53dc69f](https://github.com/powerhouse-inc/document-model-electron/commit/53dc69f69663b4d315c03b57a64b87b274e698cd)) -* use yarn ([812fe5a](https://github.com/powerhouse-inc/document-model-electron/commit/812fe5af48fdea5cb5955f6b8336604722476b44)) -* waits 50ms for new operations to make a single addOperations call ([d4c9796](https://github.com/powerhouse-inc/document-model-electron/commit/d4c97965cc9b83128f6be225a27a64c2f88795f3)) -* waits for document drive server to be loaded before checking default drive is added ([fc10ee8](https://github.com/powerhouse-inc/document-model-electron/commit/fc10ee8428d9d9c24c6cef38cd104ac5f79d759c)) - +- 🚀 Added ItemsContext integration ([41fc40f](https://github.com/powerhouse-inc/document-model-electron/commit/41fc40f93420101ca9b2ec34e1b4f4cab4a43a4b)) +- 🚀 added readable item path for File Items ([9f6a4ac](https://github.com/powerhouse-inc/document-model-electron/commit/9f6a4ac45318bb757e7c7c60df463e67b066771b)) +- 🚀 Implemented base folder-view design ([22ad4fc](https://github.com/powerhouse-inc/document-model-electron/commit/22ad4fc5046e27016ce1a47eda3282125af4db71)) +- activate queue ([#290](https://github.com/powerhouse-inc/document-model-electron/issues/290)) ([5b5a4fd](https://github.com/powerhouse-inc/document-model-electron/commit/5b5a4fd317ce624cc734f186778e49899dd3b148)) +- add dep array to use effect ([0a88d92](https://github.com/powerhouse-inc/document-model-electron/commit/0a88d92a664b877929978f05753f3d38e471625d)) +- add dependency versions to settings modal ([d01c0de](https://github.com/powerhouse-inc/document-model-electron/commit/d01c0de124cb9af00312e4c53e934d8a233e02af)) +- add design system preset ([a6cb51c](https://github.com/powerhouse-inc/document-model-electron/commit/a6cb51c31d4500d31fd091f165a4f01ae37ff4d7)) +- add duplicate action ([a9d2e29](https://github.com/powerhouse-inc/document-model-electron/commit/a9d2e29318badb84ca51acc9603a2c2dc7f25a0e)) +- add duplicate to folder ([a6212a8](https://github.com/powerhouse-inc/document-model-electron/commit/a6212a8fe3c62f49d1b624e75152e48f80034ed2)) +- add generate assets hook for icons copying ([4c25ebe](https://github.com/powerhouse-inc/document-model-electron/commit/4c25ebecc94941502e35dff28555664b3985f67b)) +- add is allowed to create documents hook ([0a457fc](https://github.com/powerhouse-inc/document-model-electron/commit/0a457fc35f5e78cb16eac1664c3def10b29b5229)) +- add optional dep ([a079cc7](https://github.com/powerhouse-inc/document-model-electron/commit/a079cc799c0d7987193ee209618151c10c743282)) +- add pull trigger on cloud drives ([9f86849](https://github.com/powerhouse-inc/document-model-electron/commit/9f868495ced48b9b23a3d128469ce7ac20d32a57)) +- add react aria dep ([499dda0](https://github.com/powerhouse-inc/document-model-electron/commit/499dda05d52469c85f0dc31d1da5639dc926c9c4)) +- add tailwind eslint plugin ([6e639bc](https://github.com/powerhouse-inc/document-model-electron/commit/6e639bc71bddeafe855c210c0f573cec7b2ce622)) +- add user context to actions ([6a3241d](https://github.com/powerhouse-inc/document-model-electron/commit/6a3241d3e98c58262ffc7bbbcaa66f6f5d8878b3)) +- added base path for nginx ([22a270b](https://github.com/powerhouse-inc/document-model-electron/commit/22a270b978e189a8a9afd20e0ae8f568e8c3336e)) +- added browser key storage ([6562881](https://github.com/powerhouse-inc/document-model-electron/commit/6562881b2eb603b59b55f1595a7f46b96dbbded6)) +- added clear storage setting ([922f5e1](https://github.com/powerhouse-inc/document-model-electron/commit/922f5e19ebd68e07440858c2f7308e3f6d1a2aae)) +- added config to hide drive sections ([aa67a3f](https://github.com/powerhouse-inc/document-model-electron/commit/aa67a3f392891e195fbc24a2ff858b66265eccc5)) +- added csp headers ([bd398aa](https://github.com/powerhouse-inc/document-model-electron/commit/bd398aa0bc6d748b740e17d4ddf197232d701c62)) +- added deeplink support to link to specific drive node ([ae1f97f](https://github.com/powerhouse-inc/document-model-electron/commit/ae1f97fb17e3cbc422a2e242e9ff530c598284a5)) +- added delete drive modal + enable delete file modal confirmation ([4ce110e](https://github.com/powerhouse-inc/document-model-electron/commit/4ce110e7baaaad3ea75a33eff45fab9994184658)) +- added develop environment ([c33ab9d](https://github.com/powerhouse-inc/document-model-electron/commit/c33ab9d6977712a3015d28a0cd27208f7fd727e5)) +- added develop to release cycle ([b9247e6](https://github.com/powerhouse-inc/document-model-electron/commit/b9247e66d19ffc9400caae9403d9b5b06048eacc)) +- added e2e playwright setup ([2d37330](https://github.com/powerhouse-inc/document-model-electron/commit/2d37330f103456dc9d3e24cc4a74d3ed7abb20c8)) +- added editor debug tools ([6928bed](https://github.com/powerhouse-inc/document-model-electron/commit/6928bed61c46322bc341da7bed48dcde60454b9e)) +- added env var to hide document model setting ([840a561](https://github.com/powerhouse-inc/document-model-electron/commit/840a5615ba0b5eafab123b0f0e5c21b3c880d670)) +- added env vars for renown ([f464d68](https://github.com/powerhouse-inc/document-model-electron/commit/f464d68172be57798be364a804b9de0e7f1733c1)) +- added feature flag setup + disable editors for demo ([7fa64f2](https://github.com/powerhouse-inc/document-model-electron/commit/7fa64f2634cea508ebfb8b20732a730dc8b0624b)) +- added gzip and brotli compression to nginx ([f52a0c3](https://github.com/powerhouse-inc/document-model-electron/commit/f52a0c3205b1fd7fc99875fae0ad5a1d5cd24dd5)) +- added heroku deployment for powerhouse staging env ([f4c538a](https://github.com/powerhouse-inc/document-model-electron/commit/f4c538a3e02781276996e30b759d50f248037c86)) +- added modal confirmation when export document with errors ([d22a447](https://github.com/powerhouse-inc/document-model-electron/commit/d22a447c98d50589f61e37cd6284155223824057)) +- added network id to user ([908a50e](https://github.com/powerhouse-inc/document-model-electron/commit/908a50e8df9c1ae7e53940dc801157a5ca665706)) +- added new env var to dockerfile ([64afb40](https://github.com/powerhouse-inc/document-model-electron/commit/64afb40dfec060e8ebfaaeddf8f47f3f925d21be)) +- added nginx config ([069be2c](https://github.com/powerhouse-inc/document-model-electron/commit/069be2cd98aee6fe3a6b686b4112a435e81d11b3)) +- added notification toast ([39ed0c2](https://github.com/powerhouse-inc/document-model-electron/commit/39ed0c2319c2a6e1c2044aff5cda1fd1dc51d24b)) +- added open file and delete file ([01793c8](https://github.com/powerhouse-inc/document-model-electron/commit/01793c8a5f21b8e1701e649cc926c8baa7ece4fe)) +- added opengraph and twitter meta data ([280da91](https://github.com/powerhouse-inc/document-model-electron/commit/280da914bbe8129ead8559d4169ea266fbb327bc)) +- added PH logo ([e9ec94b](https://github.com/powerhouse-inc/document-model-electron/commit/e9ec94b3373495aa0d03673b241c78605b61d396)) +- added prepare script ([abeaa41](https://github.com/powerhouse-inc/document-model-electron/commit/abeaa41bb7bfc7a8d3a7332a9dd0ba0dad088659)) +- added renown login on browser ([5b77016](https://github.com/powerhouse-inc/document-model-electron/commit/5b77016508fd448b23999919a8d9e40bc701e1f9)) +- added rewrite rules to vercel.json config ([b66cdb0](https://github.com/powerhouse-inc/document-model-electron/commit/b66cdb0fb264412710c1d3bf67f06d48df52408c)) +- added route to open document drive node ([6700f13](https://github.com/powerhouse-inc/document-model-electron/commit/6700f132435dd4ce175b036d5e906d1194976ed0)) +- added RWA doc name fix for demo ([05dfd07](https://github.com/powerhouse-inc/document-model-electron/commit/05dfd0781038523b86437ebe1164e20a848c65b2)) +- added scope of work ([742aae0](https://github.com/powerhouse-inc/document-model-electron/commit/742aae0cab712068d2f8dbe2804da3ba802416bd)) +- added sentry dsn to environments ([c4cfef1](https://github.com/powerhouse-inc/document-model-electron/commit/c4cfef161be9db837d29aca316949957412e4c25)) +- added sentry environments ([68fefd0](https://github.com/powerhouse-inc/document-model-electron/commit/68fefd095cbffcec9eeebedb786d5ab7afc9c9bf)) +- added sentry to connect ([d51ec53](https://github.com/powerhouse-inc/document-model-electron/commit/d51ec538d376cb533882f9c4b0ee057d80ce7d1a)) +- added settings modal integration ([dfb9d28](https://github.com/powerhouse-inc/document-model-electron/commit/dfb9d287bb99dec4316c9eee5098816b6f498926)) +- added sidebar login ([2917809](https://github.com/powerhouse-inc/document-model-electron/commit/29178094a9d711e1d7303dde1511a7b73bc37199)) +- added sort nodes + fix input styles + cancel new folders with empty name ([4a2f9fb](https://github.com/powerhouse-inc/document-model-electron/commit/4a2f9fbf2c4dc5427c58633f18e40eb10574600c)) +- added support for delete option in FolderItem and FileItem ([85800ab](https://github.com/powerhouse-inc/document-model-electron/commit/85800ab374da9be041d6e8c547d186a0671a6b91)) +- added support for document in addfile action ([0706ce2](https://github.com/powerhouse-inc/document-model-electron/commit/0706ce25a515024a37b61aec11c930601a0869e5)) +- added support for rename files + create file name modal ([8a76691](https://github.com/powerhouse-inc/document-model-electron/commit/8a76691426d671128c4cfbc98864a9a669e395f3)) +- added support for renown user ([3853b37](https://github.com/powerhouse-inc/document-model-electron/commit/3853b371349ee14051b666a19fbb0b0c564c8ac6)) +- added support for router basename ([251afe2](https://github.com/powerhouse-inc/document-model-electron/commit/251afe2b1d4eab690f9592e25edc6c555e2fe44a)) +- added switchboard link to document files ([5f31b71](https://github.com/powerhouse-inc/document-model-electron/commit/5f31b710a6ae65f42aac65840da422134e48ee6c)) +- added useConnectConfig hook ([a600091](https://github.com/powerhouse-inc/document-model-electron/commit/a60009131ad8600174311b45a696d0c3219ae8ce)) +- added vercel redirect ([7100848](https://github.com/powerhouse-inc/document-model-electron/commit/7100848213fe6e5d0811229e67c82b8997648fa2)) +- added vite env as build args ([c76d4f4](https://github.com/powerhouse-inc/document-model-electron/commit/c76d4f431017df7f9b40a5063a71618084333c24)) +- allow connect-src for renown.id ([7357d4a](https://github.com/powerhouse-inc/document-model-electron/commit/7357d4a4a2c9aff400e55d9c8eed9630aaec4ed5)) +- allow external images ([171efac](https://github.com/powerhouse-inc/document-model-electron/commit/171efac183458b993ac11849345b3fb8765a10f4)) +- allow per deploy drive restrictions ([8779d84](https://github.com/powerhouse-inc/document-model-electron/commit/8779d84cb1be5128ac7b1c63a8666c5d03b2f593)) +- allow url for file ([474ad4d](https://github.com/powerhouse-inc/document-model-electron/commit/474ad4d0b90e9e882bb52d4ca479a4314d15eec1)) +- also disable when env is production ([6f60688](https://github.com/powerhouse-inc/document-model-electron/commit/6f60688a7bcf92e19afe5a4a49a1baa9f0c44507)) +- also do src === target check in move node function ([3e80c1e](https://github.com/powerhouse-inc/document-model-electron/commit/3e80c1e4dface07c9d101c39f6a0dce6d0654a26)) +- apply auto fixes ([b10b111](https://github.com/powerhouse-inc/document-model-electron/commit/b10b111374636b145c52fa15f38ebc0751912483)) +- auto-select first drive if there's no selected path ([daf3083](https://github.com/powerhouse-inc/document-model-electron/commit/daf3083b4fff8dd6f033ce9806affe932fea4f04)) +- bump ([40fd30a](https://github.com/powerhouse-inc/document-model-electron/commit/40fd30a489214a512a7dc43fbe9dea1e0c33604a)) +- bump ([11fb69f](https://github.com/powerhouse-inc/document-model-electron/commit/11fb69f6f507d4240e72b1208982c814bce185a8)) +- bump deps ([7d7206c](https://github.com/powerhouse-inc/document-model-electron/commit/7d7206c5ae9bc7c9e7d26713fc8ff4e7ef5f459d)) +- bump design system ([fb12d70](https://github.com/powerhouse-inc/document-model-electron/commit/fb12d70fcd3237f1cacb0375e99e4a1ae01cc342)) +- bump design system ([4e1d168](https://github.com/powerhouse-inc/document-model-electron/commit/4e1d168298355beea31e2216edeb7b7cef8e8257)) +- bump design system and document model libs ([165e2cc](https://github.com/powerhouse-inc/document-model-electron/commit/165e2ccc41d5d72a6f2f834292c18aa2388ebb86)) +- bump design system to integrate dep version component ([a18c621](https://github.com/powerhouse-inc/document-model-electron/commit/a18c621a24d97b3bfa9f103365b3890f6fd342d7)) +- bump design-system and document-model-lib deps ([7d90802](https://github.com/powerhouse-inc/document-model-electron/commit/7d9080289ce258cf9d299d13b4cf7e092fd51535)) +- bump document drive version ([254a2cd](https://github.com/powerhouse-inc/document-model-electron/commit/254a2cd967b07d22352d38509ad55c2ffcd19bf5)) +- bump libs ([24a9cd3](https://github.com/powerhouse-inc/document-model-electron/commit/24a9cd3427eecc32697f15d7479bf5ee53c95084)) +- bump libs ([b27b036](https://github.com/powerhouse-inc/document-model-electron/commit/b27b036a487fbe989f9f7b585603e15bcdd3fa3a)) +- bump libs ([5fb15d3](https://github.com/powerhouse-inc/document-model-electron/commit/5fb15d321de8649ac2fc6953d9ec5312aeabefeb)) +- bump libs ([1f38863](https://github.com/powerhouse-inc/document-model-electron/commit/1f38863cb3e6fff081218ce59d7cf1a6f3c44621)) +- bump libs ([7df97b0](https://github.com/powerhouse-inc/document-model-electron/commit/7df97b03882c012f035b259aebb85ba42704008b)) +- bump libs ([78baf1d](https://github.com/powerhouse-inc/document-model-electron/commit/78baf1dee6da3f18208f23973f65b5a1b930ba81)) +- bump libs ([d766c36](https://github.com/powerhouse-inc/document-model-electron/commit/d766c36649f3575b2d10bcaf532249437a79b36c)) +- bump libs ([6b3f58f](https://github.com/powerhouse-inc/document-model-electron/commit/6b3f58fd3aad9e628cf2312629280f12984648e2)) +- bump libs ([f98b523](https://github.com/powerhouse-inc/document-model-electron/commit/f98b523acb0e2f2599d4d8927bf8fe5b26374856)) +- bump libs ([2a9a29d](https://github.com/powerhouse-inc/document-model-electron/commit/2a9a29d0d9d129abbbe6b16567151f3ecd0d525e)) +- bump libs ([62117a9](https://github.com/powerhouse-inc/document-model-electron/commit/62117a90490e9bbb32c4a84fdbdb3d930ca7ebfb)) +- bump libs ([62cd43d](https://github.com/powerhouse-inc/document-model-electron/commit/62cd43dd7f80cfd6202c251a9c1af1bad0978b67)) +- bump lint deps ([544fcea](https://github.com/powerhouse-inc/document-model-electron/commit/544fcea7cdcf450756b8deb913c47047a9161849)) +- bump react aria ([3a8ed93](https://github.com/powerhouse-inc/document-model-electron/commit/3a8ed934d371b11c7deb8c8894b43c323d04f06f)) +- cancel rename operation when new name is empty ([6c7a815](https://github.com/powerhouse-inc/document-model-electron/commit/6c7a815500339ebbced23214450750bacbfdebc9)) +- change term to allow list ([af99e9b](https://github.com/powerhouse-inc/document-model-electron/commit/af99e9ba0a3eee7074cc763922caf1656f024e83)) +- changed default renown env variables ([c87ee69](https://github.com/powerhouse-inc/document-model-electron/commit/c87ee697507eba7235150e5156bbe7d0cd121e36)) +- changed nginx image to nginx-brotli ([3d497da](https://github.com/powerhouse-inc/document-model-electron/commit/3d497da7806bdb77a6352aad9ad5f64ddcfa93e4)) +- check if operations with same index are submitted ([b7ad973](https://github.com/powerhouse-inc/document-model-electron/commit/b7ad97307106467a39060da44420515f10ce3921)) +- check user auth on startup ([6820f27](https://github.com/powerhouse-inc/document-model-electron/commit/6820f27a8defb40d72e3580d00fe11f1170bbe22)) +- commented renown env variables ([cd18bab](https://github.com/powerhouse-inc/document-model-electron/commit/cd18babc471fef7b1939bed4478265bd5a38abc1)) +- configure available editors with env variables ([00fad56](https://github.com/powerhouse-inc/document-model-electron/commit/00fad56259d24c1dc9fe3009ec5d4d8d9a51782a)) +- default drive handling improvements ([57be63e](https://github.com/powerhouse-inc/document-model-electron/commit/57be63e34a368769eb159728194f70d60ad98290)) +- detect circular reference in node path ([c113d03](https://github.com/powerhouse-inc/document-model-electron/commit/c113d035118d418ed8006b55112d101f030b4caa)) +- disable dev tools when app is packaged ([2326a77](https://github.com/powerhouse-inc/document-model-electron/commit/2326a7774f74d2c8af949cf55c18b12b38d0b7d9)) +- disable document drive editor by default ([a61249f](https://github.com/powerhouse-inc/document-model-electron/commit/a61249f43e50219b7b6aebc27f63b2d07a4735ec)) +- disallow create operations ([9cb4a8e](https://github.com/powerhouse-inc/document-model-electron/commit/9cb4a8e4d902f67692e696b60c283a3ec59ca137)) +- downloadFile fallback ([9836f4c](https://github.com/powerhouse-inc/document-model-electron/commit/9836f4c1e6edf68d1239f69cfb86324cb1e4d6f0)) +- enable transactions editor ([28967c2](https://github.com/powerhouse-inc/document-model-electron/commit/28967c2c6a4465494f682e55e914bfdd719bc07b)) +- enabled add cloud drive modal ([d54f579](https://github.com/powerhouse-inc/document-model-electron/commit/d54f579bd903e57cf193cdc11a727eed5526971d)) +- enabled drop target for FolderItem ([70aeaad](https://github.com/powerhouse-inc/document-model-electron/commit/70aeaadde2844def0c0cc648dbb8f496d51b96dd)) +- enabled editor controls ([f7aa503](https://github.com/powerhouse-inc/document-model-electron/commit/f7aa50343c0a124056811f1ce29ab0c8539263da)) +- enabled keyboard shortcut for undo/redo ([82fe517](https://github.com/powerhouse-inc/document-model-electron/commit/82fe517dbbf01006c6fbaae0b1c493c57eeeb422)) +- enabled onErrorCallback for dispatch fn ([8bd3c7c](https://github.com/powerhouse-inc/document-model-electron/commit/8bd3c7ccfafbf1d1b32ada0bb941585bd0ee1907)) +- enabled rename option for folders in folder view ([d7a9b34](https://github.com/powerhouse-inc/document-model-electron/commit/d7a9b3490b0cb91d647ecb803513dbea590f04e0)) +- enabled rename option when copy/move an item ([3ef5ea4](https://github.com/powerhouse-inc/document-model-electron/commit/3ef5ea474997e10b670a989460dca939431f3a9a)) +- enabled rwa editor ([b7df486](https://github.com/powerhouse-inc/document-model-electron/commit/b7df486a82c0c044fab5dd434ecceba1a2c24dc1)) +- enabled switchboard link in RWA editor ([cece18e](https://github.com/powerhouse-inc/document-model-electron/commit/cece18e3cb900cbe2fe7d77c0c329a2c430e2539)) +- enabled undo/redo with new document structure ([f6af1e0](https://github.com/powerhouse-inc/document-model-electron/commit/f6af1e002121456e5e9cc4befe6c41ac4ddf8aa9)) +- expand selected path in sidebar on initial path load ([9b5e053](https://github.com/powerhouse-inc/document-model-electron/commit/9b5e0533e7e02d4ae9ea3c6bb01c9827eada160c)) +- export did:key instead of public key ([a358371](https://github.com/powerhouse-inc/document-model-electron/commit/a3583718047f447f2f59a8153e3e2ac15a8cd732)) +- fetch user's ens info ([229a1ae](https://github.com/powerhouse-inc/document-model-electron/commit/229a1ae1bcd145858f867cdf449d9ed2709c8ffc)) +- fix Authorize Connect font color ([25ba2e7](https://github.com/powerhouse-inc/document-model-electron/commit/25ba2e7af5c81c442fed8d919b31a66ba2959e77)) +- fix console warnings ([3024578](https://github.com/powerhouse-inc/document-model-electron/commit/3024578d93e4a70a89a3b3681d34f78a4bd0f1d0)) +- fix css import order ([9216a27](https://github.com/powerhouse-inc/document-model-electron/commit/9216a277e488f73cc892ad015c4ea35dd22bb2a9)) +- fix linux build ([433e6f9](https://github.com/powerhouse-inc/document-model-electron/commit/433e6f9b0a92f72d33e16bbcb71a8965c034c6be)) +- fix logo + position ([278ebeb](https://github.com/powerhouse-inc/document-model-electron/commit/278ebeb39cac2b6d1edb3b096161bb3810669f31)) +- fix rwa document name ([b3f39d1](https://github.com/powerhouse-inc/document-model-electron/commit/b3f39d16c09cb87295d53a7be249b4e2be3895ab)) +- fix sync status ([9ff69fe](https://github.com/powerhouse-inc/document-model-electron/commit/9ff69fedf729b7e70b07bf121c9feed00c1ddc58)) +- fix tailwind class conflicts ([341d8ba](https://github.com/powerhouse-inc/document-model-electron/commit/341d8ba945fd1a20c6014fcb6e5ce77faf458b5f)) +- fixed addDriveOperations ([4c33a1f](https://github.com/powerhouse-inc/document-model-electron/commit/4c33a1f891eeba1b9845768fbc0395cb01dd9e70)) +- fixed base route ([606e919](https://github.com/powerhouse-inc/document-model-electron/commit/606e9191be0f32309e7a0a59e82dc49aa88690bb)) +- fixed default document-models ([0d51154](https://github.com/powerhouse-inc/document-model-electron/commit/0d511546e95a1d5a534f92b549d7120076792040)) +- fixed editors loading ([4fda671](https://github.com/powerhouse-inc/document-model-electron/commit/4fda67192ca075aa66079cbf769548e53e1a2ef3)) +- fixed file import ([23cd72d](https://github.com/powerhouse-inc/document-model-electron/commit/23cd72da07e8fa12bb6f5c739d392432057d6812)) +- fixed file operations error ([5d123af](https://github.com/powerhouse-inc/document-model-electron/commit/5d123af045f0409222bd61404b2249db2a4ec19d)) +- fixes browser key storage ([bfb2a72](https://github.com/powerhouse-inc/document-model-electron/commit/bfb2a725ec7fb4ec507751e52aa743879e39b428)) +- generate key pair on desktop ([ebc0204](https://github.com/powerhouse-inc/document-model-electron/commit/ebc020405e0b289aa4cfdf4935b2afcd53494a7f)) +- go back from fixed version ([41684c4](https://github.com/powerhouse-inc/document-model-electron/commit/41684c4f9cb55bef7f4e8bea46e7ab2eedc26b5c)) +- handle empty string or wrong formatted string in env var ([0099615](https://github.com/powerhouse-inc/document-model-electron/commit/009961513edaba39ad8fb4daacd6dd702a9fedd8)) +- handle null parent folder ([21f9370](https://github.com/powerhouse-inc/document-model-electron/commit/21f93703b08e39c6c97312a232a609a53dacf1c0)) +- handle sync events on node document drive ([3855ce4](https://github.com/powerhouse-inc/document-model-electron/commit/3855ce42a72865ed48e7729d25ec1481e462851d)) +- handle undefined whitelist ([1672fa8](https://github.com/powerhouse-inc/document-model-electron/commit/1672fa86ab863d8d2fc88604a775f524f7b86614)) +- hide searchbar from config ([0bd4444](https://github.com/powerhouse-inc/document-model-electron/commit/0bd4444fca256b28bf413122a870f343963dc801)) +- ignore drives with error ([25a27d5](https://github.com/powerhouse-inc/document-model-electron/commit/25a27d51fed340a22530d5d13e784bf5f9f66fab)) +- ignore operation hashes when importing zip ([634bcd5](https://github.com/powerhouse-inc/document-model-electron/commit/634bcd5cd534d22db9813cc17be28359d94a1e61)) +- ignores document drive result when adding an operation from the editor ([74140e2](https://github.com/powerhouse-inc/document-model-electron/commit/74140e2400ea1c1b5bb9baf5f7b26ed7cbb2a9cb)) +- implemented rename and new folder actions ([45dbf5e](https://github.com/powerhouse-inc/document-model-electron/commit/45dbf5e527841f1107f9d444ac2b76f0dc6fa7c0)) +- import styles from design system ([f7ac8ad](https://github.com/powerhouse-inc/document-model-electron/commit/f7ac8adc2608e8d491618e01b1c98be9f8c43fe2)) +- improved url handling ([32b3dcd](https://github.com/powerhouse-inc/document-model-electron/commit/32b3dcd943518cba4f1f5a82f9dbb5b906096500)) +- install ts-reset ([228b082](https://github.com/powerhouse-inc/document-model-electron/commit/228b082e36b1e689b47d7ed923dfe3347e74ad7d)) +- install vite ([aa66a01](https://github.com/powerhouse-inc/document-model-electron/commit/aa66a01bc96f33984e9d6828fdd93d374916c2c4)) +- lighthouse recomendations ([dd3e594](https://github.com/powerhouse-inc/document-model-electron/commit/dd3e594c198ab2a9deb83420ed8bfb145475ec71)) +- load default drive ([589653f](https://github.com/powerhouse-inc/document-model-electron/commit/589653fab02bc030fbc4a99bea6ed6f4566fd57c)) +- log sync error ([204c38a](https://github.com/powerhouse-inc/document-model-electron/commit/204c38a5f2763edc2006119b8608f6dc39f40dc9)) +- manually install design system ([1b7c676](https://github.com/powerhouse-inc/document-model-electron/commit/1b7c6767c67efed2da903976a62a0bbbaf8a64fe)) +- move helpers ([e12240c](https://github.com/powerhouse-inc/document-model-electron/commit/e12240c40ca8368b9f99f0bdfa5d2881a9a71dc5)) +- move sync status invocation to hook ([dea3fa9](https://github.com/powerhouse-inc/document-model-electron/commit/dea3fa9f5fbcdf9cf355652bf32e2c434a366c13)) +- moved load initial data into a hook ([99c7417](https://github.com/powerhouse-inc/document-model-electron/commit/99c74175b899c9c1d3f7dbf27de174ebd053bdbf)) +- pass allow list credentials to components ([2fadac1](https://github.com/powerhouse-inc/document-model-electron/commit/2fadac18141430445138ec9446d46227cb69723a)) +- pass allow list props to components ([0df5de6](https://github.com/powerhouse-inc/document-model-electron/commit/0df5de6a1062538cfaee7dcd045abb53b5481106)) +- port config files to ts ([f78e7f5](https://github.com/powerhouse-inc/document-model-electron/commit/f78e7f5444a47d637cc6681dd25917524b03b659)) +- re-enable onErrorCallback with new operations error prop ([a408630](https://github.com/powerhouse-inc/document-model-electron/commit/a408630ee77596a83f2c3ee26a17d44447537647)) +- re-generate package-lock.json ([e48ac3d](https://github.com/powerhouse-inc/document-model-electron/commit/e48ac3dd16d25901565eaed94e4e82b4283f7287)) +- re-implemented copy/move nodes with new DocumentDrive ([c4fad11](https://github.com/powerhouse-inc/document-model-electron/commit/c4fad117827b929d69dd73824d46ef33f767c57f)) +- readd prepare script ([ad4577e](https://github.com/powerhouse-inc/document-model-electron/commit/ad4577ee92a812a4227e03f2923cbb5b5ca0efdc)) +- refresh UI when there are drive changes ([fca3c95](https://github.com/powerhouse-inc/document-model-electron/commit/fca3c9576679e1bdcb8cf017cad3e885cd245fdf)) +- regenerate lock ([0269b0b](https://github.com/powerhouse-inc/document-model-electron/commit/0269b0b47945bc6d53928ec975f3b0c4557706a9)) +- regenerate lockfile ([efa2f7f](https://github.com/powerhouse-inc/document-model-electron/commit/efa2f7f380e1e558b82a616f8d1ef1cda021371e)) +- regenerate lockfile ([c8aac44](https://github.com/powerhouse-inc/document-model-electron/commit/c8aac44f8cb0184962e5567ea3252e14cc686cce)) +- reinstall with npm ([f790b6c](https://github.com/powerhouse-inc/document-model-electron/commit/f790b6c8611e000b123723c014ef35c1ee9aa55b)) +- remove check ([1db971c](https://github.com/powerhouse-inc/document-model-electron/commit/1db971cf324e2ca0e92c8f9b01614f7ef64f3d6a)) +- remove csp ([b940c38](https://github.com/powerhouse-inc/document-model-electron/commit/b940c3849bb1f804c6d2d8ca7e2bced61be81a95)) +- remove default node logic ([217d6e5](https://github.com/powerhouse-inc/document-model-electron/commit/217d6e5ac54033bda7bd36473712e048fe775623)) +- remove hello from content ([decd9c4](https://github.com/powerhouse-inc/document-model-electron/commit/decd9c4a9dbce3d9ecacbee06ad91d5959b86f84)) +- remove old tailwind classes ([10a8b95](https://github.com/powerhouse-inc/document-model-electron/commit/10a8b95edbcf212c17cb9011b13b32d2b924a767)) +- remove redundant config ([0c4d334](https://github.com/powerhouse-inc/document-model-electron/commit/0c4d334f3f75ccef7597470e1ce2a490b449eca8)) +- remove redundant use effect ([9bb2950](https://github.com/powerhouse-inc/document-model-electron/commit/9bb29508084badc11d535fab2ba241fe8021bc5f)) +- remove restriction to send operations ([dc620c5](https://github.com/powerhouse-inc/document-model-electron/commit/dc620c5fda0dd9adff480ee2ea3494b2b1698cc5)) +- remove scrollbar styles ([a9a3080](https://github.com/powerhouse-inc/document-model-electron/commit/a9a30803d3bf1cf91a82cc9bac6133c9bb335691)) +- removed electron-deeplink pkg and updated deep links ([5cec527](https://github.com/powerhouse-inc/document-model-electron/commit/5cec527acc442886f35261affa1619efd30e2212)) +- removed networkId from signer ([89c2a1c](https://github.com/powerhouse-inc/document-model-electron/commit/89c2a1c676170878b4cb307b073b53e28bb9e1f5)) +- removed queue timeout ([8b517b7](https://github.com/powerhouse-inc/document-model-electron/commit/8b517b78c1529abe5c7ee6e69d1990c56c4fbb6e)) +- removed re-renders and prevent add default drive being called twice ([3104848](https://github.com/powerhouse-inc/document-model-electron/commit/3104848107ff53daea46d36930be8ca9e3f522e6)) +- removed usehooks-ts dep ([05ca45e](https://github.com/powerhouse-inc/document-model-electron/commit/05ca45ef3227c50a7d44bfd7c8d8730a89d3c369)) +- rename document drive node when document model name is changed ([b9008f7](https://github.com/powerhouse-inc/document-model-electron/commit/b9008f7e08e340329e16c0743133a09d044cb1dd)) +- replaced env vars by client.config file ([28f7a2f](https://github.com/powerhouse-inc/document-model-electron/commit/28f7a2f5fbe97403f4ed317303f19c43b1cbf300)) +- replaced feature flags context by atomWithStorage ([071b7aa](https://github.com/powerhouse-inc/document-model-electron/commit/071b7aacb44792851b45946f41abecaaa99f5633)) +- replaced sidebar input header by connect logo ([a845dfd](https://github.com/powerhouse-inc/document-model-electron/commit/a845dfd14df5167e25fe5530ae03e9400bb36d45)) +- separate browser storage ([9ea89b8](https://github.com/powerhouse-inc/document-model-electron/commit/9ea89b80a5094eaa56a2d3b417a0e8fb05c0ae91)) +- separated error and conflict messages for drive status notification ([e80ccfe](https://github.com/powerhouse-inc/document-model-electron/commit/e80ccfeff3bf1e739af33c0da97f5258f5007e5a)) +- set queue timeout to 10ms ([6c87c92](https://github.com/powerhouse-inc/document-model-electron/commit/6c87c92e4e4ed2246c642f6575db1b31c6611b06)) +- show success sync toast only after recover from error sync ([5c2a47a](https://github.com/powerhouse-inc/document-model-electron/commit/5c2a47a2d0232e13d9fd6047bbe88c3faee6caa3)) +- simplify copy ([2cd60c3](https://github.com/powerhouse-inc/document-model-electron/commit/2cd60c3957685049fc6ff64beb094b409bbd4f32)) +- support add drive ([f827d33](https://github.com/powerhouse-inc/document-model-electron/commit/f827d338d4b6b49bde54f58ec6eb133756f3c765)) +- support multiple separate allow lists ([74d6152](https://github.com/powerhouse-inc/document-model-electron/commit/74d615236b6a75d0602476a826787e37a3ab263f)) +- switch to using vars from design system ([587c258](https://github.com/powerhouse-inc/document-model-electron/commit/587c258c1f47b8f5f1004252aec491d91b14eb5a)) +- trigger build ([e85bf95](https://github.com/powerhouse-inc/document-model-electron/commit/e85bf95f96ece3f59ead521fe39588630203900d)) +- update connect opengraph meta data ([32b3720](https://github.com/powerhouse-inc/document-model-electron/commit/32b372038f27d9a062ad78de6fde36a70cf2d6d8)) +- update deeplink protocol ([45d0a58](https://github.com/powerhouse-inc/document-model-electron/commit/45d0a58d266bcc369fcef7e0a1cc88c71757e1fc)) +- update dependencies and increase pull interval to 3 seconds ([66d8aea](https://github.com/powerhouse-inc/document-model-electron/commit/66d8aea256ccc6f742347db03bf06901b777bc74)) +- update deps ([3b6fa8d](https://github.com/powerhouse-inc/document-model-electron/commit/3b6fa8daeedec0549451490c9a7efec733ab2b75)) +- update document drive ([ff37742](https://github.com/powerhouse-inc/document-model-electron/commit/ff37742d857e9445a30a4122f12ec8585f5d129e)) +- update document drive dep ([ad31bf0](https://github.com/powerhouse-inc/document-model-electron/commit/ad31bf08d09650a9c335e18cf7153c7bd7667081)) +- update document drive dep ([5baaf20](https://github.com/powerhouse-inc/document-model-electron/commit/5baaf2006c71885132bbdabb59976acf5cde8ce2)) +- update document-drive ([534fa80](https://github.com/powerhouse-inc/document-model-electron/commit/534fa802984035735710d220f2496add04704b64)) +- update document-drive ver ([393388e](https://github.com/powerhouse-inc/document-model-electron/commit/393388e0a45f0275e5ab6824695d70b931891777)) +- update document-model and document-drive ver ([d66225a](https://github.com/powerhouse-inc/document-model-electron/commit/d66225aefa67ed761e8c5a1f36b62685666f7d84)) +- update document-model and document-drive versions ([8d1f869](https://github.com/powerhouse-inc/document-model-electron/commit/8d1f8691bf1511aca38f96a1ca7488e9d6104af2)) +- update document-model dep ([c865770](https://github.com/powerhouse-inc/document-model-electron/commit/c8657706b488631cf5955a6677ae5e4e1252bc9c)) +- update document-model document-drive and document-model-libs deps ([aee1dce](https://github.com/powerhouse-inc/document-model-electron/commit/aee1dce7f1c927ca24ac5283ab3d4d48ca85b7f6)) +- update document-model lib to v1.0.29 ([9190869](https://github.com/powerhouse-inc/document-model-electron/commit/9190869ddea006ce0cad8c3fa264d83535e16950)) +- update drive sync icon on syncStatus event ([ded596e](https://github.com/powerhouse-inc/document-model-electron/commit/ded596eb4761ce7003e285a0b283d45242b66444)) +- update editor when opened document is changed ([88e1cad](https://github.com/powerhouse-inc/document-model-electron/commit/88e1cad21d61cc9675f53a4a67e51e8712b22696)) +- update env var names ([42ba363](https://github.com/powerhouse-inc/document-model-electron/commit/42ba363359b08b076fdb7d39fa7df9b2c7d963ba)) +- update experimental deps ([12d28d6](https://github.com/powerhouse-inc/document-model-electron/commit/12d28d695a58dfc9bb2ff1e288b6ea4ef39f1267)) +- update lint config ([170b252](https://github.com/powerhouse-inc/document-model-electron/commit/170b252cd35fe786147f4e5306948eecf6a3990c)) +- update submit handler ([9cd1a10](https://github.com/powerhouse-inc/document-model-electron/commit/9cd1a10a0fee03bf4ddd2ace4f1a3796e1b4de30)) +- update to use new sync icons ([e1cbf1d](https://github.com/powerhouse-inc/document-model-electron/commit/e1cbf1d22de3159c247b3356577f2fdc519a51c5)) +- update url params logic ([6450975](https://github.com/powerhouse-inc/document-model-electron/commit/645097513096fa26327e60ea510d2e4bd628a870)) +- updated deps ([e41734f](https://github.com/powerhouse-inc/document-model-electron/commit/e41734f70b7b8acae90c167df5884820ee99c3c9)) +- updated deps ([a328cd9](https://github.com/powerhouse-inc/document-model-electron/commit/a328cd93ec131d36f61c45fda4863f315fb3a2cc)) +- updated design system dep ([b378a42](https://github.com/powerhouse-inc/document-model-electron/commit/b378a420bad20debc06aeeb376401ecb311889ce)) +- updated document drive ([4b588b0](https://github.com/powerhouse-inc/document-model-electron/commit/4b588b0f602debb6d069c3c4d580292b87a94337)) +- updated document drive ([b0df564](https://github.com/powerhouse-inc/document-model-electron/commit/b0df564c0952c60b3202c392e9fb1a23e401bea8)) +- updated document drive lib ([5f30983](https://github.com/powerhouse-inc/document-model-electron/commit/5f30983ab3f07462d842e3f464c0723d3f8785dd)) +- updated document-drive ver ([f7b9c7d](https://github.com/powerhouse-inc/document-model-electron/commit/f7b9c7df9d9b569b296d599998e3a500bfb8735c)) +- updated document-drive version ([a92dd24](https://github.com/powerhouse-inc/document-model-electron/commit/a92dd24c3ae638ff02587623a3d33af7fd89e2b6)) +- updated document-drive@1.0.0-experimental.2 ([c2b2816](https://github.com/powerhouse-inc/document-model-electron/commit/c2b2816cc7eea0346ea7d958b39f4b25796bb2a0)) +- updated document-drive@1.0.0-experimental.4 ([f31d12d](https://github.com/powerhouse-inc/document-model-electron/commit/f31d12d18404882a1f3af00f9bca6ab79d7a667e)) +- updated document-model dep ([f487cff](https://github.com/powerhouse-inc/document-model-electron/commit/f487cff99198d7cc3d8fd9db944ca394cc788dec)) +- updated document-model lib ([9db149e](https://github.com/powerhouse-inc/document-model-electron/commit/9db149ecc91926c02f2fe8479ca08958b66977d3)) +- updated document-model-libs ([b0bb1d2](https://github.com/powerhouse-inc/document-model-electron/commit/b0bb1d2ef530ecacc8f722322149866f8fbce03d)) +- updated document-model-libs and design-system ver ([d4ab8f8](https://github.com/powerhouse-inc/document-model-electron/commit/d4ab8f881d0e04d5bf68e0748205cf25fcce90e1)) +- updated package.lock ([3c334f4](https://github.com/powerhouse-inc/document-model-electron/commit/3c334f4f714ec6a63ce63bbc7f60d0e67f99b17b)) +- updated release script ([639b2a5](https://github.com/powerhouse-inc/document-model-electron/commit/639b2a50405d32f884f941457702ba12a6fa3a6b)) +- updated rwa query ([3709cfc](https://github.com/powerhouse-inc/document-model-electron/commit/3709cfc9543851fe77f8a930d1e0806d552069d6)) +- use default values if there is a missing key for feature flags ([cdb728a](https://github.com/powerhouse-inc/document-model-electron/commit/cdb728a3964ca1183bd38743744a8bdf51e04fb6)) +- use drive icon ([c82bebb](https://github.com/powerhouse-inc/document-model-electron/commit/c82bebb00516c95b2f6f48102672bf70333f9477)) +- use memoryBrowser on packaged app ([2d11200](https://github.com/powerhouse-inc/document-model-electron/commit/2d11200a47c861429edd0ad5c6a4eb13b46a7363)) +- use new svgr syntax ([e1db3b9](https://github.com/powerhouse-inc/document-model-electron/commit/e1db3b95b5330f95893b5511df8041ed04d33fb7)) +- use not equal ([8e33089](https://github.com/powerhouse-inc/document-model-electron/commit/8e330890f658224bc1e37d6504765e3d01cc7ede)) +- use setTimeout as fallback for requestIdleCallback ([730c8f2](https://github.com/powerhouse-inc/document-model-electron/commit/730c8f292eec07908410f7f2949c045bab8094fe)) +- use tailwind styles ([53dc69f](https://github.com/powerhouse-inc/document-model-electron/commit/53dc69f69663b4d315c03b57a64b87b274e698cd)) +- use yarn ([812fe5a](https://github.com/powerhouse-inc/document-model-electron/commit/812fe5af48fdea5cb5955f6b8336604722476b44)) +- waits 50ms for new operations to make a single addOperations call ([d4c9796](https://github.com/powerhouse-inc/document-model-electron/commit/d4c97965cc9b83128f6be225a27a64c2f88795f3)) +- waits for document drive server to be loaded before checking default drive is added ([fc10ee8](https://github.com/powerhouse-inc/document-model-electron/commit/fc10ee8428d9d9c24c6cef38cd104ac5f79d759c)) ### Performance Improvements -* implemented scalable way to compare drive state ([5b4f360](https://github.com/powerhouse-inc/document-model-electron/commit/5b4f360f9be815e52131f56fedf3f6a97e77ed7f)) +- implemented scalable way to compare drive state ([5b4f360](https://github.com/powerhouse-inc/document-model-electron/commit/5b4f360f9be815e52131f56fedf3f6a97e77ed7f)) # 1.0.0-alpha.1 (2024-06-11) - ### Bug Fixes -* added callback support for document dispatch ([a4f4c04](https://github.com/powerhouse-inc/document-model-electron/commit/a4f4c04ead0d2aca54983da2e79e9ff6e673da15)) -* allow concurrent drive operations ([17658ee](https://github.com/powerhouse-inc/document-model-electron/commit/17658ee1a67dc787896508d25ea329ca9b657a13)) -* apply auto lint fix ([dfa1ec0](https://github.com/powerhouse-inc/document-model-electron/commit/dfa1ec02caddba3e9b06e1a18855f47abf959eda)) -* base hrefs ([1ff517c](https://github.com/powerhouse-inc/document-model-electron/commit/1ff517c31991b6ad836b173c0df916b396f59fe1)) -* base path cmd ([070b4af](https://github.com/powerhouse-inc/document-model-electron/commit/070b4af1a148be00ca8b4e4bf8e24f22adbea28c)) -* build issues ([f2b084b](https://github.com/powerhouse-inc/document-model-electron/commit/f2b084b21a7826c491bc4d5977608892bfedfeba)) -* change config file names in scripts ([37fa872](https://github.com/powerhouse-inc/document-model-electron/commit/37fa872932c8f455e4844e6bd838a65720ad5380)) -* downgraded document drive ([7d287c4](https://github.com/powerhouse-inc/document-model-electron/commit/7d287c4d08d73226e7ba1ec8aabaeeb9a088c8e2)) -* endpoints for connect ([f35f853](https://github.com/powerhouse-inc/document-model-electron/commit/f35f8532e14475e74cc80119e5df0274f2b5f1e7)) -* fix file types ([11d1b18](https://github.com/powerhouse-inc/document-model-electron/commit/11d1b1833442ee302196b3e50f73f0380a372507)) -* fix rerenders when refreshing document drives ([5429f61](https://github.com/powerhouse-inc/document-model-electron/commit/5429f613784535e430809b751d879e60b2f5fb68)) -* fixed build error ([3027483](https://github.com/powerhouse-inc/document-model-electron/commit/30274832089143d616c3c55935735ad6f275e8c2)) -* fixed build error ([f280459](https://github.com/powerhouse-inc/document-model-electron/commit/f2804594d3f764477c06fc4183a2427df9e4c86b)) -* folder selection in folder view ([f7e3681](https://github.com/powerhouse-inc/document-model-electron/commit/f7e36810b5d0223afc64736a9e8ec48e11f7fc57)) -* header text color ([4ee9745](https://github.com/powerhouse-inc/document-model-electron/commit/4ee9745dbbeddf0e2ea41f6d8c4c800d9f5bfd99)) -* heroku nginx config ([0ca0df1](https://github.com/powerhouse-inc/document-model-electron/commit/0ca0df1e853522fb0d21ded35d6f61964c48ea62)) -* lint errors ([ac490b4](https://github.com/powerhouse-inc/document-model-electron/commit/ac490b4cdf693d62d57a865b55952ca7b46bfe94)) -* missing return ([f81d0e9](https://github.com/powerhouse-inc/document-model-electron/commit/f81d0e9a0a58c4079a6359d0dc45f90861d4acb4)) -* only call useMemo in hook ([76a1505](https://github.com/powerhouse-inc/document-model-electron/commit/76a15059e825ec0e1d6215e450ec0339d7c33bbe)) -* package.lock ([1c2a1f5](https://github.com/powerhouse-inc/document-model-electron/commit/1c2a1f55bf33953fa1834da2e84dcc0e93710c7b)) -* properly encode switchboard query ([4c5001f](https://github.com/powerhouse-inc/document-model-electron/commit/4c5001fb3aa34249bee0550331a314872b05c614)) -* remove allow list ([ac2475d](https://github.com/powerhouse-inc/document-model-electron/commit/ac2475d866195b18b23ca094457ccce93b9b0508)) -* remove duplicate package ([364afdd](https://github.com/powerhouse-inc/document-model-electron/commit/364afdde2e2c9c3d6c12d0364e6d0cfd612f5429)) -* remove yalc from package json ([9e184d8](https://github.com/powerhouse-inc/document-model-electron/commit/9e184d8df68d74803e9cbf95f7cf480f97a6d03e)) -* removed unused css import ([6da080c](https://github.com/powerhouse-inc/document-model-electron/commit/6da080c53ea57352b997de941fc303f11a5d2a42)) -* rename node id ([45235e5](https://github.com/powerhouse-inc/document-model-electron/commit/45235e516ce5ea52345c7ff9d1f7238ff4e9e095)) -* renown endpoint ([10461f5](https://github.com/powerhouse-inc/document-model-electron/commit/10461f566fd49a8fd79b23fdaa66871d8d8cff76)) -* renown login ([432e5bc](https://github.com/powerhouse-inc/document-model-electron/commit/432e5bcc1eaa13a043720b0c9d1165222188ecfc)) -* revert setSelectedDocument in addOperation document ([df06317](https://github.com/powerhouse-inc/document-model-electron/commit/df06317cc067b3f25deedb9832c1aa54d308158a)) -* rwa query ([09fcd52](https://github.com/powerhouse-inc/document-model-electron/commit/09fcd52fdf4adbeee9f6a6aa26c1d0309b525510)) -* settings modal typo ([6ef1286](https://github.com/powerhouse-inc/document-model-electron/commit/6ef12861fdda344c7c45f54657b6f56c67217162)) -* show local drives ([893b0df](https://github.com/powerhouse-inc/document-model-electron/commit/893b0dfe9d8004b12114842b082e4672a630aa38)) -* subscribe to server updates when load initial data ([35bf948](https://github.com/powerhouse-inc/document-model-electron/commit/35bf948de2acb3a23684060c978138f2b5ad5f75)) -* suppress less important rules ([679af22](https://github.com/powerhouse-inc/document-model-electron/commit/679af2256b8e6a4739006048056d452ba7fbf988)) -* switchboard endpoint ([2e570f3](https://github.com/powerhouse-inc/document-model-electron/commit/2e570f39bc355e4f387c0d371e8af81a0b92bb38)) -* switchboard link ([78bbdd0](https://github.com/powerhouse-inc/document-model-electron/commit/78bbdd0ec278a7685023cf9482d5990f6cf18a6d)) -* tmp build fix ([4a4be40](https://github.com/powerhouse-inc/document-model-electron/commit/4a4be4098131a946ce919792e3028e0f4e92c46e)) -* undefined default drive ([e5f2749](https://github.com/powerhouse-inc/document-model-electron/commit/e5f27494a57a29c4e4ae921d2014198af8614df3)) -* undefined default drive ([6ad9412](https://github.com/powerhouse-inc/document-model-electron/commit/6ad94127e15ebb43507cd0cae8404e9e2bc17e5b)) -* update selectedDocument when a new operation is dispatched ([b2c4401](https://github.com/powerhouse-inc/document-model-electron/commit/b2c4401c676d1c2621334375f132c6367c234ca5)) -* use selectedDocument as source of truth for document editor ([b5204e7](https://github.com/powerhouse-inc/document-model-electron/commit/b5204e7153028459ef3ace07e719736d971d577a)) -* wait for renown to load ([1d2f019](https://github.com/powerhouse-inc/document-model-electron/commit/1d2f019dc992239873e19e35fe8d5c0dde1396f5)) - +- added callback support for document dispatch ([a4f4c04](https://github.com/powerhouse-inc/document-model-electron/commit/a4f4c04ead0d2aca54983da2e79e9ff6e673da15)) +- allow concurrent drive operations ([17658ee](https://github.com/powerhouse-inc/document-model-electron/commit/17658ee1a67dc787896508d25ea329ca9b657a13)) +- apply auto lint fix ([dfa1ec0](https://github.com/powerhouse-inc/document-model-electron/commit/dfa1ec02caddba3e9b06e1a18855f47abf959eda)) +- base hrefs ([1ff517c](https://github.com/powerhouse-inc/document-model-electron/commit/1ff517c31991b6ad836b173c0df916b396f59fe1)) +- base path cmd ([070b4af](https://github.com/powerhouse-inc/document-model-electron/commit/070b4af1a148be00ca8b4e4bf8e24f22adbea28c)) +- build issues ([f2b084b](https://github.com/powerhouse-inc/document-model-electron/commit/f2b084b21a7826c491bc4d5977608892bfedfeba)) +- change config file names in scripts ([37fa872](https://github.com/powerhouse-inc/document-model-electron/commit/37fa872932c8f455e4844e6bd838a65720ad5380)) +- downgraded document drive ([7d287c4](https://github.com/powerhouse-inc/document-model-electron/commit/7d287c4d08d73226e7ba1ec8aabaeeb9a088c8e2)) +- endpoints for connect ([f35f853](https://github.com/powerhouse-inc/document-model-electron/commit/f35f8532e14475e74cc80119e5df0274f2b5f1e7)) +- fix file types ([11d1b18](https://github.com/powerhouse-inc/document-model-electron/commit/11d1b1833442ee302196b3e50f73f0380a372507)) +- fix rerenders when refreshing document drives ([5429f61](https://github.com/powerhouse-inc/document-model-electron/commit/5429f613784535e430809b751d879e60b2f5fb68)) +- fixed build error ([3027483](https://github.com/powerhouse-inc/document-model-electron/commit/30274832089143d616c3c55935735ad6f275e8c2)) +- fixed build error ([f280459](https://github.com/powerhouse-inc/document-model-electron/commit/f2804594d3f764477c06fc4183a2427df9e4c86b)) +- folder selection in folder view ([f7e3681](https://github.com/powerhouse-inc/document-model-electron/commit/f7e36810b5d0223afc64736a9e8ec48e11f7fc57)) +- header text color ([4ee9745](https://github.com/powerhouse-inc/document-model-electron/commit/4ee9745dbbeddf0e2ea41f6d8c4c800d9f5bfd99)) +- heroku nginx config ([0ca0df1](https://github.com/powerhouse-inc/document-model-electron/commit/0ca0df1e853522fb0d21ded35d6f61964c48ea62)) +- lint errors ([ac490b4](https://github.com/powerhouse-inc/document-model-electron/commit/ac490b4cdf693d62d57a865b55952ca7b46bfe94)) +- missing return ([f81d0e9](https://github.com/powerhouse-inc/document-model-electron/commit/f81d0e9a0a58c4079a6359d0dc45f90861d4acb4)) +- only call useMemo in hook ([76a1505](https://github.com/powerhouse-inc/document-model-electron/commit/76a15059e825ec0e1d6215e450ec0339d7c33bbe)) +- package.lock ([1c2a1f5](https://github.com/powerhouse-inc/document-model-electron/commit/1c2a1f55bf33953fa1834da2e84dcc0e93710c7b)) +- properly encode switchboard query ([4c5001f](https://github.com/powerhouse-inc/document-model-electron/commit/4c5001fb3aa34249bee0550331a314872b05c614)) +- remove allow list ([ac2475d](https://github.com/powerhouse-inc/document-model-electron/commit/ac2475d866195b18b23ca094457ccce93b9b0508)) +- remove duplicate package ([364afdd](https://github.com/powerhouse-inc/document-model-electron/commit/364afdde2e2c9c3d6c12d0364e6d0cfd612f5429)) +- remove yalc from package json ([9e184d8](https://github.com/powerhouse-inc/document-model-electron/commit/9e184d8df68d74803e9cbf95f7cf480f97a6d03e)) +- removed unused css import ([6da080c](https://github.com/powerhouse-inc/document-model-electron/commit/6da080c53ea57352b997de941fc303f11a5d2a42)) +- rename node id ([45235e5](https://github.com/powerhouse-inc/document-model-electron/commit/45235e516ce5ea52345c7ff9d1f7238ff4e9e095)) +- renown endpoint ([10461f5](https://github.com/powerhouse-inc/document-model-electron/commit/10461f566fd49a8fd79b23fdaa66871d8d8cff76)) +- renown login ([432e5bc](https://github.com/powerhouse-inc/document-model-electron/commit/432e5bcc1eaa13a043720b0c9d1165222188ecfc)) +- revert setSelectedDocument in addOperation document ([df06317](https://github.com/powerhouse-inc/document-model-electron/commit/df06317cc067b3f25deedb9832c1aa54d308158a)) +- rwa query ([09fcd52](https://github.com/powerhouse-inc/document-model-electron/commit/09fcd52fdf4adbeee9f6a6aa26c1d0309b525510)) +- settings modal typo ([6ef1286](https://github.com/powerhouse-inc/document-model-electron/commit/6ef12861fdda344c7c45f54657b6f56c67217162)) +- show local drives ([893b0df](https://github.com/powerhouse-inc/document-model-electron/commit/893b0dfe9d8004b12114842b082e4672a630aa38)) +- subscribe to server updates when load initial data ([35bf948](https://github.com/powerhouse-inc/document-model-electron/commit/35bf948de2acb3a23684060c978138f2b5ad5f75)) +- suppress less important rules ([679af22](https://github.com/powerhouse-inc/document-model-electron/commit/679af2256b8e6a4739006048056d452ba7fbf988)) +- switchboard endpoint ([2e570f3](https://github.com/powerhouse-inc/document-model-electron/commit/2e570f39bc355e4f387c0d371e8af81a0b92bb38)) +- switchboard link ([78bbdd0](https://github.com/powerhouse-inc/document-model-electron/commit/78bbdd0ec278a7685023cf9482d5990f6cf18a6d)) +- tmp build fix ([4a4be40](https://github.com/powerhouse-inc/document-model-electron/commit/4a4be4098131a946ce919792e3028e0f4e92c46e)) +- undefined default drive ([e5f2749](https://github.com/powerhouse-inc/document-model-electron/commit/e5f27494a57a29c4e4ae921d2014198af8614df3)) +- undefined default drive ([6ad9412](https://github.com/powerhouse-inc/document-model-electron/commit/6ad94127e15ebb43507cd0cae8404e9e2bc17e5b)) +- update selectedDocument when a new operation is dispatched ([b2c4401](https://github.com/powerhouse-inc/document-model-electron/commit/b2c4401c676d1c2621334375f132c6367c234ca5)) +- use selectedDocument as source of truth for document editor ([b5204e7](https://github.com/powerhouse-inc/document-model-electron/commit/b5204e7153028459ef3ace07e719736d971d577a)) +- wait for renown to load ([1d2f019](https://github.com/powerhouse-inc/document-model-electron/commit/1d2f019dc992239873e19e35fe8d5c0dde1396f5)) ### Features -* 🚀 Added ItemsContext integration ([41fc40f](https://github.com/powerhouse-inc/document-model-electron/commit/41fc40f93420101ca9b2ec34e1b4f4cab4a43a4b)) -* 🚀 added readable item path for File Items ([9f6a4ac](https://github.com/powerhouse-inc/document-model-electron/commit/9f6a4ac45318bb757e7c7c60df463e67b066771b)) -* 🚀 Implemented base folder-view design ([22ad4fc](https://github.com/powerhouse-inc/document-model-electron/commit/22ad4fc5046e27016ce1a47eda3282125af4db71)) -* activate queue ([#290](https://github.com/powerhouse-inc/document-model-electron/issues/290)) ([5b5a4fd](https://github.com/powerhouse-inc/document-model-electron/commit/5b5a4fd317ce624cc734f186778e49899dd3b148)) -* add dep array to use effect ([0a88d92](https://github.com/powerhouse-inc/document-model-electron/commit/0a88d92a664b877929978f05753f3d38e471625d)) -* add dependency versions to settings modal ([d01c0de](https://github.com/powerhouse-inc/document-model-electron/commit/d01c0de124cb9af00312e4c53e934d8a233e02af)) -* add design system preset ([a6cb51c](https://github.com/powerhouse-inc/document-model-electron/commit/a6cb51c31d4500d31fd091f165a4f01ae37ff4d7)) -* add duplicate action ([a9d2e29](https://github.com/powerhouse-inc/document-model-electron/commit/a9d2e29318badb84ca51acc9603a2c2dc7f25a0e)) -* add duplicate to folder ([a6212a8](https://github.com/powerhouse-inc/document-model-electron/commit/a6212a8fe3c62f49d1b624e75152e48f80034ed2)) -* add generate assets hook for icons copying ([4c25ebe](https://github.com/powerhouse-inc/document-model-electron/commit/4c25ebecc94941502e35dff28555664b3985f67b)) -* add is allowed to create documents hook ([0a457fc](https://github.com/powerhouse-inc/document-model-electron/commit/0a457fc35f5e78cb16eac1664c3def10b29b5229)) -* add optional dep ([a079cc7](https://github.com/powerhouse-inc/document-model-electron/commit/a079cc799c0d7987193ee209618151c10c743282)) -* add pull trigger on cloud drives ([9f86849](https://github.com/powerhouse-inc/document-model-electron/commit/9f868495ced48b9b23a3d128469ce7ac20d32a57)) -* add react aria dep ([499dda0](https://github.com/powerhouse-inc/document-model-electron/commit/499dda05d52469c85f0dc31d1da5639dc926c9c4)) -* add tailwind eslint plugin ([6e639bc](https://github.com/powerhouse-inc/document-model-electron/commit/6e639bc71bddeafe855c210c0f573cec7b2ce622)) -* add user context to actions ([6a3241d](https://github.com/powerhouse-inc/document-model-electron/commit/6a3241d3e98c58262ffc7bbbcaa66f6f5d8878b3)) -* added base path for nginx ([22a270b](https://github.com/powerhouse-inc/document-model-electron/commit/22a270b978e189a8a9afd20e0ae8f568e8c3336e)) -* added browser key storage ([6562881](https://github.com/powerhouse-inc/document-model-electron/commit/6562881b2eb603b59b55f1595a7f46b96dbbded6)) -* added clear storage setting ([922f5e1](https://github.com/powerhouse-inc/document-model-electron/commit/922f5e19ebd68e07440858c2f7308e3f6d1a2aae)) -* added config to hide drive sections ([aa67a3f](https://github.com/powerhouse-inc/document-model-electron/commit/aa67a3f392891e195fbc24a2ff858b66265eccc5)) -* added csp headers ([bd398aa](https://github.com/powerhouse-inc/document-model-electron/commit/bd398aa0bc6d748b740e17d4ddf197232d701c62)) -* added deeplink support to link to specific drive node ([ae1f97f](https://github.com/powerhouse-inc/document-model-electron/commit/ae1f97fb17e3cbc422a2e242e9ff530c598284a5)) -* added delete drive modal + enable delete file modal confirmation ([4ce110e](https://github.com/powerhouse-inc/document-model-electron/commit/4ce110e7baaaad3ea75a33eff45fab9994184658)) -* added develop environment ([c33ab9d](https://github.com/powerhouse-inc/document-model-electron/commit/c33ab9d6977712a3015d28a0cd27208f7fd727e5)) -* added develop to release cycle ([b9247e6](https://github.com/powerhouse-inc/document-model-electron/commit/b9247e66d19ffc9400caae9403d9b5b06048eacc)) -* added e2e playwright setup ([2d37330](https://github.com/powerhouse-inc/document-model-electron/commit/2d37330f103456dc9d3e24cc4a74d3ed7abb20c8)) -* added editor debug tools ([6928bed](https://github.com/powerhouse-inc/document-model-electron/commit/6928bed61c46322bc341da7bed48dcde60454b9e)) -* added env var to hide document model setting ([840a561](https://github.com/powerhouse-inc/document-model-electron/commit/840a5615ba0b5eafab123b0f0e5c21b3c880d670)) -* added env vars for renown ([f464d68](https://github.com/powerhouse-inc/document-model-electron/commit/f464d68172be57798be364a804b9de0e7f1733c1)) -* added feature flag setup + disable editors for demo ([7fa64f2](https://github.com/powerhouse-inc/document-model-electron/commit/7fa64f2634cea508ebfb8b20732a730dc8b0624b)) -* added gzip and brotli compression to nginx ([f52a0c3](https://github.com/powerhouse-inc/document-model-electron/commit/f52a0c3205b1fd7fc99875fae0ad5a1d5cd24dd5)) -* added heroku deployment for powerhouse staging env ([f4c538a](https://github.com/powerhouse-inc/document-model-electron/commit/f4c538a3e02781276996e30b759d50f248037c86)) -* added modal confirmation when export document with errors ([d22a447](https://github.com/powerhouse-inc/document-model-electron/commit/d22a447c98d50589f61e37cd6284155223824057)) -* added network id to user ([908a50e](https://github.com/powerhouse-inc/document-model-electron/commit/908a50e8df9c1ae7e53940dc801157a5ca665706)) -* added new env var to dockerfile ([64afb40](https://github.com/powerhouse-inc/document-model-electron/commit/64afb40dfec060e8ebfaaeddf8f47f3f925d21be)) -* added nginx config ([069be2c](https://github.com/powerhouse-inc/document-model-electron/commit/069be2cd98aee6fe3a6b686b4112a435e81d11b3)) -* added notification toast ([39ed0c2](https://github.com/powerhouse-inc/document-model-electron/commit/39ed0c2319c2a6e1c2044aff5cda1fd1dc51d24b)) -* added open file and delete file ([01793c8](https://github.com/powerhouse-inc/document-model-electron/commit/01793c8a5f21b8e1701e649cc926c8baa7ece4fe)) -* added opengraph and twitter meta data ([280da91](https://github.com/powerhouse-inc/document-model-electron/commit/280da914bbe8129ead8559d4169ea266fbb327bc)) -* added PH logo ([e9ec94b](https://github.com/powerhouse-inc/document-model-electron/commit/e9ec94b3373495aa0d03673b241c78605b61d396)) -* added prepare script ([abeaa41](https://github.com/powerhouse-inc/document-model-electron/commit/abeaa41bb7bfc7a8d3a7332a9dd0ba0dad088659)) -* added renown login on browser ([5b77016](https://github.com/powerhouse-inc/document-model-electron/commit/5b77016508fd448b23999919a8d9e40bc701e1f9)) -* added rewrite rules to vercel.json config ([b66cdb0](https://github.com/powerhouse-inc/document-model-electron/commit/b66cdb0fb264412710c1d3bf67f06d48df52408c)) -* added route to open document drive node ([6700f13](https://github.com/powerhouse-inc/document-model-electron/commit/6700f132435dd4ce175b036d5e906d1194976ed0)) -* added RWA doc name fix for demo ([05dfd07](https://github.com/powerhouse-inc/document-model-electron/commit/05dfd0781038523b86437ebe1164e20a848c65b2)) -* added scope of work ([742aae0](https://github.com/powerhouse-inc/document-model-electron/commit/742aae0cab712068d2f8dbe2804da3ba802416bd)) -* added sentry dsn to environments ([c4cfef1](https://github.com/powerhouse-inc/document-model-electron/commit/c4cfef161be9db837d29aca316949957412e4c25)) -* added sentry environments ([68fefd0](https://github.com/powerhouse-inc/document-model-electron/commit/68fefd095cbffcec9eeebedb786d5ab7afc9c9bf)) -* added sentry to connect ([d51ec53](https://github.com/powerhouse-inc/document-model-electron/commit/d51ec538d376cb533882f9c4b0ee057d80ce7d1a)) -* added settings modal integration ([dfb9d28](https://github.com/powerhouse-inc/document-model-electron/commit/dfb9d287bb99dec4316c9eee5098816b6f498926)) -* added sidebar login ([2917809](https://github.com/powerhouse-inc/document-model-electron/commit/29178094a9d711e1d7303dde1511a7b73bc37199)) -* added sort nodes + fix input styles + cancel new folders with empty name ([4a2f9fb](https://github.com/powerhouse-inc/document-model-electron/commit/4a2f9fbf2c4dc5427c58633f18e40eb10574600c)) -* added support for delete option in FolderItem and FileItem ([85800ab](https://github.com/powerhouse-inc/document-model-electron/commit/85800ab374da9be041d6e8c547d186a0671a6b91)) -* added support for document in addfile action ([0706ce2](https://github.com/powerhouse-inc/document-model-electron/commit/0706ce25a515024a37b61aec11c930601a0869e5)) -* added support for rename files + create file name modal ([8a76691](https://github.com/powerhouse-inc/document-model-electron/commit/8a76691426d671128c4cfbc98864a9a669e395f3)) -* added support for renown user ([3853b37](https://github.com/powerhouse-inc/document-model-electron/commit/3853b371349ee14051b666a19fbb0b0c564c8ac6)) -* added support for router basename ([251afe2](https://github.com/powerhouse-inc/document-model-electron/commit/251afe2b1d4eab690f9592e25edc6c555e2fe44a)) -* added switchboard link to document files ([5f31b71](https://github.com/powerhouse-inc/document-model-electron/commit/5f31b710a6ae65f42aac65840da422134e48ee6c)) -* added useConnectConfig hook ([a600091](https://github.com/powerhouse-inc/document-model-electron/commit/a60009131ad8600174311b45a696d0c3219ae8ce)) -* added vercel redirect ([7100848](https://github.com/powerhouse-inc/document-model-electron/commit/7100848213fe6e5d0811229e67c82b8997648fa2)) -* added vite env as build args ([c76d4f4](https://github.com/powerhouse-inc/document-model-electron/commit/c76d4f431017df7f9b40a5063a71618084333c24)) -* allow connect-src for renown.id ([7357d4a](https://github.com/powerhouse-inc/document-model-electron/commit/7357d4a4a2c9aff400e55d9c8eed9630aaec4ed5)) -* allow external images ([171efac](https://github.com/powerhouse-inc/document-model-electron/commit/171efac183458b993ac11849345b3fb8765a10f4)) -* allow per deploy drive restrictions ([8779d84](https://github.com/powerhouse-inc/document-model-electron/commit/8779d84cb1be5128ac7b1c63a8666c5d03b2f593)) -* allow url for file ([474ad4d](https://github.com/powerhouse-inc/document-model-electron/commit/474ad4d0b90e9e882bb52d4ca479a4314d15eec1)) -* also disable when env is production ([6f60688](https://github.com/powerhouse-inc/document-model-electron/commit/6f60688a7bcf92e19afe5a4a49a1baa9f0c44507)) -* also do src === target check in move node function ([3e80c1e](https://github.com/powerhouse-inc/document-model-electron/commit/3e80c1e4dface07c9d101c39f6a0dce6d0654a26)) -* apply auto fixes ([b10b111](https://github.com/powerhouse-inc/document-model-electron/commit/b10b111374636b145c52fa15f38ebc0751912483)) -* auto-select first drive if there's no selected path ([daf3083](https://github.com/powerhouse-inc/document-model-electron/commit/daf3083b4fff8dd6f033ce9806affe932fea4f04)) -* bump ([40fd30a](https://github.com/powerhouse-inc/document-model-electron/commit/40fd30a489214a512a7dc43fbe9dea1e0c33604a)) -* bump ([11fb69f](https://github.com/powerhouse-inc/document-model-electron/commit/11fb69f6f507d4240e72b1208982c814bce185a8)) -* bump deps ([7d7206c](https://github.com/powerhouse-inc/document-model-electron/commit/7d7206c5ae9bc7c9e7d26713fc8ff4e7ef5f459d)) -* bump design system ([fb12d70](https://github.com/powerhouse-inc/document-model-electron/commit/fb12d70fcd3237f1cacb0375e99e4a1ae01cc342)) -* bump design system ([4e1d168](https://github.com/powerhouse-inc/document-model-electron/commit/4e1d168298355beea31e2216edeb7b7cef8e8257)) -* bump design system and document model libs ([165e2cc](https://github.com/powerhouse-inc/document-model-electron/commit/165e2ccc41d5d72a6f2f834292c18aa2388ebb86)) -* bump design system to integrate dep version component ([a18c621](https://github.com/powerhouse-inc/document-model-electron/commit/a18c621a24d97b3bfa9f103365b3890f6fd342d7)) -* bump design-system and document-model-lib deps ([7d90802](https://github.com/powerhouse-inc/document-model-electron/commit/7d9080289ce258cf9d299d13b4cf7e092fd51535)) -* bump document drive version ([254a2cd](https://github.com/powerhouse-inc/document-model-electron/commit/254a2cd967b07d22352d38509ad55c2ffcd19bf5)) -* bump libs ([24a9cd3](https://github.com/powerhouse-inc/document-model-electron/commit/24a9cd3427eecc32697f15d7479bf5ee53c95084)) -* bump libs ([b27b036](https://github.com/powerhouse-inc/document-model-electron/commit/b27b036a487fbe989f9f7b585603e15bcdd3fa3a)) -* bump libs ([5fb15d3](https://github.com/powerhouse-inc/document-model-electron/commit/5fb15d321de8649ac2fc6953d9ec5312aeabefeb)) -* bump libs ([1f38863](https://github.com/powerhouse-inc/document-model-electron/commit/1f38863cb3e6fff081218ce59d7cf1a6f3c44621)) -* bump libs ([7df97b0](https://github.com/powerhouse-inc/document-model-electron/commit/7df97b03882c012f035b259aebb85ba42704008b)) -* bump libs ([78baf1d](https://github.com/powerhouse-inc/document-model-electron/commit/78baf1dee6da3f18208f23973f65b5a1b930ba81)) -* bump libs ([d766c36](https://github.com/powerhouse-inc/document-model-electron/commit/d766c36649f3575b2d10bcaf532249437a79b36c)) -* bump libs ([6b3f58f](https://github.com/powerhouse-inc/document-model-electron/commit/6b3f58fd3aad9e628cf2312629280f12984648e2)) -* bump libs ([f98b523](https://github.com/powerhouse-inc/document-model-electron/commit/f98b523acb0e2f2599d4d8927bf8fe5b26374856)) -* bump libs ([2a9a29d](https://github.com/powerhouse-inc/document-model-electron/commit/2a9a29d0d9d129abbbe6b16567151f3ecd0d525e)) -* bump libs ([62117a9](https://github.com/powerhouse-inc/document-model-electron/commit/62117a90490e9bbb32c4a84fdbdb3d930ca7ebfb)) -* bump libs ([62cd43d](https://github.com/powerhouse-inc/document-model-electron/commit/62cd43dd7f80cfd6202c251a9c1af1bad0978b67)) -* bump lint deps ([544fcea](https://github.com/powerhouse-inc/document-model-electron/commit/544fcea7cdcf450756b8deb913c47047a9161849)) -* bump react aria ([3a8ed93](https://github.com/powerhouse-inc/document-model-electron/commit/3a8ed934d371b11c7deb8c8894b43c323d04f06f)) -* cancel rename operation when new name is empty ([6c7a815](https://github.com/powerhouse-inc/document-model-electron/commit/6c7a815500339ebbced23214450750bacbfdebc9)) -* change term to allow list ([af99e9b](https://github.com/powerhouse-inc/document-model-electron/commit/af99e9ba0a3eee7074cc763922caf1656f024e83)) -* changed default renown env variables ([c87ee69](https://github.com/powerhouse-inc/document-model-electron/commit/c87ee697507eba7235150e5156bbe7d0cd121e36)) -* changed nginx image to nginx-brotli ([3d497da](https://github.com/powerhouse-inc/document-model-electron/commit/3d497da7806bdb77a6352aad9ad5f64ddcfa93e4)) -* check if operations with same index are submitted ([b7ad973](https://github.com/powerhouse-inc/document-model-electron/commit/b7ad97307106467a39060da44420515f10ce3921)) -* check user auth on startup ([6820f27](https://github.com/powerhouse-inc/document-model-electron/commit/6820f27a8defb40d72e3580d00fe11f1170bbe22)) -* commented renown env variables ([cd18bab](https://github.com/powerhouse-inc/document-model-electron/commit/cd18babc471fef7b1939bed4478265bd5a38abc1)) -* configure available editors with env variables ([00fad56](https://github.com/powerhouse-inc/document-model-electron/commit/00fad56259d24c1dc9fe3009ec5d4d8d9a51782a)) -* default drive handling improvements ([57be63e](https://github.com/powerhouse-inc/document-model-electron/commit/57be63e34a368769eb159728194f70d60ad98290)) -* detect circular reference in node path ([c113d03](https://github.com/powerhouse-inc/document-model-electron/commit/c113d035118d418ed8006b55112d101f030b4caa)) -* disable dev tools when app is packaged ([2326a77](https://github.com/powerhouse-inc/document-model-electron/commit/2326a7774f74d2c8af949cf55c18b12b38d0b7d9)) -* disable document drive editor by default ([a61249f](https://github.com/powerhouse-inc/document-model-electron/commit/a61249f43e50219b7b6aebc27f63b2d07a4735ec)) -* disallow create operations ([9cb4a8e](https://github.com/powerhouse-inc/document-model-electron/commit/9cb4a8e4d902f67692e696b60c283a3ec59ca137)) -* downloadFile fallback ([9836f4c](https://github.com/powerhouse-inc/document-model-electron/commit/9836f4c1e6edf68d1239f69cfb86324cb1e4d6f0)) -* enable transactions editor ([28967c2](https://github.com/powerhouse-inc/document-model-electron/commit/28967c2c6a4465494f682e55e914bfdd719bc07b)) -* enabled add cloud drive modal ([d54f579](https://github.com/powerhouse-inc/document-model-electron/commit/d54f579bd903e57cf193cdc11a727eed5526971d)) -* enabled drop target for FolderItem ([70aeaad](https://github.com/powerhouse-inc/document-model-electron/commit/70aeaadde2844def0c0cc648dbb8f496d51b96dd)) -* enabled editor controls ([f7aa503](https://github.com/powerhouse-inc/document-model-electron/commit/f7aa50343c0a124056811f1ce29ab0c8539263da)) -* enabled keyboard shortcut for undo/redo ([82fe517](https://github.com/powerhouse-inc/document-model-electron/commit/82fe517dbbf01006c6fbaae0b1c493c57eeeb422)) -* enabled onErrorCallback for dispatch fn ([8bd3c7c](https://github.com/powerhouse-inc/document-model-electron/commit/8bd3c7ccfafbf1d1b32ada0bb941585bd0ee1907)) -* enabled rename option for folders in folder view ([d7a9b34](https://github.com/powerhouse-inc/document-model-electron/commit/d7a9b3490b0cb91d647ecb803513dbea590f04e0)) -* enabled rename option when copy/move an item ([3ef5ea4](https://github.com/powerhouse-inc/document-model-electron/commit/3ef5ea474997e10b670a989460dca939431f3a9a)) -* enabled rwa editor ([b7df486](https://github.com/powerhouse-inc/document-model-electron/commit/b7df486a82c0c044fab5dd434ecceba1a2c24dc1)) -* enabled switchboard link in RWA editor ([cece18e](https://github.com/powerhouse-inc/document-model-electron/commit/cece18e3cb900cbe2fe7d77c0c329a2c430e2539)) -* enabled undo/redo with new document structure ([f6af1e0](https://github.com/powerhouse-inc/document-model-electron/commit/f6af1e002121456e5e9cc4befe6c41ac4ddf8aa9)) -* expand selected path in sidebar on initial path load ([9b5e053](https://github.com/powerhouse-inc/document-model-electron/commit/9b5e0533e7e02d4ae9ea3c6bb01c9827eada160c)) -* export did:key instead of public key ([a358371](https://github.com/powerhouse-inc/document-model-electron/commit/a3583718047f447f2f59a8153e3e2ac15a8cd732)) -* fetch user's ens info ([229a1ae](https://github.com/powerhouse-inc/document-model-electron/commit/229a1ae1bcd145858f867cdf449d9ed2709c8ffc)) -* fix Authorize Connect font color ([25ba2e7](https://github.com/powerhouse-inc/document-model-electron/commit/25ba2e7af5c81c442fed8d919b31a66ba2959e77)) -* fix console warnings ([3024578](https://github.com/powerhouse-inc/document-model-electron/commit/3024578d93e4a70a89a3b3681d34f78a4bd0f1d0)) -* fix css import order ([9216a27](https://github.com/powerhouse-inc/document-model-electron/commit/9216a277e488f73cc892ad015c4ea35dd22bb2a9)) -* fix linux build ([433e6f9](https://github.com/powerhouse-inc/document-model-electron/commit/433e6f9b0a92f72d33e16bbcb71a8965c034c6be)) -* fix logo + position ([278ebeb](https://github.com/powerhouse-inc/document-model-electron/commit/278ebeb39cac2b6d1edb3b096161bb3810669f31)) -* fix rwa document name ([b3f39d1](https://github.com/powerhouse-inc/document-model-electron/commit/b3f39d16c09cb87295d53a7be249b4e2be3895ab)) -* fix sync status ([9ff69fe](https://github.com/powerhouse-inc/document-model-electron/commit/9ff69fedf729b7e70b07bf121c9feed00c1ddc58)) -* fix tailwind class conflicts ([341d8ba](https://github.com/powerhouse-inc/document-model-electron/commit/341d8ba945fd1a20c6014fcb6e5ce77faf458b5f)) -* fixed addDriveOperations ([4c33a1f](https://github.com/powerhouse-inc/document-model-electron/commit/4c33a1f891eeba1b9845768fbc0395cb01dd9e70)) -* fixed base route ([606e919](https://github.com/powerhouse-inc/document-model-electron/commit/606e9191be0f32309e7a0a59e82dc49aa88690bb)) -* fixed default document-models ([0d51154](https://github.com/powerhouse-inc/document-model-electron/commit/0d511546e95a1d5a534f92b549d7120076792040)) -* fixed editors loading ([4fda671](https://github.com/powerhouse-inc/document-model-electron/commit/4fda67192ca075aa66079cbf769548e53e1a2ef3)) -* fixed file import ([23cd72d](https://github.com/powerhouse-inc/document-model-electron/commit/23cd72da07e8fa12bb6f5c739d392432057d6812)) -* fixed file operations error ([5d123af](https://github.com/powerhouse-inc/document-model-electron/commit/5d123af045f0409222bd61404b2249db2a4ec19d)) -* fixes browser key storage ([bfb2a72](https://github.com/powerhouse-inc/document-model-electron/commit/bfb2a725ec7fb4ec507751e52aa743879e39b428)) -* generate key pair on desktop ([ebc0204](https://github.com/powerhouse-inc/document-model-electron/commit/ebc020405e0b289aa4cfdf4935b2afcd53494a7f)) -* go back from fixed version ([41684c4](https://github.com/powerhouse-inc/document-model-electron/commit/41684c4f9cb55bef7f4e8bea46e7ab2eedc26b5c)) -* handle empty string or wrong formatted string in env var ([0099615](https://github.com/powerhouse-inc/document-model-electron/commit/009961513edaba39ad8fb4daacd6dd702a9fedd8)) -* handle null parent folder ([21f9370](https://github.com/powerhouse-inc/document-model-electron/commit/21f93703b08e39c6c97312a232a609a53dacf1c0)) -* handle sync events on node document drive ([3855ce4](https://github.com/powerhouse-inc/document-model-electron/commit/3855ce42a72865ed48e7729d25ec1481e462851d)) -* handle undefined whitelist ([1672fa8](https://github.com/powerhouse-inc/document-model-electron/commit/1672fa86ab863d8d2fc88604a775f524f7b86614)) -* hide searchbar from config ([0bd4444](https://github.com/powerhouse-inc/document-model-electron/commit/0bd4444fca256b28bf413122a870f343963dc801)) -* ignore drives with error ([25a27d5](https://github.com/powerhouse-inc/document-model-electron/commit/25a27d51fed340a22530d5d13e784bf5f9f66fab)) -* ignore operation hashes when importing zip ([634bcd5](https://github.com/powerhouse-inc/document-model-electron/commit/634bcd5cd534d22db9813cc17be28359d94a1e61)) -* ignores document drive result when adding an operation from the editor ([74140e2](https://github.com/powerhouse-inc/document-model-electron/commit/74140e2400ea1c1b5bb9baf5f7b26ed7cbb2a9cb)) -* implemented rename and new folder actions ([45dbf5e](https://github.com/powerhouse-inc/document-model-electron/commit/45dbf5e527841f1107f9d444ac2b76f0dc6fa7c0)) -* import styles from design system ([f7ac8ad](https://github.com/powerhouse-inc/document-model-electron/commit/f7ac8adc2608e8d491618e01b1c98be9f8c43fe2)) -* improved url handling ([32b3dcd](https://github.com/powerhouse-inc/document-model-electron/commit/32b3dcd943518cba4f1f5a82f9dbb5b906096500)) -* install ts-reset ([228b082](https://github.com/powerhouse-inc/document-model-electron/commit/228b082e36b1e689b47d7ed923dfe3347e74ad7d)) -* install vite ([aa66a01](https://github.com/powerhouse-inc/document-model-electron/commit/aa66a01bc96f33984e9d6828fdd93d374916c2c4)) -* lighthouse recomendations ([dd3e594](https://github.com/powerhouse-inc/document-model-electron/commit/dd3e594c198ab2a9deb83420ed8bfb145475ec71)) -* load default drive ([589653f](https://github.com/powerhouse-inc/document-model-electron/commit/589653fab02bc030fbc4a99bea6ed6f4566fd57c)) -* log sync error ([204c38a](https://github.com/powerhouse-inc/document-model-electron/commit/204c38a5f2763edc2006119b8608f6dc39f40dc9)) -* manually install design system ([1b7c676](https://github.com/powerhouse-inc/document-model-electron/commit/1b7c6767c67efed2da903976a62a0bbbaf8a64fe)) -* move helpers ([e12240c](https://github.com/powerhouse-inc/document-model-electron/commit/e12240c40ca8368b9f99f0bdfa5d2881a9a71dc5)) -* move sync status invocation to hook ([dea3fa9](https://github.com/powerhouse-inc/document-model-electron/commit/dea3fa9f5fbcdf9cf355652bf32e2c434a366c13)) -* moved load initial data into a hook ([99c7417](https://github.com/powerhouse-inc/document-model-electron/commit/99c74175b899c9c1d3f7dbf27de174ebd053bdbf)) -* pass allow list credentials to components ([2fadac1](https://github.com/powerhouse-inc/document-model-electron/commit/2fadac18141430445138ec9446d46227cb69723a)) -* pass allow list props to components ([0df5de6](https://github.com/powerhouse-inc/document-model-electron/commit/0df5de6a1062538cfaee7dcd045abb53b5481106)) -* port config files to ts ([f78e7f5](https://github.com/powerhouse-inc/document-model-electron/commit/f78e7f5444a47d637cc6681dd25917524b03b659)) -* re-enable onErrorCallback with new operations error prop ([a408630](https://github.com/powerhouse-inc/document-model-electron/commit/a408630ee77596a83f2c3ee26a17d44447537647)) -* re-generate package-lock.json ([e48ac3d](https://github.com/powerhouse-inc/document-model-electron/commit/e48ac3dd16d25901565eaed94e4e82b4283f7287)) -* re-implemented copy/move nodes with new DocumentDrive ([c4fad11](https://github.com/powerhouse-inc/document-model-electron/commit/c4fad117827b929d69dd73824d46ef33f767c57f)) -* readd prepare script ([ad4577e](https://github.com/powerhouse-inc/document-model-electron/commit/ad4577ee92a812a4227e03f2923cbb5b5ca0efdc)) -* refresh UI when there are drive changes ([fca3c95](https://github.com/powerhouse-inc/document-model-electron/commit/fca3c9576679e1bdcb8cf017cad3e885cd245fdf)) -* regenerate lock ([0269b0b](https://github.com/powerhouse-inc/document-model-electron/commit/0269b0b47945bc6d53928ec975f3b0c4557706a9)) -* regenerate lockfile ([efa2f7f](https://github.com/powerhouse-inc/document-model-electron/commit/efa2f7f380e1e558b82a616f8d1ef1cda021371e)) -* regenerate lockfile ([c8aac44](https://github.com/powerhouse-inc/document-model-electron/commit/c8aac44f8cb0184962e5567ea3252e14cc686cce)) -* reinstall with npm ([f790b6c](https://github.com/powerhouse-inc/document-model-electron/commit/f790b6c8611e000b123723c014ef35c1ee9aa55b)) -* remove check ([1db971c](https://github.com/powerhouse-inc/document-model-electron/commit/1db971cf324e2ca0e92c8f9b01614f7ef64f3d6a)) -* remove csp ([b940c38](https://github.com/powerhouse-inc/document-model-electron/commit/b940c3849bb1f804c6d2d8ca7e2bced61be81a95)) -* remove default node logic ([217d6e5](https://github.com/powerhouse-inc/document-model-electron/commit/217d6e5ac54033bda7bd36473712e048fe775623)) -* remove hello from content ([decd9c4](https://github.com/powerhouse-inc/document-model-electron/commit/decd9c4a9dbce3d9ecacbee06ad91d5959b86f84)) -* remove old tailwind classes ([10a8b95](https://github.com/powerhouse-inc/document-model-electron/commit/10a8b95edbcf212c17cb9011b13b32d2b924a767)) -* remove redundant config ([0c4d334](https://github.com/powerhouse-inc/document-model-electron/commit/0c4d334f3f75ccef7597470e1ce2a490b449eca8)) -* remove redundant use effect ([9bb2950](https://github.com/powerhouse-inc/document-model-electron/commit/9bb29508084badc11d535fab2ba241fe8021bc5f)) -* remove restriction to send operations ([dc620c5](https://github.com/powerhouse-inc/document-model-electron/commit/dc620c5fda0dd9adff480ee2ea3494b2b1698cc5)) -* remove scrollbar styles ([a9a3080](https://github.com/powerhouse-inc/document-model-electron/commit/a9a30803d3bf1cf91a82cc9bac6133c9bb335691)) -* removed electron-deeplink pkg and updated deep links ([5cec527](https://github.com/powerhouse-inc/document-model-electron/commit/5cec527acc442886f35261affa1619efd30e2212)) -* removed networkId from signer ([89c2a1c](https://github.com/powerhouse-inc/document-model-electron/commit/89c2a1c676170878b4cb307b073b53e28bb9e1f5)) -* removed queue timeout ([8b517b7](https://github.com/powerhouse-inc/document-model-electron/commit/8b517b78c1529abe5c7ee6e69d1990c56c4fbb6e)) -* removed re-renders and prevent add default drive being called twice ([3104848](https://github.com/powerhouse-inc/document-model-electron/commit/3104848107ff53daea46d36930be8ca9e3f522e6)) -* removed usehooks-ts dep ([05ca45e](https://github.com/powerhouse-inc/document-model-electron/commit/05ca45ef3227c50a7d44bfd7c8d8730a89d3c369)) -* rename document drive node when document model name is changed ([b9008f7](https://github.com/powerhouse-inc/document-model-electron/commit/b9008f7e08e340329e16c0743133a09d044cb1dd)) -* replaced env vars by client.config file ([28f7a2f](https://github.com/powerhouse-inc/document-model-electron/commit/28f7a2f5fbe97403f4ed317303f19c43b1cbf300)) -* replaced feature flags context by atomWithStorage ([071b7aa](https://github.com/powerhouse-inc/document-model-electron/commit/071b7aacb44792851b45946f41abecaaa99f5633)) -* replaced sidebar input header by connect logo ([a845dfd](https://github.com/powerhouse-inc/document-model-electron/commit/a845dfd14df5167e25fe5530ae03e9400bb36d45)) -* separate browser storage ([9ea89b8](https://github.com/powerhouse-inc/document-model-electron/commit/9ea89b80a5094eaa56a2d3b417a0e8fb05c0ae91)) -* separated error and conflict messages for drive status notification ([e80ccfe](https://github.com/powerhouse-inc/document-model-electron/commit/e80ccfeff3bf1e739af33c0da97f5258f5007e5a)) -* set queue timeout to 10ms ([6c87c92](https://github.com/powerhouse-inc/document-model-electron/commit/6c87c92e4e4ed2246c642f6575db1b31c6611b06)) -* show success sync toast only after recover from error sync ([5c2a47a](https://github.com/powerhouse-inc/document-model-electron/commit/5c2a47a2d0232e13d9fd6047bbe88c3faee6caa3)) -* simplify copy ([2cd60c3](https://github.com/powerhouse-inc/document-model-electron/commit/2cd60c3957685049fc6ff64beb094b409bbd4f32)) -* support add drive ([f827d33](https://github.com/powerhouse-inc/document-model-electron/commit/f827d338d4b6b49bde54f58ec6eb133756f3c765)) -* support multiple separate allow lists ([74d6152](https://github.com/powerhouse-inc/document-model-electron/commit/74d615236b6a75d0602476a826787e37a3ab263f)) -* switch to using vars from design system ([587c258](https://github.com/powerhouse-inc/document-model-electron/commit/587c258c1f47b8f5f1004252aec491d91b14eb5a)) -* trigger build ([e85bf95](https://github.com/powerhouse-inc/document-model-electron/commit/e85bf95f96ece3f59ead521fe39588630203900d)) -* update connect opengraph meta data ([32b3720](https://github.com/powerhouse-inc/document-model-electron/commit/32b372038f27d9a062ad78de6fde36a70cf2d6d8)) -* update deeplink protocol ([45d0a58](https://github.com/powerhouse-inc/document-model-electron/commit/45d0a58d266bcc369fcef7e0a1cc88c71757e1fc)) -* update dependencies and increase pull interval to 3 seconds ([66d8aea](https://github.com/powerhouse-inc/document-model-electron/commit/66d8aea256ccc6f742347db03bf06901b777bc74)) -* update deps ([3b6fa8d](https://github.com/powerhouse-inc/document-model-electron/commit/3b6fa8daeedec0549451490c9a7efec733ab2b75)) -* update document drive ([ff37742](https://github.com/powerhouse-inc/document-model-electron/commit/ff37742d857e9445a30a4122f12ec8585f5d129e)) -* update document drive dep ([ad31bf0](https://github.com/powerhouse-inc/document-model-electron/commit/ad31bf08d09650a9c335e18cf7153c7bd7667081)) -* update document drive dep ([5baaf20](https://github.com/powerhouse-inc/document-model-electron/commit/5baaf2006c71885132bbdabb59976acf5cde8ce2)) -* update document-drive ([534fa80](https://github.com/powerhouse-inc/document-model-electron/commit/534fa802984035735710d220f2496add04704b64)) -* update document-drive ver ([393388e](https://github.com/powerhouse-inc/document-model-electron/commit/393388e0a45f0275e5ab6824695d70b931891777)) -* update document-model and document-drive ver ([d66225a](https://github.com/powerhouse-inc/document-model-electron/commit/d66225aefa67ed761e8c5a1f36b62685666f7d84)) -* update document-model and document-drive versions ([8d1f869](https://github.com/powerhouse-inc/document-model-electron/commit/8d1f8691bf1511aca38f96a1ca7488e9d6104af2)) -* update document-model dep ([c865770](https://github.com/powerhouse-inc/document-model-electron/commit/c8657706b488631cf5955a6677ae5e4e1252bc9c)) -* update document-model document-drive and document-model-libs deps ([aee1dce](https://github.com/powerhouse-inc/document-model-electron/commit/aee1dce7f1c927ca24ac5283ab3d4d48ca85b7f6)) -* update document-model lib to v1.0.29 ([9190869](https://github.com/powerhouse-inc/document-model-electron/commit/9190869ddea006ce0cad8c3fa264d83535e16950)) -* update drive sync icon on syncStatus event ([ded596e](https://github.com/powerhouse-inc/document-model-electron/commit/ded596eb4761ce7003e285a0b283d45242b66444)) -* update editor when opened document is changed ([88e1cad](https://github.com/powerhouse-inc/document-model-electron/commit/88e1cad21d61cc9675f53a4a67e51e8712b22696)) -* update env var names ([42ba363](https://github.com/powerhouse-inc/document-model-electron/commit/42ba363359b08b076fdb7d39fa7df9b2c7d963ba)) -* update experimental deps ([12d28d6](https://github.com/powerhouse-inc/document-model-electron/commit/12d28d695a58dfc9bb2ff1e288b6ea4ef39f1267)) -* update lint config ([170b252](https://github.com/powerhouse-inc/document-model-electron/commit/170b252cd35fe786147f4e5306948eecf6a3990c)) -* update submit handler ([9cd1a10](https://github.com/powerhouse-inc/document-model-electron/commit/9cd1a10a0fee03bf4ddd2ace4f1a3796e1b4de30)) -* update to use new sync icons ([e1cbf1d](https://github.com/powerhouse-inc/document-model-electron/commit/e1cbf1d22de3159c247b3356577f2fdc519a51c5)) -* update url params logic ([6450975](https://github.com/powerhouse-inc/document-model-electron/commit/645097513096fa26327e60ea510d2e4bd628a870)) -* updated deps ([e41734f](https://github.com/powerhouse-inc/document-model-electron/commit/e41734f70b7b8acae90c167df5884820ee99c3c9)) -* updated deps ([a328cd9](https://github.com/powerhouse-inc/document-model-electron/commit/a328cd93ec131d36f61c45fda4863f315fb3a2cc)) -* updated design system dep ([b378a42](https://github.com/powerhouse-inc/document-model-electron/commit/b378a420bad20debc06aeeb376401ecb311889ce)) -* updated document drive ([4b588b0](https://github.com/powerhouse-inc/document-model-electron/commit/4b588b0f602debb6d069c3c4d580292b87a94337)) -* updated document drive ([b0df564](https://github.com/powerhouse-inc/document-model-electron/commit/b0df564c0952c60b3202c392e9fb1a23e401bea8)) -* updated document drive lib ([5f30983](https://github.com/powerhouse-inc/document-model-electron/commit/5f30983ab3f07462d842e3f464c0723d3f8785dd)) -* updated document-drive ver ([f7b9c7d](https://github.com/powerhouse-inc/document-model-electron/commit/f7b9c7df9d9b569b296d599998e3a500bfb8735c)) -* updated document-drive version ([a92dd24](https://github.com/powerhouse-inc/document-model-electron/commit/a92dd24c3ae638ff02587623a3d33af7fd89e2b6)) -* updated document-drive@1.0.0-experimental.2 ([c2b2816](https://github.com/powerhouse-inc/document-model-electron/commit/c2b2816cc7eea0346ea7d958b39f4b25796bb2a0)) -* updated document-drive@1.0.0-experimental.4 ([f31d12d](https://github.com/powerhouse-inc/document-model-electron/commit/f31d12d18404882a1f3af00f9bca6ab79d7a667e)) -* updated document-model dep ([f487cff](https://github.com/powerhouse-inc/document-model-electron/commit/f487cff99198d7cc3d8fd9db944ca394cc788dec)) -* updated document-model lib ([9db149e](https://github.com/powerhouse-inc/document-model-electron/commit/9db149ecc91926c02f2fe8479ca08958b66977d3)) -* updated document-model-libs ([b0bb1d2](https://github.com/powerhouse-inc/document-model-electron/commit/b0bb1d2ef530ecacc8f722322149866f8fbce03d)) -* updated document-model-libs and design-system ver ([d4ab8f8](https://github.com/powerhouse-inc/document-model-electron/commit/d4ab8f881d0e04d5bf68e0748205cf25fcce90e1)) -* updated package.lock ([3c334f4](https://github.com/powerhouse-inc/document-model-electron/commit/3c334f4f714ec6a63ce63bbc7f60d0e67f99b17b)) -* updated release script ([639b2a5](https://github.com/powerhouse-inc/document-model-electron/commit/639b2a50405d32f884f941457702ba12a6fa3a6b)) -* updated rwa query ([3709cfc](https://github.com/powerhouse-inc/document-model-electron/commit/3709cfc9543851fe77f8a930d1e0806d552069d6)) -* use default values if there is a missing key for feature flags ([cdb728a](https://github.com/powerhouse-inc/document-model-electron/commit/cdb728a3964ca1183bd38743744a8bdf51e04fb6)) -* use drive icon ([c82bebb](https://github.com/powerhouse-inc/document-model-electron/commit/c82bebb00516c95b2f6f48102672bf70333f9477)) -* use memoryBrowser on packaged app ([2d11200](https://github.com/powerhouse-inc/document-model-electron/commit/2d11200a47c861429edd0ad5c6a4eb13b46a7363)) -* use new svgr syntax ([e1db3b9](https://github.com/powerhouse-inc/document-model-electron/commit/e1db3b95b5330f95893b5511df8041ed04d33fb7)) -* use not equal ([8e33089](https://github.com/powerhouse-inc/document-model-electron/commit/8e330890f658224bc1e37d6504765e3d01cc7ede)) -* use setTimeout as fallback for requestIdleCallback ([730c8f2](https://github.com/powerhouse-inc/document-model-electron/commit/730c8f292eec07908410f7f2949c045bab8094fe)) -* use tailwind styles ([53dc69f](https://github.com/powerhouse-inc/document-model-electron/commit/53dc69f69663b4d315c03b57a64b87b274e698cd)) -* use yarn ([812fe5a](https://github.com/powerhouse-inc/document-model-electron/commit/812fe5af48fdea5cb5955f6b8336604722476b44)) -* waits 50ms for new operations to make a single addOperations call ([d4c9796](https://github.com/powerhouse-inc/document-model-electron/commit/d4c97965cc9b83128f6be225a27a64c2f88795f3)) -* waits for document drive server to be loaded before checking default drive is added ([fc10ee8](https://github.com/powerhouse-inc/document-model-electron/commit/fc10ee8428d9d9c24c6cef38cd104ac5f79d759c)) - +- 🚀 Added ItemsContext integration ([41fc40f](https://github.com/powerhouse-inc/document-model-electron/commit/41fc40f93420101ca9b2ec34e1b4f4cab4a43a4b)) +- 🚀 added readable item path for File Items ([9f6a4ac](https://github.com/powerhouse-inc/document-model-electron/commit/9f6a4ac45318bb757e7c7c60df463e67b066771b)) +- 🚀 Implemented base folder-view design ([22ad4fc](https://github.com/powerhouse-inc/document-model-electron/commit/22ad4fc5046e27016ce1a47eda3282125af4db71)) +- activate queue ([#290](https://github.com/powerhouse-inc/document-model-electron/issues/290)) ([5b5a4fd](https://github.com/powerhouse-inc/document-model-electron/commit/5b5a4fd317ce624cc734f186778e49899dd3b148)) +- add dep array to use effect ([0a88d92](https://github.com/powerhouse-inc/document-model-electron/commit/0a88d92a664b877929978f05753f3d38e471625d)) +- add dependency versions to settings modal ([d01c0de](https://github.com/powerhouse-inc/document-model-electron/commit/d01c0de124cb9af00312e4c53e934d8a233e02af)) +- add design system preset ([a6cb51c](https://github.com/powerhouse-inc/document-model-electron/commit/a6cb51c31d4500d31fd091f165a4f01ae37ff4d7)) +- add duplicate action ([a9d2e29](https://github.com/powerhouse-inc/document-model-electron/commit/a9d2e29318badb84ca51acc9603a2c2dc7f25a0e)) +- add duplicate to folder ([a6212a8](https://github.com/powerhouse-inc/document-model-electron/commit/a6212a8fe3c62f49d1b624e75152e48f80034ed2)) +- add generate assets hook for icons copying ([4c25ebe](https://github.com/powerhouse-inc/document-model-electron/commit/4c25ebecc94941502e35dff28555664b3985f67b)) +- add is allowed to create documents hook ([0a457fc](https://github.com/powerhouse-inc/document-model-electron/commit/0a457fc35f5e78cb16eac1664c3def10b29b5229)) +- add optional dep ([a079cc7](https://github.com/powerhouse-inc/document-model-electron/commit/a079cc799c0d7987193ee209618151c10c743282)) +- add pull trigger on cloud drives ([9f86849](https://github.com/powerhouse-inc/document-model-electron/commit/9f868495ced48b9b23a3d128469ce7ac20d32a57)) +- add react aria dep ([499dda0](https://github.com/powerhouse-inc/document-model-electron/commit/499dda05d52469c85f0dc31d1da5639dc926c9c4)) +- add tailwind eslint plugin ([6e639bc](https://github.com/powerhouse-inc/document-model-electron/commit/6e639bc71bddeafe855c210c0f573cec7b2ce622)) +- add user context to actions ([6a3241d](https://github.com/powerhouse-inc/document-model-electron/commit/6a3241d3e98c58262ffc7bbbcaa66f6f5d8878b3)) +- added base path for nginx ([22a270b](https://github.com/powerhouse-inc/document-model-electron/commit/22a270b978e189a8a9afd20e0ae8f568e8c3336e)) +- added browser key storage ([6562881](https://github.com/powerhouse-inc/document-model-electron/commit/6562881b2eb603b59b55f1595a7f46b96dbbded6)) +- added clear storage setting ([922f5e1](https://github.com/powerhouse-inc/document-model-electron/commit/922f5e19ebd68e07440858c2f7308e3f6d1a2aae)) +- added config to hide drive sections ([aa67a3f](https://github.com/powerhouse-inc/document-model-electron/commit/aa67a3f392891e195fbc24a2ff858b66265eccc5)) +- added csp headers ([bd398aa](https://github.com/powerhouse-inc/document-model-electron/commit/bd398aa0bc6d748b740e17d4ddf197232d701c62)) +- added deeplink support to link to specific drive node ([ae1f97f](https://github.com/powerhouse-inc/document-model-electron/commit/ae1f97fb17e3cbc422a2e242e9ff530c598284a5)) +- added delete drive modal + enable delete file modal confirmation ([4ce110e](https://github.com/powerhouse-inc/document-model-electron/commit/4ce110e7baaaad3ea75a33eff45fab9994184658)) +- added develop environment ([c33ab9d](https://github.com/powerhouse-inc/document-model-electron/commit/c33ab9d6977712a3015d28a0cd27208f7fd727e5)) +- added develop to release cycle ([b9247e6](https://github.com/powerhouse-inc/document-model-electron/commit/b9247e66d19ffc9400caae9403d9b5b06048eacc)) +- added e2e playwright setup ([2d37330](https://github.com/powerhouse-inc/document-model-electron/commit/2d37330f103456dc9d3e24cc4a74d3ed7abb20c8)) +- added editor debug tools ([6928bed](https://github.com/powerhouse-inc/document-model-electron/commit/6928bed61c46322bc341da7bed48dcde60454b9e)) +- added env var to hide document model setting ([840a561](https://github.com/powerhouse-inc/document-model-electron/commit/840a5615ba0b5eafab123b0f0e5c21b3c880d670)) +- added env vars for renown ([f464d68](https://github.com/powerhouse-inc/document-model-electron/commit/f464d68172be57798be364a804b9de0e7f1733c1)) +- added feature flag setup + disable editors for demo ([7fa64f2](https://github.com/powerhouse-inc/document-model-electron/commit/7fa64f2634cea508ebfb8b20732a730dc8b0624b)) +- added gzip and brotli compression to nginx ([f52a0c3](https://github.com/powerhouse-inc/document-model-electron/commit/f52a0c3205b1fd7fc99875fae0ad5a1d5cd24dd5)) +- added heroku deployment for powerhouse staging env ([f4c538a](https://github.com/powerhouse-inc/document-model-electron/commit/f4c538a3e02781276996e30b759d50f248037c86)) +- added modal confirmation when export document with errors ([d22a447](https://github.com/powerhouse-inc/document-model-electron/commit/d22a447c98d50589f61e37cd6284155223824057)) +- added network id to user ([908a50e](https://github.com/powerhouse-inc/document-model-electron/commit/908a50e8df9c1ae7e53940dc801157a5ca665706)) +- added new env var to dockerfile ([64afb40](https://github.com/powerhouse-inc/document-model-electron/commit/64afb40dfec060e8ebfaaeddf8f47f3f925d21be)) +- added nginx config ([069be2c](https://github.com/powerhouse-inc/document-model-electron/commit/069be2cd98aee6fe3a6b686b4112a435e81d11b3)) +- added notification toast ([39ed0c2](https://github.com/powerhouse-inc/document-model-electron/commit/39ed0c2319c2a6e1c2044aff5cda1fd1dc51d24b)) +- added open file and delete file ([01793c8](https://github.com/powerhouse-inc/document-model-electron/commit/01793c8a5f21b8e1701e649cc926c8baa7ece4fe)) +- added opengraph and twitter meta data ([280da91](https://github.com/powerhouse-inc/document-model-electron/commit/280da914bbe8129ead8559d4169ea266fbb327bc)) +- added PH logo ([e9ec94b](https://github.com/powerhouse-inc/document-model-electron/commit/e9ec94b3373495aa0d03673b241c78605b61d396)) +- added prepare script ([abeaa41](https://github.com/powerhouse-inc/document-model-electron/commit/abeaa41bb7bfc7a8d3a7332a9dd0ba0dad088659)) +- added renown login on browser ([5b77016](https://github.com/powerhouse-inc/document-model-electron/commit/5b77016508fd448b23999919a8d9e40bc701e1f9)) +- added rewrite rules to vercel.json config ([b66cdb0](https://github.com/powerhouse-inc/document-model-electron/commit/b66cdb0fb264412710c1d3bf67f06d48df52408c)) +- added route to open document drive node ([6700f13](https://github.com/powerhouse-inc/document-model-electron/commit/6700f132435dd4ce175b036d5e906d1194976ed0)) +- added RWA doc name fix for demo ([05dfd07](https://github.com/powerhouse-inc/document-model-electron/commit/05dfd0781038523b86437ebe1164e20a848c65b2)) +- added scope of work ([742aae0](https://github.com/powerhouse-inc/document-model-electron/commit/742aae0cab712068d2f8dbe2804da3ba802416bd)) +- added sentry dsn to environments ([c4cfef1](https://github.com/powerhouse-inc/document-model-electron/commit/c4cfef161be9db837d29aca316949957412e4c25)) +- added sentry environments ([68fefd0](https://github.com/powerhouse-inc/document-model-electron/commit/68fefd095cbffcec9eeebedb786d5ab7afc9c9bf)) +- added sentry to connect ([d51ec53](https://github.com/powerhouse-inc/document-model-electron/commit/d51ec538d376cb533882f9c4b0ee057d80ce7d1a)) +- added settings modal integration ([dfb9d28](https://github.com/powerhouse-inc/document-model-electron/commit/dfb9d287bb99dec4316c9eee5098816b6f498926)) +- added sidebar login ([2917809](https://github.com/powerhouse-inc/document-model-electron/commit/29178094a9d711e1d7303dde1511a7b73bc37199)) +- added sort nodes + fix input styles + cancel new folders with empty name ([4a2f9fb](https://github.com/powerhouse-inc/document-model-electron/commit/4a2f9fbf2c4dc5427c58633f18e40eb10574600c)) +- added support for delete option in FolderItem and FileItem ([85800ab](https://github.com/powerhouse-inc/document-model-electron/commit/85800ab374da9be041d6e8c547d186a0671a6b91)) +- added support for document in addfile action ([0706ce2](https://github.com/powerhouse-inc/document-model-electron/commit/0706ce25a515024a37b61aec11c930601a0869e5)) +- added support for rename files + create file name modal ([8a76691](https://github.com/powerhouse-inc/document-model-electron/commit/8a76691426d671128c4cfbc98864a9a669e395f3)) +- added support for renown user ([3853b37](https://github.com/powerhouse-inc/document-model-electron/commit/3853b371349ee14051b666a19fbb0b0c564c8ac6)) +- added support for router basename ([251afe2](https://github.com/powerhouse-inc/document-model-electron/commit/251afe2b1d4eab690f9592e25edc6c555e2fe44a)) +- added switchboard link to document files ([5f31b71](https://github.com/powerhouse-inc/document-model-electron/commit/5f31b710a6ae65f42aac65840da422134e48ee6c)) +- added useConnectConfig hook ([a600091](https://github.com/powerhouse-inc/document-model-electron/commit/a60009131ad8600174311b45a696d0c3219ae8ce)) +- added vercel redirect ([7100848](https://github.com/powerhouse-inc/document-model-electron/commit/7100848213fe6e5d0811229e67c82b8997648fa2)) +- added vite env as build args ([c76d4f4](https://github.com/powerhouse-inc/document-model-electron/commit/c76d4f431017df7f9b40a5063a71618084333c24)) +- allow connect-src for renown.id ([7357d4a](https://github.com/powerhouse-inc/document-model-electron/commit/7357d4a4a2c9aff400e55d9c8eed9630aaec4ed5)) +- allow external images ([171efac](https://github.com/powerhouse-inc/document-model-electron/commit/171efac183458b993ac11849345b3fb8765a10f4)) +- allow per deploy drive restrictions ([8779d84](https://github.com/powerhouse-inc/document-model-electron/commit/8779d84cb1be5128ac7b1c63a8666c5d03b2f593)) +- allow url for file ([474ad4d](https://github.com/powerhouse-inc/document-model-electron/commit/474ad4d0b90e9e882bb52d4ca479a4314d15eec1)) +- also disable when env is production ([6f60688](https://github.com/powerhouse-inc/document-model-electron/commit/6f60688a7bcf92e19afe5a4a49a1baa9f0c44507)) +- also do src === target check in move node function ([3e80c1e](https://github.com/powerhouse-inc/document-model-electron/commit/3e80c1e4dface07c9d101c39f6a0dce6d0654a26)) +- apply auto fixes ([b10b111](https://github.com/powerhouse-inc/document-model-electron/commit/b10b111374636b145c52fa15f38ebc0751912483)) +- auto-select first drive if there's no selected path ([daf3083](https://github.com/powerhouse-inc/document-model-electron/commit/daf3083b4fff8dd6f033ce9806affe932fea4f04)) +- bump ([40fd30a](https://github.com/powerhouse-inc/document-model-electron/commit/40fd30a489214a512a7dc43fbe9dea1e0c33604a)) +- bump ([11fb69f](https://github.com/powerhouse-inc/document-model-electron/commit/11fb69f6f507d4240e72b1208982c814bce185a8)) +- bump deps ([7d7206c](https://github.com/powerhouse-inc/document-model-electron/commit/7d7206c5ae9bc7c9e7d26713fc8ff4e7ef5f459d)) +- bump design system ([fb12d70](https://github.com/powerhouse-inc/document-model-electron/commit/fb12d70fcd3237f1cacb0375e99e4a1ae01cc342)) +- bump design system ([4e1d168](https://github.com/powerhouse-inc/document-model-electron/commit/4e1d168298355beea31e2216edeb7b7cef8e8257)) +- bump design system and document model libs ([165e2cc](https://github.com/powerhouse-inc/document-model-electron/commit/165e2ccc41d5d72a6f2f834292c18aa2388ebb86)) +- bump design system to integrate dep version component ([a18c621](https://github.com/powerhouse-inc/document-model-electron/commit/a18c621a24d97b3bfa9f103365b3890f6fd342d7)) +- bump design-system and document-model-lib deps ([7d90802](https://github.com/powerhouse-inc/document-model-electron/commit/7d9080289ce258cf9d299d13b4cf7e092fd51535)) +- bump document drive version ([254a2cd](https://github.com/powerhouse-inc/document-model-electron/commit/254a2cd967b07d22352d38509ad55c2ffcd19bf5)) +- bump libs ([24a9cd3](https://github.com/powerhouse-inc/document-model-electron/commit/24a9cd3427eecc32697f15d7479bf5ee53c95084)) +- bump libs ([b27b036](https://github.com/powerhouse-inc/document-model-electron/commit/b27b036a487fbe989f9f7b585603e15bcdd3fa3a)) +- bump libs ([5fb15d3](https://github.com/powerhouse-inc/document-model-electron/commit/5fb15d321de8649ac2fc6953d9ec5312aeabefeb)) +- bump libs ([1f38863](https://github.com/powerhouse-inc/document-model-electron/commit/1f38863cb3e6fff081218ce59d7cf1a6f3c44621)) +- bump libs ([7df97b0](https://github.com/powerhouse-inc/document-model-electron/commit/7df97b03882c012f035b259aebb85ba42704008b)) +- bump libs ([78baf1d](https://github.com/powerhouse-inc/document-model-electron/commit/78baf1dee6da3f18208f23973f65b5a1b930ba81)) +- bump libs ([d766c36](https://github.com/powerhouse-inc/document-model-electron/commit/d766c36649f3575b2d10bcaf532249437a79b36c)) +- bump libs ([6b3f58f](https://github.com/powerhouse-inc/document-model-electron/commit/6b3f58fd3aad9e628cf2312629280f12984648e2)) +- bump libs ([f98b523](https://github.com/powerhouse-inc/document-model-electron/commit/f98b523acb0e2f2599d4d8927bf8fe5b26374856)) +- bump libs ([2a9a29d](https://github.com/powerhouse-inc/document-model-electron/commit/2a9a29d0d9d129abbbe6b16567151f3ecd0d525e)) +- bump libs ([62117a9](https://github.com/powerhouse-inc/document-model-electron/commit/62117a90490e9bbb32c4a84fdbdb3d930ca7ebfb)) +- bump libs ([62cd43d](https://github.com/powerhouse-inc/document-model-electron/commit/62cd43dd7f80cfd6202c251a9c1af1bad0978b67)) +- bump lint deps ([544fcea](https://github.com/powerhouse-inc/document-model-electron/commit/544fcea7cdcf450756b8deb913c47047a9161849)) +- bump react aria ([3a8ed93](https://github.com/powerhouse-inc/document-model-electron/commit/3a8ed934d371b11c7deb8c8894b43c323d04f06f)) +- cancel rename operation when new name is empty ([6c7a815](https://github.com/powerhouse-inc/document-model-electron/commit/6c7a815500339ebbced23214450750bacbfdebc9)) +- change term to allow list ([af99e9b](https://github.com/powerhouse-inc/document-model-electron/commit/af99e9ba0a3eee7074cc763922caf1656f024e83)) +- changed default renown env variables ([c87ee69](https://github.com/powerhouse-inc/document-model-electron/commit/c87ee697507eba7235150e5156bbe7d0cd121e36)) +- changed nginx image to nginx-brotli ([3d497da](https://github.com/powerhouse-inc/document-model-electron/commit/3d497da7806bdb77a6352aad9ad5f64ddcfa93e4)) +- check if operations with same index are submitted ([b7ad973](https://github.com/powerhouse-inc/document-model-electron/commit/b7ad97307106467a39060da44420515f10ce3921)) +- check user auth on startup ([6820f27](https://github.com/powerhouse-inc/document-model-electron/commit/6820f27a8defb40d72e3580d00fe11f1170bbe22)) +- commented renown env variables ([cd18bab](https://github.com/powerhouse-inc/document-model-electron/commit/cd18babc471fef7b1939bed4478265bd5a38abc1)) +- configure available editors with env variables ([00fad56](https://github.com/powerhouse-inc/document-model-electron/commit/00fad56259d24c1dc9fe3009ec5d4d8d9a51782a)) +- default drive handling improvements ([57be63e](https://github.com/powerhouse-inc/document-model-electron/commit/57be63e34a368769eb159728194f70d60ad98290)) +- detect circular reference in node path ([c113d03](https://github.com/powerhouse-inc/document-model-electron/commit/c113d035118d418ed8006b55112d101f030b4caa)) +- disable dev tools when app is packaged ([2326a77](https://github.com/powerhouse-inc/document-model-electron/commit/2326a7774f74d2c8af949cf55c18b12b38d0b7d9)) +- disable document drive editor by default ([a61249f](https://github.com/powerhouse-inc/document-model-electron/commit/a61249f43e50219b7b6aebc27f63b2d07a4735ec)) +- disallow create operations ([9cb4a8e](https://github.com/powerhouse-inc/document-model-electron/commit/9cb4a8e4d902f67692e696b60c283a3ec59ca137)) +- downloadFile fallback ([9836f4c](https://github.com/powerhouse-inc/document-model-electron/commit/9836f4c1e6edf68d1239f69cfb86324cb1e4d6f0)) +- enable transactions editor ([28967c2](https://github.com/powerhouse-inc/document-model-electron/commit/28967c2c6a4465494f682e55e914bfdd719bc07b)) +- enabled add cloud drive modal ([d54f579](https://github.com/powerhouse-inc/document-model-electron/commit/d54f579bd903e57cf193cdc11a727eed5526971d)) +- enabled drop target for FolderItem ([70aeaad](https://github.com/powerhouse-inc/document-model-electron/commit/70aeaadde2844def0c0cc648dbb8f496d51b96dd)) +- enabled editor controls ([f7aa503](https://github.com/powerhouse-inc/document-model-electron/commit/f7aa50343c0a124056811f1ce29ab0c8539263da)) +- enabled keyboard shortcut for undo/redo ([82fe517](https://github.com/powerhouse-inc/document-model-electron/commit/82fe517dbbf01006c6fbaae0b1c493c57eeeb422)) +- enabled onErrorCallback for dispatch fn ([8bd3c7c](https://github.com/powerhouse-inc/document-model-electron/commit/8bd3c7ccfafbf1d1b32ada0bb941585bd0ee1907)) +- enabled rename option for folders in folder view ([d7a9b34](https://github.com/powerhouse-inc/document-model-electron/commit/d7a9b3490b0cb91d647ecb803513dbea590f04e0)) +- enabled rename option when copy/move an item ([3ef5ea4](https://github.com/powerhouse-inc/document-model-electron/commit/3ef5ea474997e10b670a989460dca939431f3a9a)) +- enabled rwa editor ([b7df486](https://github.com/powerhouse-inc/document-model-electron/commit/b7df486a82c0c044fab5dd434ecceba1a2c24dc1)) +- enabled switchboard link in RWA editor ([cece18e](https://github.com/powerhouse-inc/document-model-electron/commit/cece18e3cb900cbe2fe7d77c0c329a2c430e2539)) +- enabled undo/redo with new document structure ([f6af1e0](https://github.com/powerhouse-inc/document-model-electron/commit/f6af1e002121456e5e9cc4befe6c41ac4ddf8aa9)) +- expand selected path in sidebar on initial path load ([9b5e053](https://github.com/powerhouse-inc/document-model-electron/commit/9b5e0533e7e02d4ae9ea3c6bb01c9827eada160c)) +- export did:key instead of public key ([a358371](https://github.com/powerhouse-inc/document-model-electron/commit/a3583718047f447f2f59a8153e3e2ac15a8cd732)) +- fetch user's ens info ([229a1ae](https://github.com/powerhouse-inc/document-model-electron/commit/229a1ae1bcd145858f867cdf449d9ed2709c8ffc)) +- fix Authorize Connect font color ([25ba2e7](https://github.com/powerhouse-inc/document-model-electron/commit/25ba2e7af5c81c442fed8d919b31a66ba2959e77)) +- fix console warnings ([3024578](https://github.com/powerhouse-inc/document-model-electron/commit/3024578d93e4a70a89a3b3681d34f78a4bd0f1d0)) +- fix css import order ([9216a27](https://github.com/powerhouse-inc/document-model-electron/commit/9216a277e488f73cc892ad015c4ea35dd22bb2a9)) +- fix linux build ([433e6f9](https://github.com/powerhouse-inc/document-model-electron/commit/433e6f9b0a92f72d33e16bbcb71a8965c034c6be)) +- fix logo + position ([278ebeb](https://github.com/powerhouse-inc/document-model-electron/commit/278ebeb39cac2b6d1edb3b096161bb3810669f31)) +- fix rwa document name ([b3f39d1](https://github.com/powerhouse-inc/document-model-electron/commit/b3f39d16c09cb87295d53a7be249b4e2be3895ab)) +- fix sync status ([9ff69fe](https://github.com/powerhouse-inc/document-model-electron/commit/9ff69fedf729b7e70b07bf121c9feed00c1ddc58)) +- fix tailwind class conflicts ([341d8ba](https://github.com/powerhouse-inc/document-model-electron/commit/341d8ba945fd1a20c6014fcb6e5ce77faf458b5f)) +- fixed addDriveOperations ([4c33a1f](https://github.com/powerhouse-inc/document-model-electron/commit/4c33a1f891eeba1b9845768fbc0395cb01dd9e70)) +- fixed base route ([606e919](https://github.com/powerhouse-inc/document-model-electron/commit/606e9191be0f32309e7a0a59e82dc49aa88690bb)) +- fixed default document-models ([0d51154](https://github.com/powerhouse-inc/document-model-electron/commit/0d511546e95a1d5a534f92b549d7120076792040)) +- fixed editors loading ([4fda671](https://github.com/powerhouse-inc/document-model-electron/commit/4fda67192ca075aa66079cbf769548e53e1a2ef3)) +- fixed file import ([23cd72d](https://github.com/powerhouse-inc/document-model-electron/commit/23cd72da07e8fa12bb6f5c739d392432057d6812)) +- fixed file operations error ([5d123af](https://github.com/powerhouse-inc/document-model-electron/commit/5d123af045f0409222bd61404b2249db2a4ec19d)) +- fixes browser key storage ([bfb2a72](https://github.com/powerhouse-inc/document-model-electron/commit/bfb2a725ec7fb4ec507751e52aa743879e39b428)) +- generate key pair on desktop ([ebc0204](https://github.com/powerhouse-inc/document-model-electron/commit/ebc020405e0b289aa4cfdf4935b2afcd53494a7f)) +- go back from fixed version ([41684c4](https://github.com/powerhouse-inc/document-model-electron/commit/41684c4f9cb55bef7f4e8bea46e7ab2eedc26b5c)) +- handle empty string or wrong formatted string in env var ([0099615](https://github.com/powerhouse-inc/document-model-electron/commit/009961513edaba39ad8fb4daacd6dd702a9fedd8)) +- handle null parent folder ([21f9370](https://github.com/powerhouse-inc/document-model-electron/commit/21f93703b08e39c6c97312a232a609a53dacf1c0)) +- handle sync events on node document drive ([3855ce4](https://github.com/powerhouse-inc/document-model-electron/commit/3855ce42a72865ed48e7729d25ec1481e462851d)) +- handle undefined whitelist ([1672fa8](https://github.com/powerhouse-inc/document-model-electron/commit/1672fa86ab863d8d2fc88604a775f524f7b86614)) +- hide searchbar from config ([0bd4444](https://github.com/powerhouse-inc/document-model-electron/commit/0bd4444fca256b28bf413122a870f343963dc801)) +- ignore drives with error ([25a27d5](https://github.com/powerhouse-inc/document-model-electron/commit/25a27d51fed340a22530d5d13e784bf5f9f66fab)) +- ignore operation hashes when importing zip ([634bcd5](https://github.com/powerhouse-inc/document-model-electron/commit/634bcd5cd534d22db9813cc17be28359d94a1e61)) +- ignores document drive result when adding an operation from the editor ([74140e2](https://github.com/powerhouse-inc/document-model-electron/commit/74140e2400ea1c1b5bb9baf5f7b26ed7cbb2a9cb)) +- implemented rename and new folder actions ([45dbf5e](https://github.com/powerhouse-inc/document-model-electron/commit/45dbf5e527841f1107f9d444ac2b76f0dc6fa7c0)) +- import styles from design system ([f7ac8ad](https://github.com/powerhouse-inc/document-model-electron/commit/f7ac8adc2608e8d491618e01b1c98be9f8c43fe2)) +- improved url handling ([32b3dcd](https://github.com/powerhouse-inc/document-model-electron/commit/32b3dcd943518cba4f1f5a82f9dbb5b906096500)) +- install ts-reset ([228b082](https://github.com/powerhouse-inc/document-model-electron/commit/228b082e36b1e689b47d7ed923dfe3347e74ad7d)) +- install vite ([aa66a01](https://github.com/powerhouse-inc/document-model-electron/commit/aa66a01bc96f33984e9d6828fdd93d374916c2c4)) +- lighthouse recomendations ([dd3e594](https://github.com/powerhouse-inc/document-model-electron/commit/dd3e594c198ab2a9deb83420ed8bfb145475ec71)) +- load default drive ([589653f](https://github.com/powerhouse-inc/document-model-electron/commit/589653fab02bc030fbc4a99bea6ed6f4566fd57c)) +- log sync error ([204c38a](https://github.com/powerhouse-inc/document-model-electron/commit/204c38a5f2763edc2006119b8608f6dc39f40dc9)) +- manually install design system ([1b7c676](https://github.com/powerhouse-inc/document-model-electron/commit/1b7c6767c67efed2da903976a62a0bbbaf8a64fe)) +- move helpers ([e12240c](https://github.com/powerhouse-inc/document-model-electron/commit/e12240c40ca8368b9f99f0bdfa5d2881a9a71dc5)) +- move sync status invocation to hook ([dea3fa9](https://github.com/powerhouse-inc/document-model-electron/commit/dea3fa9f5fbcdf9cf355652bf32e2c434a366c13)) +- moved load initial data into a hook ([99c7417](https://github.com/powerhouse-inc/document-model-electron/commit/99c74175b899c9c1d3f7dbf27de174ebd053bdbf)) +- pass allow list credentials to components ([2fadac1](https://github.com/powerhouse-inc/document-model-electron/commit/2fadac18141430445138ec9446d46227cb69723a)) +- pass allow list props to components ([0df5de6](https://github.com/powerhouse-inc/document-model-electron/commit/0df5de6a1062538cfaee7dcd045abb53b5481106)) +- port config files to ts ([f78e7f5](https://github.com/powerhouse-inc/document-model-electron/commit/f78e7f5444a47d637cc6681dd25917524b03b659)) +- re-enable onErrorCallback with new operations error prop ([a408630](https://github.com/powerhouse-inc/document-model-electron/commit/a408630ee77596a83f2c3ee26a17d44447537647)) +- re-generate package-lock.json ([e48ac3d](https://github.com/powerhouse-inc/document-model-electron/commit/e48ac3dd16d25901565eaed94e4e82b4283f7287)) +- re-implemented copy/move nodes with new DocumentDrive ([c4fad11](https://github.com/powerhouse-inc/document-model-electron/commit/c4fad117827b929d69dd73824d46ef33f767c57f)) +- readd prepare script ([ad4577e](https://github.com/powerhouse-inc/document-model-electron/commit/ad4577ee92a812a4227e03f2923cbb5b5ca0efdc)) +- refresh UI when there are drive changes ([fca3c95](https://github.com/powerhouse-inc/document-model-electron/commit/fca3c9576679e1bdcb8cf017cad3e885cd245fdf)) +- regenerate lock ([0269b0b](https://github.com/powerhouse-inc/document-model-electron/commit/0269b0b47945bc6d53928ec975f3b0c4557706a9)) +- regenerate lockfile ([efa2f7f](https://github.com/powerhouse-inc/document-model-electron/commit/efa2f7f380e1e558b82a616f8d1ef1cda021371e)) +- regenerate lockfile ([c8aac44](https://github.com/powerhouse-inc/document-model-electron/commit/c8aac44f8cb0184962e5567ea3252e14cc686cce)) +- reinstall with npm ([f790b6c](https://github.com/powerhouse-inc/document-model-electron/commit/f790b6c8611e000b123723c014ef35c1ee9aa55b)) +- remove check ([1db971c](https://github.com/powerhouse-inc/document-model-electron/commit/1db971cf324e2ca0e92c8f9b01614f7ef64f3d6a)) +- remove csp ([b940c38](https://github.com/powerhouse-inc/document-model-electron/commit/b940c3849bb1f804c6d2d8ca7e2bced61be81a95)) +- remove default node logic ([217d6e5](https://github.com/powerhouse-inc/document-model-electron/commit/217d6e5ac54033bda7bd36473712e048fe775623)) +- remove hello from content ([decd9c4](https://github.com/powerhouse-inc/document-model-electron/commit/decd9c4a9dbce3d9ecacbee06ad91d5959b86f84)) +- remove old tailwind classes ([10a8b95](https://github.com/powerhouse-inc/document-model-electron/commit/10a8b95edbcf212c17cb9011b13b32d2b924a767)) +- remove redundant config ([0c4d334](https://github.com/powerhouse-inc/document-model-electron/commit/0c4d334f3f75ccef7597470e1ce2a490b449eca8)) +- remove redundant use effect ([9bb2950](https://github.com/powerhouse-inc/document-model-electron/commit/9bb29508084badc11d535fab2ba241fe8021bc5f)) +- remove restriction to send operations ([dc620c5](https://github.com/powerhouse-inc/document-model-electron/commit/dc620c5fda0dd9adff480ee2ea3494b2b1698cc5)) +- remove scrollbar styles ([a9a3080](https://github.com/powerhouse-inc/document-model-electron/commit/a9a30803d3bf1cf91a82cc9bac6133c9bb335691)) +- removed electron-deeplink pkg and updated deep links ([5cec527](https://github.com/powerhouse-inc/document-model-electron/commit/5cec527acc442886f35261affa1619efd30e2212)) +- removed networkId from signer ([89c2a1c](https://github.com/powerhouse-inc/document-model-electron/commit/89c2a1c676170878b4cb307b073b53e28bb9e1f5)) +- removed queue timeout ([8b517b7](https://github.com/powerhouse-inc/document-model-electron/commit/8b517b78c1529abe5c7ee6e69d1990c56c4fbb6e)) +- removed re-renders and prevent add default drive being called twice ([3104848](https://github.com/powerhouse-inc/document-model-electron/commit/3104848107ff53daea46d36930be8ca9e3f522e6)) +- removed usehooks-ts dep ([05ca45e](https://github.com/powerhouse-inc/document-model-electron/commit/05ca45ef3227c50a7d44bfd7c8d8730a89d3c369)) +- rename document drive node when document model name is changed ([b9008f7](https://github.com/powerhouse-inc/document-model-electron/commit/b9008f7e08e340329e16c0743133a09d044cb1dd)) +- replaced env vars by client.config file ([28f7a2f](https://github.com/powerhouse-inc/document-model-electron/commit/28f7a2f5fbe97403f4ed317303f19c43b1cbf300)) +- replaced feature flags context by atomWithStorage ([071b7aa](https://github.com/powerhouse-inc/document-model-electron/commit/071b7aacb44792851b45946f41abecaaa99f5633)) +- replaced sidebar input header by connect logo ([a845dfd](https://github.com/powerhouse-inc/document-model-electron/commit/a845dfd14df5167e25fe5530ae03e9400bb36d45)) +- separate browser storage ([9ea89b8](https://github.com/powerhouse-inc/document-model-electron/commit/9ea89b80a5094eaa56a2d3b417a0e8fb05c0ae91)) +- separated error and conflict messages for drive status notification ([e80ccfe](https://github.com/powerhouse-inc/document-model-electron/commit/e80ccfeff3bf1e739af33c0da97f5258f5007e5a)) +- set queue timeout to 10ms ([6c87c92](https://github.com/powerhouse-inc/document-model-electron/commit/6c87c92e4e4ed2246c642f6575db1b31c6611b06)) +- show success sync toast only after recover from error sync ([5c2a47a](https://github.com/powerhouse-inc/document-model-electron/commit/5c2a47a2d0232e13d9fd6047bbe88c3faee6caa3)) +- simplify copy ([2cd60c3](https://github.com/powerhouse-inc/document-model-electron/commit/2cd60c3957685049fc6ff64beb094b409bbd4f32)) +- support add drive ([f827d33](https://github.com/powerhouse-inc/document-model-electron/commit/f827d338d4b6b49bde54f58ec6eb133756f3c765)) +- support multiple separate allow lists ([74d6152](https://github.com/powerhouse-inc/document-model-electron/commit/74d615236b6a75d0602476a826787e37a3ab263f)) +- switch to using vars from design system ([587c258](https://github.com/powerhouse-inc/document-model-electron/commit/587c258c1f47b8f5f1004252aec491d91b14eb5a)) +- trigger build ([e85bf95](https://github.com/powerhouse-inc/document-model-electron/commit/e85bf95f96ece3f59ead521fe39588630203900d)) +- update connect opengraph meta data ([32b3720](https://github.com/powerhouse-inc/document-model-electron/commit/32b372038f27d9a062ad78de6fde36a70cf2d6d8)) +- update deeplink protocol ([45d0a58](https://github.com/powerhouse-inc/document-model-electron/commit/45d0a58d266bcc369fcef7e0a1cc88c71757e1fc)) +- update dependencies and increase pull interval to 3 seconds ([66d8aea](https://github.com/powerhouse-inc/document-model-electron/commit/66d8aea256ccc6f742347db03bf06901b777bc74)) +- update deps ([3b6fa8d](https://github.com/powerhouse-inc/document-model-electron/commit/3b6fa8daeedec0549451490c9a7efec733ab2b75)) +- update document drive ([ff37742](https://github.com/powerhouse-inc/document-model-electron/commit/ff37742d857e9445a30a4122f12ec8585f5d129e)) +- update document drive dep ([ad31bf0](https://github.com/powerhouse-inc/document-model-electron/commit/ad31bf08d09650a9c335e18cf7153c7bd7667081)) +- update document drive dep ([5baaf20](https://github.com/powerhouse-inc/document-model-electron/commit/5baaf2006c71885132bbdabb59976acf5cde8ce2)) +- update document-drive ([534fa80](https://github.com/powerhouse-inc/document-model-electron/commit/534fa802984035735710d220f2496add04704b64)) +- update document-drive ver ([393388e](https://github.com/powerhouse-inc/document-model-electron/commit/393388e0a45f0275e5ab6824695d70b931891777)) +- update document-model and document-drive ver ([d66225a](https://github.com/powerhouse-inc/document-model-electron/commit/d66225aefa67ed761e8c5a1f36b62685666f7d84)) +- update document-model and document-drive versions ([8d1f869](https://github.com/powerhouse-inc/document-model-electron/commit/8d1f8691bf1511aca38f96a1ca7488e9d6104af2)) +- update document-model dep ([c865770](https://github.com/powerhouse-inc/document-model-electron/commit/c8657706b488631cf5955a6677ae5e4e1252bc9c)) +- update document-model document-drive and document-model-libs deps ([aee1dce](https://github.com/powerhouse-inc/document-model-electron/commit/aee1dce7f1c927ca24ac5283ab3d4d48ca85b7f6)) +- update document-model lib to v1.0.29 ([9190869](https://github.com/powerhouse-inc/document-model-electron/commit/9190869ddea006ce0cad8c3fa264d83535e16950)) +- update drive sync icon on syncStatus event ([ded596e](https://github.com/powerhouse-inc/document-model-electron/commit/ded596eb4761ce7003e285a0b283d45242b66444)) +- update editor when opened document is changed ([88e1cad](https://github.com/powerhouse-inc/document-model-electron/commit/88e1cad21d61cc9675f53a4a67e51e8712b22696)) +- update env var names ([42ba363](https://github.com/powerhouse-inc/document-model-electron/commit/42ba363359b08b076fdb7d39fa7df9b2c7d963ba)) +- update experimental deps ([12d28d6](https://github.com/powerhouse-inc/document-model-electron/commit/12d28d695a58dfc9bb2ff1e288b6ea4ef39f1267)) +- update lint config ([170b252](https://github.com/powerhouse-inc/document-model-electron/commit/170b252cd35fe786147f4e5306948eecf6a3990c)) +- update submit handler ([9cd1a10](https://github.com/powerhouse-inc/document-model-electron/commit/9cd1a10a0fee03bf4ddd2ace4f1a3796e1b4de30)) +- update to use new sync icons ([e1cbf1d](https://github.com/powerhouse-inc/document-model-electron/commit/e1cbf1d22de3159c247b3356577f2fdc519a51c5)) +- update url params logic ([6450975](https://github.com/powerhouse-inc/document-model-electron/commit/645097513096fa26327e60ea510d2e4bd628a870)) +- updated deps ([e41734f](https://github.com/powerhouse-inc/document-model-electron/commit/e41734f70b7b8acae90c167df5884820ee99c3c9)) +- updated deps ([a328cd9](https://github.com/powerhouse-inc/document-model-electron/commit/a328cd93ec131d36f61c45fda4863f315fb3a2cc)) +- updated design system dep ([b378a42](https://github.com/powerhouse-inc/document-model-electron/commit/b378a420bad20debc06aeeb376401ecb311889ce)) +- updated document drive ([4b588b0](https://github.com/powerhouse-inc/document-model-electron/commit/4b588b0f602debb6d069c3c4d580292b87a94337)) +- updated document drive ([b0df564](https://github.com/powerhouse-inc/document-model-electron/commit/b0df564c0952c60b3202c392e9fb1a23e401bea8)) +- updated document drive lib ([5f30983](https://github.com/powerhouse-inc/document-model-electron/commit/5f30983ab3f07462d842e3f464c0723d3f8785dd)) +- updated document-drive ver ([f7b9c7d](https://github.com/powerhouse-inc/document-model-electron/commit/f7b9c7df9d9b569b296d599998e3a500bfb8735c)) +- updated document-drive version ([a92dd24](https://github.com/powerhouse-inc/document-model-electron/commit/a92dd24c3ae638ff02587623a3d33af7fd89e2b6)) +- updated document-drive@1.0.0-experimental.2 ([c2b2816](https://github.com/powerhouse-inc/document-model-electron/commit/c2b2816cc7eea0346ea7d958b39f4b25796bb2a0)) +- updated document-drive@1.0.0-experimental.4 ([f31d12d](https://github.com/powerhouse-inc/document-model-electron/commit/f31d12d18404882a1f3af00f9bca6ab79d7a667e)) +- updated document-model dep ([f487cff](https://github.com/powerhouse-inc/document-model-electron/commit/f487cff99198d7cc3d8fd9db944ca394cc788dec)) +- updated document-model lib ([9db149e](https://github.com/powerhouse-inc/document-model-electron/commit/9db149ecc91926c02f2fe8479ca08958b66977d3)) +- updated document-model-libs ([b0bb1d2](https://github.com/powerhouse-inc/document-model-electron/commit/b0bb1d2ef530ecacc8f722322149866f8fbce03d)) +- updated document-model-libs and design-system ver ([d4ab8f8](https://github.com/powerhouse-inc/document-model-electron/commit/d4ab8f881d0e04d5bf68e0748205cf25fcce90e1)) +- updated package.lock ([3c334f4](https://github.com/powerhouse-inc/document-model-electron/commit/3c334f4f714ec6a63ce63bbc7f60d0e67f99b17b)) +- updated release script ([639b2a5](https://github.com/powerhouse-inc/document-model-electron/commit/639b2a50405d32f884f941457702ba12a6fa3a6b)) +- updated rwa query ([3709cfc](https://github.com/powerhouse-inc/document-model-electron/commit/3709cfc9543851fe77f8a930d1e0806d552069d6)) +- use default values if there is a missing key for feature flags ([cdb728a](https://github.com/powerhouse-inc/document-model-electron/commit/cdb728a3964ca1183bd38743744a8bdf51e04fb6)) +- use drive icon ([c82bebb](https://github.com/powerhouse-inc/document-model-electron/commit/c82bebb00516c95b2f6f48102672bf70333f9477)) +- use memoryBrowser on packaged app ([2d11200](https://github.com/powerhouse-inc/document-model-electron/commit/2d11200a47c861429edd0ad5c6a4eb13b46a7363)) +- use new svgr syntax ([e1db3b9](https://github.com/powerhouse-inc/document-model-electron/commit/e1db3b95b5330f95893b5511df8041ed04d33fb7)) +- use not equal ([8e33089](https://github.com/powerhouse-inc/document-model-electron/commit/8e330890f658224bc1e37d6504765e3d01cc7ede)) +- use setTimeout as fallback for requestIdleCallback ([730c8f2](https://github.com/powerhouse-inc/document-model-electron/commit/730c8f292eec07908410f7f2949c045bab8094fe)) +- use tailwind styles ([53dc69f](https://github.com/powerhouse-inc/document-model-electron/commit/53dc69f69663b4d315c03b57a64b87b274e698cd)) +- use yarn ([812fe5a](https://github.com/powerhouse-inc/document-model-electron/commit/812fe5af48fdea5cb5955f6b8336604722476b44)) +- waits 50ms for new operations to make a single addOperations call ([d4c9796](https://github.com/powerhouse-inc/document-model-electron/commit/d4c97965cc9b83128f6be225a27a64c2f88795f3)) +- waits for document drive server to be loaded before checking default drive is added ([fc10ee8](https://github.com/powerhouse-inc/document-model-electron/commit/fc10ee8428d9d9c24c6cef38cd104ac5f79d759c)) ### Performance Improvements -* implemented scalable way to compare drive state ([5b4f360](https://github.com/powerhouse-inc/document-model-electron/commit/5b4f360f9be815e52131f56fedf3f6a97e77ed7f)) +- implemented scalable way to compare drive state ([5b4f360](https://github.com/powerhouse-inc/document-model-electron/commit/5b4f360f9be815e52131f56fedf3f6a97e77ed7f)) # 1.0.0-alpha.1 (2024-06-11) - ### Bug Fixes -* added callback support for document dispatch ([a4f4c04](https://github.com/powerhouse-inc/document-model-electron/commit/a4f4c04ead0d2aca54983da2e79e9ff6e673da15)) -* allow concurrent drive operations ([17658ee](https://github.com/powerhouse-inc/document-model-electron/commit/17658ee1a67dc787896508d25ea329ca9b657a13)) -* apply auto lint fix ([dfa1ec0](https://github.com/powerhouse-inc/document-model-electron/commit/dfa1ec02caddba3e9b06e1a18855f47abf959eda)) -* base hrefs ([1ff517c](https://github.com/powerhouse-inc/document-model-electron/commit/1ff517c31991b6ad836b173c0df916b396f59fe1)) -* base path cmd ([070b4af](https://github.com/powerhouse-inc/document-model-electron/commit/070b4af1a148be00ca8b4e4bf8e24f22adbea28c)) -* build issues ([f2b084b](https://github.com/powerhouse-inc/document-model-electron/commit/f2b084b21a7826c491bc4d5977608892bfedfeba)) -* change config file names in scripts ([37fa872](https://github.com/powerhouse-inc/document-model-electron/commit/37fa872932c8f455e4844e6bd838a65720ad5380)) -* downgraded document drive ([7d287c4](https://github.com/powerhouse-inc/document-model-electron/commit/7d287c4d08d73226e7ba1ec8aabaeeb9a088c8e2)) -* endpoints for connect ([f35f853](https://github.com/powerhouse-inc/document-model-electron/commit/f35f8532e14475e74cc80119e5df0274f2b5f1e7)) -* fix file types ([11d1b18](https://github.com/powerhouse-inc/document-model-electron/commit/11d1b1833442ee302196b3e50f73f0380a372507)) -* fix rerenders when refreshing document drives ([5429f61](https://github.com/powerhouse-inc/document-model-electron/commit/5429f613784535e430809b751d879e60b2f5fb68)) -* fixed build error ([3027483](https://github.com/powerhouse-inc/document-model-electron/commit/30274832089143d616c3c55935735ad6f275e8c2)) -* fixed build error ([f280459](https://github.com/powerhouse-inc/document-model-electron/commit/f2804594d3f764477c06fc4183a2427df9e4c86b)) -* folder selection in folder view ([f7e3681](https://github.com/powerhouse-inc/document-model-electron/commit/f7e36810b5d0223afc64736a9e8ec48e11f7fc57)) -* header text color ([4ee9745](https://github.com/powerhouse-inc/document-model-electron/commit/4ee9745dbbeddf0e2ea41f6d8c4c800d9f5bfd99)) -* heroku nginx config ([0ca0df1](https://github.com/powerhouse-inc/document-model-electron/commit/0ca0df1e853522fb0d21ded35d6f61964c48ea62)) -* lint errors ([ac490b4](https://github.com/powerhouse-inc/document-model-electron/commit/ac490b4cdf693d62d57a865b55952ca7b46bfe94)) -* missing return ([f81d0e9](https://github.com/powerhouse-inc/document-model-electron/commit/f81d0e9a0a58c4079a6359d0dc45f90861d4acb4)) -* only call useMemo in hook ([76a1505](https://github.com/powerhouse-inc/document-model-electron/commit/76a15059e825ec0e1d6215e450ec0339d7c33bbe)) -* package.lock ([1c2a1f5](https://github.com/powerhouse-inc/document-model-electron/commit/1c2a1f55bf33953fa1834da2e84dcc0e93710c7b)) -* properly encode switchboard query ([4c5001f](https://github.com/powerhouse-inc/document-model-electron/commit/4c5001fb3aa34249bee0550331a314872b05c614)) -* remove allow list ([ac2475d](https://github.com/powerhouse-inc/document-model-electron/commit/ac2475d866195b18b23ca094457ccce93b9b0508)) -* remove duplicate package ([364afdd](https://github.com/powerhouse-inc/document-model-electron/commit/364afdde2e2c9c3d6c12d0364e6d0cfd612f5429)) -* remove yalc from package json ([9e184d8](https://github.com/powerhouse-inc/document-model-electron/commit/9e184d8df68d74803e9cbf95f7cf480f97a6d03e)) -* removed unused css import ([6da080c](https://github.com/powerhouse-inc/document-model-electron/commit/6da080c53ea57352b997de941fc303f11a5d2a42)) -* rename node id ([45235e5](https://github.com/powerhouse-inc/document-model-electron/commit/45235e516ce5ea52345c7ff9d1f7238ff4e9e095)) -* renown endpoint ([10461f5](https://github.com/powerhouse-inc/document-model-electron/commit/10461f566fd49a8fd79b23fdaa66871d8d8cff76)) -* renown login ([432e5bc](https://github.com/powerhouse-inc/document-model-electron/commit/432e5bcc1eaa13a043720b0c9d1165222188ecfc)) -* revert setSelectedDocument in addOperation document ([df06317](https://github.com/powerhouse-inc/document-model-electron/commit/df06317cc067b3f25deedb9832c1aa54d308158a)) -* rwa query ([09fcd52](https://github.com/powerhouse-inc/document-model-electron/commit/09fcd52fdf4adbeee9f6a6aa26c1d0309b525510)) -* settings modal typo ([6ef1286](https://github.com/powerhouse-inc/document-model-electron/commit/6ef12861fdda344c7c45f54657b6f56c67217162)) -* show local drives ([893b0df](https://github.com/powerhouse-inc/document-model-electron/commit/893b0dfe9d8004b12114842b082e4672a630aa38)) -* subscribe to server updates when load initial data ([35bf948](https://github.com/powerhouse-inc/document-model-electron/commit/35bf948de2acb3a23684060c978138f2b5ad5f75)) -* suppress less important rules ([679af22](https://github.com/powerhouse-inc/document-model-electron/commit/679af2256b8e6a4739006048056d452ba7fbf988)) -* switchboard endpoint ([2e570f3](https://github.com/powerhouse-inc/document-model-electron/commit/2e570f39bc355e4f387c0d371e8af81a0b92bb38)) -* switchboard link ([78bbdd0](https://github.com/powerhouse-inc/document-model-electron/commit/78bbdd0ec278a7685023cf9482d5990f6cf18a6d)) -* tmp build fix ([4a4be40](https://github.com/powerhouse-inc/document-model-electron/commit/4a4be4098131a946ce919792e3028e0f4e92c46e)) -* undefined default drive ([e5f2749](https://github.com/powerhouse-inc/document-model-electron/commit/e5f27494a57a29c4e4ae921d2014198af8614df3)) -* undefined default drive ([6ad9412](https://github.com/powerhouse-inc/document-model-electron/commit/6ad94127e15ebb43507cd0cae8404e9e2bc17e5b)) -* update selectedDocument when a new operation is dispatched ([b2c4401](https://github.com/powerhouse-inc/document-model-electron/commit/b2c4401c676d1c2621334375f132c6367c234ca5)) -* use selectedDocument as source of truth for document editor ([b5204e7](https://github.com/powerhouse-inc/document-model-electron/commit/b5204e7153028459ef3ace07e719736d971d577a)) -* wait for renown to load ([1d2f019](https://github.com/powerhouse-inc/document-model-electron/commit/1d2f019dc992239873e19e35fe8d5c0dde1396f5)) - +- added callback support for document dispatch ([a4f4c04](https://github.com/powerhouse-inc/document-model-electron/commit/a4f4c04ead0d2aca54983da2e79e9ff6e673da15)) +- allow concurrent drive operations ([17658ee](https://github.com/powerhouse-inc/document-model-electron/commit/17658ee1a67dc787896508d25ea329ca9b657a13)) +- apply auto lint fix ([dfa1ec0](https://github.com/powerhouse-inc/document-model-electron/commit/dfa1ec02caddba3e9b06e1a18855f47abf959eda)) +- base hrefs ([1ff517c](https://github.com/powerhouse-inc/document-model-electron/commit/1ff517c31991b6ad836b173c0df916b396f59fe1)) +- base path cmd ([070b4af](https://github.com/powerhouse-inc/document-model-electron/commit/070b4af1a148be00ca8b4e4bf8e24f22adbea28c)) +- build issues ([f2b084b](https://github.com/powerhouse-inc/document-model-electron/commit/f2b084b21a7826c491bc4d5977608892bfedfeba)) +- change config file names in scripts ([37fa872](https://github.com/powerhouse-inc/document-model-electron/commit/37fa872932c8f455e4844e6bd838a65720ad5380)) +- downgraded document drive ([7d287c4](https://github.com/powerhouse-inc/document-model-electron/commit/7d287c4d08d73226e7ba1ec8aabaeeb9a088c8e2)) +- endpoints for connect ([f35f853](https://github.com/powerhouse-inc/document-model-electron/commit/f35f8532e14475e74cc80119e5df0274f2b5f1e7)) +- fix file types ([11d1b18](https://github.com/powerhouse-inc/document-model-electron/commit/11d1b1833442ee302196b3e50f73f0380a372507)) +- fix rerenders when refreshing document drives ([5429f61](https://github.com/powerhouse-inc/document-model-electron/commit/5429f613784535e430809b751d879e60b2f5fb68)) +- fixed build error ([3027483](https://github.com/powerhouse-inc/document-model-electron/commit/30274832089143d616c3c55935735ad6f275e8c2)) +- fixed build error ([f280459](https://github.com/powerhouse-inc/document-model-electron/commit/f2804594d3f764477c06fc4183a2427df9e4c86b)) +- folder selection in folder view ([f7e3681](https://github.com/powerhouse-inc/document-model-electron/commit/f7e36810b5d0223afc64736a9e8ec48e11f7fc57)) +- header text color ([4ee9745](https://github.com/powerhouse-inc/document-model-electron/commit/4ee9745dbbeddf0e2ea41f6d8c4c800d9f5bfd99)) +- heroku nginx config ([0ca0df1](https://github.com/powerhouse-inc/document-model-electron/commit/0ca0df1e853522fb0d21ded35d6f61964c48ea62)) +- lint errors ([ac490b4](https://github.com/powerhouse-inc/document-model-electron/commit/ac490b4cdf693d62d57a865b55952ca7b46bfe94)) +- missing return ([f81d0e9](https://github.com/powerhouse-inc/document-model-electron/commit/f81d0e9a0a58c4079a6359d0dc45f90861d4acb4)) +- only call useMemo in hook ([76a1505](https://github.com/powerhouse-inc/document-model-electron/commit/76a15059e825ec0e1d6215e450ec0339d7c33bbe)) +- package.lock ([1c2a1f5](https://github.com/powerhouse-inc/document-model-electron/commit/1c2a1f55bf33953fa1834da2e84dcc0e93710c7b)) +- properly encode switchboard query ([4c5001f](https://github.com/powerhouse-inc/document-model-electron/commit/4c5001fb3aa34249bee0550331a314872b05c614)) +- remove allow list ([ac2475d](https://github.com/powerhouse-inc/document-model-electron/commit/ac2475d866195b18b23ca094457ccce93b9b0508)) +- remove duplicate package ([364afdd](https://github.com/powerhouse-inc/document-model-electron/commit/364afdde2e2c9c3d6c12d0364e6d0cfd612f5429)) +- remove yalc from package json ([9e184d8](https://github.com/powerhouse-inc/document-model-electron/commit/9e184d8df68d74803e9cbf95f7cf480f97a6d03e)) +- removed unused css import ([6da080c](https://github.com/powerhouse-inc/document-model-electron/commit/6da080c53ea57352b997de941fc303f11a5d2a42)) +- rename node id ([45235e5](https://github.com/powerhouse-inc/document-model-electron/commit/45235e516ce5ea52345c7ff9d1f7238ff4e9e095)) +- renown endpoint ([10461f5](https://github.com/powerhouse-inc/document-model-electron/commit/10461f566fd49a8fd79b23fdaa66871d8d8cff76)) +- renown login ([432e5bc](https://github.com/powerhouse-inc/document-model-electron/commit/432e5bcc1eaa13a043720b0c9d1165222188ecfc)) +- revert setSelectedDocument in addOperation document ([df06317](https://github.com/powerhouse-inc/document-model-electron/commit/df06317cc067b3f25deedb9832c1aa54d308158a)) +- rwa query ([09fcd52](https://github.com/powerhouse-inc/document-model-electron/commit/09fcd52fdf4adbeee9f6a6aa26c1d0309b525510)) +- settings modal typo ([6ef1286](https://github.com/powerhouse-inc/document-model-electron/commit/6ef12861fdda344c7c45f54657b6f56c67217162)) +- show local drives ([893b0df](https://github.com/powerhouse-inc/document-model-electron/commit/893b0dfe9d8004b12114842b082e4672a630aa38)) +- subscribe to server updates when load initial data ([35bf948](https://github.com/powerhouse-inc/document-model-electron/commit/35bf948de2acb3a23684060c978138f2b5ad5f75)) +- suppress less important rules ([679af22](https://github.com/powerhouse-inc/document-model-electron/commit/679af2256b8e6a4739006048056d452ba7fbf988)) +- switchboard endpoint ([2e570f3](https://github.com/powerhouse-inc/document-model-electron/commit/2e570f39bc355e4f387c0d371e8af81a0b92bb38)) +- switchboard link ([78bbdd0](https://github.com/powerhouse-inc/document-model-electron/commit/78bbdd0ec278a7685023cf9482d5990f6cf18a6d)) +- tmp build fix ([4a4be40](https://github.com/powerhouse-inc/document-model-electron/commit/4a4be4098131a946ce919792e3028e0f4e92c46e)) +- undefined default drive ([e5f2749](https://github.com/powerhouse-inc/document-model-electron/commit/e5f27494a57a29c4e4ae921d2014198af8614df3)) +- undefined default drive ([6ad9412](https://github.com/powerhouse-inc/document-model-electron/commit/6ad94127e15ebb43507cd0cae8404e9e2bc17e5b)) +- update selectedDocument when a new operation is dispatched ([b2c4401](https://github.com/powerhouse-inc/document-model-electron/commit/b2c4401c676d1c2621334375f132c6367c234ca5)) +- use selectedDocument as source of truth for document editor ([b5204e7](https://github.com/powerhouse-inc/document-model-electron/commit/b5204e7153028459ef3ace07e719736d971d577a)) +- wait for renown to load ([1d2f019](https://github.com/powerhouse-inc/document-model-electron/commit/1d2f019dc992239873e19e35fe8d5c0dde1396f5)) ### Features -* 🚀 Added ItemsContext integration ([41fc40f](https://github.com/powerhouse-inc/document-model-electron/commit/41fc40f93420101ca9b2ec34e1b4f4cab4a43a4b)) -* 🚀 added readable item path for File Items ([9f6a4ac](https://github.com/powerhouse-inc/document-model-electron/commit/9f6a4ac45318bb757e7c7c60df463e67b066771b)) -* 🚀 Implemented base folder-view design ([22ad4fc](https://github.com/powerhouse-inc/document-model-electron/commit/22ad4fc5046e27016ce1a47eda3282125af4db71)) -* activate queue ([#290](https://github.com/powerhouse-inc/document-model-electron/issues/290)) ([5b5a4fd](https://github.com/powerhouse-inc/document-model-electron/commit/5b5a4fd317ce624cc734f186778e49899dd3b148)) -* add dep array to use effect ([0a88d92](https://github.com/powerhouse-inc/document-model-electron/commit/0a88d92a664b877929978f05753f3d38e471625d)) -* add dependency versions to settings modal ([d01c0de](https://github.com/powerhouse-inc/document-model-electron/commit/d01c0de124cb9af00312e4c53e934d8a233e02af)) -* add design system preset ([a6cb51c](https://github.com/powerhouse-inc/document-model-electron/commit/a6cb51c31d4500d31fd091f165a4f01ae37ff4d7)) -* add duplicate action ([a9d2e29](https://github.com/powerhouse-inc/document-model-electron/commit/a9d2e29318badb84ca51acc9603a2c2dc7f25a0e)) -* add duplicate to folder ([a6212a8](https://github.com/powerhouse-inc/document-model-electron/commit/a6212a8fe3c62f49d1b624e75152e48f80034ed2)) -* add generate assets hook for icons copying ([4c25ebe](https://github.com/powerhouse-inc/document-model-electron/commit/4c25ebecc94941502e35dff28555664b3985f67b)) -* add is allowed to create documents hook ([0a457fc](https://github.com/powerhouse-inc/document-model-electron/commit/0a457fc35f5e78cb16eac1664c3def10b29b5229)) -* add optional dep ([a079cc7](https://github.com/powerhouse-inc/document-model-electron/commit/a079cc799c0d7987193ee209618151c10c743282)) -* add pull trigger on cloud drives ([9f86849](https://github.com/powerhouse-inc/document-model-electron/commit/9f868495ced48b9b23a3d128469ce7ac20d32a57)) -* add react aria dep ([499dda0](https://github.com/powerhouse-inc/document-model-electron/commit/499dda05d52469c85f0dc31d1da5639dc926c9c4)) -* add tailwind eslint plugin ([6e639bc](https://github.com/powerhouse-inc/document-model-electron/commit/6e639bc71bddeafe855c210c0f573cec7b2ce622)) -* add user context to actions ([6a3241d](https://github.com/powerhouse-inc/document-model-electron/commit/6a3241d3e98c58262ffc7bbbcaa66f6f5d8878b3)) -* added base path for nginx ([22a270b](https://github.com/powerhouse-inc/document-model-electron/commit/22a270b978e189a8a9afd20e0ae8f568e8c3336e)) -* added browser key storage ([6562881](https://github.com/powerhouse-inc/document-model-electron/commit/6562881b2eb603b59b55f1595a7f46b96dbbded6)) -* added clear storage setting ([922f5e1](https://github.com/powerhouse-inc/document-model-electron/commit/922f5e19ebd68e07440858c2f7308e3f6d1a2aae)) -* added config to hide drive sections ([aa67a3f](https://github.com/powerhouse-inc/document-model-electron/commit/aa67a3f392891e195fbc24a2ff858b66265eccc5)) -* added csp headers ([bd398aa](https://github.com/powerhouse-inc/document-model-electron/commit/bd398aa0bc6d748b740e17d4ddf197232d701c62)) -* added deeplink support to link to specific drive node ([ae1f97f](https://github.com/powerhouse-inc/document-model-electron/commit/ae1f97fb17e3cbc422a2e242e9ff530c598284a5)) -* added delete drive modal + enable delete file modal confirmation ([4ce110e](https://github.com/powerhouse-inc/document-model-electron/commit/4ce110e7baaaad3ea75a33eff45fab9994184658)) -* added develop environment ([c33ab9d](https://github.com/powerhouse-inc/document-model-electron/commit/c33ab9d6977712a3015d28a0cd27208f7fd727e5)) -* added develop to release cycle ([b9247e6](https://github.com/powerhouse-inc/document-model-electron/commit/b9247e66d19ffc9400caae9403d9b5b06048eacc)) -* added e2e playwright setup ([2d37330](https://github.com/powerhouse-inc/document-model-electron/commit/2d37330f103456dc9d3e24cc4a74d3ed7abb20c8)) -* added editor debug tools ([6928bed](https://github.com/powerhouse-inc/document-model-electron/commit/6928bed61c46322bc341da7bed48dcde60454b9e)) -* added env var to hide document model setting ([840a561](https://github.com/powerhouse-inc/document-model-electron/commit/840a5615ba0b5eafab123b0f0e5c21b3c880d670)) -* added env vars for renown ([f464d68](https://github.com/powerhouse-inc/document-model-electron/commit/f464d68172be57798be364a804b9de0e7f1733c1)) -* added feature flag setup + disable editors for demo ([7fa64f2](https://github.com/powerhouse-inc/document-model-electron/commit/7fa64f2634cea508ebfb8b20732a730dc8b0624b)) -* added gzip and brotli compression to nginx ([f52a0c3](https://github.com/powerhouse-inc/document-model-electron/commit/f52a0c3205b1fd7fc99875fae0ad5a1d5cd24dd5)) -* added heroku deployment for powerhouse staging env ([f4c538a](https://github.com/powerhouse-inc/document-model-electron/commit/f4c538a3e02781276996e30b759d50f248037c86)) -* added modal confirmation when export document with errors ([d22a447](https://github.com/powerhouse-inc/document-model-electron/commit/d22a447c98d50589f61e37cd6284155223824057)) -* added network id to user ([908a50e](https://github.com/powerhouse-inc/document-model-electron/commit/908a50e8df9c1ae7e53940dc801157a5ca665706)) -* added new env var to dockerfile ([64afb40](https://github.com/powerhouse-inc/document-model-electron/commit/64afb40dfec060e8ebfaaeddf8f47f3f925d21be)) -* added nginx config ([069be2c](https://github.com/powerhouse-inc/document-model-electron/commit/069be2cd98aee6fe3a6b686b4112a435e81d11b3)) -* added notification toast ([39ed0c2](https://github.com/powerhouse-inc/document-model-electron/commit/39ed0c2319c2a6e1c2044aff5cda1fd1dc51d24b)) -* added open file and delete file ([01793c8](https://github.com/powerhouse-inc/document-model-electron/commit/01793c8a5f21b8e1701e649cc926c8baa7ece4fe)) -* added opengraph and twitter meta data ([280da91](https://github.com/powerhouse-inc/document-model-electron/commit/280da914bbe8129ead8559d4169ea266fbb327bc)) -* added PH logo ([e9ec94b](https://github.com/powerhouse-inc/document-model-electron/commit/e9ec94b3373495aa0d03673b241c78605b61d396)) -* added prepare script ([abeaa41](https://github.com/powerhouse-inc/document-model-electron/commit/abeaa41bb7bfc7a8d3a7332a9dd0ba0dad088659)) -* added renown login on browser ([5b77016](https://github.com/powerhouse-inc/document-model-electron/commit/5b77016508fd448b23999919a8d9e40bc701e1f9)) -* added rewrite rules to vercel.json config ([b66cdb0](https://github.com/powerhouse-inc/document-model-electron/commit/b66cdb0fb264412710c1d3bf67f06d48df52408c)) -* added route to open document drive node ([6700f13](https://github.com/powerhouse-inc/document-model-electron/commit/6700f132435dd4ce175b036d5e906d1194976ed0)) -* added RWA doc name fix for demo ([05dfd07](https://github.com/powerhouse-inc/document-model-electron/commit/05dfd0781038523b86437ebe1164e20a848c65b2)) -* added scope of work ([742aae0](https://github.com/powerhouse-inc/document-model-electron/commit/742aae0cab712068d2f8dbe2804da3ba802416bd)) -* added sentry dsn to environments ([c4cfef1](https://github.com/powerhouse-inc/document-model-electron/commit/c4cfef161be9db837d29aca316949957412e4c25)) -* added sentry environments ([68fefd0](https://github.com/powerhouse-inc/document-model-electron/commit/68fefd095cbffcec9eeebedb786d5ab7afc9c9bf)) -* added sentry to connect ([d51ec53](https://github.com/powerhouse-inc/document-model-electron/commit/d51ec538d376cb533882f9c4b0ee057d80ce7d1a)) -* added settings modal integration ([dfb9d28](https://github.com/powerhouse-inc/document-model-electron/commit/dfb9d287bb99dec4316c9eee5098816b6f498926)) -* added sidebar login ([2917809](https://github.com/powerhouse-inc/document-model-electron/commit/29178094a9d711e1d7303dde1511a7b73bc37199)) -* added sort nodes + fix input styles + cancel new folders with empty name ([4a2f9fb](https://github.com/powerhouse-inc/document-model-electron/commit/4a2f9fbf2c4dc5427c58633f18e40eb10574600c)) -* added support for delete option in FolderItem and FileItem ([85800ab](https://github.com/powerhouse-inc/document-model-electron/commit/85800ab374da9be041d6e8c547d186a0671a6b91)) -* added support for document in addfile action ([0706ce2](https://github.com/powerhouse-inc/document-model-electron/commit/0706ce25a515024a37b61aec11c930601a0869e5)) -* added support for rename files + create file name modal ([8a76691](https://github.com/powerhouse-inc/document-model-electron/commit/8a76691426d671128c4cfbc98864a9a669e395f3)) -* added support for renown user ([3853b37](https://github.com/powerhouse-inc/document-model-electron/commit/3853b371349ee14051b666a19fbb0b0c564c8ac6)) -* added support for router basename ([251afe2](https://github.com/powerhouse-inc/document-model-electron/commit/251afe2b1d4eab690f9592e25edc6c555e2fe44a)) -* added switchboard link to document files ([5f31b71](https://github.com/powerhouse-inc/document-model-electron/commit/5f31b710a6ae65f42aac65840da422134e48ee6c)) -* added useConnectConfig hook ([a600091](https://github.com/powerhouse-inc/document-model-electron/commit/a60009131ad8600174311b45a696d0c3219ae8ce)) -* added vercel redirect ([7100848](https://github.com/powerhouse-inc/document-model-electron/commit/7100848213fe6e5d0811229e67c82b8997648fa2)) -* added vite env as build args ([c76d4f4](https://github.com/powerhouse-inc/document-model-electron/commit/c76d4f431017df7f9b40a5063a71618084333c24)) -* allow connect-src for renown.id ([7357d4a](https://github.com/powerhouse-inc/document-model-electron/commit/7357d4a4a2c9aff400e55d9c8eed9630aaec4ed5)) -* allow external images ([171efac](https://github.com/powerhouse-inc/document-model-electron/commit/171efac183458b993ac11849345b3fb8765a10f4)) -* allow per deploy drive restrictions ([8779d84](https://github.com/powerhouse-inc/document-model-electron/commit/8779d84cb1be5128ac7b1c63a8666c5d03b2f593)) -* allow url for file ([474ad4d](https://github.com/powerhouse-inc/document-model-electron/commit/474ad4d0b90e9e882bb52d4ca479a4314d15eec1)) -* also disable when env is production ([6f60688](https://github.com/powerhouse-inc/document-model-electron/commit/6f60688a7bcf92e19afe5a4a49a1baa9f0c44507)) -* also do src === target check in move node function ([3e80c1e](https://github.com/powerhouse-inc/document-model-electron/commit/3e80c1e4dface07c9d101c39f6a0dce6d0654a26)) -* apply auto fixes ([b10b111](https://github.com/powerhouse-inc/document-model-electron/commit/b10b111374636b145c52fa15f38ebc0751912483)) -* auto-select first drive if there's no selected path ([daf3083](https://github.com/powerhouse-inc/document-model-electron/commit/daf3083b4fff8dd6f033ce9806affe932fea4f04)) -* bump ([40fd30a](https://github.com/powerhouse-inc/document-model-electron/commit/40fd30a489214a512a7dc43fbe9dea1e0c33604a)) -* bump ([11fb69f](https://github.com/powerhouse-inc/document-model-electron/commit/11fb69f6f507d4240e72b1208982c814bce185a8)) -* bump deps ([7d7206c](https://github.com/powerhouse-inc/document-model-electron/commit/7d7206c5ae9bc7c9e7d26713fc8ff4e7ef5f459d)) -* bump design system ([fb12d70](https://github.com/powerhouse-inc/document-model-electron/commit/fb12d70fcd3237f1cacb0375e99e4a1ae01cc342)) -* bump design system ([4e1d168](https://github.com/powerhouse-inc/document-model-electron/commit/4e1d168298355beea31e2216edeb7b7cef8e8257)) -* bump design system and document model libs ([165e2cc](https://github.com/powerhouse-inc/document-model-electron/commit/165e2ccc41d5d72a6f2f834292c18aa2388ebb86)) -* bump design system to integrate dep version component ([a18c621](https://github.com/powerhouse-inc/document-model-electron/commit/a18c621a24d97b3bfa9f103365b3890f6fd342d7)) -* bump design-system and document-model-lib deps ([7d90802](https://github.com/powerhouse-inc/document-model-electron/commit/7d9080289ce258cf9d299d13b4cf7e092fd51535)) -* bump document drive version ([254a2cd](https://github.com/powerhouse-inc/document-model-electron/commit/254a2cd967b07d22352d38509ad55c2ffcd19bf5)) -* bump libs ([24a9cd3](https://github.com/powerhouse-inc/document-model-electron/commit/24a9cd3427eecc32697f15d7479bf5ee53c95084)) -* bump libs ([b27b036](https://github.com/powerhouse-inc/document-model-electron/commit/b27b036a487fbe989f9f7b585603e15bcdd3fa3a)) -* bump libs ([5fb15d3](https://github.com/powerhouse-inc/document-model-electron/commit/5fb15d321de8649ac2fc6953d9ec5312aeabefeb)) -* bump libs ([1f38863](https://github.com/powerhouse-inc/document-model-electron/commit/1f38863cb3e6fff081218ce59d7cf1a6f3c44621)) -* bump libs ([7df97b0](https://github.com/powerhouse-inc/document-model-electron/commit/7df97b03882c012f035b259aebb85ba42704008b)) -* bump libs ([78baf1d](https://github.com/powerhouse-inc/document-model-electron/commit/78baf1dee6da3f18208f23973f65b5a1b930ba81)) -* bump libs ([d766c36](https://github.com/powerhouse-inc/document-model-electron/commit/d766c36649f3575b2d10bcaf532249437a79b36c)) -* bump libs ([6b3f58f](https://github.com/powerhouse-inc/document-model-electron/commit/6b3f58fd3aad9e628cf2312629280f12984648e2)) -* bump libs ([f98b523](https://github.com/powerhouse-inc/document-model-electron/commit/f98b523acb0e2f2599d4d8927bf8fe5b26374856)) -* bump libs ([2a9a29d](https://github.com/powerhouse-inc/document-model-electron/commit/2a9a29d0d9d129abbbe6b16567151f3ecd0d525e)) -* bump libs ([62117a9](https://github.com/powerhouse-inc/document-model-electron/commit/62117a90490e9bbb32c4a84fdbdb3d930ca7ebfb)) -* bump libs ([62cd43d](https://github.com/powerhouse-inc/document-model-electron/commit/62cd43dd7f80cfd6202c251a9c1af1bad0978b67)) -* bump lint deps ([544fcea](https://github.com/powerhouse-inc/document-model-electron/commit/544fcea7cdcf450756b8deb913c47047a9161849)) -* bump react aria ([3a8ed93](https://github.com/powerhouse-inc/document-model-electron/commit/3a8ed934d371b11c7deb8c8894b43c323d04f06f)) -* cancel rename operation when new name is empty ([6c7a815](https://github.com/powerhouse-inc/document-model-electron/commit/6c7a815500339ebbced23214450750bacbfdebc9)) -* change term to allow list ([af99e9b](https://github.com/powerhouse-inc/document-model-electron/commit/af99e9ba0a3eee7074cc763922caf1656f024e83)) -* changed default renown env variables ([c87ee69](https://github.com/powerhouse-inc/document-model-electron/commit/c87ee697507eba7235150e5156bbe7d0cd121e36)) -* changed nginx image to nginx-brotli ([3d497da](https://github.com/powerhouse-inc/document-model-electron/commit/3d497da7806bdb77a6352aad9ad5f64ddcfa93e4)) -* check if operations with same index are submitted ([b7ad973](https://github.com/powerhouse-inc/document-model-electron/commit/b7ad97307106467a39060da44420515f10ce3921)) -* check user auth on startup ([6820f27](https://github.com/powerhouse-inc/document-model-electron/commit/6820f27a8defb40d72e3580d00fe11f1170bbe22)) -* commented renown env variables ([cd18bab](https://github.com/powerhouse-inc/document-model-electron/commit/cd18babc471fef7b1939bed4478265bd5a38abc1)) -* configure available editors with env variables ([00fad56](https://github.com/powerhouse-inc/document-model-electron/commit/00fad56259d24c1dc9fe3009ec5d4d8d9a51782a)) -* default drive handling improvements ([57be63e](https://github.com/powerhouse-inc/document-model-electron/commit/57be63e34a368769eb159728194f70d60ad98290)) -* detect circular reference in node path ([c113d03](https://github.com/powerhouse-inc/document-model-electron/commit/c113d035118d418ed8006b55112d101f030b4caa)) -* disable dev tools when app is packaged ([2326a77](https://github.com/powerhouse-inc/document-model-electron/commit/2326a7774f74d2c8af949cf55c18b12b38d0b7d9)) -* disable document drive editor by default ([a61249f](https://github.com/powerhouse-inc/document-model-electron/commit/a61249f43e50219b7b6aebc27f63b2d07a4735ec)) -* disallow create operations ([9cb4a8e](https://github.com/powerhouse-inc/document-model-electron/commit/9cb4a8e4d902f67692e696b60c283a3ec59ca137)) -* downloadFile fallback ([9836f4c](https://github.com/powerhouse-inc/document-model-electron/commit/9836f4c1e6edf68d1239f69cfb86324cb1e4d6f0)) -* enable transactions editor ([28967c2](https://github.com/powerhouse-inc/document-model-electron/commit/28967c2c6a4465494f682e55e914bfdd719bc07b)) -* enabled add cloud drive modal ([d54f579](https://github.com/powerhouse-inc/document-model-electron/commit/d54f579bd903e57cf193cdc11a727eed5526971d)) -* enabled drop target for FolderItem ([70aeaad](https://github.com/powerhouse-inc/document-model-electron/commit/70aeaadde2844def0c0cc648dbb8f496d51b96dd)) -* enabled editor controls ([f7aa503](https://github.com/powerhouse-inc/document-model-electron/commit/f7aa50343c0a124056811f1ce29ab0c8539263da)) -* enabled keyboard shortcut for undo/redo ([82fe517](https://github.com/powerhouse-inc/document-model-electron/commit/82fe517dbbf01006c6fbaae0b1c493c57eeeb422)) -* enabled onErrorCallback for dispatch fn ([8bd3c7c](https://github.com/powerhouse-inc/document-model-electron/commit/8bd3c7ccfafbf1d1b32ada0bb941585bd0ee1907)) -* enabled rename option for folders in folder view ([d7a9b34](https://github.com/powerhouse-inc/document-model-electron/commit/d7a9b3490b0cb91d647ecb803513dbea590f04e0)) -* enabled rename option when copy/move an item ([3ef5ea4](https://github.com/powerhouse-inc/document-model-electron/commit/3ef5ea474997e10b670a989460dca939431f3a9a)) -* enabled rwa editor ([b7df486](https://github.com/powerhouse-inc/document-model-electron/commit/b7df486a82c0c044fab5dd434ecceba1a2c24dc1)) -* enabled switchboard link in RWA editor ([cece18e](https://github.com/powerhouse-inc/document-model-electron/commit/cece18e3cb900cbe2fe7d77c0c329a2c430e2539)) -* enabled undo/redo with new document structure ([f6af1e0](https://github.com/powerhouse-inc/document-model-electron/commit/f6af1e002121456e5e9cc4befe6c41ac4ddf8aa9)) -* expand selected path in sidebar on initial path load ([9b5e053](https://github.com/powerhouse-inc/document-model-electron/commit/9b5e0533e7e02d4ae9ea3c6bb01c9827eada160c)) -* export did:key instead of public key ([a358371](https://github.com/powerhouse-inc/document-model-electron/commit/a3583718047f447f2f59a8153e3e2ac15a8cd732)) -* fetch user's ens info ([229a1ae](https://github.com/powerhouse-inc/document-model-electron/commit/229a1ae1bcd145858f867cdf449d9ed2709c8ffc)) -* fix Authorize Connect font color ([25ba2e7](https://github.com/powerhouse-inc/document-model-electron/commit/25ba2e7af5c81c442fed8d919b31a66ba2959e77)) -* fix console warnings ([3024578](https://github.com/powerhouse-inc/document-model-electron/commit/3024578d93e4a70a89a3b3681d34f78a4bd0f1d0)) -* fix css import order ([9216a27](https://github.com/powerhouse-inc/document-model-electron/commit/9216a277e488f73cc892ad015c4ea35dd22bb2a9)) -* fix linux build ([433e6f9](https://github.com/powerhouse-inc/document-model-electron/commit/433e6f9b0a92f72d33e16bbcb71a8965c034c6be)) -* fix logo + position ([278ebeb](https://github.com/powerhouse-inc/document-model-electron/commit/278ebeb39cac2b6d1edb3b096161bb3810669f31)) -* fix rwa document name ([b3f39d1](https://github.com/powerhouse-inc/document-model-electron/commit/b3f39d16c09cb87295d53a7be249b4e2be3895ab)) -* fix sync status ([9ff69fe](https://github.com/powerhouse-inc/document-model-electron/commit/9ff69fedf729b7e70b07bf121c9feed00c1ddc58)) -* fix tailwind class conflicts ([341d8ba](https://github.com/powerhouse-inc/document-model-electron/commit/341d8ba945fd1a20c6014fcb6e5ce77faf458b5f)) -* fixed addDriveOperations ([4c33a1f](https://github.com/powerhouse-inc/document-model-electron/commit/4c33a1f891eeba1b9845768fbc0395cb01dd9e70)) -* fixed base route ([606e919](https://github.com/powerhouse-inc/document-model-electron/commit/606e9191be0f32309e7a0a59e82dc49aa88690bb)) -* fixed default document-models ([0d51154](https://github.com/powerhouse-inc/document-model-electron/commit/0d511546e95a1d5a534f92b549d7120076792040)) -* fixed editors loading ([4fda671](https://github.com/powerhouse-inc/document-model-electron/commit/4fda67192ca075aa66079cbf769548e53e1a2ef3)) -* fixed file import ([23cd72d](https://github.com/powerhouse-inc/document-model-electron/commit/23cd72da07e8fa12bb6f5c739d392432057d6812)) -* fixed file operations error ([5d123af](https://github.com/powerhouse-inc/document-model-electron/commit/5d123af045f0409222bd61404b2249db2a4ec19d)) -* fixes browser key storage ([bfb2a72](https://github.com/powerhouse-inc/document-model-electron/commit/bfb2a725ec7fb4ec507751e52aa743879e39b428)) -* generate key pair on desktop ([ebc0204](https://github.com/powerhouse-inc/document-model-electron/commit/ebc020405e0b289aa4cfdf4935b2afcd53494a7f)) -* go back from fixed version ([41684c4](https://github.com/powerhouse-inc/document-model-electron/commit/41684c4f9cb55bef7f4e8bea46e7ab2eedc26b5c)) -* handle empty string or wrong formatted string in env var ([0099615](https://github.com/powerhouse-inc/document-model-electron/commit/009961513edaba39ad8fb4daacd6dd702a9fedd8)) -* handle null parent folder ([21f9370](https://github.com/powerhouse-inc/document-model-electron/commit/21f93703b08e39c6c97312a232a609a53dacf1c0)) -* handle sync events on node document drive ([3855ce4](https://github.com/powerhouse-inc/document-model-electron/commit/3855ce42a72865ed48e7729d25ec1481e462851d)) -* handle undefined whitelist ([1672fa8](https://github.com/powerhouse-inc/document-model-electron/commit/1672fa86ab863d8d2fc88604a775f524f7b86614)) -* hide searchbar from config ([0bd4444](https://github.com/powerhouse-inc/document-model-electron/commit/0bd4444fca256b28bf413122a870f343963dc801)) -* ignore drives with error ([25a27d5](https://github.com/powerhouse-inc/document-model-electron/commit/25a27d51fed340a22530d5d13e784bf5f9f66fab)) -* ignore operation hashes when importing zip ([634bcd5](https://github.com/powerhouse-inc/document-model-electron/commit/634bcd5cd534d22db9813cc17be28359d94a1e61)) -* ignores document drive result when adding an operation from the editor ([74140e2](https://github.com/powerhouse-inc/document-model-electron/commit/74140e2400ea1c1b5bb9baf5f7b26ed7cbb2a9cb)) -* implemented rename and new folder actions ([45dbf5e](https://github.com/powerhouse-inc/document-model-electron/commit/45dbf5e527841f1107f9d444ac2b76f0dc6fa7c0)) -* import styles from design system ([f7ac8ad](https://github.com/powerhouse-inc/document-model-electron/commit/f7ac8adc2608e8d491618e01b1c98be9f8c43fe2)) -* improved url handling ([32b3dcd](https://github.com/powerhouse-inc/document-model-electron/commit/32b3dcd943518cba4f1f5a82f9dbb5b906096500)) -* install ts-reset ([228b082](https://github.com/powerhouse-inc/document-model-electron/commit/228b082e36b1e689b47d7ed923dfe3347e74ad7d)) -* install vite ([aa66a01](https://github.com/powerhouse-inc/document-model-electron/commit/aa66a01bc96f33984e9d6828fdd93d374916c2c4)) -* lighthouse recomendations ([dd3e594](https://github.com/powerhouse-inc/document-model-electron/commit/dd3e594c198ab2a9deb83420ed8bfb145475ec71)) -* load default drive ([589653f](https://github.com/powerhouse-inc/document-model-electron/commit/589653fab02bc030fbc4a99bea6ed6f4566fd57c)) -* log sync error ([204c38a](https://github.com/powerhouse-inc/document-model-electron/commit/204c38a5f2763edc2006119b8608f6dc39f40dc9)) -* manually install design system ([1b7c676](https://github.com/powerhouse-inc/document-model-electron/commit/1b7c6767c67efed2da903976a62a0bbbaf8a64fe)) -* move helpers ([e12240c](https://github.com/powerhouse-inc/document-model-electron/commit/e12240c40ca8368b9f99f0bdfa5d2881a9a71dc5)) -* move sync status invocation to hook ([dea3fa9](https://github.com/powerhouse-inc/document-model-electron/commit/dea3fa9f5fbcdf9cf355652bf32e2c434a366c13)) -* moved load initial data into a hook ([99c7417](https://github.com/powerhouse-inc/document-model-electron/commit/99c74175b899c9c1d3f7dbf27de174ebd053bdbf)) -* pass allow list credentials to components ([2fadac1](https://github.com/powerhouse-inc/document-model-electron/commit/2fadac18141430445138ec9446d46227cb69723a)) -* pass allow list props to components ([0df5de6](https://github.com/powerhouse-inc/document-model-electron/commit/0df5de6a1062538cfaee7dcd045abb53b5481106)) -* port config files to ts ([f78e7f5](https://github.com/powerhouse-inc/document-model-electron/commit/f78e7f5444a47d637cc6681dd25917524b03b659)) -* re-enable onErrorCallback with new operations error prop ([a408630](https://github.com/powerhouse-inc/document-model-electron/commit/a408630ee77596a83f2c3ee26a17d44447537647)) -* re-generate package-lock.json ([e48ac3d](https://github.com/powerhouse-inc/document-model-electron/commit/e48ac3dd16d25901565eaed94e4e82b4283f7287)) -* re-implemented copy/move nodes with new DocumentDrive ([c4fad11](https://github.com/powerhouse-inc/document-model-electron/commit/c4fad117827b929d69dd73824d46ef33f767c57f)) -* readd prepare script ([ad4577e](https://github.com/powerhouse-inc/document-model-electron/commit/ad4577ee92a812a4227e03f2923cbb5b5ca0efdc)) -* refresh UI when there are drive changes ([fca3c95](https://github.com/powerhouse-inc/document-model-electron/commit/fca3c9576679e1bdcb8cf017cad3e885cd245fdf)) -* regenerate lock ([0269b0b](https://github.com/powerhouse-inc/document-model-electron/commit/0269b0b47945bc6d53928ec975f3b0c4557706a9)) -* regenerate lockfile ([efa2f7f](https://github.com/powerhouse-inc/document-model-electron/commit/efa2f7f380e1e558b82a616f8d1ef1cda021371e)) -* regenerate lockfile ([c8aac44](https://github.com/powerhouse-inc/document-model-electron/commit/c8aac44f8cb0184962e5567ea3252e14cc686cce)) -* reinstall with npm ([f790b6c](https://github.com/powerhouse-inc/document-model-electron/commit/f790b6c8611e000b123723c014ef35c1ee9aa55b)) -* remove check ([1db971c](https://github.com/powerhouse-inc/document-model-electron/commit/1db971cf324e2ca0e92c8f9b01614f7ef64f3d6a)) -* remove csp ([b940c38](https://github.com/powerhouse-inc/document-model-electron/commit/b940c3849bb1f804c6d2d8ca7e2bced61be81a95)) -* remove default node logic ([217d6e5](https://github.com/powerhouse-inc/document-model-electron/commit/217d6e5ac54033bda7bd36473712e048fe775623)) -* remove hello from content ([decd9c4](https://github.com/powerhouse-inc/document-model-electron/commit/decd9c4a9dbce3d9ecacbee06ad91d5959b86f84)) -* remove old tailwind classes ([10a8b95](https://github.com/powerhouse-inc/document-model-electron/commit/10a8b95edbcf212c17cb9011b13b32d2b924a767)) -* remove redundant config ([0c4d334](https://github.com/powerhouse-inc/document-model-electron/commit/0c4d334f3f75ccef7597470e1ce2a490b449eca8)) -* remove redundant use effect ([9bb2950](https://github.com/powerhouse-inc/document-model-electron/commit/9bb29508084badc11d535fab2ba241fe8021bc5f)) -* remove restriction to send operations ([dc620c5](https://github.com/powerhouse-inc/document-model-electron/commit/dc620c5fda0dd9adff480ee2ea3494b2b1698cc5)) -* remove scrollbar styles ([a9a3080](https://github.com/powerhouse-inc/document-model-electron/commit/a9a30803d3bf1cf91a82cc9bac6133c9bb335691)) -* removed electron-deeplink pkg and updated deep links ([5cec527](https://github.com/powerhouse-inc/document-model-electron/commit/5cec527acc442886f35261affa1619efd30e2212)) -* removed networkId from signer ([89c2a1c](https://github.com/powerhouse-inc/document-model-electron/commit/89c2a1c676170878b4cb307b073b53e28bb9e1f5)) -* removed queue timeout ([8b517b7](https://github.com/powerhouse-inc/document-model-electron/commit/8b517b78c1529abe5c7ee6e69d1990c56c4fbb6e)) -* removed re-renders and prevent add default drive being called twice ([3104848](https://github.com/powerhouse-inc/document-model-electron/commit/3104848107ff53daea46d36930be8ca9e3f522e6)) -* removed usehooks-ts dep ([05ca45e](https://github.com/powerhouse-inc/document-model-electron/commit/05ca45ef3227c50a7d44bfd7c8d8730a89d3c369)) -* rename document drive node when document model name is changed ([b9008f7](https://github.com/powerhouse-inc/document-model-electron/commit/b9008f7e08e340329e16c0743133a09d044cb1dd)) -* replaced env vars by client.config file ([28f7a2f](https://github.com/powerhouse-inc/document-model-electron/commit/28f7a2f5fbe97403f4ed317303f19c43b1cbf300)) -* replaced feature flags context by atomWithStorage ([071b7aa](https://github.com/powerhouse-inc/document-model-electron/commit/071b7aacb44792851b45946f41abecaaa99f5633)) -* replaced sidebar input header by connect logo ([a845dfd](https://github.com/powerhouse-inc/document-model-electron/commit/a845dfd14df5167e25fe5530ae03e9400bb36d45)) -* separate browser storage ([9ea89b8](https://github.com/powerhouse-inc/document-model-electron/commit/9ea89b80a5094eaa56a2d3b417a0e8fb05c0ae91)) -* separated error and conflict messages for drive status notification ([e80ccfe](https://github.com/powerhouse-inc/document-model-electron/commit/e80ccfeff3bf1e739af33c0da97f5258f5007e5a)) -* set queue timeout to 10ms ([6c87c92](https://github.com/powerhouse-inc/document-model-electron/commit/6c87c92e4e4ed2246c642f6575db1b31c6611b06)) -* show success sync toast only after recover from error sync ([5c2a47a](https://github.com/powerhouse-inc/document-model-electron/commit/5c2a47a2d0232e13d9fd6047bbe88c3faee6caa3)) -* simplify copy ([2cd60c3](https://github.com/powerhouse-inc/document-model-electron/commit/2cd60c3957685049fc6ff64beb094b409bbd4f32)) -* support add drive ([f827d33](https://github.com/powerhouse-inc/document-model-electron/commit/f827d338d4b6b49bde54f58ec6eb133756f3c765)) -* support multiple separate allow lists ([74d6152](https://github.com/powerhouse-inc/document-model-electron/commit/74d615236b6a75d0602476a826787e37a3ab263f)) -* switch to using vars from design system ([587c258](https://github.com/powerhouse-inc/document-model-electron/commit/587c258c1f47b8f5f1004252aec491d91b14eb5a)) -* trigger build ([e85bf95](https://github.com/powerhouse-inc/document-model-electron/commit/e85bf95f96ece3f59ead521fe39588630203900d)) -* update connect opengraph meta data ([32b3720](https://github.com/powerhouse-inc/document-model-electron/commit/32b372038f27d9a062ad78de6fde36a70cf2d6d8)) -* update deeplink protocol ([45d0a58](https://github.com/powerhouse-inc/document-model-electron/commit/45d0a58d266bcc369fcef7e0a1cc88c71757e1fc)) -* update dependencies and increase pull interval to 3 seconds ([66d8aea](https://github.com/powerhouse-inc/document-model-electron/commit/66d8aea256ccc6f742347db03bf06901b777bc74)) -* update deps ([3b6fa8d](https://github.com/powerhouse-inc/document-model-electron/commit/3b6fa8daeedec0549451490c9a7efec733ab2b75)) -* update document drive ([ff37742](https://github.com/powerhouse-inc/document-model-electron/commit/ff37742d857e9445a30a4122f12ec8585f5d129e)) -* update document drive dep ([ad31bf0](https://github.com/powerhouse-inc/document-model-electron/commit/ad31bf08d09650a9c335e18cf7153c7bd7667081)) -* update document drive dep ([5baaf20](https://github.com/powerhouse-inc/document-model-electron/commit/5baaf2006c71885132bbdabb59976acf5cde8ce2)) -* update document-drive ([534fa80](https://github.com/powerhouse-inc/document-model-electron/commit/534fa802984035735710d220f2496add04704b64)) -* update document-drive ver ([393388e](https://github.com/powerhouse-inc/document-model-electron/commit/393388e0a45f0275e5ab6824695d70b931891777)) -* update document-model and document-drive ver ([d66225a](https://github.com/powerhouse-inc/document-model-electron/commit/d66225aefa67ed761e8c5a1f36b62685666f7d84)) -* update document-model and document-drive versions ([8d1f869](https://github.com/powerhouse-inc/document-model-electron/commit/8d1f8691bf1511aca38f96a1ca7488e9d6104af2)) -* update document-model dep ([c865770](https://github.com/powerhouse-inc/document-model-electron/commit/c8657706b488631cf5955a6677ae5e4e1252bc9c)) -* update document-model document-drive and document-model-libs deps ([aee1dce](https://github.com/powerhouse-inc/document-model-electron/commit/aee1dce7f1c927ca24ac5283ab3d4d48ca85b7f6)) -* update document-model lib to v1.0.29 ([9190869](https://github.com/powerhouse-inc/document-model-electron/commit/9190869ddea006ce0cad8c3fa264d83535e16950)) -* update drive sync icon on syncStatus event ([ded596e](https://github.com/powerhouse-inc/document-model-electron/commit/ded596eb4761ce7003e285a0b283d45242b66444)) -* update editor when opened document is changed ([88e1cad](https://github.com/powerhouse-inc/document-model-electron/commit/88e1cad21d61cc9675f53a4a67e51e8712b22696)) -* update env var names ([42ba363](https://github.com/powerhouse-inc/document-model-electron/commit/42ba363359b08b076fdb7d39fa7df9b2c7d963ba)) -* update experimental deps ([12d28d6](https://github.com/powerhouse-inc/document-model-electron/commit/12d28d695a58dfc9bb2ff1e288b6ea4ef39f1267)) -* update lint config ([170b252](https://github.com/powerhouse-inc/document-model-electron/commit/170b252cd35fe786147f4e5306948eecf6a3990c)) -* update submit handler ([9cd1a10](https://github.com/powerhouse-inc/document-model-electron/commit/9cd1a10a0fee03bf4ddd2ace4f1a3796e1b4de30)) -* update to use new sync icons ([e1cbf1d](https://github.com/powerhouse-inc/document-model-electron/commit/e1cbf1d22de3159c247b3356577f2fdc519a51c5)) -* update url params logic ([6450975](https://github.com/powerhouse-inc/document-model-electron/commit/645097513096fa26327e60ea510d2e4bd628a870)) -* updated deps ([e41734f](https://github.com/powerhouse-inc/document-model-electron/commit/e41734f70b7b8acae90c167df5884820ee99c3c9)) -* updated deps ([a328cd9](https://github.com/powerhouse-inc/document-model-electron/commit/a328cd93ec131d36f61c45fda4863f315fb3a2cc)) -* updated design system dep ([b378a42](https://github.com/powerhouse-inc/document-model-electron/commit/b378a420bad20debc06aeeb376401ecb311889ce)) -* updated document drive ([4b588b0](https://github.com/powerhouse-inc/document-model-electron/commit/4b588b0f602debb6d069c3c4d580292b87a94337)) -* updated document drive ([b0df564](https://github.com/powerhouse-inc/document-model-electron/commit/b0df564c0952c60b3202c392e9fb1a23e401bea8)) -* updated document drive lib ([5f30983](https://github.com/powerhouse-inc/document-model-electron/commit/5f30983ab3f07462d842e3f464c0723d3f8785dd)) -* updated document-drive ver ([f7b9c7d](https://github.com/powerhouse-inc/document-model-electron/commit/f7b9c7df9d9b569b296d599998e3a500bfb8735c)) -* updated document-drive version ([a92dd24](https://github.com/powerhouse-inc/document-model-electron/commit/a92dd24c3ae638ff02587623a3d33af7fd89e2b6)) -* updated document-drive@1.0.0-experimental.2 ([c2b2816](https://github.com/powerhouse-inc/document-model-electron/commit/c2b2816cc7eea0346ea7d958b39f4b25796bb2a0)) -* updated document-drive@1.0.0-experimental.4 ([f31d12d](https://github.com/powerhouse-inc/document-model-electron/commit/f31d12d18404882a1f3af00f9bca6ab79d7a667e)) -* updated document-model dep ([f487cff](https://github.com/powerhouse-inc/document-model-electron/commit/f487cff99198d7cc3d8fd9db944ca394cc788dec)) -* updated document-model lib ([9db149e](https://github.com/powerhouse-inc/document-model-electron/commit/9db149ecc91926c02f2fe8479ca08958b66977d3)) -* updated document-model-libs ([b0bb1d2](https://github.com/powerhouse-inc/document-model-electron/commit/b0bb1d2ef530ecacc8f722322149866f8fbce03d)) -* updated document-model-libs and design-system ver ([d4ab8f8](https://github.com/powerhouse-inc/document-model-electron/commit/d4ab8f881d0e04d5bf68e0748205cf25fcce90e1)) -* updated package.lock ([3c334f4](https://github.com/powerhouse-inc/document-model-electron/commit/3c334f4f714ec6a63ce63bbc7f60d0e67f99b17b)) -* updated release script ([639b2a5](https://github.com/powerhouse-inc/document-model-electron/commit/639b2a50405d32f884f941457702ba12a6fa3a6b)) -* updated rwa query ([3709cfc](https://github.com/powerhouse-inc/document-model-electron/commit/3709cfc9543851fe77f8a930d1e0806d552069d6)) -* use default values if there is a missing key for feature flags ([cdb728a](https://github.com/powerhouse-inc/document-model-electron/commit/cdb728a3964ca1183bd38743744a8bdf51e04fb6)) -* use drive icon ([c82bebb](https://github.com/powerhouse-inc/document-model-electron/commit/c82bebb00516c95b2f6f48102672bf70333f9477)) -* use memoryBrowser on packaged app ([2d11200](https://github.com/powerhouse-inc/document-model-electron/commit/2d11200a47c861429edd0ad5c6a4eb13b46a7363)) -* use new svgr syntax ([e1db3b9](https://github.com/powerhouse-inc/document-model-electron/commit/e1db3b95b5330f95893b5511df8041ed04d33fb7)) -* use not equal ([8e33089](https://github.com/powerhouse-inc/document-model-electron/commit/8e330890f658224bc1e37d6504765e3d01cc7ede)) -* use setTimeout as fallback for requestIdleCallback ([730c8f2](https://github.com/powerhouse-inc/document-model-electron/commit/730c8f292eec07908410f7f2949c045bab8094fe)) -* use tailwind styles ([53dc69f](https://github.com/powerhouse-inc/document-model-electron/commit/53dc69f69663b4d315c03b57a64b87b274e698cd)) -* use yarn ([812fe5a](https://github.com/powerhouse-inc/document-model-electron/commit/812fe5af48fdea5cb5955f6b8336604722476b44)) -* waits 50ms for new operations to make a single addOperations call ([d4c9796](https://github.com/powerhouse-inc/document-model-electron/commit/d4c97965cc9b83128f6be225a27a64c2f88795f3)) -* waits for document drive server to be loaded before checking default drive is added ([fc10ee8](https://github.com/powerhouse-inc/document-model-electron/commit/fc10ee8428d9d9c24c6cef38cd104ac5f79d759c)) - +- 🚀 Added ItemsContext integration ([41fc40f](https://github.com/powerhouse-inc/document-model-electron/commit/41fc40f93420101ca9b2ec34e1b4f4cab4a43a4b)) +- 🚀 added readable item path for File Items ([9f6a4ac](https://github.com/powerhouse-inc/document-model-electron/commit/9f6a4ac45318bb757e7c7c60df463e67b066771b)) +- 🚀 Implemented base folder-view design ([22ad4fc](https://github.com/powerhouse-inc/document-model-electron/commit/22ad4fc5046e27016ce1a47eda3282125af4db71)) +- activate queue ([#290](https://github.com/powerhouse-inc/document-model-electron/issues/290)) ([5b5a4fd](https://github.com/powerhouse-inc/document-model-electron/commit/5b5a4fd317ce624cc734f186778e49899dd3b148)) +- add dep array to use effect ([0a88d92](https://github.com/powerhouse-inc/document-model-electron/commit/0a88d92a664b877929978f05753f3d38e471625d)) +- add dependency versions to settings modal ([d01c0de](https://github.com/powerhouse-inc/document-model-electron/commit/d01c0de124cb9af00312e4c53e934d8a233e02af)) +- add design system preset ([a6cb51c](https://github.com/powerhouse-inc/document-model-electron/commit/a6cb51c31d4500d31fd091f165a4f01ae37ff4d7)) +- add duplicate action ([a9d2e29](https://github.com/powerhouse-inc/document-model-electron/commit/a9d2e29318badb84ca51acc9603a2c2dc7f25a0e)) +- add duplicate to folder ([a6212a8](https://github.com/powerhouse-inc/document-model-electron/commit/a6212a8fe3c62f49d1b624e75152e48f80034ed2)) +- add generate assets hook for icons copying ([4c25ebe](https://github.com/powerhouse-inc/document-model-electron/commit/4c25ebecc94941502e35dff28555664b3985f67b)) +- add is allowed to create documents hook ([0a457fc](https://github.com/powerhouse-inc/document-model-electron/commit/0a457fc35f5e78cb16eac1664c3def10b29b5229)) +- add optional dep ([a079cc7](https://github.com/powerhouse-inc/document-model-electron/commit/a079cc799c0d7987193ee209618151c10c743282)) +- add pull trigger on cloud drives ([9f86849](https://github.com/powerhouse-inc/document-model-electron/commit/9f868495ced48b9b23a3d128469ce7ac20d32a57)) +- add react aria dep ([499dda0](https://github.com/powerhouse-inc/document-model-electron/commit/499dda05d52469c85f0dc31d1da5639dc926c9c4)) +- add tailwind eslint plugin ([6e639bc](https://github.com/powerhouse-inc/document-model-electron/commit/6e639bc71bddeafe855c210c0f573cec7b2ce622)) +- add user context to actions ([6a3241d](https://github.com/powerhouse-inc/document-model-electron/commit/6a3241d3e98c58262ffc7bbbcaa66f6f5d8878b3)) +- added base path for nginx ([22a270b](https://github.com/powerhouse-inc/document-model-electron/commit/22a270b978e189a8a9afd20e0ae8f568e8c3336e)) +- added browser key storage ([6562881](https://github.com/powerhouse-inc/document-model-electron/commit/6562881b2eb603b59b55f1595a7f46b96dbbded6)) +- added clear storage setting ([922f5e1](https://github.com/powerhouse-inc/document-model-electron/commit/922f5e19ebd68e07440858c2f7308e3f6d1a2aae)) +- added config to hide drive sections ([aa67a3f](https://github.com/powerhouse-inc/document-model-electron/commit/aa67a3f392891e195fbc24a2ff858b66265eccc5)) +- added csp headers ([bd398aa](https://github.com/powerhouse-inc/document-model-electron/commit/bd398aa0bc6d748b740e17d4ddf197232d701c62)) +- added deeplink support to link to specific drive node ([ae1f97f](https://github.com/powerhouse-inc/document-model-electron/commit/ae1f97fb17e3cbc422a2e242e9ff530c598284a5)) +- added delete drive modal + enable delete file modal confirmation ([4ce110e](https://github.com/powerhouse-inc/document-model-electron/commit/4ce110e7baaaad3ea75a33eff45fab9994184658)) +- added develop environment ([c33ab9d](https://github.com/powerhouse-inc/document-model-electron/commit/c33ab9d6977712a3015d28a0cd27208f7fd727e5)) +- added develop to release cycle ([b9247e6](https://github.com/powerhouse-inc/document-model-electron/commit/b9247e66d19ffc9400caae9403d9b5b06048eacc)) +- added e2e playwright setup ([2d37330](https://github.com/powerhouse-inc/document-model-electron/commit/2d37330f103456dc9d3e24cc4a74d3ed7abb20c8)) +- added editor debug tools ([6928bed](https://github.com/powerhouse-inc/document-model-electron/commit/6928bed61c46322bc341da7bed48dcde60454b9e)) +- added env var to hide document model setting ([840a561](https://github.com/powerhouse-inc/document-model-electron/commit/840a5615ba0b5eafab123b0f0e5c21b3c880d670)) +- added env vars for renown ([f464d68](https://github.com/powerhouse-inc/document-model-electron/commit/f464d68172be57798be364a804b9de0e7f1733c1)) +- added feature flag setup + disable editors for demo ([7fa64f2](https://github.com/powerhouse-inc/document-model-electron/commit/7fa64f2634cea508ebfb8b20732a730dc8b0624b)) +- added gzip and brotli compression to nginx ([f52a0c3](https://github.com/powerhouse-inc/document-model-electron/commit/f52a0c3205b1fd7fc99875fae0ad5a1d5cd24dd5)) +- added heroku deployment for powerhouse staging env ([f4c538a](https://github.com/powerhouse-inc/document-model-electron/commit/f4c538a3e02781276996e30b759d50f248037c86)) +- added modal confirmation when export document with errors ([d22a447](https://github.com/powerhouse-inc/document-model-electron/commit/d22a447c98d50589f61e37cd6284155223824057)) +- added network id to user ([908a50e](https://github.com/powerhouse-inc/document-model-electron/commit/908a50e8df9c1ae7e53940dc801157a5ca665706)) +- added new env var to dockerfile ([64afb40](https://github.com/powerhouse-inc/document-model-electron/commit/64afb40dfec060e8ebfaaeddf8f47f3f925d21be)) +- added nginx config ([069be2c](https://github.com/powerhouse-inc/document-model-electron/commit/069be2cd98aee6fe3a6b686b4112a435e81d11b3)) +- added notification toast ([39ed0c2](https://github.com/powerhouse-inc/document-model-electron/commit/39ed0c2319c2a6e1c2044aff5cda1fd1dc51d24b)) +- added open file and delete file ([01793c8](https://github.com/powerhouse-inc/document-model-electron/commit/01793c8a5f21b8e1701e649cc926c8baa7ece4fe)) +- added opengraph and twitter meta data ([280da91](https://github.com/powerhouse-inc/document-model-electron/commit/280da914bbe8129ead8559d4169ea266fbb327bc)) +- added PH logo ([e9ec94b](https://github.com/powerhouse-inc/document-model-electron/commit/e9ec94b3373495aa0d03673b241c78605b61d396)) +- added prepare script ([abeaa41](https://github.com/powerhouse-inc/document-model-electron/commit/abeaa41bb7bfc7a8d3a7332a9dd0ba0dad088659)) +- added renown login on browser ([5b77016](https://github.com/powerhouse-inc/document-model-electron/commit/5b77016508fd448b23999919a8d9e40bc701e1f9)) +- added rewrite rules to vercel.json config ([b66cdb0](https://github.com/powerhouse-inc/document-model-electron/commit/b66cdb0fb264412710c1d3bf67f06d48df52408c)) +- added route to open document drive node ([6700f13](https://github.com/powerhouse-inc/document-model-electron/commit/6700f132435dd4ce175b036d5e906d1194976ed0)) +- added RWA doc name fix for demo ([05dfd07](https://github.com/powerhouse-inc/document-model-electron/commit/05dfd0781038523b86437ebe1164e20a848c65b2)) +- added scope of work ([742aae0](https://github.com/powerhouse-inc/document-model-electron/commit/742aae0cab712068d2f8dbe2804da3ba802416bd)) +- added sentry dsn to environments ([c4cfef1](https://github.com/powerhouse-inc/document-model-electron/commit/c4cfef161be9db837d29aca316949957412e4c25)) +- added sentry environments ([68fefd0](https://github.com/powerhouse-inc/document-model-electron/commit/68fefd095cbffcec9eeebedb786d5ab7afc9c9bf)) +- added sentry to connect ([d51ec53](https://github.com/powerhouse-inc/document-model-electron/commit/d51ec538d376cb533882f9c4b0ee057d80ce7d1a)) +- added settings modal integration ([dfb9d28](https://github.com/powerhouse-inc/document-model-electron/commit/dfb9d287bb99dec4316c9eee5098816b6f498926)) +- added sidebar login ([2917809](https://github.com/powerhouse-inc/document-model-electron/commit/29178094a9d711e1d7303dde1511a7b73bc37199)) +- added sort nodes + fix input styles + cancel new folders with empty name ([4a2f9fb](https://github.com/powerhouse-inc/document-model-electron/commit/4a2f9fbf2c4dc5427c58633f18e40eb10574600c)) +- added support for delete option in FolderItem and FileItem ([85800ab](https://github.com/powerhouse-inc/document-model-electron/commit/85800ab374da9be041d6e8c547d186a0671a6b91)) +- added support for document in addfile action ([0706ce2](https://github.com/powerhouse-inc/document-model-electron/commit/0706ce25a515024a37b61aec11c930601a0869e5)) +- added support for rename files + create file name modal ([8a76691](https://github.com/powerhouse-inc/document-model-electron/commit/8a76691426d671128c4cfbc98864a9a669e395f3)) +- added support for renown user ([3853b37](https://github.com/powerhouse-inc/document-model-electron/commit/3853b371349ee14051b666a19fbb0b0c564c8ac6)) +- added support for router basename ([251afe2](https://github.com/powerhouse-inc/document-model-electron/commit/251afe2b1d4eab690f9592e25edc6c555e2fe44a)) +- added switchboard link to document files ([5f31b71](https://github.com/powerhouse-inc/document-model-electron/commit/5f31b710a6ae65f42aac65840da422134e48ee6c)) +- added useConnectConfig hook ([a600091](https://github.com/powerhouse-inc/document-model-electron/commit/a60009131ad8600174311b45a696d0c3219ae8ce)) +- added vercel redirect ([7100848](https://github.com/powerhouse-inc/document-model-electron/commit/7100848213fe6e5d0811229e67c82b8997648fa2)) +- added vite env as build args ([c76d4f4](https://github.com/powerhouse-inc/document-model-electron/commit/c76d4f431017df7f9b40a5063a71618084333c24)) +- allow connect-src for renown.id ([7357d4a](https://github.com/powerhouse-inc/document-model-electron/commit/7357d4a4a2c9aff400e55d9c8eed9630aaec4ed5)) +- allow external images ([171efac](https://github.com/powerhouse-inc/document-model-electron/commit/171efac183458b993ac11849345b3fb8765a10f4)) +- allow per deploy drive restrictions ([8779d84](https://github.com/powerhouse-inc/document-model-electron/commit/8779d84cb1be5128ac7b1c63a8666c5d03b2f593)) +- allow url for file ([474ad4d](https://github.com/powerhouse-inc/document-model-electron/commit/474ad4d0b90e9e882bb52d4ca479a4314d15eec1)) +- also disable when env is production ([6f60688](https://github.com/powerhouse-inc/document-model-electron/commit/6f60688a7bcf92e19afe5a4a49a1baa9f0c44507)) +- also do src === target check in move node function ([3e80c1e](https://github.com/powerhouse-inc/document-model-electron/commit/3e80c1e4dface07c9d101c39f6a0dce6d0654a26)) +- apply auto fixes ([b10b111](https://github.com/powerhouse-inc/document-model-electron/commit/b10b111374636b145c52fa15f38ebc0751912483)) +- auto-select first drive if there's no selected path ([daf3083](https://github.com/powerhouse-inc/document-model-electron/commit/daf3083b4fff8dd6f033ce9806affe932fea4f04)) +- bump ([40fd30a](https://github.com/powerhouse-inc/document-model-electron/commit/40fd30a489214a512a7dc43fbe9dea1e0c33604a)) +- bump ([11fb69f](https://github.com/powerhouse-inc/document-model-electron/commit/11fb69f6f507d4240e72b1208982c814bce185a8)) +- bump deps ([7d7206c](https://github.com/powerhouse-inc/document-model-electron/commit/7d7206c5ae9bc7c9e7d26713fc8ff4e7ef5f459d)) +- bump design system ([fb12d70](https://github.com/powerhouse-inc/document-model-electron/commit/fb12d70fcd3237f1cacb0375e99e4a1ae01cc342)) +- bump design system ([4e1d168](https://github.com/powerhouse-inc/document-model-electron/commit/4e1d168298355beea31e2216edeb7b7cef8e8257)) +- bump design system and document model libs ([165e2cc](https://github.com/powerhouse-inc/document-model-electron/commit/165e2ccc41d5d72a6f2f834292c18aa2388ebb86)) +- bump design system to integrate dep version component ([a18c621](https://github.com/powerhouse-inc/document-model-electron/commit/a18c621a24d97b3bfa9f103365b3890f6fd342d7)) +- bump design-system and document-model-lib deps ([7d90802](https://github.com/powerhouse-inc/document-model-electron/commit/7d9080289ce258cf9d299d13b4cf7e092fd51535)) +- bump document drive version ([254a2cd](https://github.com/powerhouse-inc/document-model-electron/commit/254a2cd967b07d22352d38509ad55c2ffcd19bf5)) +- bump libs ([24a9cd3](https://github.com/powerhouse-inc/document-model-electron/commit/24a9cd3427eecc32697f15d7479bf5ee53c95084)) +- bump libs ([b27b036](https://github.com/powerhouse-inc/document-model-electron/commit/b27b036a487fbe989f9f7b585603e15bcdd3fa3a)) +- bump libs ([5fb15d3](https://github.com/powerhouse-inc/document-model-electron/commit/5fb15d321de8649ac2fc6953d9ec5312aeabefeb)) +- bump libs ([1f38863](https://github.com/powerhouse-inc/document-model-electron/commit/1f38863cb3e6fff081218ce59d7cf1a6f3c44621)) +- bump libs ([7df97b0](https://github.com/powerhouse-inc/document-model-electron/commit/7df97b03882c012f035b259aebb85ba42704008b)) +- bump libs ([78baf1d](https://github.com/powerhouse-inc/document-model-electron/commit/78baf1dee6da3f18208f23973f65b5a1b930ba81)) +- bump libs ([d766c36](https://github.com/powerhouse-inc/document-model-electron/commit/d766c36649f3575b2d10bcaf532249437a79b36c)) +- bump libs ([6b3f58f](https://github.com/powerhouse-inc/document-model-electron/commit/6b3f58fd3aad9e628cf2312629280f12984648e2)) +- bump libs ([f98b523](https://github.com/powerhouse-inc/document-model-electron/commit/f98b523acb0e2f2599d4d8927bf8fe5b26374856)) +- bump libs ([2a9a29d](https://github.com/powerhouse-inc/document-model-electron/commit/2a9a29d0d9d129abbbe6b16567151f3ecd0d525e)) +- bump libs ([62117a9](https://github.com/powerhouse-inc/document-model-electron/commit/62117a90490e9bbb32c4a84fdbdb3d930ca7ebfb)) +- bump libs ([62cd43d](https://github.com/powerhouse-inc/document-model-electron/commit/62cd43dd7f80cfd6202c251a9c1af1bad0978b67)) +- bump lint deps ([544fcea](https://github.com/powerhouse-inc/document-model-electron/commit/544fcea7cdcf450756b8deb913c47047a9161849)) +- bump react aria ([3a8ed93](https://github.com/powerhouse-inc/document-model-electron/commit/3a8ed934d371b11c7deb8c8894b43c323d04f06f)) +- cancel rename operation when new name is empty ([6c7a815](https://github.com/powerhouse-inc/document-model-electron/commit/6c7a815500339ebbced23214450750bacbfdebc9)) +- change term to allow list ([af99e9b](https://github.com/powerhouse-inc/document-model-electron/commit/af99e9ba0a3eee7074cc763922caf1656f024e83)) +- changed default renown env variables ([c87ee69](https://github.com/powerhouse-inc/document-model-electron/commit/c87ee697507eba7235150e5156bbe7d0cd121e36)) +- changed nginx image to nginx-brotli ([3d497da](https://github.com/powerhouse-inc/document-model-electron/commit/3d497da7806bdb77a6352aad9ad5f64ddcfa93e4)) +- check if operations with same index are submitted ([b7ad973](https://github.com/powerhouse-inc/document-model-electron/commit/b7ad97307106467a39060da44420515f10ce3921)) +- check user auth on startup ([6820f27](https://github.com/powerhouse-inc/document-model-electron/commit/6820f27a8defb40d72e3580d00fe11f1170bbe22)) +- commented renown env variables ([cd18bab](https://github.com/powerhouse-inc/document-model-electron/commit/cd18babc471fef7b1939bed4478265bd5a38abc1)) +- configure available editors with env variables ([00fad56](https://github.com/powerhouse-inc/document-model-electron/commit/00fad56259d24c1dc9fe3009ec5d4d8d9a51782a)) +- default drive handling improvements ([57be63e](https://github.com/powerhouse-inc/document-model-electron/commit/57be63e34a368769eb159728194f70d60ad98290)) +- detect circular reference in node path ([c113d03](https://github.com/powerhouse-inc/document-model-electron/commit/c113d035118d418ed8006b55112d101f030b4caa)) +- disable dev tools when app is packaged ([2326a77](https://github.com/powerhouse-inc/document-model-electron/commit/2326a7774f74d2c8af949cf55c18b12b38d0b7d9)) +- disable document drive editor by default ([a61249f](https://github.com/powerhouse-inc/document-model-electron/commit/a61249f43e50219b7b6aebc27f63b2d07a4735ec)) +- disallow create operations ([9cb4a8e](https://github.com/powerhouse-inc/document-model-electron/commit/9cb4a8e4d902f67692e696b60c283a3ec59ca137)) +- downloadFile fallback ([9836f4c](https://github.com/powerhouse-inc/document-model-electron/commit/9836f4c1e6edf68d1239f69cfb86324cb1e4d6f0)) +- enable transactions editor ([28967c2](https://github.com/powerhouse-inc/document-model-electron/commit/28967c2c6a4465494f682e55e914bfdd719bc07b)) +- enabled add cloud drive modal ([d54f579](https://github.com/powerhouse-inc/document-model-electron/commit/d54f579bd903e57cf193cdc11a727eed5526971d)) +- enabled drop target for FolderItem ([70aeaad](https://github.com/powerhouse-inc/document-model-electron/commit/70aeaadde2844def0c0cc648dbb8f496d51b96dd)) +- enabled editor controls ([f7aa503](https://github.com/powerhouse-inc/document-model-electron/commit/f7aa50343c0a124056811f1ce29ab0c8539263da)) +- enabled keyboard shortcut for undo/redo ([82fe517](https://github.com/powerhouse-inc/document-model-electron/commit/82fe517dbbf01006c6fbaae0b1c493c57eeeb422)) +- enabled onErrorCallback for dispatch fn ([8bd3c7c](https://github.com/powerhouse-inc/document-model-electron/commit/8bd3c7ccfafbf1d1b32ada0bb941585bd0ee1907)) +- enabled rename option for folders in folder view ([d7a9b34](https://github.com/powerhouse-inc/document-model-electron/commit/d7a9b3490b0cb91d647ecb803513dbea590f04e0)) +- enabled rename option when copy/move an item ([3ef5ea4](https://github.com/powerhouse-inc/document-model-electron/commit/3ef5ea474997e10b670a989460dca939431f3a9a)) +- enabled rwa editor ([b7df486](https://github.com/powerhouse-inc/document-model-electron/commit/b7df486a82c0c044fab5dd434ecceba1a2c24dc1)) +- enabled switchboard link in RWA editor ([cece18e](https://github.com/powerhouse-inc/document-model-electron/commit/cece18e3cb900cbe2fe7d77c0c329a2c430e2539)) +- enabled undo/redo with new document structure ([f6af1e0](https://github.com/powerhouse-inc/document-model-electron/commit/f6af1e002121456e5e9cc4befe6c41ac4ddf8aa9)) +- expand selected path in sidebar on initial path load ([9b5e053](https://github.com/powerhouse-inc/document-model-electron/commit/9b5e0533e7e02d4ae9ea3c6bb01c9827eada160c)) +- export did:key instead of public key ([a358371](https://github.com/powerhouse-inc/document-model-electron/commit/a3583718047f447f2f59a8153e3e2ac15a8cd732)) +- fetch user's ens info ([229a1ae](https://github.com/powerhouse-inc/document-model-electron/commit/229a1ae1bcd145858f867cdf449d9ed2709c8ffc)) +- fix Authorize Connect font color ([25ba2e7](https://github.com/powerhouse-inc/document-model-electron/commit/25ba2e7af5c81c442fed8d919b31a66ba2959e77)) +- fix console warnings ([3024578](https://github.com/powerhouse-inc/document-model-electron/commit/3024578d93e4a70a89a3b3681d34f78a4bd0f1d0)) +- fix css import order ([9216a27](https://github.com/powerhouse-inc/document-model-electron/commit/9216a277e488f73cc892ad015c4ea35dd22bb2a9)) +- fix linux build ([433e6f9](https://github.com/powerhouse-inc/document-model-electron/commit/433e6f9b0a92f72d33e16bbcb71a8965c034c6be)) +- fix logo + position ([278ebeb](https://github.com/powerhouse-inc/document-model-electron/commit/278ebeb39cac2b6d1edb3b096161bb3810669f31)) +- fix rwa document name ([b3f39d1](https://github.com/powerhouse-inc/document-model-electron/commit/b3f39d16c09cb87295d53a7be249b4e2be3895ab)) +- fix sync status ([9ff69fe](https://github.com/powerhouse-inc/document-model-electron/commit/9ff69fedf729b7e70b07bf121c9feed00c1ddc58)) +- fix tailwind class conflicts ([341d8ba](https://github.com/powerhouse-inc/document-model-electron/commit/341d8ba945fd1a20c6014fcb6e5ce77faf458b5f)) +- fixed addDriveOperations ([4c33a1f](https://github.com/powerhouse-inc/document-model-electron/commit/4c33a1f891eeba1b9845768fbc0395cb01dd9e70)) +- fixed base route ([606e919](https://github.com/powerhouse-inc/document-model-electron/commit/606e9191be0f32309e7a0a59e82dc49aa88690bb)) +- fixed default document-models ([0d51154](https://github.com/powerhouse-inc/document-model-electron/commit/0d511546e95a1d5a534f92b549d7120076792040)) +- fixed editors loading ([4fda671](https://github.com/powerhouse-inc/document-model-electron/commit/4fda67192ca075aa66079cbf769548e53e1a2ef3)) +- fixed file import ([23cd72d](https://github.com/powerhouse-inc/document-model-electron/commit/23cd72da07e8fa12bb6f5c739d392432057d6812)) +- fixed file operations error ([5d123af](https://github.com/powerhouse-inc/document-model-electron/commit/5d123af045f0409222bd61404b2249db2a4ec19d)) +- fixes browser key storage ([bfb2a72](https://github.com/powerhouse-inc/document-model-electron/commit/bfb2a725ec7fb4ec507751e52aa743879e39b428)) +- generate key pair on desktop ([ebc0204](https://github.com/powerhouse-inc/document-model-electron/commit/ebc020405e0b289aa4cfdf4935b2afcd53494a7f)) +- go back from fixed version ([41684c4](https://github.com/powerhouse-inc/document-model-electron/commit/41684c4f9cb55bef7f4e8bea46e7ab2eedc26b5c)) +- handle empty string or wrong formatted string in env var ([0099615](https://github.com/powerhouse-inc/document-model-electron/commit/009961513edaba39ad8fb4daacd6dd702a9fedd8)) +- handle null parent folder ([21f9370](https://github.com/powerhouse-inc/document-model-electron/commit/21f93703b08e39c6c97312a232a609a53dacf1c0)) +- handle sync events on node document drive ([3855ce4](https://github.com/powerhouse-inc/document-model-electron/commit/3855ce42a72865ed48e7729d25ec1481e462851d)) +- handle undefined whitelist ([1672fa8](https://github.com/powerhouse-inc/document-model-electron/commit/1672fa86ab863d8d2fc88604a775f524f7b86614)) +- hide searchbar from config ([0bd4444](https://github.com/powerhouse-inc/document-model-electron/commit/0bd4444fca256b28bf413122a870f343963dc801)) +- ignore drives with error ([25a27d5](https://github.com/powerhouse-inc/document-model-electron/commit/25a27d51fed340a22530d5d13e784bf5f9f66fab)) +- ignore operation hashes when importing zip ([634bcd5](https://github.com/powerhouse-inc/document-model-electron/commit/634bcd5cd534d22db9813cc17be28359d94a1e61)) +- ignores document drive result when adding an operation from the editor ([74140e2](https://github.com/powerhouse-inc/document-model-electron/commit/74140e2400ea1c1b5bb9baf5f7b26ed7cbb2a9cb)) +- implemented rename and new folder actions ([45dbf5e](https://github.com/powerhouse-inc/document-model-electron/commit/45dbf5e527841f1107f9d444ac2b76f0dc6fa7c0)) +- import styles from design system ([f7ac8ad](https://github.com/powerhouse-inc/document-model-electron/commit/f7ac8adc2608e8d491618e01b1c98be9f8c43fe2)) +- improved url handling ([32b3dcd](https://github.com/powerhouse-inc/document-model-electron/commit/32b3dcd943518cba4f1f5a82f9dbb5b906096500)) +- install ts-reset ([228b082](https://github.com/powerhouse-inc/document-model-electron/commit/228b082e36b1e689b47d7ed923dfe3347e74ad7d)) +- install vite ([aa66a01](https://github.com/powerhouse-inc/document-model-electron/commit/aa66a01bc96f33984e9d6828fdd93d374916c2c4)) +- lighthouse recomendations ([dd3e594](https://github.com/powerhouse-inc/document-model-electron/commit/dd3e594c198ab2a9deb83420ed8bfb145475ec71)) +- load default drive ([589653f](https://github.com/powerhouse-inc/document-model-electron/commit/589653fab02bc030fbc4a99bea6ed6f4566fd57c)) +- log sync error ([204c38a](https://github.com/powerhouse-inc/document-model-electron/commit/204c38a5f2763edc2006119b8608f6dc39f40dc9)) +- manually install design system ([1b7c676](https://github.com/powerhouse-inc/document-model-electron/commit/1b7c6767c67efed2da903976a62a0bbbaf8a64fe)) +- move helpers ([e12240c](https://github.com/powerhouse-inc/document-model-electron/commit/e12240c40ca8368b9f99f0bdfa5d2881a9a71dc5)) +- move sync status invocation to hook ([dea3fa9](https://github.com/powerhouse-inc/document-model-electron/commit/dea3fa9f5fbcdf9cf355652bf32e2c434a366c13)) +- moved load initial data into a hook ([99c7417](https://github.com/powerhouse-inc/document-model-electron/commit/99c74175b899c9c1d3f7dbf27de174ebd053bdbf)) +- pass allow list credentials to components ([2fadac1](https://github.com/powerhouse-inc/document-model-electron/commit/2fadac18141430445138ec9446d46227cb69723a)) +- pass allow list props to components ([0df5de6](https://github.com/powerhouse-inc/document-model-electron/commit/0df5de6a1062538cfaee7dcd045abb53b5481106)) +- port config files to ts ([f78e7f5](https://github.com/powerhouse-inc/document-model-electron/commit/f78e7f5444a47d637cc6681dd25917524b03b659)) +- re-enable onErrorCallback with new operations error prop ([a408630](https://github.com/powerhouse-inc/document-model-electron/commit/a408630ee77596a83f2c3ee26a17d44447537647)) +- re-generate package-lock.json ([e48ac3d](https://github.com/powerhouse-inc/document-model-electron/commit/e48ac3dd16d25901565eaed94e4e82b4283f7287)) +- re-implemented copy/move nodes with new DocumentDrive ([c4fad11](https://github.com/powerhouse-inc/document-model-electron/commit/c4fad117827b929d69dd73824d46ef33f767c57f)) +- readd prepare script ([ad4577e](https://github.com/powerhouse-inc/document-model-electron/commit/ad4577ee92a812a4227e03f2923cbb5b5ca0efdc)) +- refresh UI when there are drive changes ([fca3c95](https://github.com/powerhouse-inc/document-model-electron/commit/fca3c9576679e1bdcb8cf017cad3e885cd245fdf)) +- regenerate lock ([0269b0b](https://github.com/powerhouse-inc/document-model-electron/commit/0269b0b47945bc6d53928ec975f3b0c4557706a9)) +- regenerate lockfile ([efa2f7f](https://github.com/powerhouse-inc/document-model-electron/commit/efa2f7f380e1e558b82a616f8d1ef1cda021371e)) +- regenerate lockfile ([c8aac44](https://github.com/powerhouse-inc/document-model-electron/commit/c8aac44f8cb0184962e5567ea3252e14cc686cce)) +- reinstall with npm ([f790b6c](https://github.com/powerhouse-inc/document-model-electron/commit/f790b6c8611e000b123723c014ef35c1ee9aa55b)) +- remove check ([1db971c](https://github.com/powerhouse-inc/document-model-electron/commit/1db971cf324e2ca0e92c8f9b01614f7ef64f3d6a)) +- remove csp ([b940c38](https://github.com/powerhouse-inc/document-model-electron/commit/b940c3849bb1f804c6d2d8ca7e2bced61be81a95)) +- remove default node logic ([217d6e5](https://github.com/powerhouse-inc/document-model-electron/commit/217d6e5ac54033bda7bd36473712e048fe775623)) +- remove hello from content ([decd9c4](https://github.com/powerhouse-inc/document-model-electron/commit/decd9c4a9dbce3d9ecacbee06ad91d5959b86f84)) +- remove old tailwind classes ([10a8b95](https://github.com/powerhouse-inc/document-model-electron/commit/10a8b95edbcf212c17cb9011b13b32d2b924a767)) +- remove redundant config ([0c4d334](https://github.com/powerhouse-inc/document-model-electron/commit/0c4d334f3f75ccef7597470e1ce2a490b449eca8)) +- remove redundant use effect ([9bb2950](https://github.com/powerhouse-inc/document-model-electron/commit/9bb29508084badc11d535fab2ba241fe8021bc5f)) +- remove restriction to send operations ([dc620c5](https://github.com/powerhouse-inc/document-model-electron/commit/dc620c5fda0dd9adff480ee2ea3494b2b1698cc5)) +- remove scrollbar styles ([a9a3080](https://github.com/powerhouse-inc/document-model-electron/commit/a9a30803d3bf1cf91a82cc9bac6133c9bb335691)) +- removed electron-deeplink pkg and updated deep links ([5cec527](https://github.com/powerhouse-inc/document-model-electron/commit/5cec527acc442886f35261affa1619efd30e2212)) +- removed networkId from signer ([89c2a1c](https://github.com/powerhouse-inc/document-model-electron/commit/89c2a1c676170878b4cb307b073b53e28bb9e1f5)) +- removed queue timeout ([8b517b7](https://github.com/powerhouse-inc/document-model-electron/commit/8b517b78c1529abe5c7ee6e69d1990c56c4fbb6e)) +- removed re-renders and prevent add default drive being called twice ([3104848](https://github.com/powerhouse-inc/document-model-electron/commit/3104848107ff53daea46d36930be8ca9e3f522e6)) +- removed usehooks-ts dep ([05ca45e](https://github.com/powerhouse-inc/document-model-electron/commit/05ca45ef3227c50a7d44bfd7c8d8730a89d3c369)) +- rename document drive node when document model name is changed ([b9008f7](https://github.com/powerhouse-inc/document-model-electron/commit/b9008f7e08e340329e16c0743133a09d044cb1dd)) +- replaced env vars by client.config file ([28f7a2f](https://github.com/powerhouse-inc/document-model-electron/commit/28f7a2f5fbe97403f4ed317303f19c43b1cbf300)) +- replaced feature flags context by atomWithStorage ([071b7aa](https://github.com/powerhouse-inc/document-model-electron/commit/071b7aacb44792851b45946f41abecaaa99f5633)) +- replaced sidebar input header by connect logo ([a845dfd](https://github.com/powerhouse-inc/document-model-electron/commit/a845dfd14df5167e25fe5530ae03e9400bb36d45)) +- separate browser storage ([9ea89b8](https://github.com/powerhouse-inc/document-model-electron/commit/9ea89b80a5094eaa56a2d3b417a0e8fb05c0ae91)) +- separated error and conflict messages for drive status notification ([e80ccfe](https://github.com/powerhouse-inc/document-model-electron/commit/e80ccfeff3bf1e739af33c0da97f5258f5007e5a)) +- set queue timeout to 10ms ([6c87c92](https://github.com/powerhouse-inc/document-model-electron/commit/6c87c92e4e4ed2246c642f6575db1b31c6611b06)) +- show success sync toast only after recover from error sync ([5c2a47a](https://github.com/powerhouse-inc/document-model-electron/commit/5c2a47a2d0232e13d9fd6047bbe88c3faee6caa3)) +- simplify copy ([2cd60c3](https://github.com/powerhouse-inc/document-model-electron/commit/2cd60c3957685049fc6ff64beb094b409bbd4f32)) +- support add drive ([f827d33](https://github.com/powerhouse-inc/document-model-electron/commit/f827d338d4b6b49bde54f58ec6eb133756f3c765)) +- support multiple separate allow lists ([74d6152](https://github.com/powerhouse-inc/document-model-electron/commit/74d615236b6a75d0602476a826787e37a3ab263f)) +- switch to using vars from design system ([587c258](https://github.com/powerhouse-inc/document-model-electron/commit/587c258c1f47b8f5f1004252aec491d91b14eb5a)) +- trigger build ([e85bf95](https://github.com/powerhouse-inc/document-model-electron/commit/e85bf95f96ece3f59ead521fe39588630203900d)) +- update connect opengraph meta data ([32b3720](https://github.com/powerhouse-inc/document-model-electron/commit/32b372038f27d9a062ad78de6fde36a70cf2d6d8)) +- update deeplink protocol ([45d0a58](https://github.com/powerhouse-inc/document-model-electron/commit/45d0a58d266bcc369fcef7e0a1cc88c71757e1fc)) +- update dependencies and increase pull interval to 3 seconds ([66d8aea](https://github.com/powerhouse-inc/document-model-electron/commit/66d8aea256ccc6f742347db03bf06901b777bc74)) +- update deps ([3b6fa8d](https://github.com/powerhouse-inc/document-model-electron/commit/3b6fa8daeedec0549451490c9a7efec733ab2b75)) +- update document drive ([ff37742](https://github.com/powerhouse-inc/document-model-electron/commit/ff37742d857e9445a30a4122f12ec8585f5d129e)) +- update document drive dep ([ad31bf0](https://github.com/powerhouse-inc/document-model-electron/commit/ad31bf08d09650a9c335e18cf7153c7bd7667081)) +- update document drive dep ([5baaf20](https://github.com/powerhouse-inc/document-model-electron/commit/5baaf2006c71885132bbdabb59976acf5cde8ce2)) +- update document-drive ([534fa80](https://github.com/powerhouse-inc/document-model-electron/commit/534fa802984035735710d220f2496add04704b64)) +- update document-drive ver ([393388e](https://github.com/powerhouse-inc/document-model-electron/commit/393388e0a45f0275e5ab6824695d70b931891777)) +- update document-model and document-drive ver ([d66225a](https://github.com/powerhouse-inc/document-model-electron/commit/d66225aefa67ed761e8c5a1f36b62685666f7d84)) +- update document-model and document-drive versions ([8d1f869](https://github.com/powerhouse-inc/document-model-electron/commit/8d1f8691bf1511aca38f96a1ca7488e9d6104af2)) +- update document-model dep ([c865770](https://github.com/powerhouse-inc/document-model-electron/commit/c8657706b488631cf5955a6677ae5e4e1252bc9c)) +- update document-model document-drive and document-model-libs deps ([aee1dce](https://github.com/powerhouse-inc/document-model-electron/commit/aee1dce7f1c927ca24ac5283ab3d4d48ca85b7f6)) +- update document-model lib to v1.0.29 ([9190869](https://github.com/powerhouse-inc/document-model-electron/commit/9190869ddea006ce0cad8c3fa264d83535e16950)) +- update drive sync icon on syncStatus event ([ded596e](https://github.com/powerhouse-inc/document-model-electron/commit/ded596eb4761ce7003e285a0b283d45242b66444)) +- update editor when opened document is changed ([88e1cad](https://github.com/powerhouse-inc/document-model-electron/commit/88e1cad21d61cc9675f53a4a67e51e8712b22696)) +- update env var names ([42ba363](https://github.com/powerhouse-inc/document-model-electron/commit/42ba363359b08b076fdb7d39fa7df9b2c7d963ba)) +- update experimental deps ([12d28d6](https://github.com/powerhouse-inc/document-model-electron/commit/12d28d695a58dfc9bb2ff1e288b6ea4ef39f1267)) +- update lint config ([170b252](https://github.com/powerhouse-inc/document-model-electron/commit/170b252cd35fe786147f4e5306948eecf6a3990c)) +- update submit handler ([9cd1a10](https://github.com/powerhouse-inc/document-model-electron/commit/9cd1a10a0fee03bf4ddd2ace4f1a3796e1b4de30)) +- update to use new sync icons ([e1cbf1d](https://github.com/powerhouse-inc/document-model-electron/commit/e1cbf1d22de3159c247b3356577f2fdc519a51c5)) +- update url params logic ([6450975](https://github.com/powerhouse-inc/document-model-electron/commit/645097513096fa26327e60ea510d2e4bd628a870)) +- updated deps ([e41734f](https://github.com/powerhouse-inc/document-model-electron/commit/e41734f70b7b8acae90c167df5884820ee99c3c9)) +- updated deps ([a328cd9](https://github.com/powerhouse-inc/document-model-electron/commit/a328cd93ec131d36f61c45fda4863f315fb3a2cc)) +- updated design system dep ([b378a42](https://github.com/powerhouse-inc/document-model-electron/commit/b378a420bad20debc06aeeb376401ecb311889ce)) +- updated document drive ([4b588b0](https://github.com/powerhouse-inc/document-model-electron/commit/4b588b0f602debb6d069c3c4d580292b87a94337)) +- updated document drive ([b0df564](https://github.com/powerhouse-inc/document-model-electron/commit/b0df564c0952c60b3202c392e9fb1a23e401bea8)) +- updated document drive lib ([5f30983](https://github.com/powerhouse-inc/document-model-electron/commit/5f30983ab3f07462d842e3f464c0723d3f8785dd)) +- updated document-drive ver ([f7b9c7d](https://github.com/powerhouse-inc/document-model-electron/commit/f7b9c7df9d9b569b296d599998e3a500bfb8735c)) +- updated document-drive version ([a92dd24](https://github.com/powerhouse-inc/document-model-electron/commit/a92dd24c3ae638ff02587623a3d33af7fd89e2b6)) +- updated document-drive@1.0.0-experimental.2 ([c2b2816](https://github.com/powerhouse-inc/document-model-electron/commit/c2b2816cc7eea0346ea7d958b39f4b25796bb2a0)) +- updated document-drive@1.0.0-experimental.4 ([f31d12d](https://github.com/powerhouse-inc/document-model-electron/commit/f31d12d18404882a1f3af00f9bca6ab79d7a667e)) +- updated document-model dep ([f487cff](https://github.com/powerhouse-inc/document-model-electron/commit/f487cff99198d7cc3d8fd9db944ca394cc788dec)) +- updated document-model lib ([9db149e](https://github.com/powerhouse-inc/document-model-electron/commit/9db149ecc91926c02f2fe8479ca08958b66977d3)) +- updated document-model-libs ([b0bb1d2](https://github.com/powerhouse-inc/document-model-electron/commit/b0bb1d2ef530ecacc8f722322149866f8fbce03d)) +- updated document-model-libs and design-system ver ([d4ab8f8](https://github.com/powerhouse-inc/document-model-electron/commit/d4ab8f881d0e04d5bf68e0748205cf25fcce90e1)) +- updated package.lock ([3c334f4](https://github.com/powerhouse-inc/document-model-electron/commit/3c334f4f714ec6a63ce63bbc7f60d0e67f99b17b)) +- updated release script ([639b2a5](https://github.com/powerhouse-inc/document-model-electron/commit/639b2a50405d32f884f941457702ba12a6fa3a6b)) +- updated rwa query ([3709cfc](https://github.com/powerhouse-inc/document-model-electron/commit/3709cfc9543851fe77f8a930d1e0806d552069d6)) +- use default values if there is a missing key for feature flags ([cdb728a](https://github.com/powerhouse-inc/document-model-electron/commit/cdb728a3964ca1183bd38743744a8bdf51e04fb6)) +- use drive icon ([c82bebb](https://github.com/powerhouse-inc/document-model-electron/commit/c82bebb00516c95b2f6f48102672bf70333f9477)) +- use memoryBrowser on packaged app ([2d11200](https://github.com/powerhouse-inc/document-model-electron/commit/2d11200a47c861429edd0ad5c6a4eb13b46a7363)) +- use new svgr syntax ([e1db3b9](https://github.com/powerhouse-inc/document-model-electron/commit/e1db3b95b5330f95893b5511df8041ed04d33fb7)) +- use not equal ([8e33089](https://github.com/powerhouse-inc/document-model-electron/commit/8e330890f658224bc1e37d6504765e3d01cc7ede)) +- use setTimeout as fallback for requestIdleCallback ([730c8f2](https://github.com/powerhouse-inc/document-model-electron/commit/730c8f292eec07908410f7f2949c045bab8094fe)) +- use tailwind styles ([53dc69f](https://github.com/powerhouse-inc/document-model-electron/commit/53dc69f69663b4d315c03b57a64b87b274e698cd)) +- use yarn ([812fe5a](https://github.com/powerhouse-inc/document-model-electron/commit/812fe5af48fdea5cb5955f6b8336604722476b44)) +- waits 50ms for new operations to make a single addOperations call ([d4c9796](https://github.com/powerhouse-inc/document-model-electron/commit/d4c97965cc9b83128f6be225a27a64c2f88795f3)) +- waits for document drive server to be loaded before checking default drive is added ([fc10ee8](https://github.com/powerhouse-inc/document-model-electron/commit/fc10ee8428d9d9c24c6cef38cd104ac5f79d759c)) ### Performance Improvements -* implemented scalable way to compare drive state ([5b4f360](https://github.com/powerhouse-inc/document-model-electron/commit/5b4f360f9be815e52131f56fedf3f6a97e77ed7f)) +- implemented scalable way to compare drive state ([5b4f360](https://github.com/powerhouse-inc/document-model-electron/commit/5b4f360f9be815e52131f56fedf3f6a97e77ed7f)) # 1.0.0-alpha.1 (2024-06-10) - ### Bug Fixes -* added callback support for document dispatch ([a4f4c04](https://github.com/powerhouse-inc/document-model-electron/commit/a4f4c04ead0d2aca54983da2e79e9ff6e673da15)) -* allow concurrent drive operations ([17658ee](https://github.com/powerhouse-inc/document-model-electron/commit/17658ee1a67dc787896508d25ea329ca9b657a13)) -* apply auto lint fix ([dfa1ec0](https://github.com/powerhouse-inc/document-model-electron/commit/dfa1ec02caddba3e9b06e1a18855f47abf959eda)) -* base hrefs ([1ff517c](https://github.com/powerhouse-inc/document-model-electron/commit/1ff517c31991b6ad836b173c0df916b396f59fe1)) -* base path cmd ([070b4af](https://github.com/powerhouse-inc/document-model-electron/commit/070b4af1a148be00ca8b4e4bf8e24f22adbea28c)) -* build issues ([f2b084b](https://github.com/powerhouse-inc/document-model-electron/commit/f2b084b21a7826c491bc4d5977608892bfedfeba)) -* change config file names in scripts ([37fa872](https://github.com/powerhouse-inc/document-model-electron/commit/37fa872932c8f455e4844e6bd838a65720ad5380)) -* downgraded document drive ([7d287c4](https://github.com/powerhouse-inc/document-model-electron/commit/7d287c4d08d73226e7ba1ec8aabaeeb9a088c8e2)) -* endpoints for connect ([f35f853](https://github.com/powerhouse-inc/document-model-electron/commit/f35f8532e14475e74cc80119e5df0274f2b5f1e7)) -* fix file types ([11d1b18](https://github.com/powerhouse-inc/document-model-electron/commit/11d1b1833442ee302196b3e50f73f0380a372507)) -* fix rerenders when refreshing document drives ([5429f61](https://github.com/powerhouse-inc/document-model-electron/commit/5429f613784535e430809b751d879e60b2f5fb68)) -* fixed build error ([3027483](https://github.com/powerhouse-inc/document-model-electron/commit/30274832089143d616c3c55935735ad6f275e8c2)) -* fixed build error ([f280459](https://github.com/powerhouse-inc/document-model-electron/commit/f2804594d3f764477c06fc4183a2427df9e4c86b)) -* folder selection in folder view ([f7e3681](https://github.com/powerhouse-inc/document-model-electron/commit/f7e36810b5d0223afc64736a9e8ec48e11f7fc57)) -* header text color ([4ee9745](https://github.com/powerhouse-inc/document-model-electron/commit/4ee9745dbbeddf0e2ea41f6d8c4c800d9f5bfd99)) -* heroku nginx config ([0ca0df1](https://github.com/powerhouse-inc/document-model-electron/commit/0ca0df1e853522fb0d21ded35d6f61964c48ea62)) -* lint errors ([ac490b4](https://github.com/powerhouse-inc/document-model-electron/commit/ac490b4cdf693d62d57a865b55952ca7b46bfe94)) -* missing return ([f81d0e9](https://github.com/powerhouse-inc/document-model-electron/commit/f81d0e9a0a58c4079a6359d0dc45f90861d4acb4)) -* only call useMemo in hook ([76a1505](https://github.com/powerhouse-inc/document-model-electron/commit/76a15059e825ec0e1d6215e450ec0339d7c33bbe)) -* package.lock ([1c2a1f5](https://github.com/powerhouse-inc/document-model-electron/commit/1c2a1f55bf33953fa1834da2e84dcc0e93710c7b)) -* properly encode switchboard query ([4c5001f](https://github.com/powerhouse-inc/document-model-electron/commit/4c5001fb3aa34249bee0550331a314872b05c614)) -* remove allow list ([ac2475d](https://github.com/powerhouse-inc/document-model-electron/commit/ac2475d866195b18b23ca094457ccce93b9b0508)) -* remove duplicate package ([364afdd](https://github.com/powerhouse-inc/document-model-electron/commit/364afdde2e2c9c3d6c12d0364e6d0cfd612f5429)) -* remove yalc from package json ([9e184d8](https://github.com/powerhouse-inc/document-model-electron/commit/9e184d8df68d74803e9cbf95f7cf480f97a6d03e)) -* removed unused css import ([6da080c](https://github.com/powerhouse-inc/document-model-electron/commit/6da080c53ea57352b997de941fc303f11a5d2a42)) -* rename node id ([45235e5](https://github.com/powerhouse-inc/document-model-electron/commit/45235e516ce5ea52345c7ff9d1f7238ff4e9e095)) -* renown endpoint ([10461f5](https://github.com/powerhouse-inc/document-model-electron/commit/10461f566fd49a8fd79b23fdaa66871d8d8cff76)) -* renown login ([432e5bc](https://github.com/powerhouse-inc/document-model-electron/commit/432e5bcc1eaa13a043720b0c9d1165222188ecfc)) -* revert setSelectedDocument in addOperation document ([df06317](https://github.com/powerhouse-inc/document-model-electron/commit/df06317cc067b3f25deedb9832c1aa54d308158a)) -* rwa query ([09fcd52](https://github.com/powerhouse-inc/document-model-electron/commit/09fcd52fdf4adbeee9f6a6aa26c1d0309b525510)) -* settings modal typo ([6ef1286](https://github.com/powerhouse-inc/document-model-electron/commit/6ef12861fdda344c7c45f54657b6f56c67217162)) -* show local drives ([893b0df](https://github.com/powerhouse-inc/document-model-electron/commit/893b0dfe9d8004b12114842b082e4672a630aa38)) -* subscribe to server updates when load initial data ([35bf948](https://github.com/powerhouse-inc/document-model-electron/commit/35bf948de2acb3a23684060c978138f2b5ad5f75)) -* suppress less important rules ([679af22](https://github.com/powerhouse-inc/document-model-electron/commit/679af2256b8e6a4739006048056d452ba7fbf988)) -* switchboard endpoint ([2e570f3](https://github.com/powerhouse-inc/document-model-electron/commit/2e570f39bc355e4f387c0d371e8af81a0b92bb38)) -* switchboard link ([78bbdd0](https://github.com/powerhouse-inc/document-model-electron/commit/78bbdd0ec278a7685023cf9482d5990f6cf18a6d)) -* tmp build fix ([4a4be40](https://github.com/powerhouse-inc/document-model-electron/commit/4a4be4098131a946ce919792e3028e0f4e92c46e)) -* undefined default drive ([e5f2749](https://github.com/powerhouse-inc/document-model-electron/commit/e5f27494a57a29c4e4ae921d2014198af8614df3)) -* undefined default drive ([6ad9412](https://github.com/powerhouse-inc/document-model-electron/commit/6ad94127e15ebb43507cd0cae8404e9e2bc17e5b)) -* update selectedDocument when a new operation is dispatched ([b2c4401](https://github.com/powerhouse-inc/document-model-electron/commit/b2c4401c676d1c2621334375f132c6367c234ca5)) -* use selectedDocument as source of truth for document editor ([b5204e7](https://github.com/powerhouse-inc/document-model-electron/commit/b5204e7153028459ef3ace07e719736d971d577a)) -* wait for renown to load ([1d2f019](https://github.com/powerhouse-inc/document-model-electron/commit/1d2f019dc992239873e19e35fe8d5c0dde1396f5)) - +- added callback support for document dispatch ([a4f4c04](https://github.com/powerhouse-inc/document-model-electron/commit/a4f4c04ead0d2aca54983da2e79e9ff6e673da15)) +- allow concurrent drive operations ([17658ee](https://github.com/powerhouse-inc/document-model-electron/commit/17658ee1a67dc787896508d25ea329ca9b657a13)) +- apply auto lint fix ([dfa1ec0](https://github.com/powerhouse-inc/document-model-electron/commit/dfa1ec02caddba3e9b06e1a18855f47abf959eda)) +- base hrefs ([1ff517c](https://github.com/powerhouse-inc/document-model-electron/commit/1ff517c31991b6ad836b173c0df916b396f59fe1)) +- base path cmd ([070b4af](https://github.com/powerhouse-inc/document-model-electron/commit/070b4af1a148be00ca8b4e4bf8e24f22adbea28c)) +- build issues ([f2b084b](https://github.com/powerhouse-inc/document-model-electron/commit/f2b084b21a7826c491bc4d5977608892bfedfeba)) +- change config file names in scripts ([37fa872](https://github.com/powerhouse-inc/document-model-electron/commit/37fa872932c8f455e4844e6bd838a65720ad5380)) +- downgraded document drive ([7d287c4](https://github.com/powerhouse-inc/document-model-electron/commit/7d287c4d08d73226e7ba1ec8aabaeeb9a088c8e2)) +- endpoints for connect ([f35f853](https://github.com/powerhouse-inc/document-model-electron/commit/f35f8532e14475e74cc80119e5df0274f2b5f1e7)) +- fix file types ([11d1b18](https://github.com/powerhouse-inc/document-model-electron/commit/11d1b1833442ee302196b3e50f73f0380a372507)) +- fix rerenders when refreshing document drives ([5429f61](https://github.com/powerhouse-inc/document-model-electron/commit/5429f613784535e430809b751d879e60b2f5fb68)) +- fixed build error ([3027483](https://github.com/powerhouse-inc/document-model-electron/commit/30274832089143d616c3c55935735ad6f275e8c2)) +- fixed build error ([f280459](https://github.com/powerhouse-inc/document-model-electron/commit/f2804594d3f764477c06fc4183a2427df9e4c86b)) +- folder selection in folder view ([f7e3681](https://github.com/powerhouse-inc/document-model-electron/commit/f7e36810b5d0223afc64736a9e8ec48e11f7fc57)) +- header text color ([4ee9745](https://github.com/powerhouse-inc/document-model-electron/commit/4ee9745dbbeddf0e2ea41f6d8c4c800d9f5bfd99)) +- heroku nginx config ([0ca0df1](https://github.com/powerhouse-inc/document-model-electron/commit/0ca0df1e853522fb0d21ded35d6f61964c48ea62)) +- lint errors ([ac490b4](https://github.com/powerhouse-inc/document-model-electron/commit/ac490b4cdf693d62d57a865b55952ca7b46bfe94)) +- missing return ([f81d0e9](https://github.com/powerhouse-inc/document-model-electron/commit/f81d0e9a0a58c4079a6359d0dc45f90861d4acb4)) +- only call useMemo in hook ([76a1505](https://github.com/powerhouse-inc/document-model-electron/commit/76a15059e825ec0e1d6215e450ec0339d7c33bbe)) +- package.lock ([1c2a1f5](https://github.com/powerhouse-inc/document-model-electron/commit/1c2a1f55bf33953fa1834da2e84dcc0e93710c7b)) +- properly encode switchboard query ([4c5001f](https://github.com/powerhouse-inc/document-model-electron/commit/4c5001fb3aa34249bee0550331a314872b05c614)) +- remove allow list ([ac2475d](https://github.com/powerhouse-inc/document-model-electron/commit/ac2475d866195b18b23ca094457ccce93b9b0508)) +- remove duplicate package ([364afdd](https://github.com/powerhouse-inc/document-model-electron/commit/364afdde2e2c9c3d6c12d0364e6d0cfd612f5429)) +- remove yalc from package json ([9e184d8](https://github.com/powerhouse-inc/document-model-electron/commit/9e184d8df68d74803e9cbf95f7cf480f97a6d03e)) +- removed unused css import ([6da080c](https://github.com/powerhouse-inc/document-model-electron/commit/6da080c53ea57352b997de941fc303f11a5d2a42)) +- rename node id ([45235e5](https://github.com/powerhouse-inc/document-model-electron/commit/45235e516ce5ea52345c7ff9d1f7238ff4e9e095)) +- renown endpoint ([10461f5](https://github.com/powerhouse-inc/document-model-electron/commit/10461f566fd49a8fd79b23fdaa66871d8d8cff76)) +- renown login ([432e5bc](https://github.com/powerhouse-inc/document-model-electron/commit/432e5bcc1eaa13a043720b0c9d1165222188ecfc)) +- revert setSelectedDocument in addOperation document ([df06317](https://github.com/powerhouse-inc/document-model-electron/commit/df06317cc067b3f25deedb9832c1aa54d308158a)) +- rwa query ([09fcd52](https://github.com/powerhouse-inc/document-model-electron/commit/09fcd52fdf4adbeee9f6a6aa26c1d0309b525510)) +- settings modal typo ([6ef1286](https://github.com/powerhouse-inc/document-model-electron/commit/6ef12861fdda344c7c45f54657b6f56c67217162)) +- show local drives ([893b0df](https://github.com/powerhouse-inc/document-model-electron/commit/893b0dfe9d8004b12114842b082e4672a630aa38)) +- subscribe to server updates when load initial data ([35bf948](https://github.com/powerhouse-inc/document-model-electron/commit/35bf948de2acb3a23684060c978138f2b5ad5f75)) +- suppress less important rules ([679af22](https://github.com/powerhouse-inc/document-model-electron/commit/679af2256b8e6a4739006048056d452ba7fbf988)) +- switchboard endpoint ([2e570f3](https://github.com/powerhouse-inc/document-model-electron/commit/2e570f39bc355e4f387c0d371e8af81a0b92bb38)) +- switchboard link ([78bbdd0](https://github.com/powerhouse-inc/document-model-electron/commit/78bbdd0ec278a7685023cf9482d5990f6cf18a6d)) +- tmp build fix ([4a4be40](https://github.com/powerhouse-inc/document-model-electron/commit/4a4be4098131a946ce919792e3028e0f4e92c46e)) +- undefined default drive ([e5f2749](https://github.com/powerhouse-inc/document-model-electron/commit/e5f27494a57a29c4e4ae921d2014198af8614df3)) +- undefined default drive ([6ad9412](https://github.com/powerhouse-inc/document-model-electron/commit/6ad94127e15ebb43507cd0cae8404e9e2bc17e5b)) +- update selectedDocument when a new operation is dispatched ([b2c4401](https://github.com/powerhouse-inc/document-model-electron/commit/b2c4401c676d1c2621334375f132c6367c234ca5)) +- use selectedDocument as source of truth for document editor ([b5204e7](https://github.com/powerhouse-inc/document-model-electron/commit/b5204e7153028459ef3ace07e719736d971d577a)) +- wait for renown to load ([1d2f019](https://github.com/powerhouse-inc/document-model-electron/commit/1d2f019dc992239873e19e35fe8d5c0dde1396f5)) ### Features -* 🚀 Added ItemsContext integration ([41fc40f](https://github.com/powerhouse-inc/document-model-electron/commit/41fc40f93420101ca9b2ec34e1b4f4cab4a43a4b)) -* 🚀 added readable item path for File Items ([9f6a4ac](https://github.com/powerhouse-inc/document-model-electron/commit/9f6a4ac45318bb757e7c7c60df463e67b066771b)) -* 🚀 Implemented base folder-view design ([22ad4fc](https://github.com/powerhouse-inc/document-model-electron/commit/22ad4fc5046e27016ce1a47eda3282125af4db71)) -* activate queue ([#290](https://github.com/powerhouse-inc/document-model-electron/issues/290)) ([5b5a4fd](https://github.com/powerhouse-inc/document-model-electron/commit/5b5a4fd317ce624cc734f186778e49899dd3b148)) -* add dep array to use effect ([0a88d92](https://github.com/powerhouse-inc/document-model-electron/commit/0a88d92a664b877929978f05753f3d38e471625d)) -* add dependency versions to settings modal ([d01c0de](https://github.com/powerhouse-inc/document-model-electron/commit/d01c0de124cb9af00312e4c53e934d8a233e02af)) -* add design system preset ([a6cb51c](https://github.com/powerhouse-inc/document-model-electron/commit/a6cb51c31d4500d31fd091f165a4f01ae37ff4d7)) -* add duplicate action ([a9d2e29](https://github.com/powerhouse-inc/document-model-electron/commit/a9d2e29318badb84ca51acc9603a2c2dc7f25a0e)) -* add duplicate to folder ([a6212a8](https://github.com/powerhouse-inc/document-model-electron/commit/a6212a8fe3c62f49d1b624e75152e48f80034ed2)) -* add generate assets hook for icons copying ([4c25ebe](https://github.com/powerhouse-inc/document-model-electron/commit/4c25ebecc94941502e35dff28555664b3985f67b)) -* add is allowed to create documents hook ([0a457fc](https://github.com/powerhouse-inc/document-model-electron/commit/0a457fc35f5e78cb16eac1664c3def10b29b5229)) -* add optional dep ([a079cc7](https://github.com/powerhouse-inc/document-model-electron/commit/a079cc799c0d7987193ee209618151c10c743282)) -* add pull trigger on cloud drives ([9f86849](https://github.com/powerhouse-inc/document-model-electron/commit/9f868495ced48b9b23a3d128469ce7ac20d32a57)) -* add react aria dep ([499dda0](https://github.com/powerhouse-inc/document-model-electron/commit/499dda05d52469c85f0dc31d1da5639dc926c9c4)) -* add tailwind eslint plugin ([6e639bc](https://github.com/powerhouse-inc/document-model-electron/commit/6e639bc71bddeafe855c210c0f573cec7b2ce622)) -* add user context to actions ([6a3241d](https://github.com/powerhouse-inc/document-model-electron/commit/6a3241d3e98c58262ffc7bbbcaa66f6f5d8878b3)) -* added base path for nginx ([22a270b](https://github.com/powerhouse-inc/document-model-electron/commit/22a270b978e189a8a9afd20e0ae8f568e8c3336e)) -* added browser key storage ([6562881](https://github.com/powerhouse-inc/document-model-electron/commit/6562881b2eb603b59b55f1595a7f46b96dbbded6)) -* added clear storage setting ([922f5e1](https://github.com/powerhouse-inc/document-model-electron/commit/922f5e19ebd68e07440858c2f7308e3f6d1a2aae)) -* added config to hide drive sections ([aa67a3f](https://github.com/powerhouse-inc/document-model-electron/commit/aa67a3f392891e195fbc24a2ff858b66265eccc5)) -* added csp headers ([bd398aa](https://github.com/powerhouse-inc/document-model-electron/commit/bd398aa0bc6d748b740e17d4ddf197232d701c62)) -* added deeplink support to link to specific drive node ([ae1f97f](https://github.com/powerhouse-inc/document-model-electron/commit/ae1f97fb17e3cbc422a2e242e9ff530c598284a5)) -* added delete drive modal + enable delete file modal confirmation ([4ce110e](https://github.com/powerhouse-inc/document-model-electron/commit/4ce110e7baaaad3ea75a33eff45fab9994184658)) -* added develop environment ([c33ab9d](https://github.com/powerhouse-inc/document-model-electron/commit/c33ab9d6977712a3015d28a0cd27208f7fd727e5)) -* added develop to release cycle ([b9247e6](https://github.com/powerhouse-inc/document-model-electron/commit/b9247e66d19ffc9400caae9403d9b5b06048eacc)) -* added e2e playwright setup ([2d37330](https://github.com/powerhouse-inc/document-model-electron/commit/2d37330f103456dc9d3e24cc4a74d3ed7abb20c8)) -* added editor debug tools ([6928bed](https://github.com/powerhouse-inc/document-model-electron/commit/6928bed61c46322bc341da7bed48dcde60454b9e)) -* added env var to hide document model setting ([840a561](https://github.com/powerhouse-inc/document-model-electron/commit/840a5615ba0b5eafab123b0f0e5c21b3c880d670)) -* added env vars for renown ([f464d68](https://github.com/powerhouse-inc/document-model-electron/commit/f464d68172be57798be364a804b9de0e7f1733c1)) -* added feature flag setup + disable editors for demo ([7fa64f2](https://github.com/powerhouse-inc/document-model-electron/commit/7fa64f2634cea508ebfb8b20732a730dc8b0624b)) -* added gzip and brotli compression to nginx ([f52a0c3](https://github.com/powerhouse-inc/document-model-electron/commit/f52a0c3205b1fd7fc99875fae0ad5a1d5cd24dd5)) -* added heroku deployment for powerhouse staging env ([f4c538a](https://github.com/powerhouse-inc/document-model-electron/commit/f4c538a3e02781276996e30b759d50f248037c86)) -* added modal confirmation when export document with errors ([d22a447](https://github.com/powerhouse-inc/document-model-electron/commit/d22a447c98d50589f61e37cd6284155223824057)) -* added network id to user ([908a50e](https://github.com/powerhouse-inc/document-model-electron/commit/908a50e8df9c1ae7e53940dc801157a5ca665706)) -* added new env var to dockerfile ([64afb40](https://github.com/powerhouse-inc/document-model-electron/commit/64afb40dfec060e8ebfaaeddf8f47f3f925d21be)) -* added nginx config ([069be2c](https://github.com/powerhouse-inc/document-model-electron/commit/069be2cd98aee6fe3a6b686b4112a435e81d11b3)) -* added notification toast ([39ed0c2](https://github.com/powerhouse-inc/document-model-electron/commit/39ed0c2319c2a6e1c2044aff5cda1fd1dc51d24b)) -* added open file and delete file ([01793c8](https://github.com/powerhouse-inc/document-model-electron/commit/01793c8a5f21b8e1701e649cc926c8baa7ece4fe)) -* added opengraph and twitter meta data ([280da91](https://github.com/powerhouse-inc/document-model-electron/commit/280da914bbe8129ead8559d4169ea266fbb327bc)) -* added PH logo ([e9ec94b](https://github.com/powerhouse-inc/document-model-electron/commit/e9ec94b3373495aa0d03673b241c78605b61d396)) -* added prepare script ([abeaa41](https://github.com/powerhouse-inc/document-model-electron/commit/abeaa41bb7bfc7a8d3a7332a9dd0ba0dad088659)) -* added renown login on browser ([5b77016](https://github.com/powerhouse-inc/document-model-electron/commit/5b77016508fd448b23999919a8d9e40bc701e1f9)) -* added rewrite rules to vercel.json config ([b66cdb0](https://github.com/powerhouse-inc/document-model-electron/commit/b66cdb0fb264412710c1d3bf67f06d48df52408c)) -* added route to open document drive node ([6700f13](https://github.com/powerhouse-inc/document-model-electron/commit/6700f132435dd4ce175b036d5e906d1194976ed0)) -* added RWA doc name fix for demo ([05dfd07](https://github.com/powerhouse-inc/document-model-electron/commit/05dfd0781038523b86437ebe1164e20a848c65b2)) -* added scope of work ([742aae0](https://github.com/powerhouse-inc/document-model-electron/commit/742aae0cab712068d2f8dbe2804da3ba802416bd)) -* added sentry dsn to environments ([c4cfef1](https://github.com/powerhouse-inc/document-model-electron/commit/c4cfef161be9db837d29aca316949957412e4c25)) -* added sentry environments ([68fefd0](https://github.com/powerhouse-inc/document-model-electron/commit/68fefd095cbffcec9eeebedb786d5ab7afc9c9bf)) -* added sentry to connect ([d51ec53](https://github.com/powerhouse-inc/document-model-electron/commit/d51ec538d376cb533882f9c4b0ee057d80ce7d1a)) -* added settings modal integration ([dfb9d28](https://github.com/powerhouse-inc/document-model-electron/commit/dfb9d287bb99dec4316c9eee5098816b6f498926)) -* added sidebar login ([2917809](https://github.com/powerhouse-inc/document-model-electron/commit/29178094a9d711e1d7303dde1511a7b73bc37199)) -* added sort nodes + fix input styles + cancel new folders with empty name ([4a2f9fb](https://github.com/powerhouse-inc/document-model-electron/commit/4a2f9fbf2c4dc5427c58633f18e40eb10574600c)) -* added support for delete option in FolderItem and FileItem ([85800ab](https://github.com/powerhouse-inc/document-model-electron/commit/85800ab374da9be041d6e8c547d186a0671a6b91)) -* added support for document in addfile action ([0706ce2](https://github.com/powerhouse-inc/document-model-electron/commit/0706ce25a515024a37b61aec11c930601a0869e5)) -* added support for rename files + create file name modal ([8a76691](https://github.com/powerhouse-inc/document-model-electron/commit/8a76691426d671128c4cfbc98864a9a669e395f3)) -* added support for renown user ([3853b37](https://github.com/powerhouse-inc/document-model-electron/commit/3853b371349ee14051b666a19fbb0b0c564c8ac6)) -* added support for router basename ([251afe2](https://github.com/powerhouse-inc/document-model-electron/commit/251afe2b1d4eab690f9592e25edc6c555e2fe44a)) -* added switchboard link to document files ([5f31b71](https://github.com/powerhouse-inc/document-model-electron/commit/5f31b710a6ae65f42aac65840da422134e48ee6c)) -* added useConnectConfig hook ([a600091](https://github.com/powerhouse-inc/document-model-electron/commit/a60009131ad8600174311b45a696d0c3219ae8ce)) -* added vercel redirect ([7100848](https://github.com/powerhouse-inc/document-model-electron/commit/7100848213fe6e5d0811229e67c82b8997648fa2)) -* added vite env as build args ([c76d4f4](https://github.com/powerhouse-inc/document-model-electron/commit/c76d4f431017df7f9b40a5063a71618084333c24)) -* allow connect-src for renown.id ([7357d4a](https://github.com/powerhouse-inc/document-model-electron/commit/7357d4a4a2c9aff400e55d9c8eed9630aaec4ed5)) -* allow external images ([171efac](https://github.com/powerhouse-inc/document-model-electron/commit/171efac183458b993ac11849345b3fb8765a10f4)) -* allow per deploy drive restrictions ([8779d84](https://github.com/powerhouse-inc/document-model-electron/commit/8779d84cb1be5128ac7b1c63a8666c5d03b2f593)) -* allow url for file ([474ad4d](https://github.com/powerhouse-inc/document-model-electron/commit/474ad4d0b90e9e882bb52d4ca479a4314d15eec1)) -* also disable when env is production ([6f60688](https://github.com/powerhouse-inc/document-model-electron/commit/6f60688a7bcf92e19afe5a4a49a1baa9f0c44507)) -* also do src === target check in move node function ([3e80c1e](https://github.com/powerhouse-inc/document-model-electron/commit/3e80c1e4dface07c9d101c39f6a0dce6d0654a26)) -* apply auto fixes ([b10b111](https://github.com/powerhouse-inc/document-model-electron/commit/b10b111374636b145c52fa15f38ebc0751912483)) -* auto-select first drive if there's no selected path ([daf3083](https://github.com/powerhouse-inc/document-model-electron/commit/daf3083b4fff8dd6f033ce9806affe932fea4f04)) -* bump ([40fd30a](https://github.com/powerhouse-inc/document-model-electron/commit/40fd30a489214a512a7dc43fbe9dea1e0c33604a)) -* bump ([11fb69f](https://github.com/powerhouse-inc/document-model-electron/commit/11fb69f6f507d4240e72b1208982c814bce185a8)) -* bump deps ([7d7206c](https://github.com/powerhouse-inc/document-model-electron/commit/7d7206c5ae9bc7c9e7d26713fc8ff4e7ef5f459d)) -* bump design system ([fb12d70](https://github.com/powerhouse-inc/document-model-electron/commit/fb12d70fcd3237f1cacb0375e99e4a1ae01cc342)) -* bump design system ([4e1d168](https://github.com/powerhouse-inc/document-model-electron/commit/4e1d168298355beea31e2216edeb7b7cef8e8257)) -* bump design system and document model libs ([165e2cc](https://github.com/powerhouse-inc/document-model-electron/commit/165e2ccc41d5d72a6f2f834292c18aa2388ebb86)) -* bump design system to integrate dep version component ([a18c621](https://github.com/powerhouse-inc/document-model-electron/commit/a18c621a24d97b3bfa9f103365b3890f6fd342d7)) -* bump design-system and document-model-lib deps ([7d90802](https://github.com/powerhouse-inc/document-model-electron/commit/7d9080289ce258cf9d299d13b4cf7e092fd51535)) -* bump document drive version ([254a2cd](https://github.com/powerhouse-inc/document-model-electron/commit/254a2cd967b07d22352d38509ad55c2ffcd19bf5)) -* bump libs ([24a9cd3](https://github.com/powerhouse-inc/document-model-electron/commit/24a9cd3427eecc32697f15d7479bf5ee53c95084)) -* bump libs ([b27b036](https://github.com/powerhouse-inc/document-model-electron/commit/b27b036a487fbe989f9f7b585603e15bcdd3fa3a)) -* bump libs ([5fb15d3](https://github.com/powerhouse-inc/document-model-electron/commit/5fb15d321de8649ac2fc6953d9ec5312aeabefeb)) -* bump libs ([1f38863](https://github.com/powerhouse-inc/document-model-electron/commit/1f38863cb3e6fff081218ce59d7cf1a6f3c44621)) -* bump libs ([7df97b0](https://github.com/powerhouse-inc/document-model-electron/commit/7df97b03882c012f035b259aebb85ba42704008b)) -* bump libs ([78baf1d](https://github.com/powerhouse-inc/document-model-electron/commit/78baf1dee6da3f18208f23973f65b5a1b930ba81)) -* bump libs ([d766c36](https://github.com/powerhouse-inc/document-model-electron/commit/d766c36649f3575b2d10bcaf532249437a79b36c)) -* bump libs ([6b3f58f](https://github.com/powerhouse-inc/document-model-electron/commit/6b3f58fd3aad9e628cf2312629280f12984648e2)) -* bump libs ([f98b523](https://github.com/powerhouse-inc/document-model-electron/commit/f98b523acb0e2f2599d4d8927bf8fe5b26374856)) -* bump libs ([2a9a29d](https://github.com/powerhouse-inc/document-model-electron/commit/2a9a29d0d9d129abbbe6b16567151f3ecd0d525e)) -* bump libs ([62117a9](https://github.com/powerhouse-inc/document-model-electron/commit/62117a90490e9bbb32c4a84fdbdb3d930ca7ebfb)) -* bump libs ([62cd43d](https://github.com/powerhouse-inc/document-model-electron/commit/62cd43dd7f80cfd6202c251a9c1af1bad0978b67)) -* bump lint deps ([544fcea](https://github.com/powerhouse-inc/document-model-electron/commit/544fcea7cdcf450756b8deb913c47047a9161849)) -* bump react aria ([3a8ed93](https://github.com/powerhouse-inc/document-model-electron/commit/3a8ed934d371b11c7deb8c8894b43c323d04f06f)) -* cancel rename operation when new name is empty ([6c7a815](https://github.com/powerhouse-inc/document-model-electron/commit/6c7a815500339ebbced23214450750bacbfdebc9)) -* change term to allow list ([af99e9b](https://github.com/powerhouse-inc/document-model-electron/commit/af99e9ba0a3eee7074cc763922caf1656f024e83)) -* changed default renown env variables ([c87ee69](https://github.com/powerhouse-inc/document-model-electron/commit/c87ee697507eba7235150e5156bbe7d0cd121e36)) -* changed nginx image to nginx-brotli ([3d497da](https://github.com/powerhouse-inc/document-model-electron/commit/3d497da7806bdb77a6352aad9ad5f64ddcfa93e4)) -* check if operations with same index are submitted ([b7ad973](https://github.com/powerhouse-inc/document-model-electron/commit/b7ad97307106467a39060da44420515f10ce3921)) -* check user auth on startup ([6820f27](https://github.com/powerhouse-inc/document-model-electron/commit/6820f27a8defb40d72e3580d00fe11f1170bbe22)) -* commented renown env variables ([cd18bab](https://github.com/powerhouse-inc/document-model-electron/commit/cd18babc471fef7b1939bed4478265bd5a38abc1)) -* configure available editors with env variables ([00fad56](https://github.com/powerhouse-inc/document-model-electron/commit/00fad56259d24c1dc9fe3009ec5d4d8d9a51782a)) -* default drive handling improvements ([57be63e](https://github.com/powerhouse-inc/document-model-electron/commit/57be63e34a368769eb159728194f70d60ad98290)) -* detect circular reference in node path ([c113d03](https://github.com/powerhouse-inc/document-model-electron/commit/c113d035118d418ed8006b55112d101f030b4caa)) -* disable dev tools when app is packaged ([2326a77](https://github.com/powerhouse-inc/document-model-electron/commit/2326a7774f74d2c8af949cf55c18b12b38d0b7d9)) -* disable document drive editor by default ([a61249f](https://github.com/powerhouse-inc/document-model-electron/commit/a61249f43e50219b7b6aebc27f63b2d07a4735ec)) -* disallow create operations ([9cb4a8e](https://github.com/powerhouse-inc/document-model-electron/commit/9cb4a8e4d902f67692e696b60c283a3ec59ca137)) -* downloadFile fallback ([9836f4c](https://github.com/powerhouse-inc/document-model-electron/commit/9836f4c1e6edf68d1239f69cfb86324cb1e4d6f0)) -* enable transactions editor ([28967c2](https://github.com/powerhouse-inc/document-model-electron/commit/28967c2c6a4465494f682e55e914bfdd719bc07b)) -* enabled add cloud drive modal ([d54f579](https://github.com/powerhouse-inc/document-model-electron/commit/d54f579bd903e57cf193cdc11a727eed5526971d)) -* enabled drop target for FolderItem ([70aeaad](https://github.com/powerhouse-inc/document-model-electron/commit/70aeaadde2844def0c0cc648dbb8f496d51b96dd)) -* enabled editor controls ([f7aa503](https://github.com/powerhouse-inc/document-model-electron/commit/f7aa50343c0a124056811f1ce29ab0c8539263da)) -* enabled keyboard shortcut for undo/redo ([82fe517](https://github.com/powerhouse-inc/document-model-electron/commit/82fe517dbbf01006c6fbaae0b1c493c57eeeb422)) -* enabled onErrorCallback for dispatch fn ([8bd3c7c](https://github.com/powerhouse-inc/document-model-electron/commit/8bd3c7ccfafbf1d1b32ada0bb941585bd0ee1907)) -* enabled rename option for folders in folder view ([d7a9b34](https://github.com/powerhouse-inc/document-model-electron/commit/d7a9b3490b0cb91d647ecb803513dbea590f04e0)) -* enabled rename option when copy/move an item ([3ef5ea4](https://github.com/powerhouse-inc/document-model-electron/commit/3ef5ea474997e10b670a989460dca939431f3a9a)) -* enabled rwa editor ([b7df486](https://github.com/powerhouse-inc/document-model-electron/commit/b7df486a82c0c044fab5dd434ecceba1a2c24dc1)) -* enabled switchboard link in RWA editor ([cece18e](https://github.com/powerhouse-inc/document-model-electron/commit/cece18e3cb900cbe2fe7d77c0c329a2c430e2539)) -* enabled undo/redo with new document structure ([f6af1e0](https://github.com/powerhouse-inc/document-model-electron/commit/f6af1e002121456e5e9cc4befe6c41ac4ddf8aa9)) -* expand selected path in sidebar on initial path load ([9b5e053](https://github.com/powerhouse-inc/document-model-electron/commit/9b5e0533e7e02d4ae9ea3c6bb01c9827eada160c)) -* export did:key instead of public key ([a358371](https://github.com/powerhouse-inc/document-model-electron/commit/a3583718047f447f2f59a8153e3e2ac15a8cd732)) -* fetch user's ens info ([229a1ae](https://github.com/powerhouse-inc/document-model-electron/commit/229a1ae1bcd145858f867cdf449d9ed2709c8ffc)) -* fix Authorize Connect font color ([25ba2e7](https://github.com/powerhouse-inc/document-model-electron/commit/25ba2e7af5c81c442fed8d919b31a66ba2959e77)) -* fix console warnings ([3024578](https://github.com/powerhouse-inc/document-model-electron/commit/3024578d93e4a70a89a3b3681d34f78a4bd0f1d0)) -* fix css import order ([9216a27](https://github.com/powerhouse-inc/document-model-electron/commit/9216a277e488f73cc892ad015c4ea35dd22bb2a9)) -* fix linux build ([433e6f9](https://github.com/powerhouse-inc/document-model-electron/commit/433e6f9b0a92f72d33e16bbcb71a8965c034c6be)) -* fix logo + position ([278ebeb](https://github.com/powerhouse-inc/document-model-electron/commit/278ebeb39cac2b6d1edb3b096161bb3810669f31)) -* fix rwa document name ([b3f39d1](https://github.com/powerhouse-inc/document-model-electron/commit/b3f39d16c09cb87295d53a7be249b4e2be3895ab)) -* fix sync status ([9ff69fe](https://github.com/powerhouse-inc/document-model-electron/commit/9ff69fedf729b7e70b07bf121c9feed00c1ddc58)) -* fix tailwind class conflicts ([341d8ba](https://github.com/powerhouse-inc/document-model-electron/commit/341d8ba945fd1a20c6014fcb6e5ce77faf458b5f)) -* fixed addDriveOperations ([4c33a1f](https://github.com/powerhouse-inc/document-model-electron/commit/4c33a1f891eeba1b9845768fbc0395cb01dd9e70)) -* fixed base route ([606e919](https://github.com/powerhouse-inc/document-model-electron/commit/606e9191be0f32309e7a0a59e82dc49aa88690bb)) -* fixed default document-models ([0d51154](https://github.com/powerhouse-inc/document-model-electron/commit/0d511546e95a1d5a534f92b549d7120076792040)) -* fixed editors loading ([4fda671](https://github.com/powerhouse-inc/document-model-electron/commit/4fda67192ca075aa66079cbf769548e53e1a2ef3)) -* fixed file import ([23cd72d](https://github.com/powerhouse-inc/document-model-electron/commit/23cd72da07e8fa12bb6f5c739d392432057d6812)) -* fixed file operations error ([5d123af](https://github.com/powerhouse-inc/document-model-electron/commit/5d123af045f0409222bd61404b2249db2a4ec19d)) -* fixes browser key storage ([bfb2a72](https://github.com/powerhouse-inc/document-model-electron/commit/bfb2a725ec7fb4ec507751e52aa743879e39b428)) -* generate key pair on desktop ([ebc0204](https://github.com/powerhouse-inc/document-model-electron/commit/ebc020405e0b289aa4cfdf4935b2afcd53494a7f)) -* go back from fixed version ([41684c4](https://github.com/powerhouse-inc/document-model-electron/commit/41684c4f9cb55bef7f4e8bea46e7ab2eedc26b5c)) -* handle empty string or wrong formatted string in env var ([0099615](https://github.com/powerhouse-inc/document-model-electron/commit/009961513edaba39ad8fb4daacd6dd702a9fedd8)) -* handle null parent folder ([21f9370](https://github.com/powerhouse-inc/document-model-electron/commit/21f93703b08e39c6c97312a232a609a53dacf1c0)) -* handle sync events on node document drive ([3855ce4](https://github.com/powerhouse-inc/document-model-electron/commit/3855ce42a72865ed48e7729d25ec1481e462851d)) -* handle undefined whitelist ([1672fa8](https://github.com/powerhouse-inc/document-model-electron/commit/1672fa86ab863d8d2fc88604a775f524f7b86614)) -* hide searchbar from config ([0bd4444](https://github.com/powerhouse-inc/document-model-electron/commit/0bd4444fca256b28bf413122a870f343963dc801)) -* ignore drives with error ([25a27d5](https://github.com/powerhouse-inc/document-model-electron/commit/25a27d51fed340a22530d5d13e784bf5f9f66fab)) -* ignore operation hashes when importing zip ([634bcd5](https://github.com/powerhouse-inc/document-model-electron/commit/634bcd5cd534d22db9813cc17be28359d94a1e61)) -* ignores document drive result when adding an operation from the editor ([74140e2](https://github.com/powerhouse-inc/document-model-electron/commit/74140e2400ea1c1b5bb9baf5f7b26ed7cbb2a9cb)) -* implemented rename and new folder actions ([45dbf5e](https://github.com/powerhouse-inc/document-model-electron/commit/45dbf5e527841f1107f9d444ac2b76f0dc6fa7c0)) -* import styles from design system ([f7ac8ad](https://github.com/powerhouse-inc/document-model-electron/commit/f7ac8adc2608e8d491618e01b1c98be9f8c43fe2)) -* improved url handling ([32b3dcd](https://github.com/powerhouse-inc/document-model-electron/commit/32b3dcd943518cba4f1f5a82f9dbb5b906096500)) -* install ts-reset ([228b082](https://github.com/powerhouse-inc/document-model-electron/commit/228b082e36b1e689b47d7ed923dfe3347e74ad7d)) -* install vite ([aa66a01](https://github.com/powerhouse-inc/document-model-electron/commit/aa66a01bc96f33984e9d6828fdd93d374916c2c4)) -* lighthouse recomendations ([dd3e594](https://github.com/powerhouse-inc/document-model-electron/commit/dd3e594c198ab2a9deb83420ed8bfb145475ec71)) -* load default drive ([589653f](https://github.com/powerhouse-inc/document-model-electron/commit/589653fab02bc030fbc4a99bea6ed6f4566fd57c)) -* log sync error ([204c38a](https://github.com/powerhouse-inc/document-model-electron/commit/204c38a5f2763edc2006119b8608f6dc39f40dc9)) -* manually install design system ([1b7c676](https://github.com/powerhouse-inc/document-model-electron/commit/1b7c6767c67efed2da903976a62a0bbbaf8a64fe)) -* move helpers ([e12240c](https://github.com/powerhouse-inc/document-model-electron/commit/e12240c40ca8368b9f99f0bdfa5d2881a9a71dc5)) -* move sync status invocation to hook ([dea3fa9](https://github.com/powerhouse-inc/document-model-electron/commit/dea3fa9f5fbcdf9cf355652bf32e2c434a366c13)) -* moved load initial data into a hook ([99c7417](https://github.com/powerhouse-inc/document-model-electron/commit/99c74175b899c9c1d3f7dbf27de174ebd053bdbf)) -* pass allow list credentials to components ([2fadac1](https://github.com/powerhouse-inc/document-model-electron/commit/2fadac18141430445138ec9446d46227cb69723a)) -* pass allow list props to components ([0df5de6](https://github.com/powerhouse-inc/document-model-electron/commit/0df5de6a1062538cfaee7dcd045abb53b5481106)) -* port config files to ts ([f78e7f5](https://github.com/powerhouse-inc/document-model-electron/commit/f78e7f5444a47d637cc6681dd25917524b03b659)) -* re-enable onErrorCallback with new operations error prop ([a408630](https://github.com/powerhouse-inc/document-model-electron/commit/a408630ee77596a83f2c3ee26a17d44447537647)) -* re-generate package-lock.json ([e48ac3d](https://github.com/powerhouse-inc/document-model-electron/commit/e48ac3dd16d25901565eaed94e4e82b4283f7287)) -* re-implemented copy/move nodes with new DocumentDrive ([c4fad11](https://github.com/powerhouse-inc/document-model-electron/commit/c4fad117827b929d69dd73824d46ef33f767c57f)) -* readd prepare script ([ad4577e](https://github.com/powerhouse-inc/document-model-electron/commit/ad4577ee92a812a4227e03f2923cbb5b5ca0efdc)) -* refresh UI when there are drive changes ([fca3c95](https://github.com/powerhouse-inc/document-model-electron/commit/fca3c9576679e1bdcb8cf017cad3e885cd245fdf)) -* regenerate lock ([0269b0b](https://github.com/powerhouse-inc/document-model-electron/commit/0269b0b47945bc6d53928ec975f3b0c4557706a9)) -* regenerate lockfile ([efa2f7f](https://github.com/powerhouse-inc/document-model-electron/commit/efa2f7f380e1e558b82a616f8d1ef1cda021371e)) -* regenerate lockfile ([c8aac44](https://github.com/powerhouse-inc/document-model-electron/commit/c8aac44f8cb0184962e5567ea3252e14cc686cce)) -* reinstall with npm ([f790b6c](https://github.com/powerhouse-inc/document-model-electron/commit/f790b6c8611e000b123723c014ef35c1ee9aa55b)) -* remove check ([1db971c](https://github.com/powerhouse-inc/document-model-electron/commit/1db971cf324e2ca0e92c8f9b01614f7ef64f3d6a)) -* remove csp ([b940c38](https://github.com/powerhouse-inc/document-model-electron/commit/b940c3849bb1f804c6d2d8ca7e2bced61be81a95)) -* remove default node logic ([217d6e5](https://github.com/powerhouse-inc/document-model-electron/commit/217d6e5ac54033bda7bd36473712e048fe775623)) -* remove hello from content ([decd9c4](https://github.com/powerhouse-inc/document-model-electron/commit/decd9c4a9dbce3d9ecacbee06ad91d5959b86f84)) -* remove old tailwind classes ([10a8b95](https://github.com/powerhouse-inc/document-model-electron/commit/10a8b95edbcf212c17cb9011b13b32d2b924a767)) -* remove redundant config ([0c4d334](https://github.com/powerhouse-inc/document-model-electron/commit/0c4d334f3f75ccef7597470e1ce2a490b449eca8)) -* remove redundant use effect ([9bb2950](https://github.com/powerhouse-inc/document-model-electron/commit/9bb29508084badc11d535fab2ba241fe8021bc5f)) -* remove restriction to send operations ([dc620c5](https://github.com/powerhouse-inc/document-model-electron/commit/dc620c5fda0dd9adff480ee2ea3494b2b1698cc5)) -* remove scrollbar styles ([a9a3080](https://github.com/powerhouse-inc/document-model-electron/commit/a9a30803d3bf1cf91a82cc9bac6133c9bb335691)) -* removed electron-deeplink pkg and updated deep links ([5cec527](https://github.com/powerhouse-inc/document-model-electron/commit/5cec527acc442886f35261affa1619efd30e2212)) -* removed networkId from signer ([89c2a1c](https://github.com/powerhouse-inc/document-model-electron/commit/89c2a1c676170878b4cb307b073b53e28bb9e1f5)) -* removed queue timeout ([8b517b7](https://github.com/powerhouse-inc/document-model-electron/commit/8b517b78c1529abe5c7ee6e69d1990c56c4fbb6e)) -* removed re-renders and prevent add default drive being called twice ([3104848](https://github.com/powerhouse-inc/document-model-electron/commit/3104848107ff53daea46d36930be8ca9e3f522e6)) -* removed usehooks-ts dep ([05ca45e](https://github.com/powerhouse-inc/document-model-electron/commit/05ca45ef3227c50a7d44bfd7c8d8730a89d3c369)) -* rename document drive node when document model name is changed ([b9008f7](https://github.com/powerhouse-inc/document-model-electron/commit/b9008f7e08e340329e16c0743133a09d044cb1dd)) -* replaced env vars by client.config file ([28f7a2f](https://github.com/powerhouse-inc/document-model-electron/commit/28f7a2f5fbe97403f4ed317303f19c43b1cbf300)) -* replaced feature flags context by atomWithStorage ([071b7aa](https://github.com/powerhouse-inc/document-model-electron/commit/071b7aacb44792851b45946f41abecaaa99f5633)) -* replaced sidebar input header by connect logo ([a845dfd](https://github.com/powerhouse-inc/document-model-electron/commit/a845dfd14df5167e25fe5530ae03e9400bb36d45)) -* separate browser storage ([9ea89b8](https://github.com/powerhouse-inc/document-model-electron/commit/9ea89b80a5094eaa56a2d3b417a0e8fb05c0ae91)) -* separated error and conflict messages for drive status notification ([e80ccfe](https://github.com/powerhouse-inc/document-model-electron/commit/e80ccfeff3bf1e739af33c0da97f5258f5007e5a)) -* set queue timeout to 10ms ([6c87c92](https://github.com/powerhouse-inc/document-model-electron/commit/6c87c92e4e4ed2246c642f6575db1b31c6611b06)) -* show success sync toast only after recover from error sync ([5c2a47a](https://github.com/powerhouse-inc/document-model-electron/commit/5c2a47a2d0232e13d9fd6047bbe88c3faee6caa3)) -* simplify copy ([2cd60c3](https://github.com/powerhouse-inc/document-model-electron/commit/2cd60c3957685049fc6ff64beb094b409bbd4f32)) -* support add drive ([f827d33](https://github.com/powerhouse-inc/document-model-electron/commit/f827d338d4b6b49bde54f58ec6eb133756f3c765)) -* support multiple separate allow lists ([74d6152](https://github.com/powerhouse-inc/document-model-electron/commit/74d615236b6a75d0602476a826787e37a3ab263f)) -* switch to using vars from design system ([587c258](https://github.com/powerhouse-inc/document-model-electron/commit/587c258c1f47b8f5f1004252aec491d91b14eb5a)) -* trigger build ([e85bf95](https://github.com/powerhouse-inc/document-model-electron/commit/e85bf95f96ece3f59ead521fe39588630203900d)) -* update connect opengraph meta data ([32b3720](https://github.com/powerhouse-inc/document-model-electron/commit/32b372038f27d9a062ad78de6fde36a70cf2d6d8)) -* update deeplink protocol ([45d0a58](https://github.com/powerhouse-inc/document-model-electron/commit/45d0a58d266bcc369fcef7e0a1cc88c71757e1fc)) -* update dependencies and increase pull interval to 3 seconds ([66d8aea](https://github.com/powerhouse-inc/document-model-electron/commit/66d8aea256ccc6f742347db03bf06901b777bc74)) -* update deps ([3b6fa8d](https://github.com/powerhouse-inc/document-model-electron/commit/3b6fa8daeedec0549451490c9a7efec733ab2b75)) -* update document drive ([ff37742](https://github.com/powerhouse-inc/document-model-electron/commit/ff37742d857e9445a30a4122f12ec8585f5d129e)) -* update document drive dep ([ad31bf0](https://github.com/powerhouse-inc/document-model-electron/commit/ad31bf08d09650a9c335e18cf7153c7bd7667081)) -* update document drive dep ([5baaf20](https://github.com/powerhouse-inc/document-model-electron/commit/5baaf2006c71885132bbdabb59976acf5cde8ce2)) -* update document-drive ([534fa80](https://github.com/powerhouse-inc/document-model-electron/commit/534fa802984035735710d220f2496add04704b64)) -* update document-drive ver ([393388e](https://github.com/powerhouse-inc/document-model-electron/commit/393388e0a45f0275e5ab6824695d70b931891777)) -* update document-model and document-drive ver ([d66225a](https://github.com/powerhouse-inc/document-model-electron/commit/d66225aefa67ed761e8c5a1f36b62685666f7d84)) -* update document-model and document-drive versions ([8d1f869](https://github.com/powerhouse-inc/document-model-electron/commit/8d1f8691bf1511aca38f96a1ca7488e9d6104af2)) -* update document-model dep ([c865770](https://github.com/powerhouse-inc/document-model-electron/commit/c8657706b488631cf5955a6677ae5e4e1252bc9c)) -* update document-model document-drive and document-model-libs deps ([aee1dce](https://github.com/powerhouse-inc/document-model-electron/commit/aee1dce7f1c927ca24ac5283ab3d4d48ca85b7f6)) -* update document-model lib to v1.0.29 ([9190869](https://github.com/powerhouse-inc/document-model-electron/commit/9190869ddea006ce0cad8c3fa264d83535e16950)) -* update drive sync icon on syncStatus event ([ded596e](https://github.com/powerhouse-inc/document-model-electron/commit/ded596eb4761ce7003e285a0b283d45242b66444)) -* update editor when opened document is changed ([88e1cad](https://github.com/powerhouse-inc/document-model-electron/commit/88e1cad21d61cc9675f53a4a67e51e8712b22696)) -* update env var names ([42ba363](https://github.com/powerhouse-inc/document-model-electron/commit/42ba363359b08b076fdb7d39fa7df9b2c7d963ba)) -* update experimental deps ([12d28d6](https://github.com/powerhouse-inc/document-model-electron/commit/12d28d695a58dfc9bb2ff1e288b6ea4ef39f1267)) -* update lint config ([170b252](https://github.com/powerhouse-inc/document-model-electron/commit/170b252cd35fe786147f4e5306948eecf6a3990c)) -* update submit handler ([9cd1a10](https://github.com/powerhouse-inc/document-model-electron/commit/9cd1a10a0fee03bf4ddd2ace4f1a3796e1b4de30)) -* update to use new sync icons ([e1cbf1d](https://github.com/powerhouse-inc/document-model-electron/commit/e1cbf1d22de3159c247b3356577f2fdc519a51c5)) -* update url params logic ([6450975](https://github.com/powerhouse-inc/document-model-electron/commit/645097513096fa26327e60ea510d2e4bd628a870)) -* updated deps ([e41734f](https://github.com/powerhouse-inc/document-model-electron/commit/e41734f70b7b8acae90c167df5884820ee99c3c9)) -* updated deps ([a328cd9](https://github.com/powerhouse-inc/document-model-electron/commit/a328cd93ec131d36f61c45fda4863f315fb3a2cc)) -* updated design system dep ([b378a42](https://github.com/powerhouse-inc/document-model-electron/commit/b378a420bad20debc06aeeb376401ecb311889ce)) -* updated document drive ([4b588b0](https://github.com/powerhouse-inc/document-model-electron/commit/4b588b0f602debb6d069c3c4d580292b87a94337)) -* updated document drive ([b0df564](https://github.com/powerhouse-inc/document-model-electron/commit/b0df564c0952c60b3202c392e9fb1a23e401bea8)) -* updated document drive lib ([5f30983](https://github.com/powerhouse-inc/document-model-electron/commit/5f30983ab3f07462d842e3f464c0723d3f8785dd)) -* updated document-drive ver ([f7b9c7d](https://github.com/powerhouse-inc/document-model-electron/commit/f7b9c7df9d9b569b296d599998e3a500bfb8735c)) -* updated document-drive version ([a92dd24](https://github.com/powerhouse-inc/document-model-electron/commit/a92dd24c3ae638ff02587623a3d33af7fd89e2b6)) -* updated document-drive@1.0.0-experimental.2 ([c2b2816](https://github.com/powerhouse-inc/document-model-electron/commit/c2b2816cc7eea0346ea7d958b39f4b25796bb2a0)) -* updated document-drive@1.0.0-experimental.4 ([f31d12d](https://github.com/powerhouse-inc/document-model-electron/commit/f31d12d18404882a1f3af00f9bca6ab79d7a667e)) -* updated document-model dep ([f487cff](https://github.com/powerhouse-inc/document-model-electron/commit/f487cff99198d7cc3d8fd9db944ca394cc788dec)) -* updated document-model lib ([9db149e](https://github.com/powerhouse-inc/document-model-electron/commit/9db149ecc91926c02f2fe8479ca08958b66977d3)) -* updated document-model-libs ([b0bb1d2](https://github.com/powerhouse-inc/document-model-electron/commit/b0bb1d2ef530ecacc8f722322149866f8fbce03d)) -* updated document-model-libs and design-system ver ([d4ab8f8](https://github.com/powerhouse-inc/document-model-electron/commit/d4ab8f881d0e04d5bf68e0748205cf25fcce90e1)) -* updated package.lock ([3c334f4](https://github.com/powerhouse-inc/document-model-electron/commit/3c334f4f714ec6a63ce63bbc7f60d0e67f99b17b)) -* updated rwa query ([3709cfc](https://github.com/powerhouse-inc/document-model-electron/commit/3709cfc9543851fe77f8a930d1e0806d552069d6)) -* use default values if there is a missing key for feature flags ([cdb728a](https://github.com/powerhouse-inc/document-model-electron/commit/cdb728a3964ca1183bd38743744a8bdf51e04fb6)) -* use drive icon ([c82bebb](https://github.com/powerhouse-inc/document-model-electron/commit/c82bebb00516c95b2f6f48102672bf70333f9477)) -* use memoryBrowser on packaged app ([2d11200](https://github.com/powerhouse-inc/document-model-electron/commit/2d11200a47c861429edd0ad5c6a4eb13b46a7363)) -* use new svgr syntax ([e1db3b9](https://github.com/powerhouse-inc/document-model-electron/commit/e1db3b95b5330f95893b5511df8041ed04d33fb7)) -* use not equal ([8e33089](https://github.com/powerhouse-inc/document-model-electron/commit/8e330890f658224bc1e37d6504765e3d01cc7ede)) -* use setTimeout as fallback for requestIdleCallback ([730c8f2](https://github.com/powerhouse-inc/document-model-electron/commit/730c8f292eec07908410f7f2949c045bab8094fe)) -* use tailwind styles ([53dc69f](https://github.com/powerhouse-inc/document-model-electron/commit/53dc69f69663b4d315c03b57a64b87b274e698cd)) -* use yarn ([812fe5a](https://github.com/powerhouse-inc/document-model-electron/commit/812fe5af48fdea5cb5955f6b8336604722476b44)) -* waits 50ms for new operations to make a single addOperations call ([d4c9796](https://github.com/powerhouse-inc/document-model-electron/commit/d4c97965cc9b83128f6be225a27a64c2f88795f3)) -* waits for document drive server to be loaded before checking default drive is added ([fc10ee8](https://github.com/powerhouse-inc/document-model-electron/commit/fc10ee8428d9d9c24c6cef38cd104ac5f79d759c)) - +- 🚀 Added ItemsContext integration ([41fc40f](https://github.com/powerhouse-inc/document-model-electron/commit/41fc40f93420101ca9b2ec34e1b4f4cab4a43a4b)) +- 🚀 added readable item path for File Items ([9f6a4ac](https://github.com/powerhouse-inc/document-model-electron/commit/9f6a4ac45318bb757e7c7c60df463e67b066771b)) +- 🚀 Implemented base folder-view design ([22ad4fc](https://github.com/powerhouse-inc/document-model-electron/commit/22ad4fc5046e27016ce1a47eda3282125af4db71)) +- activate queue ([#290](https://github.com/powerhouse-inc/document-model-electron/issues/290)) ([5b5a4fd](https://github.com/powerhouse-inc/document-model-electron/commit/5b5a4fd317ce624cc734f186778e49899dd3b148)) +- add dep array to use effect ([0a88d92](https://github.com/powerhouse-inc/document-model-electron/commit/0a88d92a664b877929978f05753f3d38e471625d)) +- add dependency versions to settings modal ([d01c0de](https://github.com/powerhouse-inc/document-model-electron/commit/d01c0de124cb9af00312e4c53e934d8a233e02af)) +- add design system preset ([a6cb51c](https://github.com/powerhouse-inc/document-model-electron/commit/a6cb51c31d4500d31fd091f165a4f01ae37ff4d7)) +- add duplicate action ([a9d2e29](https://github.com/powerhouse-inc/document-model-electron/commit/a9d2e29318badb84ca51acc9603a2c2dc7f25a0e)) +- add duplicate to folder ([a6212a8](https://github.com/powerhouse-inc/document-model-electron/commit/a6212a8fe3c62f49d1b624e75152e48f80034ed2)) +- add generate assets hook for icons copying ([4c25ebe](https://github.com/powerhouse-inc/document-model-electron/commit/4c25ebecc94941502e35dff28555664b3985f67b)) +- add is allowed to create documents hook ([0a457fc](https://github.com/powerhouse-inc/document-model-electron/commit/0a457fc35f5e78cb16eac1664c3def10b29b5229)) +- add optional dep ([a079cc7](https://github.com/powerhouse-inc/document-model-electron/commit/a079cc799c0d7987193ee209618151c10c743282)) +- add pull trigger on cloud drives ([9f86849](https://github.com/powerhouse-inc/document-model-electron/commit/9f868495ced48b9b23a3d128469ce7ac20d32a57)) +- add react aria dep ([499dda0](https://github.com/powerhouse-inc/document-model-electron/commit/499dda05d52469c85f0dc31d1da5639dc926c9c4)) +- add tailwind eslint plugin ([6e639bc](https://github.com/powerhouse-inc/document-model-electron/commit/6e639bc71bddeafe855c210c0f573cec7b2ce622)) +- add user context to actions ([6a3241d](https://github.com/powerhouse-inc/document-model-electron/commit/6a3241d3e98c58262ffc7bbbcaa66f6f5d8878b3)) +- added base path for nginx ([22a270b](https://github.com/powerhouse-inc/document-model-electron/commit/22a270b978e189a8a9afd20e0ae8f568e8c3336e)) +- added browser key storage ([6562881](https://github.com/powerhouse-inc/document-model-electron/commit/6562881b2eb603b59b55f1595a7f46b96dbbded6)) +- added clear storage setting ([922f5e1](https://github.com/powerhouse-inc/document-model-electron/commit/922f5e19ebd68e07440858c2f7308e3f6d1a2aae)) +- added config to hide drive sections ([aa67a3f](https://github.com/powerhouse-inc/document-model-electron/commit/aa67a3f392891e195fbc24a2ff858b66265eccc5)) +- added csp headers ([bd398aa](https://github.com/powerhouse-inc/document-model-electron/commit/bd398aa0bc6d748b740e17d4ddf197232d701c62)) +- added deeplink support to link to specific drive node ([ae1f97f](https://github.com/powerhouse-inc/document-model-electron/commit/ae1f97fb17e3cbc422a2e242e9ff530c598284a5)) +- added delete drive modal + enable delete file modal confirmation ([4ce110e](https://github.com/powerhouse-inc/document-model-electron/commit/4ce110e7baaaad3ea75a33eff45fab9994184658)) +- added develop environment ([c33ab9d](https://github.com/powerhouse-inc/document-model-electron/commit/c33ab9d6977712a3015d28a0cd27208f7fd727e5)) +- added develop to release cycle ([b9247e6](https://github.com/powerhouse-inc/document-model-electron/commit/b9247e66d19ffc9400caae9403d9b5b06048eacc)) +- added e2e playwright setup ([2d37330](https://github.com/powerhouse-inc/document-model-electron/commit/2d37330f103456dc9d3e24cc4a74d3ed7abb20c8)) +- added editor debug tools ([6928bed](https://github.com/powerhouse-inc/document-model-electron/commit/6928bed61c46322bc341da7bed48dcde60454b9e)) +- added env var to hide document model setting ([840a561](https://github.com/powerhouse-inc/document-model-electron/commit/840a5615ba0b5eafab123b0f0e5c21b3c880d670)) +- added env vars for renown ([f464d68](https://github.com/powerhouse-inc/document-model-electron/commit/f464d68172be57798be364a804b9de0e7f1733c1)) +- added feature flag setup + disable editors for demo ([7fa64f2](https://github.com/powerhouse-inc/document-model-electron/commit/7fa64f2634cea508ebfb8b20732a730dc8b0624b)) +- added gzip and brotli compression to nginx ([f52a0c3](https://github.com/powerhouse-inc/document-model-electron/commit/f52a0c3205b1fd7fc99875fae0ad5a1d5cd24dd5)) +- added heroku deployment for powerhouse staging env ([f4c538a](https://github.com/powerhouse-inc/document-model-electron/commit/f4c538a3e02781276996e30b759d50f248037c86)) +- added modal confirmation when export document with errors ([d22a447](https://github.com/powerhouse-inc/document-model-electron/commit/d22a447c98d50589f61e37cd6284155223824057)) +- added network id to user ([908a50e](https://github.com/powerhouse-inc/document-model-electron/commit/908a50e8df9c1ae7e53940dc801157a5ca665706)) +- added new env var to dockerfile ([64afb40](https://github.com/powerhouse-inc/document-model-electron/commit/64afb40dfec060e8ebfaaeddf8f47f3f925d21be)) +- added nginx config ([069be2c](https://github.com/powerhouse-inc/document-model-electron/commit/069be2cd98aee6fe3a6b686b4112a435e81d11b3)) +- added notification toast ([39ed0c2](https://github.com/powerhouse-inc/document-model-electron/commit/39ed0c2319c2a6e1c2044aff5cda1fd1dc51d24b)) +- added open file and delete file ([01793c8](https://github.com/powerhouse-inc/document-model-electron/commit/01793c8a5f21b8e1701e649cc926c8baa7ece4fe)) +- added opengraph and twitter meta data ([280da91](https://github.com/powerhouse-inc/document-model-electron/commit/280da914bbe8129ead8559d4169ea266fbb327bc)) +- added PH logo ([e9ec94b](https://github.com/powerhouse-inc/document-model-electron/commit/e9ec94b3373495aa0d03673b241c78605b61d396)) +- added prepare script ([abeaa41](https://github.com/powerhouse-inc/document-model-electron/commit/abeaa41bb7bfc7a8d3a7332a9dd0ba0dad088659)) +- added renown login on browser ([5b77016](https://github.com/powerhouse-inc/document-model-electron/commit/5b77016508fd448b23999919a8d9e40bc701e1f9)) +- added rewrite rules to vercel.json config ([b66cdb0](https://github.com/powerhouse-inc/document-model-electron/commit/b66cdb0fb264412710c1d3bf67f06d48df52408c)) +- added route to open document drive node ([6700f13](https://github.com/powerhouse-inc/document-model-electron/commit/6700f132435dd4ce175b036d5e906d1194976ed0)) +- added RWA doc name fix for demo ([05dfd07](https://github.com/powerhouse-inc/document-model-electron/commit/05dfd0781038523b86437ebe1164e20a848c65b2)) +- added scope of work ([742aae0](https://github.com/powerhouse-inc/document-model-electron/commit/742aae0cab712068d2f8dbe2804da3ba802416bd)) +- added sentry dsn to environments ([c4cfef1](https://github.com/powerhouse-inc/document-model-electron/commit/c4cfef161be9db837d29aca316949957412e4c25)) +- added sentry environments ([68fefd0](https://github.com/powerhouse-inc/document-model-electron/commit/68fefd095cbffcec9eeebedb786d5ab7afc9c9bf)) +- added sentry to connect ([d51ec53](https://github.com/powerhouse-inc/document-model-electron/commit/d51ec538d376cb533882f9c4b0ee057d80ce7d1a)) +- added settings modal integration ([dfb9d28](https://github.com/powerhouse-inc/document-model-electron/commit/dfb9d287bb99dec4316c9eee5098816b6f498926)) +- added sidebar login ([2917809](https://github.com/powerhouse-inc/document-model-electron/commit/29178094a9d711e1d7303dde1511a7b73bc37199)) +- added sort nodes + fix input styles + cancel new folders with empty name ([4a2f9fb](https://github.com/powerhouse-inc/document-model-electron/commit/4a2f9fbf2c4dc5427c58633f18e40eb10574600c)) +- added support for delete option in FolderItem and FileItem ([85800ab](https://github.com/powerhouse-inc/document-model-electron/commit/85800ab374da9be041d6e8c547d186a0671a6b91)) +- added support for document in addfile action ([0706ce2](https://github.com/powerhouse-inc/document-model-electron/commit/0706ce25a515024a37b61aec11c930601a0869e5)) +- added support for rename files + create file name modal ([8a76691](https://github.com/powerhouse-inc/document-model-electron/commit/8a76691426d671128c4cfbc98864a9a669e395f3)) +- added support for renown user ([3853b37](https://github.com/powerhouse-inc/document-model-electron/commit/3853b371349ee14051b666a19fbb0b0c564c8ac6)) +- added support for router basename ([251afe2](https://github.com/powerhouse-inc/document-model-electron/commit/251afe2b1d4eab690f9592e25edc6c555e2fe44a)) +- added switchboard link to document files ([5f31b71](https://github.com/powerhouse-inc/document-model-electron/commit/5f31b710a6ae65f42aac65840da422134e48ee6c)) +- added useConnectConfig hook ([a600091](https://github.com/powerhouse-inc/document-model-electron/commit/a60009131ad8600174311b45a696d0c3219ae8ce)) +- added vercel redirect ([7100848](https://github.com/powerhouse-inc/document-model-electron/commit/7100848213fe6e5d0811229e67c82b8997648fa2)) +- added vite env as build args ([c76d4f4](https://github.com/powerhouse-inc/document-model-electron/commit/c76d4f431017df7f9b40a5063a71618084333c24)) +- allow connect-src for renown.id ([7357d4a](https://github.com/powerhouse-inc/document-model-electron/commit/7357d4a4a2c9aff400e55d9c8eed9630aaec4ed5)) +- allow external images ([171efac](https://github.com/powerhouse-inc/document-model-electron/commit/171efac183458b993ac11849345b3fb8765a10f4)) +- allow per deploy drive restrictions ([8779d84](https://github.com/powerhouse-inc/document-model-electron/commit/8779d84cb1be5128ac7b1c63a8666c5d03b2f593)) +- allow url for file ([474ad4d](https://github.com/powerhouse-inc/document-model-electron/commit/474ad4d0b90e9e882bb52d4ca479a4314d15eec1)) +- also disable when env is production ([6f60688](https://github.com/powerhouse-inc/document-model-electron/commit/6f60688a7bcf92e19afe5a4a49a1baa9f0c44507)) +- also do src === target check in move node function ([3e80c1e](https://github.com/powerhouse-inc/document-model-electron/commit/3e80c1e4dface07c9d101c39f6a0dce6d0654a26)) +- apply auto fixes ([b10b111](https://github.com/powerhouse-inc/document-model-electron/commit/b10b111374636b145c52fa15f38ebc0751912483)) +- auto-select first drive if there's no selected path ([daf3083](https://github.com/powerhouse-inc/document-model-electron/commit/daf3083b4fff8dd6f033ce9806affe932fea4f04)) +- bump ([40fd30a](https://github.com/powerhouse-inc/document-model-electron/commit/40fd30a489214a512a7dc43fbe9dea1e0c33604a)) +- bump ([11fb69f](https://github.com/powerhouse-inc/document-model-electron/commit/11fb69f6f507d4240e72b1208982c814bce185a8)) +- bump deps ([7d7206c](https://github.com/powerhouse-inc/document-model-electron/commit/7d7206c5ae9bc7c9e7d26713fc8ff4e7ef5f459d)) +- bump design system ([fb12d70](https://github.com/powerhouse-inc/document-model-electron/commit/fb12d70fcd3237f1cacb0375e99e4a1ae01cc342)) +- bump design system ([4e1d168](https://github.com/powerhouse-inc/document-model-electron/commit/4e1d168298355beea31e2216edeb7b7cef8e8257)) +- bump design system and document model libs ([165e2cc](https://github.com/powerhouse-inc/document-model-electron/commit/165e2ccc41d5d72a6f2f834292c18aa2388ebb86)) +- bump design system to integrate dep version component ([a18c621](https://github.com/powerhouse-inc/document-model-electron/commit/a18c621a24d97b3bfa9f103365b3890f6fd342d7)) +- bump design-system and document-model-lib deps ([7d90802](https://github.com/powerhouse-inc/document-model-electron/commit/7d9080289ce258cf9d299d13b4cf7e092fd51535)) +- bump document drive version ([254a2cd](https://github.com/powerhouse-inc/document-model-electron/commit/254a2cd967b07d22352d38509ad55c2ffcd19bf5)) +- bump libs ([24a9cd3](https://github.com/powerhouse-inc/document-model-electron/commit/24a9cd3427eecc32697f15d7479bf5ee53c95084)) +- bump libs ([b27b036](https://github.com/powerhouse-inc/document-model-electron/commit/b27b036a487fbe989f9f7b585603e15bcdd3fa3a)) +- bump libs ([5fb15d3](https://github.com/powerhouse-inc/document-model-electron/commit/5fb15d321de8649ac2fc6953d9ec5312aeabefeb)) +- bump libs ([1f38863](https://github.com/powerhouse-inc/document-model-electron/commit/1f38863cb3e6fff081218ce59d7cf1a6f3c44621)) +- bump libs ([7df97b0](https://github.com/powerhouse-inc/document-model-electron/commit/7df97b03882c012f035b259aebb85ba42704008b)) +- bump libs ([78baf1d](https://github.com/powerhouse-inc/document-model-electron/commit/78baf1dee6da3f18208f23973f65b5a1b930ba81)) +- bump libs ([d766c36](https://github.com/powerhouse-inc/document-model-electron/commit/d766c36649f3575b2d10bcaf532249437a79b36c)) +- bump libs ([6b3f58f](https://github.com/powerhouse-inc/document-model-electron/commit/6b3f58fd3aad9e628cf2312629280f12984648e2)) +- bump libs ([f98b523](https://github.com/powerhouse-inc/document-model-electron/commit/f98b523acb0e2f2599d4d8927bf8fe5b26374856)) +- bump libs ([2a9a29d](https://github.com/powerhouse-inc/document-model-electron/commit/2a9a29d0d9d129abbbe6b16567151f3ecd0d525e)) +- bump libs ([62117a9](https://github.com/powerhouse-inc/document-model-electron/commit/62117a90490e9bbb32c4a84fdbdb3d930ca7ebfb)) +- bump libs ([62cd43d](https://github.com/powerhouse-inc/document-model-electron/commit/62cd43dd7f80cfd6202c251a9c1af1bad0978b67)) +- bump lint deps ([544fcea](https://github.com/powerhouse-inc/document-model-electron/commit/544fcea7cdcf450756b8deb913c47047a9161849)) +- bump react aria ([3a8ed93](https://github.com/powerhouse-inc/document-model-electron/commit/3a8ed934d371b11c7deb8c8894b43c323d04f06f)) +- cancel rename operation when new name is empty ([6c7a815](https://github.com/powerhouse-inc/document-model-electron/commit/6c7a815500339ebbced23214450750bacbfdebc9)) +- change term to allow list ([af99e9b](https://github.com/powerhouse-inc/document-model-electron/commit/af99e9ba0a3eee7074cc763922caf1656f024e83)) +- changed default renown env variables ([c87ee69](https://github.com/powerhouse-inc/document-model-electron/commit/c87ee697507eba7235150e5156bbe7d0cd121e36)) +- changed nginx image to nginx-brotli ([3d497da](https://github.com/powerhouse-inc/document-model-electron/commit/3d497da7806bdb77a6352aad9ad5f64ddcfa93e4)) +- check if operations with same index are submitted ([b7ad973](https://github.com/powerhouse-inc/document-model-electron/commit/b7ad97307106467a39060da44420515f10ce3921)) +- check user auth on startup ([6820f27](https://github.com/powerhouse-inc/document-model-electron/commit/6820f27a8defb40d72e3580d00fe11f1170bbe22)) +- commented renown env variables ([cd18bab](https://github.com/powerhouse-inc/document-model-electron/commit/cd18babc471fef7b1939bed4478265bd5a38abc1)) +- configure available editors with env variables ([00fad56](https://github.com/powerhouse-inc/document-model-electron/commit/00fad56259d24c1dc9fe3009ec5d4d8d9a51782a)) +- default drive handling improvements ([57be63e](https://github.com/powerhouse-inc/document-model-electron/commit/57be63e34a368769eb159728194f70d60ad98290)) +- detect circular reference in node path ([c113d03](https://github.com/powerhouse-inc/document-model-electron/commit/c113d035118d418ed8006b55112d101f030b4caa)) +- disable dev tools when app is packaged ([2326a77](https://github.com/powerhouse-inc/document-model-electron/commit/2326a7774f74d2c8af949cf55c18b12b38d0b7d9)) +- disable document drive editor by default ([a61249f](https://github.com/powerhouse-inc/document-model-electron/commit/a61249f43e50219b7b6aebc27f63b2d07a4735ec)) +- disallow create operations ([9cb4a8e](https://github.com/powerhouse-inc/document-model-electron/commit/9cb4a8e4d902f67692e696b60c283a3ec59ca137)) +- downloadFile fallback ([9836f4c](https://github.com/powerhouse-inc/document-model-electron/commit/9836f4c1e6edf68d1239f69cfb86324cb1e4d6f0)) +- enable transactions editor ([28967c2](https://github.com/powerhouse-inc/document-model-electron/commit/28967c2c6a4465494f682e55e914bfdd719bc07b)) +- enabled add cloud drive modal ([d54f579](https://github.com/powerhouse-inc/document-model-electron/commit/d54f579bd903e57cf193cdc11a727eed5526971d)) +- enabled drop target for FolderItem ([70aeaad](https://github.com/powerhouse-inc/document-model-electron/commit/70aeaadde2844def0c0cc648dbb8f496d51b96dd)) +- enabled editor controls ([f7aa503](https://github.com/powerhouse-inc/document-model-electron/commit/f7aa50343c0a124056811f1ce29ab0c8539263da)) +- enabled keyboard shortcut for undo/redo ([82fe517](https://github.com/powerhouse-inc/document-model-electron/commit/82fe517dbbf01006c6fbaae0b1c493c57eeeb422)) +- enabled onErrorCallback for dispatch fn ([8bd3c7c](https://github.com/powerhouse-inc/document-model-electron/commit/8bd3c7ccfafbf1d1b32ada0bb941585bd0ee1907)) +- enabled rename option for folders in folder view ([d7a9b34](https://github.com/powerhouse-inc/document-model-electron/commit/d7a9b3490b0cb91d647ecb803513dbea590f04e0)) +- enabled rename option when copy/move an item ([3ef5ea4](https://github.com/powerhouse-inc/document-model-electron/commit/3ef5ea474997e10b670a989460dca939431f3a9a)) +- enabled rwa editor ([b7df486](https://github.com/powerhouse-inc/document-model-electron/commit/b7df486a82c0c044fab5dd434ecceba1a2c24dc1)) +- enabled switchboard link in RWA editor ([cece18e](https://github.com/powerhouse-inc/document-model-electron/commit/cece18e3cb900cbe2fe7d77c0c329a2c430e2539)) +- enabled undo/redo with new document structure ([f6af1e0](https://github.com/powerhouse-inc/document-model-electron/commit/f6af1e002121456e5e9cc4befe6c41ac4ddf8aa9)) +- expand selected path in sidebar on initial path load ([9b5e053](https://github.com/powerhouse-inc/document-model-electron/commit/9b5e0533e7e02d4ae9ea3c6bb01c9827eada160c)) +- export did:key instead of public key ([a358371](https://github.com/powerhouse-inc/document-model-electron/commit/a3583718047f447f2f59a8153e3e2ac15a8cd732)) +- fetch user's ens info ([229a1ae](https://github.com/powerhouse-inc/document-model-electron/commit/229a1ae1bcd145858f867cdf449d9ed2709c8ffc)) +- fix Authorize Connect font color ([25ba2e7](https://github.com/powerhouse-inc/document-model-electron/commit/25ba2e7af5c81c442fed8d919b31a66ba2959e77)) +- fix console warnings ([3024578](https://github.com/powerhouse-inc/document-model-electron/commit/3024578d93e4a70a89a3b3681d34f78a4bd0f1d0)) +- fix css import order ([9216a27](https://github.com/powerhouse-inc/document-model-electron/commit/9216a277e488f73cc892ad015c4ea35dd22bb2a9)) +- fix linux build ([433e6f9](https://github.com/powerhouse-inc/document-model-electron/commit/433e6f9b0a92f72d33e16bbcb71a8965c034c6be)) +- fix logo + position ([278ebeb](https://github.com/powerhouse-inc/document-model-electron/commit/278ebeb39cac2b6d1edb3b096161bb3810669f31)) +- fix rwa document name ([b3f39d1](https://github.com/powerhouse-inc/document-model-electron/commit/b3f39d16c09cb87295d53a7be249b4e2be3895ab)) +- fix sync status ([9ff69fe](https://github.com/powerhouse-inc/document-model-electron/commit/9ff69fedf729b7e70b07bf121c9feed00c1ddc58)) +- fix tailwind class conflicts ([341d8ba](https://github.com/powerhouse-inc/document-model-electron/commit/341d8ba945fd1a20c6014fcb6e5ce77faf458b5f)) +- fixed addDriveOperations ([4c33a1f](https://github.com/powerhouse-inc/document-model-electron/commit/4c33a1f891eeba1b9845768fbc0395cb01dd9e70)) +- fixed base route ([606e919](https://github.com/powerhouse-inc/document-model-electron/commit/606e9191be0f32309e7a0a59e82dc49aa88690bb)) +- fixed default document-models ([0d51154](https://github.com/powerhouse-inc/document-model-electron/commit/0d511546e95a1d5a534f92b549d7120076792040)) +- fixed editors loading ([4fda671](https://github.com/powerhouse-inc/document-model-electron/commit/4fda67192ca075aa66079cbf769548e53e1a2ef3)) +- fixed file import ([23cd72d](https://github.com/powerhouse-inc/document-model-electron/commit/23cd72da07e8fa12bb6f5c739d392432057d6812)) +- fixed file operations error ([5d123af](https://github.com/powerhouse-inc/document-model-electron/commit/5d123af045f0409222bd61404b2249db2a4ec19d)) +- fixes browser key storage ([bfb2a72](https://github.com/powerhouse-inc/document-model-electron/commit/bfb2a725ec7fb4ec507751e52aa743879e39b428)) +- generate key pair on desktop ([ebc0204](https://github.com/powerhouse-inc/document-model-electron/commit/ebc020405e0b289aa4cfdf4935b2afcd53494a7f)) +- go back from fixed version ([41684c4](https://github.com/powerhouse-inc/document-model-electron/commit/41684c4f9cb55bef7f4e8bea46e7ab2eedc26b5c)) +- handle empty string or wrong formatted string in env var ([0099615](https://github.com/powerhouse-inc/document-model-electron/commit/009961513edaba39ad8fb4daacd6dd702a9fedd8)) +- handle null parent folder ([21f9370](https://github.com/powerhouse-inc/document-model-electron/commit/21f93703b08e39c6c97312a232a609a53dacf1c0)) +- handle sync events on node document drive ([3855ce4](https://github.com/powerhouse-inc/document-model-electron/commit/3855ce42a72865ed48e7729d25ec1481e462851d)) +- handle undefined whitelist ([1672fa8](https://github.com/powerhouse-inc/document-model-electron/commit/1672fa86ab863d8d2fc88604a775f524f7b86614)) +- hide searchbar from config ([0bd4444](https://github.com/powerhouse-inc/document-model-electron/commit/0bd4444fca256b28bf413122a870f343963dc801)) +- ignore drives with error ([25a27d5](https://github.com/powerhouse-inc/document-model-electron/commit/25a27d51fed340a22530d5d13e784bf5f9f66fab)) +- ignore operation hashes when importing zip ([634bcd5](https://github.com/powerhouse-inc/document-model-electron/commit/634bcd5cd534d22db9813cc17be28359d94a1e61)) +- ignores document drive result when adding an operation from the editor ([74140e2](https://github.com/powerhouse-inc/document-model-electron/commit/74140e2400ea1c1b5bb9baf5f7b26ed7cbb2a9cb)) +- implemented rename and new folder actions ([45dbf5e](https://github.com/powerhouse-inc/document-model-electron/commit/45dbf5e527841f1107f9d444ac2b76f0dc6fa7c0)) +- import styles from design system ([f7ac8ad](https://github.com/powerhouse-inc/document-model-electron/commit/f7ac8adc2608e8d491618e01b1c98be9f8c43fe2)) +- improved url handling ([32b3dcd](https://github.com/powerhouse-inc/document-model-electron/commit/32b3dcd943518cba4f1f5a82f9dbb5b906096500)) +- install ts-reset ([228b082](https://github.com/powerhouse-inc/document-model-electron/commit/228b082e36b1e689b47d7ed923dfe3347e74ad7d)) +- install vite ([aa66a01](https://github.com/powerhouse-inc/document-model-electron/commit/aa66a01bc96f33984e9d6828fdd93d374916c2c4)) +- lighthouse recomendations ([dd3e594](https://github.com/powerhouse-inc/document-model-electron/commit/dd3e594c198ab2a9deb83420ed8bfb145475ec71)) +- load default drive ([589653f](https://github.com/powerhouse-inc/document-model-electron/commit/589653fab02bc030fbc4a99bea6ed6f4566fd57c)) +- log sync error ([204c38a](https://github.com/powerhouse-inc/document-model-electron/commit/204c38a5f2763edc2006119b8608f6dc39f40dc9)) +- manually install design system ([1b7c676](https://github.com/powerhouse-inc/document-model-electron/commit/1b7c6767c67efed2da903976a62a0bbbaf8a64fe)) +- move helpers ([e12240c](https://github.com/powerhouse-inc/document-model-electron/commit/e12240c40ca8368b9f99f0bdfa5d2881a9a71dc5)) +- move sync status invocation to hook ([dea3fa9](https://github.com/powerhouse-inc/document-model-electron/commit/dea3fa9f5fbcdf9cf355652bf32e2c434a366c13)) +- moved load initial data into a hook ([99c7417](https://github.com/powerhouse-inc/document-model-electron/commit/99c74175b899c9c1d3f7dbf27de174ebd053bdbf)) +- pass allow list credentials to components ([2fadac1](https://github.com/powerhouse-inc/document-model-electron/commit/2fadac18141430445138ec9446d46227cb69723a)) +- pass allow list props to components ([0df5de6](https://github.com/powerhouse-inc/document-model-electron/commit/0df5de6a1062538cfaee7dcd045abb53b5481106)) +- port config files to ts ([f78e7f5](https://github.com/powerhouse-inc/document-model-electron/commit/f78e7f5444a47d637cc6681dd25917524b03b659)) +- re-enable onErrorCallback with new operations error prop ([a408630](https://github.com/powerhouse-inc/document-model-electron/commit/a408630ee77596a83f2c3ee26a17d44447537647)) +- re-generate package-lock.json ([e48ac3d](https://github.com/powerhouse-inc/document-model-electron/commit/e48ac3dd16d25901565eaed94e4e82b4283f7287)) +- re-implemented copy/move nodes with new DocumentDrive ([c4fad11](https://github.com/powerhouse-inc/document-model-electron/commit/c4fad117827b929d69dd73824d46ef33f767c57f)) +- readd prepare script ([ad4577e](https://github.com/powerhouse-inc/document-model-electron/commit/ad4577ee92a812a4227e03f2923cbb5b5ca0efdc)) +- refresh UI when there are drive changes ([fca3c95](https://github.com/powerhouse-inc/document-model-electron/commit/fca3c9576679e1bdcb8cf017cad3e885cd245fdf)) +- regenerate lock ([0269b0b](https://github.com/powerhouse-inc/document-model-electron/commit/0269b0b47945bc6d53928ec975f3b0c4557706a9)) +- regenerate lockfile ([efa2f7f](https://github.com/powerhouse-inc/document-model-electron/commit/efa2f7f380e1e558b82a616f8d1ef1cda021371e)) +- regenerate lockfile ([c8aac44](https://github.com/powerhouse-inc/document-model-electron/commit/c8aac44f8cb0184962e5567ea3252e14cc686cce)) +- reinstall with npm ([f790b6c](https://github.com/powerhouse-inc/document-model-electron/commit/f790b6c8611e000b123723c014ef35c1ee9aa55b)) +- remove check ([1db971c](https://github.com/powerhouse-inc/document-model-electron/commit/1db971cf324e2ca0e92c8f9b01614f7ef64f3d6a)) +- remove csp ([b940c38](https://github.com/powerhouse-inc/document-model-electron/commit/b940c3849bb1f804c6d2d8ca7e2bced61be81a95)) +- remove default node logic ([217d6e5](https://github.com/powerhouse-inc/document-model-electron/commit/217d6e5ac54033bda7bd36473712e048fe775623)) +- remove hello from content ([decd9c4](https://github.com/powerhouse-inc/document-model-electron/commit/decd9c4a9dbce3d9ecacbee06ad91d5959b86f84)) +- remove old tailwind classes ([10a8b95](https://github.com/powerhouse-inc/document-model-electron/commit/10a8b95edbcf212c17cb9011b13b32d2b924a767)) +- remove redundant config ([0c4d334](https://github.com/powerhouse-inc/document-model-electron/commit/0c4d334f3f75ccef7597470e1ce2a490b449eca8)) +- remove redundant use effect ([9bb2950](https://github.com/powerhouse-inc/document-model-electron/commit/9bb29508084badc11d535fab2ba241fe8021bc5f)) +- remove restriction to send operations ([dc620c5](https://github.com/powerhouse-inc/document-model-electron/commit/dc620c5fda0dd9adff480ee2ea3494b2b1698cc5)) +- remove scrollbar styles ([a9a3080](https://github.com/powerhouse-inc/document-model-electron/commit/a9a30803d3bf1cf91a82cc9bac6133c9bb335691)) +- removed electron-deeplink pkg and updated deep links ([5cec527](https://github.com/powerhouse-inc/document-model-electron/commit/5cec527acc442886f35261affa1619efd30e2212)) +- removed networkId from signer ([89c2a1c](https://github.com/powerhouse-inc/document-model-electron/commit/89c2a1c676170878b4cb307b073b53e28bb9e1f5)) +- removed queue timeout ([8b517b7](https://github.com/powerhouse-inc/document-model-electron/commit/8b517b78c1529abe5c7ee6e69d1990c56c4fbb6e)) +- removed re-renders and prevent add default drive being called twice ([3104848](https://github.com/powerhouse-inc/document-model-electron/commit/3104848107ff53daea46d36930be8ca9e3f522e6)) +- removed usehooks-ts dep ([05ca45e](https://github.com/powerhouse-inc/document-model-electron/commit/05ca45ef3227c50a7d44bfd7c8d8730a89d3c369)) +- rename document drive node when document model name is changed ([b9008f7](https://github.com/powerhouse-inc/document-model-electron/commit/b9008f7e08e340329e16c0743133a09d044cb1dd)) +- replaced env vars by client.config file ([28f7a2f](https://github.com/powerhouse-inc/document-model-electron/commit/28f7a2f5fbe97403f4ed317303f19c43b1cbf300)) +- replaced feature flags context by atomWithStorage ([071b7aa](https://github.com/powerhouse-inc/document-model-electron/commit/071b7aacb44792851b45946f41abecaaa99f5633)) +- replaced sidebar input header by connect logo ([a845dfd](https://github.com/powerhouse-inc/document-model-electron/commit/a845dfd14df5167e25fe5530ae03e9400bb36d45)) +- separate browser storage ([9ea89b8](https://github.com/powerhouse-inc/document-model-electron/commit/9ea89b80a5094eaa56a2d3b417a0e8fb05c0ae91)) +- separated error and conflict messages for drive status notification ([e80ccfe](https://github.com/powerhouse-inc/document-model-electron/commit/e80ccfeff3bf1e739af33c0da97f5258f5007e5a)) +- set queue timeout to 10ms ([6c87c92](https://github.com/powerhouse-inc/document-model-electron/commit/6c87c92e4e4ed2246c642f6575db1b31c6611b06)) +- show success sync toast only after recover from error sync ([5c2a47a](https://github.com/powerhouse-inc/document-model-electron/commit/5c2a47a2d0232e13d9fd6047bbe88c3faee6caa3)) +- simplify copy ([2cd60c3](https://github.com/powerhouse-inc/document-model-electron/commit/2cd60c3957685049fc6ff64beb094b409bbd4f32)) +- support add drive ([f827d33](https://github.com/powerhouse-inc/document-model-electron/commit/f827d338d4b6b49bde54f58ec6eb133756f3c765)) +- support multiple separate allow lists ([74d6152](https://github.com/powerhouse-inc/document-model-electron/commit/74d615236b6a75d0602476a826787e37a3ab263f)) +- switch to using vars from design system ([587c258](https://github.com/powerhouse-inc/document-model-electron/commit/587c258c1f47b8f5f1004252aec491d91b14eb5a)) +- trigger build ([e85bf95](https://github.com/powerhouse-inc/document-model-electron/commit/e85bf95f96ece3f59ead521fe39588630203900d)) +- update connect opengraph meta data ([32b3720](https://github.com/powerhouse-inc/document-model-electron/commit/32b372038f27d9a062ad78de6fde36a70cf2d6d8)) +- update deeplink protocol ([45d0a58](https://github.com/powerhouse-inc/document-model-electron/commit/45d0a58d266bcc369fcef7e0a1cc88c71757e1fc)) +- update dependencies and increase pull interval to 3 seconds ([66d8aea](https://github.com/powerhouse-inc/document-model-electron/commit/66d8aea256ccc6f742347db03bf06901b777bc74)) +- update deps ([3b6fa8d](https://github.com/powerhouse-inc/document-model-electron/commit/3b6fa8daeedec0549451490c9a7efec733ab2b75)) +- update document drive ([ff37742](https://github.com/powerhouse-inc/document-model-electron/commit/ff37742d857e9445a30a4122f12ec8585f5d129e)) +- update document drive dep ([ad31bf0](https://github.com/powerhouse-inc/document-model-electron/commit/ad31bf08d09650a9c335e18cf7153c7bd7667081)) +- update document drive dep ([5baaf20](https://github.com/powerhouse-inc/document-model-electron/commit/5baaf2006c71885132bbdabb59976acf5cde8ce2)) +- update document-drive ([534fa80](https://github.com/powerhouse-inc/document-model-electron/commit/534fa802984035735710d220f2496add04704b64)) +- update document-drive ver ([393388e](https://github.com/powerhouse-inc/document-model-electron/commit/393388e0a45f0275e5ab6824695d70b931891777)) +- update document-model and document-drive ver ([d66225a](https://github.com/powerhouse-inc/document-model-electron/commit/d66225aefa67ed761e8c5a1f36b62685666f7d84)) +- update document-model and document-drive versions ([8d1f869](https://github.com/powerhouse-inc/document-model-electron/commit/8d1f8691bf1511aca38f96a1ca7488e9d6104af2)) +- update document-model dep ([c865770](https://github.com/powerhouse-inc/document-model-electron/commit/c8657706b488631cf5955a6677ae5e4e1252bc9c)) +- update document-model document-drive and document-model-libs deps ([aee1dce](https://github.com/powerhouse-inc/document-model-electron/commit/aee1dce7f1c927ca24ac5283ab3d4d48ca85b7f6)) +- update document-model lib to v1.0.29 ([9190869](https://github.com/powerhouse-inc/document-model-electron/commit/9190869ddea006ce0cad8c3fa264d83535e16950)) +- update drive sync icon on syncStatus event ([ded596e](https://github.com/powerhouse-inc/document-model-electron/commit/ded596eb4761ce7003e285a0b283d45242b66444)) +- update editor when opened document is changed ([88e1cad](https://github.com/powerhouse-inc/document-model-electron/commit/88e1cad21d61cc9675f53a4a67e51e8712b22696)) +- update env var names ([42ba363](https://github.com/powerhouse-inc/document-model-electron/commit/42ba363359b08b076fdb7d39fa7df9b2c7d963ba)) +- update experimental deps ([12d28d6](https://github.com/powerhouse-inc/document-model-electron/commit/12d28d695a58dfc9bb2ff1e288b6ea4ef39f1267)) +- update lint config ([170b252](https://github.com/powerhouse-inc/document-model-electron/commit/170b252cd35fe786147f4e5306948eecf6a3990c)) +- update submit handler ([9cd1a10](https://github.com/powerhouse-inc/document-model-electron/commit/9cd1a10a0fee03bf4ddd2ace4f1a3796e1b4de30)) +- update to use new sync icons ([e1cbf1d](https://github.com/powerhouse-inc/document-model-electron/commit/e1cbf1d22de3159c247b3356577f2fdc519a51c5)) +- update url params logic ([6450975](https://github.com/powerhouse-inc/document-model-electron/commit/645097513096fa26327e60ea510d2e4bd628a870)) +- updated deps ([e41734f](https://github.com/powerhouse-inc/document-model-electron/commit/e41734f70b7b8acae90c167df5884820ee99c3c9)) +- updated deps ([a328cd9](https://github.com/powerhouse-inc/document-model-electron/commit/a328cd93ec131d36f61c45fda4863f315fb3a2cc)) +- updated design system dep ([b378a42](https://github.com/powerhouse-inc/document-model-electron/commit/b378a420bad20debc06aeeb376401ecb311889ce)) +- updated document drive ([4b588b0](https://github.com/powerhouse-inc/document-model-electron/commit/4b588b0f602debb6d069c3c4d580292b87a94337)) +- updated document drive ([b0df564](https://github.com/powerhouse-inc/document-model-electron/commit/b0df564c0952c60b3202c392e9fb1a23e401bea8)) +- updated document drive lib ([5f30983](https://github.com/powerhouse-inc/document-model-electron/commit/5f30983ab3f07462d842e3f464c0723d3f8785dd)) +- updated document-drive ver ([f7b9c7d](https://github.com/powerhouse-inc/document-model-electron/commit/f7b9c7df9d9b569b296d599998e3a500bfb8735c)) +- updated document-drive version ([a92dd24](https://github.com/powerhouse-inc/document-model-electron/commit/a92dd24c3ae638ff02587623a3d33af7fd89e2b6)) +- updated document-drive@1.0.0-experimental.2 ([c2b2816](https://github.com/powerhouse-inc/document-model-electron/commit/c2b2816cc7eea0346ea7d958b39f4b25796bb2a0)) +- updated document-drive@1.0.0-experimental.4 ([f31d12d](https://github.com/powerhouse-inc/document-model-electron/commit/f31d12d18404882a1f3af00f9bca6ab79d7a667e)) +- updated document-model dep ([f487cff](https://github.com/powerhouse-inc/document-model-electron/commit/f487cff99198d7cc3d8fd9db944ca394cc788dec)) +- updated document-model lib ([9db149e](https://github.com/powerhouse-inc/document-model-electron/commit/9db149ecc91926c02f2fe8479ca08958b66977d3)) +- updated document-model-libs ([b0bb1d2](https://github.com/powerhouse-inc/document-model-electron/commit/b0bb1d2ef530ecacc8f722322149866f8fbce03d)) +- updated document-model-libs and design-system ver ([d4ab8f8](https://github.com/powerhouse-inc/document-model-electron/commit/d4ab8f881d0e04d5bf68e0748205cf25fcce90e1)) +- updated package.lock ([3c334f4](https://github.com/powerhouse-inc/document-model-electron/commit/3c334f4f714ec6a63ce63bbc7f60d0e67f99b17b)) +- updated rwa query ([3709cfc](https://github.com/powerhouse-inc/document-model-electron/commit/3709cfc9543851fe77f8a930d1e0806d552069d6)) +- use default values if there is a missing key for feature flags ([cdb728a](https://github.com/powerhouse-inc/document-model-electron/commit/cdb728a3964ca1183bd38743744a8bdf51e04fb6)) +- use drive icon ([c82bebb](https://github.com/powerhouse-inc/document-model-electron/commit/c82bebb00516c95b2f6f48102672bf70333f9477)) +- use memoryBrowser on packaged app ([2d11200](https://github.com/powerhouse-inc/document-model-electron/commit/2d11200a47c861429edd0ad5c6a4eb13b46a7363)) +- use new svgr syntax ([e1db3b9](https://github.com/powerhouse-inc/document-model-electron/commit/e1db3b95b5330f95893b5511df8041ed04d33fb7)) +- use not equal ([8e33089](https://github.com/powerhouse-inc/document-model-electron/commit/8e330890f658224bc1e37d6504765e3d01cc7ede)) +- use setTimeout as fallback for requestIdleCallback ([730c8f2](https://github.com/powerhouse-inc/document-model-electron/commit/730c8f292eec07908410f7f2949c045bab8094fe)) +- use tailwind styles ([53dc69f](https://github.com/powerhouse-inc/document-model-electron/commit/53dc69f69663b4d315c03b57a64b87b274e698cd)) +- use yarn ([812fe5a](https://github.com/powerhouse-inc/document-model-electron/commit/812fe5af48fdea5cb5955f6b8336604722476b44)) +- waits 50ms for new operations to make a single addOperations call ([d4c9796](https://github.com/powerhouse-inc/document-model-electron/commit/d4c97965cc9b83128f6be225a27a64c2f88795f3)) +- waits for document drive server to be loaded before checking default drive is added ([fc10ee8](https://github.com/powerhouse-inc/document-model-electron/commit/fc10ee8428d9d9c24c6cef38cd104ac5f79d759c)) ### Performance Improvements -* implemented scalable way to compare drive state ([5b4f360](https://github.com/powerhouse-inc/document-model-electron/commit/5b4f360f9be815e52131f56fedf3f6a97e77ed7f)) +- implemented scalable way to compare drive state ([5b4f360](https://github.com/powerhouse-inc/document-model-electron/commit/5b4f360f9be815e52131f56fedf3f6a97e77ed7f)) # 1.0.0-alpha.1 (2024-06-10) - ### Bug Fixes -* added callback support for document dispatch ([a4f4c04](https://github.com/powerhouse-inc/document-model-electron/commit/a4f4c04ead0d2aca54983da2e79e9ff6e673da15)) -* allow concurrent drive operations ([17658ee](https://github.com/powerhouse-inc/document-model-electron/commit/17658ee1a67dc787896508d25ea329ca9b657a13)) -* apply auto lint fix ([dfa1ec0](https://github.com/powerhouse-inc/document-model-electron/commit/dfa1ec02caddba3e9b06e1a18855f47abf959eda)) -* base hrefs ([1ff517c](https://github.com/powerhouse-inc/document-model-electron/commit/1ff517c31991b6ad836b173c0df916b396f59fe1)) -* base path cmd ([070b4af](https://github.com/powerhouse-inc/document-model-electron/commit/070b4af1a148be00ca8b4e4bf8e24f22adbea28c)) -* build issues ([f2b084b](https://github.com/powerhouse-inc/document-model-electron/commit/f2b084b21a7826c491bc4d5977608892bfedfeba)) -* change config file names in scripts ([37fa872](https://github.com/powerhouse-inc/document-model-electron/commit/37fa872932c8f455e4844e6bd838a65720ad5380)) -* downgraded document drive ([7d287c4](https://github.com/powerhouse-inc/document-model-electron/commit/7d287c4d08d73226e7ba1ec8aabaeeb9a088c8e2)) -* endpoints for connect ([f35f853](https://github.com/powerhouse-inc/document-model-electron/commit/f35f8532e14475e74cc80119e5df0274f2b5f1e7)) -* fix file types ([11d1b18](https://github.com/powerhouse-inc/document-model-electron/commit/11d1b1833442ee302196b3e50f73f0380a372507)) -* fix rerenders when refreshing document drives ([5429f61](https://github.com/powerhouse-inc/document-model-electron/commit/5429f613784535e430809b751d879e60b2f5fb68)) -* fixed build error ([3027483](https://github.com/powerhouse-inc/document-model-electron/commit/30274832089143d616c3c55935735ad6f275e8c2)) -* fixed build error ([f280459](https://github.com/powerhouse-inc/document-model-electron/commit/f2804594d3f764477c06fc4183a2427df9e4c86b)) -* folder selection in folder view ([f7e3681](https://github.com/powerhouse-inc/document-model-electron/commit/f7e36810b5d0223afc64736a9e8ec48e11f7fc57)) -* header text color ([4ee9745](https://github.com/powerhouse-inc/document-model-electron/commit/4ee9745dbbeddf0e2ea41f6d8c4c800d9f5bfd99)) -* heroku nginx config ([0ca0df1](https://github.com/powerhouse-inc/document-model-electron/commit/0ca0df1e853522fb0d21ded35d6f61964c48ea62)) -* lint errors ([ac490b4](https://github.com/powerhouse-inc/document-model-electron/commit/ac490b4cdf693d62d57a865b55952ca7b46bfe94)) -* missing return ([f81d0e9](https://github.com/powerhouse-inc/document-model-electron/commit/f81d0e9a0a58c4079a6359d0dc45f90861d4acb4)) -* only call useMemo in hook ([76a1505](https://github.com/powerhouse-inc/document-model-electron/commit/76a15059e825ec0e1d6215e450ec0339d7c33bbe)) -* package.lock ([1c2a1f5](https://github.com/powerhouse-inc/document-model-electron/commit/1c2a1f55bf33953fa1834da2e84dcc0e93710c7b)) -* properly encode switchboard query ([4c5001f](https://github.com/powerhouse-inc/document-model-electron/commit/4c5001fb3aa34249bee0550331a314872b05c614)) -* remove allow list ([ac2475d](https://github.com/powerhouse-inc/document-model-electron/commit/ac2475d866195b18b23ca094457ccce93b9b0508)) -* remove duplicate package ([364afdd](https://github.com/powerhouse-inc/document-model-electron/commit/364afdde2e2c9c3d6c12d0364e6d0cfd612f5429)) -* remove yalc from package json ([9e184d8](https://github.com/powerhouse-inc/document-model-electron/commit/9e184d8df68d74803e9cbf95f7cf480f97a6d03e)) -* removed unused css import ([6da080c](https://github.com/powerhouse-inc/document-model-electron/commit/6da080c53ea57352b997de941fc303f11a5d2a42)) -* rename node id ([45235e5](https://github.com/powerhouse-inc/document-model-electron/commit/45235e516ce5ea52345c7ff9d1f7238ff4e9e095)) -* renown endpoint ([10461f5](https://github.com/powerhouse-inc/document-model-electron/commit/10461f566fd49a8fd79b23fdaa66871d8d8cff76)) -* renown login ([432e5bc](https://github.com/powerhouse-inc/document-model-electron/commit/432e5bcc1eaa13a043720b0c9d1165222188ecfc)) -* revert setSelectedDocument in addOperation document ([df06317](https://github.com/powerhouse-inc/document-model-electron/commit/df06317cc067b3f25deedb9832c1aa54d308158a)) -* rwa query ([09fcd52](https://github.com/powerhouse-inc/document-model-electron/commit/09fcd52fdf4adbeee9f6a6aa26c1d0309b525510)) -* settings modal typo ([6ef1286](https://github.com/powerhouse-inc/document-model-electron/commit/6ef12861fdda344c7c45f54657b6f56c67217162)) -* show local drives ([893b0df](https://github.com/powerhouse-inc/document-model-electron/commit/893b0dfe9d8004b12114842b082e4672a630aa38)) -* subscribe to server updates when load initial data ([35bf948](https://github.com/powerhouse-inc/document-model-electron/commit/35bf948de2acb3a23684060c978138f2b5ad5f75)) -* suppress less important rules ([679af22](https://github.com/powerhouse-inc/document-model-electron/commit/679af2256b8e6a4739006048056d452ba7fbf988)) -* switchboard endpoint ([2e570f3](https://github.com/powerhouse-inc/document-model-electron/commit/2e570f39bc355e4f387c0d371e8af81a0b92bb38)) -* switchboard link ([78bbdd0](https://github.com/powerhouse-inc/document-model-electron/commit/78bbdd0ec278a7685023cf9482d5990f6cf18a6d)) -* tmp build fix ([4a4be40](https://github.com/powerhouse-inc/document-model-electron/commit/4a4be4098131a946ce919792e3028e0f4e92c46e)) -* undefined default drive ([e5f2749](https://github.com/powerhouse-inc/document-model-electron/commit/e5f27494a57a29c4e4ae921d2014198af8614df3)) -* undefined default drive ([6ad9412](https://github.com/powerhouse-inc/document-model-electron/commit/6ad94127e15ebb43507cd0cae8404e9e2bc17e5b)) -* update selectedDocument when a new operation is dispatched ([b2c4401](https://github.com/powerhouse-inc/document-model-electron/commit/b2c4401c676d1c2621334375f132c6367c234ca5)) -* use selectedDocument as source of truth for document editor ([b5204e7](https://github.com/powerhouse-inc/document-model-electron/commit/b5204e7153028459ef3ace07e719736d971d577a)) -* wait for renown to load ([1d2f019](https://github.com/powerhouse-inc/document-model-electron/commit/1d2f019dc992239873e19e35fe8d5c0dde1396f5)) - +- added callback support for document dispatch ([a4f4c04](https://github.com/powerhouse-inc/document-model-electron/commit/a4f4c04ead0d2aca54983da2e79e9ff6e673da15)) +- allow concurrent drive operations ([17658ee](https://github.com/powerhouse-inc/document-model-electron/commit/17658ee1a67dc787896508d25ea329ca9b657a13)) +- apply auto lint fix ([dfa1ec0](https://github.com/powerhouse-inc/document-model-electron/commit/dfa1ec02caddba3e9b06e1a18855f47abf959eda)) +- base hrefs ([1ff517c](https://github.com/powerhouse-inc/document-model-electron/commit/1ff517c31991b6ad836b173c0df916b396f59fe1)) +- base path cmd ([070b4af](https://github.com/powerhouse-inc/document-model-electron/commit/070b4af1a148be00ca8b4e4bf8e24f22adbea28c)) +- build issues ([f2b084b](https://github.com/powerhouse-inc/document-model-electron/commit/f2b084b21a7826c491bc4d5977608892bfedfeba)) +- change config file names in scripts ([37fa872](https://github.com/powerhouse-inc/document-model-electron/commit/37fa872932c8f455e4844e6bd838a65720ad5380)) +- downgraded document drive ([7d287c4](https://github.com/powerhouse-inc/document-model-electron/commit/7d287c4d08d73226e7ba1ec8aabaeeb9a088c8e2)) +- endpoints for connect ([f35f853](https://github.com/powerhouse-inc/document-model-electron/commit/f35f8532e14475e74cc80119e5df0274f2b5f1e7)) +- fix file types ([11d1b18](https://github.com/powerhouse-inc/document-model-electron/commit/11d1b1833442ee302196b3e50f73f0380a372507)) +- fix rerenders when refreshing document drives ([5429f61](https://github.com/powerhouse-inc/document-model-electron/commit/5429f613784535e430809b751d879e60b2f5fb68)) +- fixed build error ([3027483](https://github.com/powerhouse-inc/document-model-electron/commit/30274832089143d616c3c55935735ad6f275e8c2)) +- fixed build error ([f280459](https://github.com/powerhouse-inc/document-model-electron/commit/f2804594d3f764477c06fc4183a2427df9e4c86b)) +- folder selection in folder view ([f7e3681](https://github.com/powerhouse-inc/document-model-electron/commit/f7e36810b5d0223afc64736a9e8ec48e11f7fc57)) +- header text color ([4ee9745](https://github.com/powerhouse-inc/document-model-electron/commit/4ee9745dbbeddf0e2ea41f6d8c4c800d9f5bfd99)) +- heroku nginx config ([0ca0df1](https://github.com/powerhouse-inc/document-model-electron/commit/0ca0df1e853522fb0d21ded35d6f61964c48ea62)) +- lint errors ([ac490b4](https://github.com/powerhouse-inc/document-model-electron/commit/ac490b4cdf693d62d57a865b55952ca7b46bfe94)) +- missing return ([f81d0e9](https://github.com/powerhouse-inc/document-model-electron/commit/f81d0e9a0a58c4079a6359d0dc45f90861d4acb4)) +- only call useMemo in hook ([76a1505](https://github.com/powerhouse-inc/document-model-electron/commit/76a15059e825ec0e1d6215e450ec0339d7c33bbe)) +- package.lock ([1c2a1f5](https://github.com/powerhouse-inc/document-model-electron/commit/1c2a1f55bf33953fa1834da2e84dcc0e93710c7b)) +- properly encode switchboard query ([4c5001f](https://github.com/powerhouse-inc/document-model-electron/commit/4c5001fb3aa34249bee0550331a314872b05c614)) +- remove allow list ([ac2475d](https://github.com/powerhouse-inc/document-model-electron/commit/ac2475d866195b18b23ca094457ccce93b9b0508)) +- remove duplicate package ([364afdd](https://github.com/powerhouse-inc/document-model-electron/commit/364afdde2e2c9c3d6c12d0364e6d0cfd612f5429)) +- remove yalc from package json ([9e184d8](https://github.com/powerhouse-inc/document-model-electron/commit/9e184d8df68d74803e9cbf95f7cf480f97a6d03e)) +- removed unused css import ([6da080c](https://github.com/powerhouse-inc/document-model-electron/commit/6da080c53ea57352b997de941fc303f11a5d2a42)) +- rename node id ([45235e5](https://github.com/powerhouse-inc/document-model-electron/commit/45235e516ce5ea52345c7ff9d1f7238ff4e9e095)) +- renown endpoint ([10461f5](https://github.com/powerhouse-inc/document-model-electron/commit/10461f566fd49a8fd79b23fdaa66871d8d8cff76)) +- renown login ([432e5bc](https://github.com/powerhouse-inc/document-model-electron/commit/432e5bcc1eaa13a043720b0c9d1165222188ecfc)) +- revert setSelectedDocument in addOperation document ([df06317](https://github.com/powerhouse-inc/document-model-electron/commit/df06317cc067b3f25deedb9832c1aa54d308158a)) +- rwa query ([09fcd52](https://github.com/powerhouse-inc/document-model-electron/commit/09fcd52fdf4adbeee9f6a6aa26c1d0309b525510)) +- settings modal typo ([6ef1286](https://github.com/powerhouse-inc/document-model-electron/commit/6ef12861fdda344c7c45f54657b6f56c67217162)) +- show local drives ([893b0df](https://github.com/powerhouse-inc/document-model-electron/commit/893b0dfe9d8004b12114842b082e4672a630aa38)) +- subscribe to server updates when load initial data ([35bf948](https://github.com/powerhouse-inc/document-model-electron/commit/35bf948de2acb3a23684060c978138f2b5ad5f75)) +- suppress less important rules ([679af22](https://github.com/powerhouse-inc/document-model-electron/commit/679af2256b8e6a4739006048056d452ba7fbf988)) +- switchboard endpoint ([2e570f3](https://github.com/powerhouse-inc/document-model-electron/commit/2e570f39bc355e4f387c0d371e8af81a0b92bb38)) +- switchboard link ([78bbdd0](https://github.com/powerhouse-inc/document-model-electron/commit/78bbdd0ec278a7685023cf9482d5990f6cf18a6d)) +- tmp build fix ([4a4be40](https://github.com/powerhouse-inc/document-model-electron/commit/4a4be4098131a946ce919792e3028e0f4e92c46e)) +- undefined default drive ([e5f2749](https://github.com/powerhouse-inc/document-model-electron/commit/e5f27494a57a29c4e4ae921d2014198af8614df3)) +- undefined default drive ([6ad9412](https://github.com/powerhouse-inc/document-model-electron/commit/6ad94127e15ebb43507cd0cae8404e9e2bc17e5b)) +- update selectedDocument when a new operation is dispatched ([b2c4401](https://github.com/powerhouse-inc/document-model-electron/commit/b2c4401c676d1c2621334375f132c6367c234ca5)) +- use selectedDocument as source of truth for document editor ([b5204e7](https://github.com/powerhouse-inc/document-model-electron/commit/b5204e7153028459ef3ace07e719736d971d577a)) +- wait for renown to load ([1d2f019](https://github.com/powerhouse-inc/document-model-electron/commit/1d2f019dc992239873e19e35fe8d5c0dde1396f5)) ### Features -* 🚀 Added ItemsContext integration ([41fc40f](https://github.com/powerhouse-inc/document-model-electron/commit/41fc40f93420101ca9b2ec34e1b4f4cab4a43a4b)) -* 🚀 added readable item path for File Items ([9f6a4ac](https://github.com/powerhouse-inc/document-model-electron/commit/9f6a4ac45318bb757e7c7c60df463e67b066771b)) -* 🚀 Implemented base folder-view design ([22ad4fc](https://github.com/powerhouse-inc/document-model-electron/commit/22ad4fc5046e27016ce1a47eda3282125af4db71)) -* activate queue ([#290](https://github.com/powerhouse-inc/document-model-electron/issues/290)) ([5b5a4fd](https://github.com/powerhouse-inc/document-model-electron/commit/5b5a4fd317ce624cc734f186778e49899dd3b148)) -* add dep array to use effect ([0a88d92](https://github.com/powerhouse-inc/document-model-electron/commit/0a88d92a664b877929978f05753f3d38e471625d)) -* add dependency versions to settings modal ([d01c0de](https://github.com/powerhouse-inc/document-model-electron/commit/d01c0de124cb9af00312e4c53e934d8a233e02af)) -* add design system preset ([a6cb51c](https://github.com/powerhouse-inc/document-model-electron/commit/a6cb51c31d4500d31fd091f165a4f01ae37ff4d7)) -* add duplicate action ([a9d2e29](https://github.com/powerhouse-inc/document-model-electron/commit/a9d2e29318badb84ca51acc9603a2c2dc7f25a0e)) -* add duplicate to folder ([a6212a8](https://github.com/powerhouse-inc/document-model-electron/commit/a6212a8fe3c62f49d1b624e75152e48f80034ed2)) -* add generate assets hook for icons copying ([4c25ebe](https://github.com/powerhouse-inc/document-model-electron/commit/4c25ebecc94941502e35dff28555664b3985f67b)) -* add is allowed to create documents hook ([0a457fc](https://github.com/powerhouse-inc/document-model-electron/commit/0a457fc35f5e78cb16eac1664c3def10b29b5229)) -* add optional dep ([a079cc7](https://github.com/powerhouse-inc/document-model-electron/commit/a079cc799c0d7987193ee209618151c10c743282)) -* add pull trigger on cloud drives ([9f86849](https://github.com/powerhouse-inc/document-model-electron/commit/9f868495ced48b9b23a3d128469ce7ac20d32a57)) -* add react aria dep ([499dda0](https://github.com/powerhouse-inc/document-model-electron/commit/499dda05d52469c85f0dc31d1da5639dc926c9c4)) -* add tailwind eslint plugin ([6e639bc](https://github.com/powerhouse-inc/document-model-electron/commit/6e639bc71bddeafe855c210c0f573cec7b2ce622)) -* add user context to actions ([6a3241d](https://github.com/powerhouse-inc/document-model-electron/commit/6a3241d3e98c58262ffc7bbbcaa66f6f5d8878b3)) -* added base path for nginx ([22a270b](https://github.com/powerhouse-inc/document-model-electron/commit/22a270b978e189a8a9afd20e0ae8f568e8c3336e)) -* added browser key storage ([6562881](https://github.com/powerhouse-inc/document-model-electron/commit/6562881b2eb603b59b55f1595a7f46b96dbbded6)) -* added clear storage setting ([922f5e1](https://github.com/powerhouse-inc/document-model-electron/commit/922f5e19ebd68e07440858c2f7308e3f6d1a2aae)) -* added config to hide drive sections ([aa67a3f](https://github.com/powerhouse-inc/document-model-electron/commit/aa67a3f392891e195fbc24a2ff858b66265eccc5)) -* added csp headers ([bd398aa](https://github.com/powerhouse-inc/document-model-electron/commit/bd398aa0bc6d748b740e17d4ddf197232d701c62)) -* added deeplink support to link to specific drive node ([ae1f97f](https://github.com/powerhouse-inc/document-model-electron/commit/ae1f97fb17e3cbc422a2e242e9ff530c598284a5)) -* added delete drive modal + enable delete file modal confirmation ([4ce110e](https://github.com/powerhouse-inc/document-model-electron/commit/4ce110e7baaaad3ea75a33eff45fab9994184658)) -* added develop environment ([c33ab9d](https://github.com/powerhouse-inc/document-model-electron/commit/c33ab9d6977712a3015d28a0cd27208f7fd727e5)) -* added develop to release cycle ([b9247e6](https://github.com/powerhouse-inc/document-model-electron/commit/b9247e66d19ffc9400caae9403d9b5b06048eacc)) -* added e2e playwright setup ([2d37330](https://github.com/powerhouse-inc/document-model-electron/commit/2d37330f103456dc9d3e24cc4a74d3ed7abb20c8)) -* added editor debug tools ([6928bed](https://github.com/powerhouse-inc/document-model-electron/commit/6928bed61c46322bc341da7bed48dcde60454b9e)) -* added env var to hide document model setting ([840a561](https://github.com/powerhouse-inc/document-model-electron/commit/840a5615ba0b5eafab123b0f0e5c21b3c880d670)) -* added env vars for renown ([f464d68](https://github.com/powerhouse-inc/document-model-electron/commit/f464d68172be57798be364a804b9de0e7f1733c1)) -* added feature flag setup + disable editors for demo ([7fa64f2](https://github.com/powerhouse-inc/document-model-electron/commit/7fa64f2634cea508ebfb8b20732a730dc8b0624b)) -* added gzip and brotli compression to nginx ([f52a0c3](https://github.com/powerhouse-inc/document-model-electron/commit/f52a0c3205b1fd7fc99875fae0ad5a1d5cd24dd5)) -* added heroku deployment for powerhouse staging env ([f4c538a](https://github.com/powerhouse-inc/document-model-electron/commit/f4c538a3e02781276996e30b759d50f248037c86)) -* added modal confirmation when export document with errors ([d22a447](https://github.com/powerhouse-inc/document-model-electron/commit/d22a447c98d50589f61e37cd6284155223824057)) -* added network id to user ([908a50e](https://github.com/powerhouse-inc/document-model-electron/commit/908a50e8df9c1ae7e53940dc801157a5ca665706)) -* added new env var to dockerfile ([64afb40](https://github.com/powerhouse-inc/document-model-electron/commit/64afb40dfec060e8ebfaaeddf8f47f3f925d21be)) -* added nginx config ([069be2c](https://github.com/powerhouse-inc/document-model-electron/commit/069be2cd98aee6fe3a6b686b4112a435e81d11b3)) -* added notification toast ([39ed0c2](https://github.com/powerhouse-inc/document-model-electron/commit/39ed0c2319c2a6e1c2044aff5cda1fd1dc51d24b)) -* added open file and delete file ([01793c8](https://github.com/powerhouse-inc/document-model-electron/commit/01793c8a5f21b8e1701e649cc926c8baa7ece4fe)) -* added opengraph and twitter meta data ([280da91](https://github.com/powerhouse-inc/document-model-electron/commit/280da914bbe8129ead8559d4169ea266fbb327bc)) -* added PH logo ([e9ec94b](https://github.com/powerhouse-inc/document-model-electron/commit/e9ec94b3373495aa0d03673b241c78605b61d396)) -* added prepare script ([abeaa41](https://github.com/powerhouse-inc/document-model-electron/commit/abeaa41bb7bfc7a8d3a7332a9dd0ba0dad088659)) -* added renown login on browser ([5b77016](https://github.com/powerhouse-inc/document-model-electron/commit/5b77016508fd448b23999919a8d9e40bc701e1f9)) -* added rewrite rules to vercel.json config ([b66cdb0](https://github.com/powerhouse-inc/document-model-electron/commit/b66cdb0fb264412710c1d3bf67f06d48df52408c)) -* added route to open document drive node ([6700f13](https://github.com/powerhouse-inc/document-model-electron/commit/6700f132435dd4ce175b036d5e906d1194976ed0)) -* added RWA doc name fix for demo ([05dfd07](https://github.com/powerhouse-inc/document-model-electron/commit/05dfd0781038523b86437ebe1164e20a848c65b2)) -* added scope of work ([742aae0](https://github.com/powerhouse-inc/document-model-electron/commit/742aae0cab712068d2f8dbe2804da3ba802416bd)) -* added sentry dsn to environments ([c4cfef1](https://github.com/powerhouse-inc/document-model-electron/commit/c4cfef161be9db837d29aca316949957412e4c25)) -* added sentry environments ([68fefd0](https://github.com/powerhouse-inc/document-model-electron/commit/68fefd095cbffcec9eeebedb786d5ab7afc9c9bf)) -* added sentry to connect ([d51ec53](https://github.com/powerhouse-inc/document-model-electron/commit/d51ec538d376cb533882f9c4b0ee057d80ce7d1a)) -* added settings modal integration ([dfb9d28](https://github.com/powerhouse-inc/document-model-electron/commit/dfb9d287bb99dec4316c9eee5098816b6f498926)) -* added sidebar login ([2917809](https://github.com/powerhouse-inc/document-model-electron/commit/29178094a9d711e1d7303dde1511a7b73bc37199)) -* added sort nodes + fix input styles + cancel new folders with empty name ([4a2f9fb](https://github.com/powerhouse-inc/document-model-electron/commit/4a2f9fbf2c4dc5427c58633f18e40eb10574600c)) -* added support for delete option in FolderItem and FileItem ([85800ab](https://github.com/powerhouse-inc/document-model-electron/commit/85800ab374da9be041d6e8c547d186a0671a6b91)) -* added support for document in addfile action ([0706ce2](https://github.com/powerhouse-inc/document-model-electron/commit/0706ce25a515024a37b61aec11c930601a0869e5)) -* added support for rename files + create file name modal ([8a76691](https://github.com/powerhouse-inc/document-model-electron/commit/8a76691426d671128c4cfbc98864a9a669e395f3)) -* added support for renown user ([3853b37](https://github.com/powerhouse-inc/document-model-electron/commit/3853b371349ee14051b666a19fbb0b0c564c8ac6)) -* added support for router basename ([251afe2](https://github.com/powerhouse-inc/document-model-electron/commit/251afe2b1d4eab690f9592e25edc6c555e2fe44a)) -* added switchboard link to document files ([5f31b71](https://github.com/powerhouse-inc/document-model-electron/commit/5f31b710a6ae65f42aac65840da422134e48ee6c)) -* added useConnectConfig hook ([a600091](https://github.com/powerhouse-inc/document-model-electron/commit/a60009131ad8600174311b45a696d0c3219ae8ce)) -* added vercel redirect ([7100848](https://github.com/powerhouse-inc/document-model-electron/commit/7100848213fe6e5d0811229e67c82b8997648fa2)) -* added vite env as build args ([c76d4f4](https://github.com/powerhouse-inc/document-model-electron/commit/c76d4f431017df7f9b40a5063a71618084333c24)) -* allow connect-src for renown.id ([7357d4a](https://github.com/powerhouse-inc/document-model-electron/commit/7357d4a4a2c9aff400e55d9c8eed9630aaec4ed5)) -* allow external images ([171efac](https://github.com/powerhouse-inc/document-model-electron/commit/171efac183458b993ac11849345b3fb8765a10f4)) -* allow per deploy drive restrictions ([8779d84](https://github.com/powerhouse-inc/document-model-electron/commit/8779d84cb1be5128ac7b1c63a8666c5d03b2f593)) -* allow url for file ([474ad4d](https://github.com/powerhouse-inc/document-model-electron/commit/474ad4d0b90e9e882bb52d4ca479a4314d15eec1)) -* also disable when env is production ([6f60688](https://github.com/powerhouse-inc/document-model-electron/commit/6f60688a7bcf92e19afe5a4a49a1baa9f0c44507)) -* also do src === target check in move node function ([3e80c1e](https://github.com/powerhouse-inc/document-model-electron/commit/3e80c1e4dface07c9d101c39f6a0dce6d0654a26)) -* apply auto fixes ([b10b111](https://github.com/powerhouse-inc/document-model-electron/commit/b10b111374636b145c52fa15f38ebc0751912483)) -* auto-select first drive if there's no selected path ([daf3083](https://github.com/powerhouse-inc/document-model-electron/commit/daf3083b4fff8dd6f033ce9806affe932fea4f04)) -* bump ([40fd30a](https://github.com/powerhouse-inc/document-model-electron/commit/40fd30a489214a512a7dc43fbe9dea1e0c33604a)) -* bump ([11fb69f](https://github.com/powerhouse-inc/document-model-electron/commit/11fb69f6f507d4240e72b1208982c814bce185a8)) -* bump deps ([7d7206c](https://github.com/powerhouse-inc/document-model-electron/commit/7d7206c5ae9bc7c9e7d26713fc8ff4e7ef5f459d)) -* bump design system ([fb12d70](https://github.com/powerhouse-inc/document-model-electron/commit/fb12d70fcd3237f1cacb0375e99e4a1ae01cc342)) -* bump design system ([4e1d168](https://github.com/powerhouse-inc/document-model-electron/commit/4e1d168298355beea31e2216edeb7b7cef8e8257)) -* bump design system and document model libs ([165e2cc](https://github.com/powerhouse-inc/document-model-electron/commit/165e2ccc41d5d72a6f2f834292c18aa2388ebb86)) -* bump design system to integrate dep version component ([a18c621](https://github.com/powerhouse-inc/document-model-electron/commit/a18c621a24d97b3bfa9f103365b3890f6fd342d7)) -* bump design-system and document-model-lib deps ([7d90802](https://github.com/powerhouse-inc/document-model-electron/commit/7d9080289ce258cf9d299d13b4cf7e092fd51535)) -* bump document drive version ([254a2cd](https://github.com/powerhouse-inc/document-model-electron/commit/254a2cd967b07d22352d38509ad55c2ffcd19bf5)) -* bump libs ([24a9cd3](https://github.com/powerhouse-inc/document-model-electron/commit/24a9cd3427eecc32697f15d7479bf5ee53c95084)) -* bump libs ([b27b036](https://github.com/powerhouse-inc/document-model-electron/commit/b27b036a487fbe989f9f7b585603e15bcdd3fa3a)) -* bump libs ([5fb15d3](https://github.com/powerhouse-inc/document-model-electron/commit/5fb15d321de8649ac2fc6953d9ec5312aeabefeb)) -* bump libs ([1f38863](https://github.com/powerhouse-inc/document-model-electron/commit/1f38863cb3e6fff081218ce59d7cf1a6f3c44621)) -* bump libs ([7df97b0](https://github.com/powerhouse-inc/document-model-electron/commit/7df97b03882c012f035b259aebb85ba42704008b)) -* bump libs ([78baf1d](https://github.com/powerhouse-inc/document-model-electron/commit/78baf1dee6da3f18208f23973f65b5a1b930ba81)) -* bump libs ([d766c36](https://github.com/powerhouse-inc/document-model-electron/commit/d766c36649f3575b2d10bcaf532249437a79b36c)) -* bump libs ([6b3f58f](https://github.com/powerhouse-inc/document-model-electron/commit/6b3f58fd3aad9e628cf2312629280f12984648e2)) -* bump libs ([f98b523](https://github.com/powerhouse-inc/document-model-electron/commit/f98b523acb0e2f2599d4d8927bf8fe5b26374856)) -* bump libs ([2a9a29d](https://github.com/powerhouse-inc/document-model-electron/commit/2a9a29d0d9d129abbbe6b16567151f3ecd0d525e)) -* bump libs ([62117a9](https://github.com/powerhouse-inc/document-model-electron/commit/62117a90490e9bbb32c4a84fdbdb3d930ca7ebfb)) -* bump libs ([62cd43d](https://github.com/powerhouse-inc/document-model-electron/commit/62cd43dd7f80cfd6202c251a9c1af1bad0978b67)) -* bump lint deps ([544fcea](https://github.com/powerhouse-inc/document-model-electron/commit/544fcea7cdcf450756b8deb913c47047a9161849)) -* bump react aria ([3a8ed93](https://github.com/powerhouse-inc/document-model-electron/commit/3a8ed934d371b11c7deb8c8894b43c323d04f06f)) -* cancel rename operation when new name is empty ([6c7a815](https://github.com/powerhouse-inc/document-model-electron/commit/6c7a815500339ebbced23214450750bacbfdebc9)) -* change term to allow list ([af99e9b](https://github.com/powerhouse-inc/document-model-electron/commit/af99e9ba0a3eee7074cc763922caf1656f024e83)) -* changed default renown env variables ([c87ee69](https://github.com/powerhouse-inc/document-model-electron/commit/c87ee697507eba7235150e5156bbe7d0cd121e36)) -* changed nginx image to nginx-brotli ([3d497da](https://github.com/powerhouse-inc/document-model-electron/commit/3d497da7806bdb77a6352aad9ad5f64ddcfa93e4)) -* check if operations with same index are submitted ([b7ad973](https://github.com/powerhouse-inc/document-model-electron/commit/b7ad97307106467a39060da44420515f10ce3921)) -* check user auth on startup ([6820f27](https://github.com/powerhouse-inc/document-model-electron/commit/6820f27a8defb40d72e3580d00fe11f1170bbe22)) -* commented renown env variables ([cd18bab](https://github.com/powerhouse-inc/document-model-electron/commit/cd18babc471fef7b1939bed4478265bd5a38abc1)) -* configure available editors with env variables ([00fad56](https://github.com/powerhouse-inc/document-model-electron/commit/00fad56259d24c1dc9fe3009ec5d4d8d9a51782a)) -* default drive handling improvements ([57be63e](https://github.com/powerhouse-inc/document-model-electron/commit/57be63e34a368769eb159728194f70d60ad98290)) -* detect circular reference in node path ([c113d03](https://github.com/powerhouse-inc/document-model-electron/commit/c113d035118d418ed8006b55112d101f030b4caa)) -* disable dev tools when app is packaged ([2326a77](https://github.com/powerhouse-inc/document-model-electron/commit/2326a7774f74d2c8af949cf55c18b12b38d0b7d9)) -* disable document drive editor by default ([a61249f](https://github.com/powerhouse-inc/document-model-electron/commit/a61249f43e50219b7b6aebc27f63b2d07a4735ec)) -* disallow create operations ([9cb4a8e](https://github.com/powerhouse-inc/document-model-electron/commit/9cb4a8e4d902f67692e696b60c283a3ec59ca137)) -* downloadFile fallback ([9836f4c](https://github.com/powerhouse-inc/document-model-electron/commit/9836f4c1e6edf68d1239f69cfb86324cb1e4d6f0)) -* enable transactions editor ([28967c2](https://github.com/powerhouse-inc/document-model-electron/commit/28967c2c6a4465494f682e55e914bfdd719bc07b)) -* enabled add cloud drive modal ([d54f579](https://github.com/powerhouse-inc/document-model-electron/commit/d54f579bd903e57cf193cdc11a727eed5526971d)) -* enabled drop target for FolderItem ([70aeaad](https://github.com/powerhouse-inc/document-model-electron/commit/70aeaadde2844def0c0cc648dbb8f496d51b96dd)) -* enabled editor controls ([f7aa503](https://github.com/powerhouse-inc/document-model-electron/commit/f7aa50343c0a124056811f1ce29ab0c8539263da)) -* enabled keyboard shortcut for undo/redo ([82fe517](https://github.com/powerhouse-inc/document-model-electron/commit/82fe517dbbf01006c6fbaae0b1c493c57eeeb422)) -* enabled onErrorCallback for dispatch fn ([8bd3c7c](https://github.com/powerhouse-inc/document-model-electron/commit/8bd3c7ccfafbf1d1b32ada0bb941585bd0ee1907)) -* enabled rename option for folders in folder view ([d7a9b34](https://github.com/powerhouse-inc/document-model-electron/commit/d7a9b3490b0cb91d647ecb803513dbea590f04e0)) -* enabled rename option when copy/move an item ([3ef5ea4](https://github.com/powerhouse-inc/document-model-electron/commit/3ef5ea474997e10b670a989460dca939431f3a9a)) -* enabled rwa editor ([b7df486](https://github.com/powerhouse-inc/document-model-electron/commit/b7df486a82c0c044fab5dd434ecceba1a2c24dc1)) -* enabled switchboard link in RWA editor ([cece18e](https://github.com/powerhouse-inc/document-model-electron/commit/cece18e3cb900cbe2fe7d77c0c329a2c430e2539)) -* enabled undo/redo with new document structure ([f6af1e0](https://github.com/powerhouse-inc/document-model-electron/commit/f6af1e002121456e5e9cc4befe6c41ac4ddf8aa9)) -* expand selected path in sidebar on initial path load ([9b5e053](https://github.com/powerhouse-inc/document-model-electron/commit/9b5e0533e7e02d4ae9ea3c6bb01c9827eada160c)) -* export did:key instead of public key ([a358371](https://github.com/powerhouse-inc/document-model-electron/commit/a3583718047f447f2f59a8153e3e2ac15a8cd732)) -* fetch user's ens info ([229a1ae](https://github.com/powerhouse-inc/document-model-electron/commit/229a1ae1bcd145858f867cdf449d9ed2709c8ffc)) -* fix Authorize Connect font color ([25ba2e7](https://github.com/powerhouse-inc/document-model-electron/commit/25ba2e7af5c81c442fed8d919b31a66ba2959e77)) -* fix console warnings ([3024578](https://github.com/powerhouse-inc/document-model-electron/commit/3024578d93e4a70a89a3b3681d34f78a4bd0f1d0)) -* fix css import order ([9216a27](https://github.com/powerhouse-inc/document-model-electron/commit/9216a277e488f73cc892ad015c4ea35dd22bb2a9)) -* fix linux build ([433e6f9](https://github.com/powerhouse-inc/document-model-electron/commit/433e6f9b0a92f72d33e16bbcb71a8965c034c6be)) -* fix logo + position ([278ebeb](https://github.com/powerhouse-inc/document-model-electron/commit/278ebeb39cac2b6d1edb3b096161bb3810669f31)) -* fix rwa document name ([b3f39d1](https://github.com/powerhouse-inc/document-model-electron/commit/b3f39d16c09cb87295d53a7be249b4e2be3895ab)) -* fix sync status ([9ff69fe](https://github.com/powerhouse-inc/document-model-electron/commit/9ff69fedf729b7e70b07bf121c9feed00c1ddc58)) -* fix tailwind class conflicts ([341d8ba](https://github.com/powerhouse-inc/document-model-electron/commit/341d8ba945fd1a20c6014fcb6e5ce77faf458b5f)) -* fixed addDriveOperations ([4c33a1f](https://github.com/powerhouse-inc/document-model-electron/commit/4c33a1f891eeba1b9845768fbc0395cb01dd9e70)) -* fixed base route ([606e919](https://github.com/powerhouse-inc/document-model-electron/commit/606e9191be0f32309e7a0a59e82dc49aa88690bb)) -* fixed default document-models ([0d51154](https://github.com/powerhouse-inc/document-model-electron/commit/0d511546e95a1d5a534f92b549d7120076792040)) -* fixed editors loading ([4fda671](https://github.com/powerhouse-inc/document-model-electron/commit/4fda67192ca075aa66079cbf769548e53e1a2ef3)) -* fixed file import ([23cd72d](https://github.com/powerhouse-inc/document-model-electron/commit/23cd72da07e8fa12bb6f5c739d392432057d6812)) -* fixed file operations error ([5d123af](https://github.com/powerhouse-inc/document-model-electron/commit/5d123af045f0409222bd61404b2249db2a4ec19d)) -* fixes browser key storage ([bfb2a72](https://github.com/powerhouse-inc/document-model-electron/commit/bfb2a725ec7fb4ec507751e52aa743879e39b428)) -* generate key pair on desktop ([ebc0204](https://github.com/powerhouse-inc/document-model-electron/commit/ebc020405e0b289aa4cfdf4935b2afcd53494a7f)) -* go back from fixed version ([41684c4](https://github.com/powerhouse-inc/document-model-electron/commit/41684c4f9cb55bef7f4e8bea46e7ab2eedc26b5c)) -* handle empty string or wrong formatted string in env var ([0099615](https://github.com/powerhouse-inc/document-model-electron/commit/009961513edaba39ad8fb4daacd6dd702a9fedd8)) -* handle null parent folder ([21f9370](https://github.com/powerhouse-inc/document-model-electron/commit/21f93703b08e39c6c97312a232a609a53dacf1c0)) -* handle sync events on node document drive ([3855ce4](https://github.com/powerhouse-inc/document-model-electron/commit/3855ce42a72865ed48e7729d25ec1481e462851d)) -* handle undefined whitelist ([1672fa8](https://github.com/powerhouse-inc/document-model-electron/commit/1672fa86ab863d8d2fc88604a775f524f7b86614)) -* hide searchbar from config ([0bd4444](https://github.com/powerhouse-inc/document-model-electron/commit/0bd4444fca256b28bf413122a870f343963dc801)) -* ignore drives with error ([25a27d5](https://github.com/powerhouse-inc/document-model-electron/commit/25a27d51fed340a22530d5d13e784bf5f9f66fab)) -* ignore operation hashes when importing zip ([634bcd5](https://github.com/powerhouse-inc/document-model-electron/commit/634bcd5cd534d22db9813cc17be28359d94a1e61)) -* ignores document drive result when adding an operation from the editor ([74140e2](https://github.com/powerhouse-inc/document-model-electron/commit/74140e2400ea1c1b5bb9baf5f7b26ed7cbb2a9cb)) -* implemented rename and new folder actions ([45dbf5e](https://github.com/powerhouse-inc/document-model-electron/commit/45dbf5e527841f1107f9d444ac2b76f0dc6fa7c0)) -* import styles from design system ([f7ac8ad](https://github.com/powerhouse-inc/document-model-electron/commit/f7ac8adc2608e8d491618e01b1c98be9f8c43fe2)) -* improved url handling ([32b3dcd](https://github.com/powerhouse-inc/document-model-electron/commit/32b3dcd943518cba4f1f5a82f9dbb5b906096500)) -* install ts-reset ([228b082](https://github.com/powerhouse-inc/document-model-electron/commit/228b082e36b1e689b47d7ed923dfe3347e74ad7d)) -* install vite ([aa66a01](https://github.com/powerhouse-inc/document-model-electron/commit/aa66a01bc96f33984e9d6828fdd93d374916c2c4)) -* lighthouse recomendations ([dd3e594](https://github.com/powerhouse-inc/document-model-electron/commit/dd3e594c198ab2a9deb83420ed8bfb145475ec71)) -* load default drive ([589653f](https://github.com/powerhouse-inc/document-model-electron/commit/589653fab02bc030fbc4a99bea6ed6f4566fd57c)) -* log sync error ([204c38a](https://github.com/powerhouse-inc/document-model-electron/commit/204c38a5f2763edc2006119b8608f6dc39f40dc9)) -* manually install design system ([1b7c676](https://github.com/powerhouse-inc/document-model-electron/commit/1b7c6767c67efed2da903976a62a0bbbaf8a64fe)) -* move helpers ([e12240c](https://github.com/powerhouse-inc/document-model-electron/commit/e12240c40ca8368b9f99f0bdfa5d2881a9a71dc5)) -* move sync status invocation to hook ([dea3fa9](https://github.com/powerhouse-inc/document-model-electron/commit/dea3fa9f5fbcdf9cf355652bf32e2c434a366c13)) -* moved load initial data into a hook ([99c7417](https://github.com/powerhouse-inc/document-model-electron/commit/99c74175b899c9c1d3f7dbf27de174ebd053bdbf)) -* pass allow list credentials to components ([2fadac1](https://github.com/powerhouse-inc/document-model-electron/commit/2fadac18141430445138ec9446d46227cb69723a)) -* pass allow list props to components ([0df5de6](https://github.com/powerhouse-inc/document-model-electron/commit/0df5de6a1062538cfaee7dcd045abb53b5481106)) -* port config files to ts ([f78e7f5](https://github.com/powerhouse-inc/document-model-electron/commit/f78e7f5444a47d637cc6681dd25917524b03b659)) -* re-enable onErrorCallback with new operations error prop ([a408630](https://github.com/powerhouse-inc/document-model-electron/commit/a408630ee77596a83f2c3ee26a17d44447537647)) -* re-generate package-lock.json ([e48ac3d](https://github.com/powerhouse-inc/document-model-electron/commit/e48ac3dd16d25901565eaed94e4e82b4283f7287)) -* re-implemented copy/move nodes with new DocumentDrive ([c4fad11](https://github.com/powerhouse-inc/document-model-electron/commit/c4fad117827b929d69dd73824d46ef33f767c57f)) -* readd prepare script ([ad4577e](https://github.com/powerhouse-inc/document-model-electron/commit/ad4577ee92a812a4227e03f2923cbb5b5ca0efdc)) -* refresh UI when there are drive changes ([fca3c95](https://github.com/powerhouse-inc/document-model-electron/commit/fca3c9576679e1bdcb8cf017cad3e885cd245fdf)) -* regenerate lock ([0269b0b](https://github.com/powerhouse-inc/document-model-electron/commit/0269b0b47945bc6d53928ec975f3b0c4557706a9)) -* regenerate lockfile ([efa2f7f](https://github.com/powerhouse-inc/document-model-electron/commit/efa2f7f380e1e558b82a616f8d1ef1cda021371e)) -* regenerate lockfile ([c8aac44](https://github.com/powerhouse-inc/document-model-electron/commit/c8aac44f8cb0184962e5567ea3252e14cc686cce)) -* reinstall with npm ([f790b6c](https://github.com/powerhouse-inc/document-model-electron/commit/f790b6c8611e000b123723c014ef35c1ee9aa55b)) -* remove check ([1db971c](https://github.com/powerhouse-inc/document-model-electron/commit/1db971cf324e2ca0e92c8f9b01614f7ef64f3d6a)) -* remove csp ([b940c38](https://github.com/powerhouse-inc/document-model-electron/commit/b940c3849bb1f804c6d2d8ca7e2bced61be81a95)) -* remove default node logic ([217d6e5](https://github.com/powerhouse-inc/document-model-electron/commit/217d6e5ac54033bda7bd36473712e048fe775623)) -* remove hello from content ([decd9c4](https://github.com/powerhouse-inc/document-model-electron/commit/decd9c4a9dbce3d9ecacbee06ad91d5959b86f84)) -* remove old tailwind classes ([10a8b95](https://github.com/powerhouse-inc/document-model-electron/commit/10a8b95edbcf212c17cb9011b13b32d2b924a767)) -* remove redundant config ([0c4d334](https://github.com/powerhouse-inc/document-model-electron/commit/0c4d334f3f75ccef7597470e1ce2a490b449eca8)) -* remove redundant use effect ([9bb2950](https://github.com/powerhouse-inc/document-model-electron/commit/9bb29508084badc11d535fab2ba241fe8021bc5f)) -* remove restriction to send operations ([dc620c5](https://github.com/powerhouse-inc/document-model-electron/commit/dc620c5fda0dd9adff480ee2ea3494b2b1698cc5)) -* remove scrollbar styles ([a9a3080](https://github.com/powerhouse-inc/document-model-electron/commit/a9a30803d3bf1cf91a82cc9bac6133c9bb335691)) -* removed electron-deeplink pkg and updated deep links ([5cec527](https://github.com/powerhouse-inc/document-model-electron/commit/5cec527acc442886f35261affa1619efd30e2212)) -* removed networkId from signer ([89c2a1c](https://github.com/powerhouse-inc/document-model-electron/commit/89c2a1c676170878b4cb307b073b53e28bb9e1f5)) -* removed queue timeout ([8b517b7](https://github.com/powerhouse-inc/document-model-electron/commit/8b517b78c1529abe5c7ee6e69d1990c56c4fbb6e)) -* removed re-renders and prevent add default drive being called twice ([3104848](https://github.com/powerhouse-inc/document-model-electron/commit/3104848107ff53daea46d36930be8ca9e3f522e6)) -* removed usehooks-ts dep ([05ca45e](https://github.com/powerhouse-inc/document-model-electron/commit/05ca45ef3227c50a7d44bfd7c8d8730a89d3c369)) -* rename document drive node when document model name is changed ([b9008f7](https://github.com/powerhouse-inc/document-model-electron/commit/b9008f7e08e340329e16c0743133a09d044cb1dd)) -* replaced env vars by client.config file ([28f7a2f](https://github.com/powerhouse-inc/document-model-electron/commit/28f7a2f5fbe97403f4ed317303f19c43b1cbf300)) -* replaced feature flags context by atomWithStorage ([071b7aa](https://github.com/powerhouse-inc/document-model-electron/commit/071b7aacb44792851b45946f41abecaaa99f5633)) -* replaced sidebar input header by connect logo ([a845dfd](https://github.com/powerhouse-inc/document-model-electron/commit/a845dfd14df5167e25fe5530ae03e9400bb36d45)) -* separate browser storage ([9ea89b8](https://github.com/powerhouse-inc/document-model-electron/commit/9ea89b80a5094eaa56a2d3b417a0e8fb05c0ae91)) -* separated error and conflict messages for drive status notification ([e80ccfe](https://github.com/powerhouse-inc/document-model-electron/commit/e80ccfeff3bf1e739af33c0da97f5258f5007e5a)) -* set queue timeout to 10ms ([6c87c92](https://github.com/powerhouse-inc/document-model-electron/commit/6c87c92e4e4ed2246c642f6575db1b31c6611b06)) -* show success sync toast only after recover from error sync ([5c2a47a](https://github.com/powerhouse-inc/document-model-electron/commit/5c2a47a2d0232e13d9fd6047bbe88c3faee6caa3)) -* simplify copy ([2cd60c3](https://github.com/powerhouse-inc/document-model-electron/commit/2cd60c3957685049fc6ff64beb094b409bbd4f32)) -* support add drive ([f827d33](https://github.com/powerhouse-inc/document-model-electron/commit/f827d338d4b6b49bde54f58ec6eb133756f3c765)) -* support multiple separate allow lists ([74d6152](https://github.com/powerhouse-inc/document-model-electron/commit/74d615236b6a75d0602476a826787e37a3ab263f)) -* switch to using vars from design system ([587c258](https://github.com/powerhouse-inc/document-model-electron/commit/587c258c1f47b8f5f1004252aec491d91b14eb5a)) -* trigger build ([e85bf95](https://github.com/powerhouse-inc/document-model-electron/commit/e85bf95f96ece3f59ead521fe39588630203900d)) -* update connect opengraph meta data ([32b3720](https://github.com/powerhouse-inc/document-model-electron/commit/32b372038f27d9a062ad78de6fde36a70cf2d6d8)) -* update deeplink protocol ([45d0a58](https://github.com/powerhouse-inc/document-model-electron/commit/45d0a58d266bcc369fcef7e0a1cc88c71757e1fc)) -* update dependencies and increase pull interval to 3 seconds ([66d8aea](https://github.com/powerhouse-inc/document-model-electron/commit/66d8aea256ccc6f742347db03bf06901b777bc74)) -* update deps ([3b6fa8d](https://github.com/powerhouse-inc/document-model-electron/commit/3b6fa8daeedec0549451490c9a7efec733ab2b75)) -* update document drive ([ff37742](https://github.com/powerhouse-inc/document-model-electron/commit/ff37742d857e9445a30a4122f12ec8585f5d129e)) -* update document drive dep ([ad31bf0](https://github.com/powerhouse-inc/document-model-electron/commit/ad31bf08d09650a9c335e18cf7153c7bd7667081)) -* update document drive dep ([5baaf20](https://github.com/powerhouse-inc/document-model-electron/commit/5baaf2006c71885132bbdabb59976acf5cde8ce2)) -* update document-drive ([534fa80](https://github.com/powerhouse-inc/document-model-electron/commit/534fa802984035735710d220f2496add04704b64)) -* update document-drive ver ([393388e](https://github.com/powerhouse-inc/document-model-electron/commit/393388e0a45f0275e5ab6824695d70b931891777)) -* update document-model and document-drive ver ([d66225a](https://github.com/powerhouse-inc/document-model-electron/commit/d66225aefa67ed761e8c5a1f36b62685666f7d84)) -* update document-model and document-drive versions ([8d1f869](https://github.com/powerhouse-inc/document-model-electron/commit/8d1f8691bf1511aca38f96a1ca7488e9d6104af2)) -* update document-model dep ([c865770](https://github.com/powerhouse-inc/document-model-electron/commit/c8657706b488631cf5955a6677ae5e4e1252bc9c)) -* update document-model document-drive and document-model-libs deps ([aee1dce](https://github.com/powerhouse-inc/document-model-electron/commit/aee1dce7f1c927ca24ac5283ab3d4d48ca85b7f6)) -* update document-model lib to v1.0.29 ([9190869](https://github.com/powerhouse-inc/document-model-electron/commit/9190869ddea006ce0cad8c3fa264d83535e16950)) -* update drive sync icon on syncStatus event ([ded596e](https://github.com/powerhouse-inc/document-model-electron/commit/ded596eb4761ce7003e285a0b283d45242b66444)) -* update editor when opened document is changed ([88e1cad](https://github.com/powerhouse-inc/document-model-electron/commit/88e1cad21d61cc9675f53a4a67e51e8712b22696)) -* update env var names ([42ba363](https://github.com/powerhouse-inc/document-model-electron/commit/42ba363359b08b076fdb7d39fa7df9b2c7d963ba)) -* update experimental deps ([12d28d6](https://github.com/powerhouse-inc/document-model-electron/commit/12d28d695a58dfc9bb2ff1e288b6ea4ef39f1267)) -* update lint config ([170b252](https://github.com/powerhouse-inc/document-model-electron/commit/170b252cd35fe786147f4e5306948eecf6a3990c)) -* update submit handler ([9cd1a10](https://github.com/powerhouse-inc/document-model-electron/commit/9cd1a10a0fee03bf4ddd2ace4f1a3796e1b4de30)) -* update to use new sync icons ([e1cbf1d](https://github.com/powerhouse-inc/document-model-electron/commit/e1cbf1d22de3159c247b3356577f2fdc519a51c5)) -* update url params logic ([6450975](https://github.com/powerhouse-inc/document-model-electron/commit/645097513096fa26327e60ea510d2e4bd628a870)) -* updated deps ([e41734f](https://github.com/powerhouse-inc/document-model-electron/commit/e41734f70b7b8acae90c167df5884820ee99c3c9)) -* updated deps ([a328cd9](https://github.com/powerhouse-inc/document-model-electron/commit/a328cd93ec131d36f61c45fda4863f315fb3a2cc)) -* updated design system dep ([b378a42](https://github.com/powerhouse-inc/document-model-electron/commit/b378a420bad20debc06aeeb376401ecb311889ce)) -* updated document drive ([4b588b0](https://github.com/powerhouse-inc/document-model-electron/commit/4b588b0f602debb6d069c3c4d580292b87a94337)) -* updated document drive ([b0df564](https://github.com/powerhouse-inc/document-model-electron/commit/b0df564c0952c60b3202c392e9fb1a23e401bea8)) -* updated document drive lib ([5f30983](https://github.com/powerhouse-inc/document-model-electron/commit/5f30983ab3f07462d842e3f464c0723d3f8785dd)) -* updated document-drive ver ([f7b9c7d](https://github.com/powerhouse-inc/document-model-electron/commit/f7b9c7df9d9b569b296d599998e3a500bfb8735c)) -* updated document-drive version ([a92dd24](https://github.com/powerhouse-inc/document-model-electron/commit/a92dd24c3ae638ff02587623a3d33af7fd89e2b6)) -* updated document-drive@1.0.0-experimental.2 ([c2b2816](https://github.com/powerhouse-inc/document-model-electron/commit/c2b2816cc7eea0346ea7d958b39f4b25796bb2a0)) -* updated document-drive@1.0.0-experimental.4 ([f31d12d](https://github.com/powerhouse-inc/document-model-electron/commit/f31d12d18404882a1f3af00f9bca6ab79d7a667e)) -* updated document-model dep ([f487cff](https://github.com/powerhouse-inc/document-model-electron/commit/f487cff99198d7cc3d8fd9db944ca394cc788dec)) -* updated document-model lib ([9db149e](https://github.com/powerhouse-inc/document-model-electron/commit/9db149ecc91926c02f2fe8479ca08958b66977d3)) -* updated document-model-libs ([b0bb1d2](https://github.com/powerhouse-inc/document-model-electron/commit/b0bb1d2ef530ecacc8f722322149866f8fbce03d)) -* updated document-model-libs and design-system ver ([d4ab8f8](https://github.com/powerhouse-inc/document-model-electron/commit/d4ab8f881d0e04d5bf68e0748205cf25fcce90e1)) -* updated package.lock ([3c334f4](https://github.com/powerhouse-inc/document-model-electron/commit/3c334f4f714ec6a63ce63bbc7f60d0e67f99b17b)) -* updated rwa query ([3709cfc](https://github.com/powerhouse-inc/document-model-electron/commit/3709cfc9543851fe77f8a930d1e0806d552069d6)) -* use default values if there is a missing key for feature flags ([cdb728a](https://github.com/powerhouse-inc/document-model-electron/commit/cdb728a3964ca1183bd38743744a8bdf51e04fb6)) -* use drive icon ([c82bebb](https://github.com/powerhouse-inc/document-model-electron/commit/c82bebb00516c95b2f6f48102672bf70333f9477)) -* use memoryBrowser on packaged app ([2d11200](https://github.com/powerhouse-inc/document-model-electron/commit/2d11200a47c861429edd0ad5c6a4eb13b46a7363)) -* use new svgr syntax ([e1db3b9](https://github.com/powerhouse-inc/document-model-electron/commit/e1db3b95b5330f95893b5511df8041ed04d33fb7)) -* use not equal ([8e33089](https://github.com/powerhouse-inc/document-model-electron/commit/8e330890f658224bc1e37d6504765e3d01cc7ede)) -* use setTimeout as fallback for requestIdleCallback ([730c8f2](https://github.com/powerhouse-inc/document-model-electron/commit/730c8f292eec07908410f7f2949c045bab8094fe)) -* use tailwind styles ([53dc69f](https://github.com/powerhouse-inc/document-model-electron/commit/53dc69f69663b4d315c03b57a64b87b274e698cd)) -* use yarn ([812fe5a](https://github.com/powerhouse-inc/document-model-electron/commit/812fe5af48fdea5cb5955f6b8336604722476b44)) -* waits 50ms for new operations to make a single addOperations call ([d4c9796](https://github.com/powerhouse-inc/document-model-electron/commit/d4c97965cc9b83128f6be225a27a64c2f88795f3)) -* waits for document drive server to be loaded before checking default drive is added ([fc10ee8](https://github.com/powerhouse-inc/document-model-electron/commit/fc10ee8428d9d9c24c6cef38cd104ac5f79d759c)) +- 🚀 Added ItemsContext integration ([41fc40f](https://github.com/powerhouse-inc/document-model-electron/commit/41fc40f93420101ca9b2ec34e1b4f4cab4a43a4b)) +- 🚀 added readable item path for File Items ([9f6a4ac](https://github.com/powerhouse-inc/document-model-electron/commit/9f6a4ac45318bb757e7c7c60df463e67b066771b)) +- 🚀 Implemented base folder-view design ([22ad4fc](https://github.com/powerhouse-inc/document-model-electron/commit/22ad4fc5046e27016ce1a47eda3282125af4db71)) +- activate queue ([#290](https://github.com/powerhouse-inc/document-model-electron/issues/290)) ([5b5a4fd](https://github.com/powerhouse-inc/document-model-electron/commit/5b5a4fd317ce624cc734f186778e49899dd3b148)) +- add dep array to use effect ([0a88d92](https://github.com/powerhouse-inc/document-model-electron/commit/0a88d92a664b877929978f05753f3d38e471625d)) +- add dependency versions to settings modal ([d01c0de](https://github.com/powerhouse-inc/document-model-electron/commit/d01c0de124cb9af00312e4c53e934d8a233e02af)) +- add design system preset ([a6cb51c](https://github.com/powerhouse-inc/document-model-electron/commit/a6cb51c31d4500d31fd091f165a4f01ae37ff4d7)) +- add duplicate action ([a9d2e29](https://github.com/powerhouse-inc/document-model-electron/commit/a9d2e29318badb84ca51acc9603a2c2dc7f25a0e)) +- add duplicate to folder ([a6212a8](https://github.com/powerhouse-inc/document-model-electron/commit/a6212a8fe3c62f49d1b624e75152e48f80034ed2)) +- add generate assets hook for icons copying ([4c25ebe](https://github.com/powerhouse-inc/document-model-electron/commit/4c25ebecc94941502e35dff28555664b3985f67b)) +- add is allowed to create documents hook ([0a457fc](https://github.com/powerhouse-inc/document-model-electron/commit/0a457fc35f5e78cb16eac1664c3def10b29b5229)) +- add optional dep ([a079cc7](https://github.com/powerhouse-inc/document-model-electron/commit/a079cc799c0d7987193ee209618151c10c743282)) +- add pull trigger on cloud drives ([9f86849](https://github.com/powerhouse-inc/document-model-electron/commit/9f868495ced48b9b23a3d128469ce7ac20d32a57)) +- add react aria dep ([499dda0](https://github.com/powerhouse-inc/document-model-electron/commit/499dda05d52469c85f0dc31d1da5639dc926c9c4)) +- add tailwind eslint plugin ([6e639bc](https://github.com/powerhouse-inc/document-model-electron/commit/6e639bc71bddeafe855c210c0f573cec7b2ce622)) +- add user context to actions ([6a3241d](https://github.com/powerhouse-inc/document-model-electron/commit/6a3241d3e98c58262ffc7bbbcaa66f6f5d8878b3)) +- added base path for nginx ([22a270b](https://github.com/powerhouse-inc/document-model-electron/commit/22a270b978e189a8a9afd20e0ae8f568e8c3336e)) +- added browser key storage ([6562881](https://github.com/powerhouse-inc/document-model-electron/commit/6562881b2eb603b59b55f1595a7f46b96dbbded6)) +- added clear storage setting ([922f5e1](https://github.com/powerhouse-inc/document-model-electron/commit/922f5e19ebd68e07440858c2f7308e3f6d1a2aae)) +- added config to hide drive sections ([aa67a3f](https://github.com/powerhouse-inc/document-model-electron/commit/aa67a3f392891e195fbc24a2ff858b66265eccc5)) +- added csp headers ([bd398aa](https://github.com/powerhouse-inc/document-model-electron/commit/bd398aa0bc6d748b740e17d4ddf197232d701c62)) +- added deeplink support to link to specific drive node ([ae1f97f](https://github.com/powerhouse-inc/document-model-electron/commit/ae1f97fb17e3cbc422a2e242e9ff530c598284a5)) +- added delete drive modal + enable delete file modal confirmation ([4ce110e](https://github.com/powerhouse-inc/document-model-electron/commit/4ce110e7baaaad3ea75a33eff45fab9994184658)) +- added develop environment ([c33ab9d](https://github.com/powerhouse-inc/document-model-electron/commit/c33ab9d6977712a3015d28a0cd27208f7fd727e5)) +- added develop to release cycle ([b9247e6](https://github.com/powerhouse-inc/document-model-electron/commit/b9247e66d19ffc9400caae9403d9b5b06048eacc)) +- added e2e playwright setup ([2d37330](https://github.com/powerhouse-inc/document-model-electron/commit/2d37330f103456dc9d3e24cc4a74d3ed7abb20c8)) +- added editor debug tools ([6928bed](https://github.com/powerhouse-inc/document-model-electron/commit/6928bed61c46322bc341da7bed48dcde60454b9e)) +- added env var to hide document model setting ([840a561](https://github.com/powerhouse-inc/document-model-electron/commit/840a5615ba0b5eafab123b0f0e5c21b3c880d670)) +- added env vars for renown ([f464d68](https://github.com/powerhouse-inc/document-model-electron/commit/f464d68172be57798be364a804b9de0e7f1733c1)) +- added feature flag setup + disable editors for demo ([7fa64f2](https://github.com/powerhouse-inc/document-model-electron/commit/7fa64f2634cea508ebfb8b20732a730dc8b0624b)) +- added gzip and brotli compression to nginx ([f52a0c3](https://github.com/powerhouse-inc/document-model-electron/commit/f52a0c3205b1fd7fc99875fae0ad5a1d5cd24dd5)) +- added heroku deployment for powerhouse staging env ([f4c538a](https://github.com/powerhouse-inc/document-model-electron/commit/f4c538a3e02781276996e30b759d50f248037c86)) +- added modal confirmation when export document with errors ([d22a447](https://github.com/powerhouse-inc/document-model-electron/commit/d22a447c98d50589f61e37cd6284155223824057)) +- added network id to user ([908a50e](https://github.com/powerhouse-inc/document-model-electron/commit/908a50e8df9c1ae7e53940dc801157a5ca665706)) +- added new env var to dockerfile ([64afb40](https://github.com/powerhouse-inc/document-model-electron/commit/64afb40dfec060e8ebfaaeddf8f47f3f925d21be)) +- added nginx config ([069be2c](https://github.com/powerhouse-inc/document-model-electron/commit/069be2cd98aee6fe3a6b686b4112a435e81d11b3)) +- added notification toast ([39ed0c2](https://github.com/powerhouse-inc/document-model-electron/commit/39ed0c2319c2a6e1c2044aff5cda1fd1dc51d24b)) +- added open file and delete file ([01793c8](https://github.com/powerhouse-inc/document-model-electron/commit/01793c8a5f21b8e1701e649cc926c8baa7ece4fe)) +- added opengraph and twitter meta data ([280da91](https://github.com/powerhouse-inc/document-model-electron/commit/280da914bbe8129ead8559d4169ea266fbb327bc)) +- added PH logo ([e9ec94b](https://github.com/powerhouse-inc/document-model-electron/commit/e9ec94b3373495aa0d03673b241c78605b61d396)) +- added prepare script ([abeaa41](https://github.com/powerhouse-inc/document-model-electron/commit/abeaa41bb7bfc7a8d3a7332a9dd0ba0dad088659)) +- added renown login on browser ([5b77016](https://github.com/powerhouse-inc/document-model-electron/commit/5b77016508fd448b23999919a8d9e40bc701e1f9)) +- added rewrite rules to vercel.json config ([b66cdb0](https://github.com/powerhouse-inc/document-model-electron/commit/b66cdb0fb264412710c1d3bf67f06d48df52408c)) +- added route to open document drive node ([6700f13](https://github.com/powerhouse-inc/document-model-electron/commit/6700f132435dd4ce175b036d5e906d1194976ed0)) +- added RWA doc name fix for demo ([05dfd07](https://github.com/powerhouse-inc/document-model-electron/commit/05dfd0781038523b86437ebe1164e20a848c65b2)) +- added scope of work ([742aae0](https://github.com/powerhouse-inc/document-model-electron/commit/742aae0cab712068d2f8dbe2804da3ba802416bd)) +- added sentry dsn to environments ([c4cfef1](https://github.com/powerhouse-inc/document-model-electron/commit/c4cfef161be9db837d29aca316949957412e4c25)) +- added sentry environments ([68fefd0](https://github.com/powerhouse-inc/document-model-electron/commit/68fefd095cbffcec9eeebedb786d5ab7afc9c9bf)) +- added sentry to connect ([d51ec53](https://github.com/powerhouse-inc/document-model-electron/commit/d51ec538d376cb533882f9c4b0ee057d80ce7d1a)) +- added settings modal integration ([dfb9d28](https://github.com/powerhouse-inc/document-model-electron/commit/dfb9d287bb99dec4316c9eee5098816b6f498926)) +- added sidebar login ([2917809](https://github.com/powerhouse-inc/document-model-electron/commit/29178094a9d711e1d7303dde1511a7b73bc37199)) +- added sort nodes + fix input styles + cancel new folders with empty name ([4a2f9fb](https://github.com/powerhouse-inc/document-model-electron/commit/4a2f9fbf2c4dc5427c58633f18e40eb10574600c)) +- added support for delete option in FolderItem and FileItem ([85800ab](https://github.com/powerhouse-inc/document-model-electron/commit/85800ab374da9be041d6e8c547d186a0671a6b91)) +- added support for document in addfile action ([0706ce2](https://github.com/powerhouse-inc/document-model-electron/commit/0706ce25a515024a37b61aec11c930601a0869e5)) +- added support for rename files + create file name modal ([8a76691](https://github.com/powerhouse-inc/document-model-electron/commit/8a76691426d671128c4cfbc98864a9a669e395f3)) +- added support for renown user ([3853b37](https://github.com/powerhouse-inc/document-model-electron/commit/3853b371349ee14051b666a19fbb0b0c564c8ac6)) +- added support for router basename ([251afe2](https://github.com/powerhouse-inc/document-model-electron/commit/251afe2b1d4eab690f9592e25edc6c555e2fe44a)) +- added switchboard link to document files ([5f31b71](https://github.com/powerhouse-inc/document-model-electron/commit/5f31b710a6ae65f42aac65840da422134e48ee6c)) +- added useConnectConfig hook ([a600091](https://github.com/powerhouse-inc/document-model-electron/commit/a60009131ad8600174311b45a696d0c3219ae8ce)) +- added vercel redirect ([7100848](https://github.com/powerhouse-inc/document-model-electron/commit/7100848213fe6e5d0811229e67c82b8997648fa2)) +- added vite env as build args ([c76d4f4](https://github.com/powerhouse-inc/document-model-electron/commit/c76d4f431017df7f9b40a5063a71618084333c24)) +- allow connect-src for renown.id ([7357d4a](https://github.com/powerhouse-inc/document-model-electron/commit/7357d4a4a2c9aff400e55d9c8eed9630aaec4ed5)) +- allow external images ([171efac](https://github.com/powerhouse-inc/document-model-electron/commit/171efac183458b993ac11849345b3fb8765a10f4)) +- allow per deploy drive restrictions ([8779d84](https://github.com/powerhouse-inc/document-model-electron/commit/8779d84cb1be5128ac7b1c63a8666c5d03b2f593)) +- allow url for file ([474ad4d](https://github.com/powerhouse-inc/document-model-electron/commit/474ad4d0b90e9e882bb52d4ca479a4314d15eec1)) +- also disable when env is production ([6f60688](https://github.com/powerhouse-inc/document-model-electron/commit/6f60688a7bcf92e19afe5a4a49a1baa9f0c44507)) +- also do src === target check in move node function ([3e80c1e](https://github.com/powerhouse-inc/document-model-electron/commit/3e80c1e4dface07c9d101c39f6a0dce6d0654a26)) +- apply auto fixes ([b10b111](https://github.com/powerhouse-inc/document-model-electron/commit/b10b111374636b145c52fa15f38ebc0751912483)) +- auto-select first drive if there's no selected path ([daf3083](https://github.com/powerhouse-inc/document-model-electron/commit/daf3083b4fff8dd6f033ce9806affe932fea4f04)) +- bump ([40fd30a](https://github.com/powerhouse-inc/document-model-electron/commit/40fd30a489214a512a7dc43fbe9dea1e0c33604a)) +- bump ([11fb69f](https://github.com/powerhouse-inc/document-model-electron/commit/11fb69f6f507d4240e72b1208982c814bce185a8)) +- bump deps ([7d7206c](https://github.com/powerhouse-inc/document-model-electron/commit/7d7206c5ae9bc7c9e7d26713fc8ff4e7ef5f459d)) +- bump design system ([fb12d70](https://github.com/powerhouse-inc/document-model-electron/commit/fb12d70fcd3237f1cacb0375e99e4a1ae01cc342)) +- bump design system ([4e1d168](https://github.com/powerhouse-inc/document-model-electron/commit/4e1d168298355beea31e2216edeb7b7cef8e8257)) +- bump design system and document model libs ([165e2cc](https://github.com/powerhouse-inc/document-model-electron/commit/165e2ccc41d5d72a6f2f834292c18aa2388ebb86)) +- bump design system to integrate dep version component ([a18c621](https://github.com/powerhouse-inc/document-model-electron/commit/a18c621a24d97b3bfa9f103365b3890f6fd342d7)) +- bump design-system and document-model-lib deps ([7d90802](https://github.com/powerhouse-inc/document-model-electron/commit/7d9080289ce258cf9d299d13b4cf7e092fd51535)) +- bump document drive version ([254a2cd](https://github.com/powerhouse-inc/document-model-electron/commit/254a2cd967b07d22352d38509ad55c2ffcd19bf5)) +- bump libs ([24a9cd3](https://github.com/powerhouse-inc/document-model-electron/commit/24a9cd3427eecc32697f15d7479bf5ee53c95084)) +- bump libs ([b27b036](https://github.com/powerhouse-inc/document-model-electron/commit/b27b036a487fbe989f9f7b585603e15bcdd3fa3a)) +- bump libs ([5fb15d3](https://github.com/powerhouse-inc/document-model-electron/commit/5fb15d321de8649ac2fc6953d9ec5312aeabefeb)) +- bump libs ([1f38863](https://github.com/powerhouse-inc/document-model-electron/commit/1f38863cb3e6fff081218ce59d7cf1a6f3c44621)) +- bump libs ([7df97b0](https://github.com/powerhouse-inc/document-model-electron/commit/7df97b03882c012f035b259aebb85ba42704008b)) +- bump libs ([78baf1d](https://github.com/powerhouse-inc/document-model-electron/commit/78baf1dee6da3f18208f23973f65b5a1b930ba81)) +- bump libs ([d766c36](https://github.com/powerhouse-inc/document-model-electron/commit/d766c36649f3575b2d10bcaf532249437a79b36c)) +- bump libs ([6b3f58f](https://github.com/powerhouse-inc/document-model-electron/commit/6b3f58fd3aad9e628cf2312629280f12984648e2)) +- bump libs ([f98b523](https://github.com/powerhouse-inc/document-model-electron/commit/f98b523acb0e2f2599d4d8927bf8fe5b26374856)) +- bump libs ([2a9a29d](https://github.com/powerhouse-inc/document-model-electron/commit/2a9a29d0d9d129abbbe6b16567151f3ecd0d525e)) +- bump libs ([62117a9](https://github.com/powerhouse-inc/document-model-electron/commit/62117a90490e9bbb32c4a84fdbdb3d930ca7ebfb)) +- bump libs ([62cd43d](https://github.com/powerhouse-inc/document-model-electron/commit/62cd43dd7f80cfd6202c251a9c1af1bad0978b67)) +- bump lint deps ([544fcea](https://github.com/powerhouse-inc/document-model-electron/commit/544fcea7cdcf450756b8deb913c47047a9161849)) +- bump react aria ([3a8ed93](https://github.com/powerhouse-inc/document-model-electron/commit/3a8ed934d371b11c7deb8c8894b43c323d04f06f)) +- cancel rename operation when new name is empty ([6c7a815](https://github.com/powerhouse-inc/document-model-electron/commit/6c7a815500339ebbced23214450750bacbfdebc9)) +- change term to allow list ([af99e9b](https://github.com/powerhouse-inc/document-model-electron/commit/af99e9ba0a3eee7074cc763922caf1656f024e83)) +- changed default renown env variables ([c87ee69](https://github.com/powerhouse-inc/document-model-electron/commit/c87ee697507eba7235150e5156bbe7d0cd121e36)) +- changed nginx image to nginx-brotli ([3d497da](https://github.com/powerhouse-inc/document-model-electron/commit/3d497da7806bdb77a6352aad9ad5f64ddcfa93e4)) +- check if operations with same index are submitted ([b7ad973](https://github.com/powerhouse-inc/document-model-electron/commit/b7ad97307106467a39060da44420515f10ce3921)) +- check user auth on startup ([6820f27](https://github.com/powerhouse-inc/document-model-electron/commit/6820f27a8defb40d72e3580d00fe11f1170bbe22)) +- commented renown env variables ([cd18bab](https://github.com/powerhouse-inc/document-model-electron/commit/cd18babc471fef7b1939bed4478265bd5a38abc1)) +- configure available editors with env variables ([00fad56](https://github.com/powerhouse-inc/document-model-electron/commit/00fad56259d24c1dc9fe3009ec5d4d8d9a51782a)) +- default drive handling improvements ([57be63e](https://github.com/powerhouse-inc/document-model-electron/commit/57be63e34a368769eb159728194f70d60ad98290)) +- detect circular reference in node path ([c113d03](https://github.com/powerhouse-inc/document-model-electron/commit/c113d035118d418ed8006b55112d101f030b4caa)) +- disable dev tools when app is packaged ([2326a77](https://github.com/powerhouse-inc/document-model-electron/commit/2326a7774f74d2c8af949cf55c18b12b38d0b7d9)) +- disable document drive editor by default ([a61249f](https://github.com/powerhouse-inc/document-model-electron/commit/a61249f43e50219b7b6aebc27f63b2d07a4735ec)) +- disallow create operations ([9cb4a8e](https://github.com/powerhouse-inc/document-model-electron/commit/9cb4a8e4d902f67692e696b60c283a3ec59ca137)) +- downloadFile fallback ([9836f4c](https://github.com/powerhouse-inc/document-model-electron/commit/9836f4c1e6edf68d1239f69cfb86324cb1e4d6f0)) +- enable transactions editor ([28967c2](https://github.com/powerhouse-inc/document-model-electron/commit/28967c2c6a4465494f682e55e914bfdd719bc07b)) +- enabled add cloud drive modal ([d54f579](https://github.com/powerhouse-inc/document-model-electron/commit/d54f579bd903e57cf193cdc11a727eed5526971d)) +- enabled drop target for FolderItem ([70aeaad](https://github.com/powerhouse-inc/document-model-electron/commit/70aeaadde2844def0c0cc648dbb8f496d51b96dd)) +- enabled editor controls ([f7aa503](https://github.com/powerhouse-inc/document-model-electron/commit/f7aa50343c0a124056811f1ce29ab0c8539263da)) +- enabled keyboard shortcut for undo/redo ([82fe517](https://github.com/powerhouse-inc/document-model-electron/commit/82fe517dbbf01006c6fbaae0b1c493c57eeeb422)) +- enabled onErrorCallback for dispatch fn ([8bd3c7c](https://github.com/powerhouse-inc/document-model-electron/commit/8bd3c7ccfafbf1d1b32ada0bb941585bd0ee1907)) +- enabled rename option for folders in folder view ([d7a9b34](https://github.com/powerhouse-inc/document-model-electron/commit/d7a9b3490b0cb91d647ecb803513dbea590f04e0)) +- enabled rename option when copy/move an item ([3ef5ea4](https://github.com/powerhouse-inc/document-model-electron/commit/3ef5ea474997e10b670a989460dca939431f3a9a)) +- enabled rwa editor ([b7df486](https://github.com/powerhouse-inc/document-model-electron/commit/b7df486a82c0c044fab5dd434ecceba1a2c24dc1)) +- enabled switchboard link in RWA editor ([cece18e](https://github.com/powerhouse-inc/document-model-electron/commit/cece18e3cb900cbe2fe7d77c0c329a2c430e2539)) +- enabled undo/redo with new document structure ([f6af1e0](https://github.com/powerhouse-inc/document-model-electron/commit/f6af1e002121456e5e9cc4befe6c41ac4ddf8aa9)) +- expand selected path in sidebar on initial path load ([9b5e053](https://github.com/powerhouse-inc/document-model-electron/commit/9b5e0533e7e02d4ae9ea3c6bb01c9827eada160c)) +- export did:key instead of public key ([a358371](https://github.com/powerhouse-inc/document-model-electron/commit/a3583718047f447f2f59a8153e3e2ac15a8cd732)) +- fetch user's ens info ([229a1ae](https://github.com/powerhouse-inc/document-model-electron/commit/229a1ae1bcd145858f867cdf449d9ed2709c8ffc)) +- fix Authorize Connect font color ([25ba2e7](https://github.com/powerhouse-inc/document-model-electron/commit/25ba2e7af5c81c442fed8d919b31a66ba2959e77)) +- fix console warnings ([3024578](https://github.com/powerhouse-inc/document-model-electron/commit/3024578d93e4a70a89a3b3681d34f78a4bd0f1d0)) +- fix css import order ([9216a27](https://github.com/powerhouse-inc/document-model-electron/commit/9216a277e488f73cc892ad015c4ea35dd22bb2a9)) +- fix linux build ([433e6f9](https://github.com/powerhouse-inc/document-model-electron/commit/433e6f9b0a92f72d33e16bbcb71a8965c034c6be)) +- fix logo + position ([278ebeb](https://github.com/powerhouse-inc/document-model-electron/commit/278ebeb39cac2b6d1edb3b096161bb3810669f31)) +- fix rwa document name ([b3f39d1](https://github.com/powerhouse-inc/document-model-electron/commit/b3f39d16c09cb87295d53a7be249b4e2be3895ab)) +- fix sync status ([9ff69fe](https://github.com/powerhouse-inc/document-model-electron/commit/9ff69fedf729b7e70b07bf121c9feed00c1ddc58)) +- fix tailwind class conflicts ([341d8ba](https://github.com/powerhouse-inc/document-model-electron/commit/341d8ba945fd1a20c6014fcb6e5ce77faf458b5f)) +- fixed addDriveOperations ([4c33a1f](https://github.com/powerhouse-inc/document-model-electron/commit/4c33a1f891eeba1b9845768fbc0395cb01dd9e70)) +- fixed base route ([606e919](https://github.com/powerhouse-inc/document-model-electron/commit/606e9191be0f32309e7a0a59e82dc49aa88690bb)) +- fixed default document-models ([0d51154](https://github.com/powerhouse-inc/document-model-electron/commit/0d511546e95a1d5a534f92b549d7120076792040)) +- fixed editors loading ([4fda671](https://github.com/powerhouse-inc/document-model-electron/commit/4fda67192ca075aa66079cbf769548e53e1a2ef3)) +- fixed file import ([23cd72d](https://github.com/powerhouse-inc/document-model-electron/commit/23cd72da07e8fa12bb6f5c739d392432057d6812)) +- fixed file operations error ([5d123af](https://github.com/powerhouse-inc/document-model-electron/commit/5d123af045f0409222bd61404b2249db2a4ec19d)) +- fixes browser key storage ([bfb2a72](https://github.com/powerhouse-inc/document-model-electron/commit/bfb2a725ec7fb4ec507751e52aa743879e39b428)) +- generate key pair on desktop ([ebc0204](https://github.com/powerhouse-inc/document-model-electron/commit/ebc020405e0b289aa4cfdf4935b2afcd53494a7f)) +- go back from fixed version ([41684c4](https://github.com/powerhouse-inc/document-model-electron/commit/41684c4f9cb55bef7f4e8bea46e7ab2eedc26b5c)) +- handle empty string or wrong formatted string in env var ([0099615](https://github.com/powerhouse-inc/document-model-electron/commit/009961513edaba39ad8fb4daacd6dd702a9fedd8)) +- handle null parent folder ([21f9370](https://github.com/powerhouse-inc/document-model-electron/commit/21f93703b08e39c6c97312a232a609a53dacf1c0)) +- handle sync events on node document drive ([3855ce4](https://github.com/powerhouse-inc/document-model-electron/commit/3855ce42a72865ed48e7729d25ec1481e462851d)) +- handle undefined whitelist ([1672fa8](https://github.com/powerhouse-inc/document-model-electron/commit/1672fa86ab863d8d2fc88604a775f524f7b86614)) +- hide searchbar from config ([0bd4444](https://github.com/powerhouse-inc/document-model-electron/commit/0bd4444fca256b28bf413122a870f343963dc801)) +- ignore drives with error ([25a27d5](https://github.com/powerhouse-inc/document-model-electron/commit/25a27d51fed340a22530d5d13e784bf5f9f66fab)) +- ignore operation hashes when importing zip ([634bcd5](https://github.com/powerhouse-inc/document-model-electron/commit/634bcd5cd534d22db9813cc17be28359d94a1e61)) +- ignores document drive result when adding an operation from the editor ([74140e2](https://github.com/powerhouse-inc/document-model-electron/commit/74140e2400ea1c1b5bb9baf5f7b26ed7cbb2a9cb)) +- implemented rename and new folder actions ([45dbf5e](https://github.com/powerhouse-inc/document-model-electron/commit/45dbf5e527841f1107f9d444ac2b76f0dc6fa7c0)) +- import styles from design system ([f7ac8ad](https://github.com/powerhouse-inc/document-model-electron/commit/f7ac8adc2608e8d491618e01b1c98be9f8c43fe2)) +- improved url handling ([32b3dcd](https://github.com/powerhouse-inc/document-model-electron/commit/32b3dcd943518cba4f1f5a82f9dbb5b906096500)) +- install ts-reset ([228b082](https://github.com/powerhouse-inc/document-model-electron/commit/228b082e36b1e689b47d7ed923dfe3347e74ad7d)) +- install vite ([aa66a01](https://github.com/powerhouse-inc/document-model-electron/commit/aa66a01bc96f33984e9d6828fdd93d374916c2c4)) +- lighthouse recomendations ([dd3e594](https://github.com/powerhouse-inc/document-model-electron/commit/dd3e594c198ab2a9deb83420ed8bfb145475ec71)) +- load default drive ([589653f](https://github.com/powerhouse-inc/document-model-electron/commit/589653fab02bc030fbc4a99bea6ed6f4566fd57c)) +- log sync error ([204c38a](https://github.com/powerhouse-inc/document-model-electron/commit/204c38a5f2763edc2006119b8608f6dc39f40dc9)) +- manually install design system ([1b7c676](https://github.com/powerhouse-inc/document-model-electron/commit/1b7c6767c67efed2da903976a62a0bbbaf8a64fe)) +- move helpers ([e12240c](https://github.com/powerhouse-inc/document-model-electron/commit/e12240c40ca8368b9f99f0bdfa5d2881a9a71dc5)) +- move sync status invocation to hook ([dea3fa9](https://github.com/powerhouse-inc/document-model-electron/commit/dea3fa9f5fbcdf9cf355652bf32e2c434a366c13)) +- moved load initial data into a hook ([99c7417](https://github.com/powerhouse-inc/document-model-electron/commit/99c74175b899c9c1d3f7dbf27de174ebd053bdbf)) +- pass allow list credentials to components ([2fadac1](https://github.com/powerhouse-inc/document-model-electron/commit/2fadac18141430445138ec9446d46227cb69723a)) +- pass allow list props to components ([0df5de6](https://github.com/powerhouse-inc/document-model-electron/commit/0df5de6a1062538cfaee7dcd045abb53b5481106)) +- port config files to ts ([f78e7f5](https://github.com/powerhouse-inc/document-model-electron/commit/f78e7f5444a47d637cc6681dd25917524b03b659)) +- re-enable onErrorCallback with new operations error prop ([a408630](https://github.com/powerhouse-inc/document-model-electron/commit/a408630ee77596a83f2c3ee26a17d44447537647)) +- re-generate package-lock.json ([e48ac3d](https://github.com/powerhouse-inc/document-model-electron/commit/e48ac3dd16d25901565eaed94e4e82b4283f7287)) +- re-implemented copy/move nodes with new DocumentDrive ([c4fad11](https://github.com/powerhouse-inc/document-model-electron/commit/c4fad117827b929d69dd73824d46ef33f767c57f)) +- readd prepare script ([ad4577e](https://github.com/powerhouse-inc/document-model-electron/commit/ad4577ee92a812a4227e03f2923cbb5b5ca0efdc)) +- refresh UI when there are drive changes ([fca3c95](https://github.com/powerhouse-inc/document-model-electron/commit/fca3c9576679e1bdcb8cf017cad3e885cd245fdf)) +- regenerate lock ([0269b0b](https://github.com/powerhouse-inc/document-model-electron/commit/0269b0b47945bc6d53928ec975f3b0c4557706a9)) +- regenerate lockfile ([efa2f7f](https://github.com/powerhouse-inc/document-model-electron/commit/efa2f7f380e1e558b82a616f8d1ef1cda021371e)) +- regenerate lockfile ([c8aac44](https://github.com/powerhouse-inc/document-model-electron/commit/c8aac44f8cb0184962e5567ea3252e14cc686cce)) +- reinstall with npm ([f790b6c](https://github.com/powerhouse-inc/document-model-electron/commit/f790b6c8611e000b123723c014ef35c1ee9aa55b)) +- remove check ([1db971c](https://github.com/powerhouse-inc/document-model-electron/commit/1db971cf324e2ca0e92c8f9b01614f7ef64f3d6a)) +- remove csp ([b940c38](https://github.com/powerhouse-inc/document-model-electron/commit/b940c3849bb1f804c6d2d8ca7e2bced61be81a95)) +- remove default node logic ([217d6e5](https://github.com/powerhouse-inc/document-model-electron/commit/217d6e5ac54033bda7bd36473712e048fe775623)) +- remove hello from content ([decd9c4](https://github.com/powerhouse-inc/document-model-electron/commit/decd9c4a9dbce3d9ecacbee06ad91d5959b86f84)) +- remove old tailwind classes ([10a8b95](https://github.com/powerhouse-inc/document-model-electron/commit/10a8b95edbcf212c17cb9011b13b32d2b924a767)) +- remove redundant config ([0c4d334](https://github.com/powerhouse-inc/document-model-electron/commit/0c4d334f3f75ccef7597470e1ce2a490b449eca8)) +- remove redundant use effect ([9bb2950](https://github.com/powerhouse-inc/document-model-electron/commit/9bb29508084badc11d535fab2ba241fe8021bc5f)) +- remove restriction to send operations ([dc620c5](https://github.com/powerhouse-inc/document-model-electron/commit/dc620c5fda0dd9adff480ee2ea3494b2b1698cc5)) +- remove scrollbar styles ([a9a3080](https://github.com/powerhouse-inc/document-model-electron/commit/a9a30803d3bf1cf91a82cc9bac6133c9bb335691)) +- removed electron-deeplink pkg and updated deep links ([5cec527](https://github.com/powerhouse-inc/document-model-electron/commit/5cec527acc442886f35261affa1619efd30e2212)) +- removed networkId from signer ([89c2a1c](https://github.com/powerhouse-inc/document-model-electron/commit/89c2a1c676170878b4cb307b073b53e28bb9e1f5)) +- removed queue timeout ([8b517b7](https://github.com/powerhouse-inc/document-model-electron/commit/8b517b78c1529abe5c7ee6e69d1990c56c4fbb6e)) +- removed re-renders and prevent add default drive being called twice ([3104848](https://github.com/powerhouse-inc/document-model-electron/commit/3104848107ff53daea46d36930be8ca9e3f522e6)) +- removed usehooks-ts dep ([05ca45e](https://github.com/powerhouse-inc/document-model-electron/commit/05ca45ef3227c50a7d44bfd7c8d8730a89d3c369)) +- rename document drive node when document model name is changed ([b9008f7](https://github.com/powerhouse-inc/document-model-electron/commit/b9008f7e08e340329e16c0743133a09d044cb1dd)) +- replaced env vars by client.config file ([28f7a2f](https://github.com/powerhouse-inc/document-model-electron/commit/28f7a2f5fbe97403f4ed317303f19c43b1cbf300)) +- replaced feature flags context by atomWithStorage ([071b7aa](https://github.com/powerhouse-inc/document-model-electron/commit/071b7aacb44792851b45946f41abecaaa99f5633)) +- replaced sidebar input header by connect logo ([a845dfd](https://github.com/powerhouse-inc/document-model-electron/commit/a845dfd14df5167e25fe5530ae03e9400bb36d45)) +- separate browser storage ([9ea89b8](https://github.com/powerhouse-inc/document-model-electron/commit/9ea89b80a5094eaa56a2d3b417a0e8fb05c0ae91)) +- separated error and conflict messages for drive status notification ([e80ccfe](https://github.com/powerhouse-inc/document-model-electron/commit/e80ccfeff3bf1e739af33c0da97f5258f5007e5a)) +- set queue timeout to 10ms ([6c87c92](https://github.com/powerhouse-inc/document-model-electron/commit/6c87c92e4e4ed2246c642f6575db1b31c6611b06)) +- show success sync toast only after recover from error sync ([5c2a47a](https://github.com/powerhouse-inc/document-model-electron/commit/5c2a47a2d0232e13d9fd6047bbe88c3faee6caa3)) +- simplify copy ([2cd60c3](https://github.com/powerhouse-inc/document-model-electron/commit/2cd60c3957685049fc6ff64beb094b409bbd4f32)) +- support add drive ([f827d33](https://github.com/powerhouse-inc/document-model-electron/commit/f827d338d4b6b49bde54f58ec6eb133756f3c765)) +- support multiple separate allow lists ([74d6152](https://github.com/powerhouse-inc/document-model-electron/commit/74d615236b6a75d0602476a826787e37a3ab263f)) +- switch to using vars from design system ([587c258](https://github.com/powerhouse-inc/document-model-electron/commit/587c258c1f47b8f5f1004252aec491d91b14eb5a)) +- trigger build ([e85bf95](https://github.com/powerhouse-inc/document-model-electron/commit/e85bf95f96ece3f59ead521fe39588630203900d)) +- update connect opengraph meta data ([32b3720](https://github.com/powerhouse-inc/document-model-electron/commit/32b372038f27d9a062ad78de6fde36a70cf2d6d8)) +- update deeplink protocol ([45d0a58](https://github.com/powerhouse-inc/document-model-electron/commit/45d0a58d266bcc369fcef7e0a1cc88c71757e1fc)) +- update dependencies and increase pull interval to 3 seconds ([66d8aea](https://github.com/powerhouse-inc/document-model-electron/commit/66d8aea256ccc6f742347db03bf06901b777bc74)) +- update deps ([3b6fa8d](https://github.com/powerhouse-inc/document-model-electron/commit/3b6fa8daeedec0549451490c9a7efec733ab2b75)) +- update document drive ([ff37742](https://github.com/powerhouse-inc/document-model-electron/commit/ff37742d857e9445a30a4122f12ec8585f5d129e)) +- update document drive dep ([ad31bf0](https://github.com/powerhouse-inc/document-model-electron/commit/ad31bf08d09650a9c335e18cf7153c7bd7667081)) +- update document drive dep ([5baaf20](https://github.com/powerhouse-inc/document-model-electron/commit/5baaf2006c71885132bbdabb59976acf5cde8ce2)) +- update document-drive ([534fa80](https://github.com/powerhouse-inc/document-model-electron/commit/534fa802984035735710d220f2496add04704b64)) +- update document-drive ver ([393388e](https://github.com/powerhouse-inc/document-model-electron/commit/393388e0a45f0275e5ab6824695d70b931891777)) +- update document-model and document-drive ver ([d66225a](https://github.com/powerhouse-inc/document-model-electron/commit/d66225aefa67ed761e8c5a1f36b62685666f7d84)) +- update document-model and document-drive versions ([8d1f869](https://github.com/powerhouse-inc/document-model-electron/commit/8d1f8691bf1511aca38f96a1ca7488e9d6104af2)) +- update document-model dep ([c865770](https://github.com/powerhouse-inc/document-model-electron/commit/c8657706b488631cf5955a6677ae5e4e1252bc9c)) +- update document-model document-drive and document-model-libs deps ([aee1dce](https://github.com/powerhouse-inc/document-model-electron/commit/aee1dce7f1c927ca24ac5283ab3d4d48ca85b7f6)) +- update document-model lib to v1.0.29 ([9190869](https://github.com/powerhouse-inc/document-model-electron/commit/9190869ddea006ce0cad8c3fa264d83535e16950)) +- update drive sync icon on syncStatus event ([ded596e](https://github.com/powerhouse-inc/document-model-electron/commit/ded596eb4761ce7003e285a0b283d45242b66444)) +- update editor when opened document is changed ([88e1cad](https://github.com/powerhouse-inc/document-model-electron/commit/88e1cad21d61cc9675f53a4a67e51e8712b22696)) +- update env var names ([42ba363](https://github.com/powerhouse-inc/document-model-electron/commit/42ba363359b08b076fdb7d39fa7df9b2c7d963ba)) +- update experimental deps ([12d28d6](https://github.com/powerhouse-inc/document-model-electron/commit/12d28d695a58dfc9bb2ff1e288b6ea4ef39f1267)) +- update lint config ([170b252](https://github.com/powerhouse-inc/document-model-electron/commit/170b252cd35fe786147f4e5306948eecf6a3990c)) +- update submit handler ([9cd1a10](https://github.com/powerhouse-inc/document-model-electron/commit/9cd1a10a0fee03bf4ddd2ace4f1a3796e1b4de30)) +- update to use new sync icons ([e1cbf1d](https://github.com/powerhouse-inc/document-model-electron/commit/e1cbf1d22de3159c247b3356577f2fdc519a51c5)) +- update url params logic ([6450975](https://github.com/powerhouse-inc/document-model-electron/commit/645097513096fa26327e60ea510d2e4bd628a870)) +- updated deps ([e41734f](https://github.com/powerhouse-inc/document-model-electron/commit/e41734f70b7b8acae90c167df5884820ee99c3c9)) +- updated deps ([a328cd9](https://github.com/powerhouse-inc/document-model-electron/commit/a328cd93ec131d36f61c45fda4863f315fb3a2cc)) +- updated design system dep ([b378a42](https://github.com/powerhouse-inc/document-model-electron/commit/b378a420bad20debc06aeeb376401ecb311889ce)) +- updated document drive ([4b588b0](https://github.com/powerhouse-inc/document-model-electron/commit/4b588b0f602debb6d069c3c4d580292b87a94337)) +- updated document drive ([b0df564](https://github.com/powerhouse-inc/document-model-electron/commit/b0df564c0952c60b3202c392e9fb1a23e401bea8)) +- updated document drive lib ([5f30983](https://github.com/powerhouse-inc/document-model-electron/commit/5f30983ab3f07462d842e3f464c0723d3f8785dd)) +- updated document-drive ver ([f7b9c7d](https://github.com/powerhouse-inc/document-model-electron/commit/f7b9c7df9d9b569b296d599998e3a500bfb8735c)) +- updated document-drive version ([a92dd24](https://github.com/powerhouse-inc/document-model-electron/commit/a92dd24c3ae638ff02587623a3d33af7fd89e2b6)) +- updated document-drive@1.0.0-experimental.2 ([c2b2816](https://github.com/powerhouse-inc/document-model-electron/commit/c2b2816cc7eea0346ea7d958b39f4b25796bb2a0)) +- updated document-drive@1.0.0-experimental.4 ([f31d12d](https://github.com/powerhouse-inc/document-model-electron/commit/f31d12d18404882a1f3af00f9bca6ab79d7a667e)) +- updated document-model dep ([f487cff](https://github.com/powerhouse-inc/document-model-electron/commit/f487cff99198d7cc3d8fd9db944ca394cc788dec)) +- updated document-model lib ([9db149e](https://github.com/powerhouse-inc/document-model-electron/commit/9db149ecc91926c02f2fe8479ca08958b66977d3)) +- updated document-model-libs ([b0bb1d2](https://github.com/powerhouse-inc/document-model-electron/commit/b0bb1d2ef530ecacc8f722322149866f8fbce03d)) +- updated document-model-libs and design-system ver ([d4ab8f8](https://github.com/powerhouse-inc/document-model-electron/commit/d4ab8f881d0e04d5bf68e0748205cf25fcce90e1)) +- updated package.lock ([3c334f4](https://github.com/powerhouse-inc/document-model-electron/commit/3c334f4f714ec6a63ce63bbc7f60d0e67f99b17b)) +- updated rwa query ([3709cfc](https://github.com/powerhouse-inc/document-model-electron/commit/3709cfc9543851fe77f8a930d1e0806d552069d6)) +- use default values if there is a missing key for feature flags ([cdb728a](https://github.com/powerhouse-inc/document-model-electron/commit/cdb728a3964ca1183bd38743744a8bdf51e04fb6)) +- use drive icon ([c82bebb](https://github.com/powerhouse-inc/document-model-electron/commit/c82bebb00516c95b2f6f48102672bf70333f9477)) +- use memoryBrowser on packaged app ([2d11200](https://github.com/powerhouse-inc/document-model-electron/commit/2d11200a47c861429edd0ad5c6a4eb13b46a7363)) +- use new svgr syntax ([e1db3b9](https://github.com/powerhouse-inc/document-model-electron/commit/e1db3b95b5330f95893b5511df8041ed04d33fb7)) +- use not equal ([8e33089](https://github.com/powerhouse-inc/document-model-electron/commit/8e330890f658224bc1e37d6504765e3d01cc7ede)) +- use setTimeout as fallback for requestIdleCallback ([730c8f2](https://github.com/powerhouse-inc/document-model-electron/commit/730c8f292eec07908410f7f2949c045bab8094fe)) +- use tailwind styles ([53dc69f](https://github.com/powerhouse-inc/document-model-electron/commit/53dc69f69663b4d315c03b57a64b87b274e698cd)) +- use yarn ([812fe5a](https://github.com/powerhouse-inc/document-model-electron/commit/812fe5af48fdea5cb5955f6b8336604722476b44)) +- waits 50ms for new operations to make a single addOperations call ([d4c9796](https://github.com/powerhouse-inc/document-model-electron/commit/d4c97965cc9b83128f6be225a27a64c2f88795f3)) +- waits for document drive server to be loaded before checking default drive is added ([fc10ee8](https://github.com/powerhouse-inc/document-model-electron/commit/fc10ee8428d9d9c24c6cef38cd104ac5f79d759c)) # [1.0.0-alpha.6](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-alpha.5...v1.0.0-alpha.6) (2024-03-14) - ### Bug Fixes -* settings modal typo ([6ef1286](https://github.com/powerhouse-inc/document-model-electron/commit/6ef12861fdda344c7c45f54657b6f56c67217162)) - +- settings modal typo ([6ef1286](https://github.com/powerhouse-inc/document-model-electron/commit/6ef12861fdda344c7c45f54657b6f56c67217162)) ### Features -* added browser key storage ([6562881](https://github.com/powerhouse-inc/document-model-electron/commit/6562881b2eb603b59b55f1595a7f46b96dbbded6)) -* added clear storage setting ([922f5e1](https://github.com/powerhouse-inc/document-model-electron/commit/922f5e19ebd68e07440858c2f7308e3f6d1a2aae)) -* added e2e playwright setup ([2d37330](https://github.com/powerhouse-inc/document-model-electron/commit/2d37330f103456dc9d3e24cc4a74d3ed7abb20c8)) -* added editor debug tools ([6928bed](https://github.com/powerhouse-inc/document-model-electron/commit/6928bed61c46322bc341da7bed48dcde60454b9e)) -* added notification toast ([39ed0c2](https://github.com/powerhouse-inc/document-model-electron/commit/39ed0c2319c2a6e1c2044aff5cda1fd1dc51d24b)) -* added settings modal integration ([dfb9d28](https://github.com/powerhouse-inc/document-model-electron/commit/dfb9d287bb99dec4316c9eee5098816b6f498926)) -* bump libs ([62cd43d](https://github.com/powerhouse-inc/document-model-electron/commit/62cd43dd7f80cfd6202c251a9c1af1bad0978b67)) -* configure available editors with env variables ([00fad56](https://github.com/powerhouse-inc/document-model-electron/commit/00fad56259d24c1dc9fe3009ec5d4d8d9a51782a)) -* disable document drive editor by default ([a61249f](https://github.com/powerhouse-inc/document-model-electron/commit/a61249f43e50219b7b6aebc27f63b2d07a4735ec)) -* enable transactions editor ([28967c2](https://github.com/powerhouse-inc/document-model-electron/commit/28967c2c6a4465494f682e55e914bfdd719bc07b)) -* export did:key instead of public key ([a358371](https://github.com/powerhouse-inc/document-model-electron/commit/a3583718047f447f2f59a8153e3e2ac15a8cd732)) -* generate key pair on desktop ([ebc0204](https://github.com/powerhouse-inc/document-model-electron/commit/ebc020405e0b289aa4cfdf4935b2afcd53494a7f)) -* moved load initial data into a hook ([99c7417](https://github.com/powerhouse-inc/document-model-electron/commit/99c74175b899c9c1d3f7dbf27de174ebd053bdbf)) -* updated document-model lib ([9db149e](https://github.com/powerhouse-inc/document-model-electron/commit/9db149ecc91926c02f2fe8479ca08958b66977d3)) +- added browser key storage ([6562881](https://github.com/powerhouse-inc/document-model-electron/commit/6562881b2eb603b59b55f1595a7f46b96dbbded6)) +- added clear storage setting ([922f5e1](https://github.com/powerhouse-inc/document-model-electron/commit/922f5e19ebd68e07440858c2f7308e3f6d1a2aae)) +- added e2e playwright setup ([2d37330](https://github.com/powerhouse-inc/document-model-electron/commit/2d37330f103456dc9d3e24cc4a74d3ed7abb20c8)) +- added editor debug tools ([6928bed](https://github.com/powerhouse-inc/document-model-electron/commit/6928bed61c46322bc341da7bed48dcde60454b9e)) +- added notification toast ([39ed0c2](https://github.com/powerhouse-inc/document-model-electron/commit/39ed0c2319c2a6e1c2044aff5cda1fd1dc51d24b)) +- added settings modal integration ([dfb9d28](https://github.com/powerhouse-inc/document-model-electron/commit/dfb9d287bb99dec4316c9eee5098816b6f498926)) +- bump libs ([62cd43d](https://github.com/powerhouse-inc/document-model-electron/commit/62cd43dd7f80cfd6202c251a9c1af1bad0978b67)) +- configure available editors with env variables ([00fad56](https://github.com/powerhouse-inc/document-model-electron/commit/00fad56259d24c1dc9fe3009ec5d4d8d9a51782a)) +- disable document drive editor by default ([a61249f](https://github.com/powerhouse-inc/document-model-electron/commit/a61249f43e50219b7b6aebc27f63b2d07a4735ec)) +- enable transactions editor ([28967c2](https://github.com/powerhouse-inc/document-model-electron/commit/28967c2c6a4465494f682e55e914bfdd719bc07b)) +- export did:key instead of public key ([a358371](https://github.com/powerhouse-inc/document-model-electron/commit/a3583718047f447f2f59a8153e3e2ac15a8cd732)) +- generate key pair on desktop ([ebc0204](https://github.com/powerhouse-inc/document-model-electron/commit/ebc020405e0b289aa4cfdf4935b2afcd53494a7f)) +- moved load initial data into a hook ([99c7417](https://github.com/powerhouse-inc/document-model-electron/commit/99c74175b899c9c1d3f7dbf27de174ebd053bdbf)) +- updated document-model lib ([9db149e](https://github.com/powerhouse-inc/document-model-electron/commit/9db149ecc91926c02f2fe8479ca08958b66977d3)) # [1.0.0-alpha.5](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-alpha.4...v1.0.0-alpha.5) (2024-02-21) - ### Features -* added RWA doc name fix for demo ([05dfd07](https://github.com/powerhouse-inc/document-model-electron/commit/05dfd0781038523b86437ebe1164e20a848c65b2)) -* bump deps ([7d7206c](https://github.com/powerhouse-inc/document-model-electron/commit/7d7206c5ae9bc7c9e7d26713fc8ff4e7ef5f459d)) -* enabled switchboard link in RWA editor ([cece18e](https://github.com/powerhouse-inc/document-model-electron/commit/cece18e3cb900cbe2fe7d77c0c329a2c430e2539)) -* fix sync status ([9ff69fe](https://github.com/powerhouse-inc/document-model-electron/commit/9ff69fedf729b7e70b07bf121c9feed00c1ddc58)) -* updated document-model-libs and design-system ver ([d4ab8f8](https://github.com/powerhouse-inc/document-model-electron/commit/d4ab8f881d0e04d5bf68e0748205cf25fcce90e1)) +- added RWA doc name fix for demo ([05dfd07](https://github.com/powerhouse-inc/document-model-electron/commit/05dfd0781038523b86437ebe1164e20a848c65b2)) +- bump deps ([7d7206c](https://github.com/powerhouse-inc/document-model-electron/commit/7d7206c5ae9bc7c9e7d26713fc8ff4e7ef5f459d)) +- enabled switchboard link in RWA editor ([cece18e](https://github.com/powerhouse-inc/document-model-electron/commit/cece18e3cb900cbe2fe7d77c0c329a2c430e2539)) +- fix sync status ([9ff69fe](https://github.com/powerhouse-inc/document-model-electron/commit/9ff69fedf729b7e70b07bf121c9feed00c1ddc58)) +- updated document-model-libs and design-system ver ([d4ab8f8](https://github.com/powerhouse-inc/document-model-electron/commit/d4ab8f881d0e04d5bf68e0748205cf25fcce90e1)) # [1.0.0-alpha.4](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-alpha.3...v1.0.0-alpha.4) (2024-02-20) - ### Bug Fixes -* fixed build error ([f280459](https://github.com/powerhouse-inc/document-model-electron/commit/f2804594d3f764477c06fc4183a2427df9e4c86b)) -* missing return ([f81d0e9](https://github.com/powerhouse-inc/document-model-electron/commit/f81d0e9a0a58c4079a6359d0dc45f90861d4acb4)) -* properly encode switchboard query ([4c5001f](https://github.com/powerhouse-inc/document-model-electron/commit/4c5001fb3aa34249bee0550331a314872b05c614)) -* removed unused css import ([6da080c](https://github.com/powerhouse-inc/document-model-electron/commit/6da080c53ea57352b997de941fc303f11a5d2a42)) -* switchboard endpoint ([2e570f3](https://github.com/powerhouse-inc/document-model-electron/commit/2e570f39bc355e4f387c0d371e8af81a0b92bb38)) - +- fixed build error ([f280459](https://github.com/powerhouse-inc/document-model-electron/commit/f2804594d3f764477c06fc4183a2427df9e4c86b)) +- missing return ([f81d0e9](https://github.com/powerhouse-inc/document-model-electron/commit/f81d0e9a0a58c4079a6359d0dc45f90861d4acb4)) +- properly encode switchboard query ([4c5001f](https://github.com/powerhouse-inc/document-model-electron/commit/4c5001fb3aa34249bee0550331a314872b05c614)) +- removed unused css import ([6da080c](https://github.com/powerhouse-inc/document-model-electron/commit/6da080c53ea57352b997de941fc303f11a5d2a42)) +- switchboard endpoint ([2e570f3](https://github.com/powerhouse-inc/document-model-electron/commit/2e570f39bc355e4f387c0d371e8af81a0b92bb38)) ### Features -* add pull trigger on cloud drives ([9f86849](https://github.com/powerhouse-inc/document-model-electron/commit/9f868495ced48b9b23a3d128469ce7ac20d32a57)) -* add react aria dep ([499dda0](https://github.com/powerhouse-inc/document-model-electron/commit/499dda05d52469c85f0dc31d1da5639dc926c9c4)) -* added feature flag setup + disable editors for demo ([7fa64f2](https://github.com/powerhouse-inc/document-model-electron/commit/7fa64f2634cea508ebfb8b20732a730dc8b0624b)) -* added support for document in addfile action ([0706ce2](https://github.com/powerhouse-inc/document-model-electron/commit/0706ce25a515024a37b61aec11c930601a0869e5)) -* added support for rename files + create file name modal ([8a76691](https://github.com/powerhouse-inc/document-model-electron/commit/8a76691426d671128c4cfbc98864a9a669e395f3)) -* added switchboard link to document files ([5f31b71](https://github.com/powerhouse-inc/document-model-electron/commit/5f31b710a6ae65f42aac65840da422134e48ee6c)) -* bump ([11fb69f](https://github.com/powerhouse-inc/document-model-electron/commit/11fb69f6f507d4240e72b1208982c814bce185a8)) -* bump design-system and document-model-lib deps ([7d90802](https://github.com/powerhouse-inc/document-model-electron/commit/7d9080289ce258cf9d299d13b4cf7e092fd51535)) -* enabled add cloud drive modal ([d54f579](https://github.com/powerhouse-inc/document-model-electron/commit/d54f579bd903e57cf193cdc11a727eed5526971d)) -* enabled editor controls ([f7aa503](https://github.com/powerhouse-inc/document-model-electron/commit/f7aa50343c0a124056811f1ce29ab0c8539263da)) -* enabled keyboard shortcut for undo/redo ([82fe517](https://github.com/powerhouse-inc/document-model-electron/commit/82fe517dbbf01006c6fbaae0b1c493c57eeeb422)) -* enabled rwa editor ([b7df486](https://github.com/powerhouse-inc/document-model-electron/commit/b7df486a82c0c044fab5dd434ecceba1a2c24dc1)) -* enabled undo/redo with new document structure ([f6af1e0](https://github.com/powerhouse-inc/document-model-electron/commit/f6af1e002121456e5e9cc4befe6c41ac4ddf8aa9)) -* fix rwa document name ([b3f39d1](https://github.com/powerhouse-inc/document-model-electron/commit/b3f39d16c09cb87295d53a7be249b4e2be3895ab)) -* fixed addDriveOperations ([4c33a1f](https://github.com/powerhouse-inc/document-model-electron/commit/4c33a1f891eeba1b9845768fbc0395cb01dd9e70)) -* handle sync events on node document drive ([3855ce4](https://github.com/powerhouse-inc/document-model-electron/commit/3855ce42a72865ed48e7729d25ec1481e462851d)) -* install vite ([aa66a01](https://github.com/powerhouse-inc/document-model-electron/commit/aa66a01bc96f33984e9d6828fdd93d374916c2c4)) -* move sync status invocation to hook ([dea3fa9](https://github.com/powerhouse-inc/document-model-electron/commit/dea3fa9f5fbcdf9cf355652bf32e2c434a366c13)) -* refresh UI when there are drive changes ([fca3c95](https://github.com/powerhouse-inc/document-model-electron/commit/fca3c9576679e1bdcb8cf017cad3e885cd245fdf)) -* regenerate lock ([0269b0b](https://github.com/powerhouse-inc/document-model-electron/commit/0269b0b47945bc6d53928ec975f3b0c4557706a9)) -* remove scrollbar styles ([a9a3080](https://github.com/powerhouse-inc/document-model-electron/commit/a9a30803d3bf1cf91a82cc9bac6133c9bb335691)) -* removed usehooks-ts dep ([05ca45e](https://github.com/powerhouse-inc/document-model-electron/commit/05ca45ef3227c50a7d44bfd7c8d8730a89d3c369)) -* replaced feature flags context by atomWithStorage ([071b7aa](https://github.com/powerhouse-inc/document-model-electron/commit/071b7aacb44792851b45946f41abecaaa99f5633)) -* update dependencies and increase pull interval to 3 seconds ([66d8aea](https://github.com/powerhouse-inc/document-model-electron/commit/66d8aea256ccc6f742347db03bf06901b777bc74)) -* update document-model lib to v1.0.29 ([9190869](https://github.com/powerhouse-inc/document-model-electron/commit/9190869ddea006ce0cad8c3fa264d83535e16950)) -* update editor when opened document is changed ([88e1cad](https://github.com/powerhouse-inc/document-model-electron/commit/88e1cad21d61cc9675f53a4a67e51e8712b22696)) -* update to use new sync icons ([e1cbf1d](https://github.com/powerhouse-inc/document-model-electron/commit/e1cbf1d22de3159c247b3356577f2fdc519a51c5)) -* updated document drive ([b0df564](https://github.com/powerhouse-inc/document-model-electron/commit/b0df564c0952c60b3202c392e9fb1a23e401bea8)) -* updated rwa query ([3709cfc](https://github.com/powerhouse-inc/document-model-electron/commit/3709cfc9543851fe77f8a930d1e0806d552069d6)) -* use yarn ([812fe5a](https://github.com/powerhouse-inc/document-model-electron/commit/812fe5af48fdea5cb5955f6b8336604722476b44)) +- add pull trigger on cloud drives ([9f86849](https://github.com/powerhouse-inc/document-model-electron/commit/9f868495ced48b9b23a3d128469ce7ac20d32a57)) +- add react aria dep ([499dda0](https://github.com/powerhouse-inc/document-model-electron/commit/499dda05d52469c85f0dc31d1da5639dc926c9c4)) +- added feature flag setup + disable editors for demo ([7fa64f2](https://github.com/powerhouse-inc/document-model-electron/commit/7fa64f2634cea508ebfb8b20732a730dc8b0624b)) +- added support for document in addfile action ([0706ce2](https://github.com/powerhouse-inc/document-model-electron/commit/0706ce25a515024a37b61aec11c930601a0869e5)) +- added support for rename files + create file name modal ([8a76691](https://github.com/powerhouse-inc/document-model-electron/commit/8a76691426d671128c4cfbc98864a9a669e395f3)) +- added switchboard link to document files ([5f31b71](https://github.com/powerhouse-inc/document-model-electron/commit/5f31b710a6ae65f42aac65840da422134e48ee6c)) +- bump ([11fb69f](https://github.com/powerhouse-inc/document-model-electron/commit/11fb69f6f507d4240e72b1208982c814bce185a8)) +- bump design-system and document-model-lib deps ([7d90802](https://github.com/powerhouse-inc/document-model-electron/commit/7d9080289ce258cf9d299d13b4cf7e092fd51535)) +- enabled add cloud drive modal ([d54f579](https://github.com/powerhouse-inc/document-model-electron/commit/d54f579bd903e57cf193cdc11a727eed5526971d)) +- enabled editor controls ([f7aa503](https://github.com/powerhouse-inc/document-model-electron/commit/f7aa50343c0a124056811f1ce29ab0c8539263da)) +- enabled keyboard shortcut for undo/redo ([82fe517](https://github.com/powerhouse-inc/document-model-electron/commit/82fe517dbbf01006c6fbaae0b1c493c57eeeb422)) +- enabled rwa editor ([b7df486](https://github.com/powerhouse-inc/document-model-electron/commit/b7df486a82c0c044fab5dd434ecceba1a2c24dc1)) +- enabled undo/redo with new document structure ([f6af1e0](https://github.com/powerhouse-inc/document-model-electron/commit/f6af1e002121456e5e9cc4befe6c41ac4ddf8aa9)) +- fix rwa document name ([b3f39d1](https://github.com/powerhouse-inc/document-model-electron/commit/b3f39d16c09cb87295d53a7be249b4e2be3895ab)) +- fixed addDriveOperations ([4c33a1f](https://github.com/powerhouse-inc/document-model-electron/commit/4c33a1f891eeba1b9845768fbc0395cb01dd9e70)) +- handle sync events on node document drive ([3855ce4](https://github.com/powerhouse-inc/document-model-electron/commit/3855ce42a72865ed48e7729d25ec1481e462851d)) +- install vite ([aa66a01](https://github.com/powerhouse-inc/document-model-electron/commit/aa66a01bc96f33984e9d6828fdd93d374916c2c4)) +- move sync status invocation to hook ([dea3fa9](https://github.com/powerhouse-inc/document-model-electron/commit/dea3fa9f5fbcdf9cf355652bf32e2c434a366c13)) +- refresh UI when there are drive changes ([fca3c95](https://github.com/powerhouse-inc/document-model-electron/commit/fca3c9576679e1bdcb8cf017cad3e885cd245fdf)) +- regenerate lock ([0269b0b](https://github.com/powerhouse-inc/document-model-electron/commit/0269b0b47945bc6d53928ec975f3b0c4557706a9)) +- remove scrollbar styles ([a9a3080](https://github.com/powerhouse-inc/document-model-electron/commit/a9a30803d3bf1cf91a82cc9bac6133c9bb335691)) +- removed usehooks-ts dep ([05ca45e](https://github.com/powerhouse-inc/document-model-electron/commit/05ca45ef3227c50a7d44bfd7c8d8730a89d3c369)) +- replaced feature flags context by atomWithStorage ([071b7aa](https://github.com/powerhouse-inc/document-model-electron/commit/071b7aacb44792851b45946f41abecaaa99f5633)) +- update dependencies and increase pull interval to 3 seconds ([66d8aea](https://github.com/powerhouse-inc/document-model-electron/commit/66d8aea256ccc6f742347db03bf06901b777bc74)) +- update document-model lib to v1.0.29 ([9190869](https://github.com/powerhouse-inc/document-model-electron/commit/9190869ddea006ce0cad8c3fa264d83535e16950)) +- update editor when opened document is changed ([88e1cad](https://github.com/powerhouse-inc/document-model-electron/commit/88e1cad21d61cc9675f53a4a67e51e8712b22696)) +- update to use new sync icons ([e1cbf1d](https://github.com/powerhouse-inc/document-model-electron/commit/e1cbf1d22de3159c247b3356577f2fdc519a51c5)) +- updated document drive ([b0df564](https://github.com/powerhouse-inc/document-model-electron/commit/b0df564c0952c60b3202c392e9fb1a23e401bea8)) +- updated rwa query ([3709cfc](https://github.com/powerhouse-inc/document-model-electron/commit/3709cfc9543851fe77f8a930d1e0806d552069d6)) +- use yarn ([812fe5a](https://github.com/powerhouse-inc/document-model-electron/commit/812fe5af48fdea5cb5955f6b8336604722476b44)) # [1.0.0-alpha.3](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-alpha.2...v1.0.0-alpha.3) (2024-01-26) - ### Bug Fixes -* added callback support for document dispatch ([a4f4c04](https://github.com/powerhouse-inc/document-model-electron/commit/a4f4c04ead0d2aca54983da2e79e9ff6e673da15)) -* apply auto lint fix ([dfa1ec0](https://github.com/powerhouse-inc/document-model-electron/commit/dfa1ec02caddba3e9b06e1a18855f47abf959eda)) -* lint errors ([ac490b4](https://github.com/powerhouse-inc/document-model-electron/commit/ac490b4cdf693d62d57a865b55952ca7b46bfe94)) -* only call useMemo in hook ([76a1505](https://github.com/powerhouse-inc/document-model-electron/commit/76a15059e825ec0e1d6215e450ec0339d7c33bbe)) -* suppress less important rules ([679af22](https://github.com/powerhouse-inc/document-model-electron/commit/679af2256b8e6a4739006048056d452ba7fbf988)) -* use selectedDocument as source of truth for document editor ([b5204e7](https://github.com/powerhouse-inc/document-model-electron/commit/b5204e7153028459ef3ace07e719736d971d577a)) - +- added callback support for document dispatch ([a4f4c04](https://github.com/powerhouse-inc/document-model-electron/commit/a4f4c04ead0d2aca54983da2e79e9ff6e673da15)) +- apply auto lint fix ([dfa1ec0](https://github.com/powerhouse-inc/document-model-electron/commit/dfa1ec02caddba3e9b06e1a18855f47abf959eda)) +- lint errors ([ac490b4](https://github.com/powerhouse-inc/document-model-electron/commit/ac490b4cdf693d62d57a865b55952ca7b46bfe94)) +- only call useMemo in hook ([76a1505](https://github.com/powerhouse-inc/document-model-electron/commit/76a15059e825ec0e1d6215e450ec0339d7c33bbe)) +- suppress less important rules ([679af22](https://github.com/powerhouse-inc/document-model-electron/commit/679af2256b8e6a4739006048056d452ba7fbf988)) +- use selectedDocument as source of truth for document editor ([b5204e7](https://github.com/powerhouse-inc/document-model-electron/commit/b5204e7153028459ef3ace07e719736d971d577a)) ### Features -* bump lint deps ([544fcea](https://github.com/powerhouse-inc/document-model-electron/commit/544fcea7cdcf450756b8deb913c47047a9161849)) -* install ts-reset ([228b082](https://github.com/powerhouse-inc/document-model-electron/commit/228b082e36b1e689b47d7ed923dfe3347e74ad7d)) -* rename document drive node when document model name is changed ([b9008f7](https://github.com/powerhouse-inc/document-model-electron/commit/b9008f7e08e340329e16c0743133a09d044cb1dd)) -* update lint config ([170b252](https://github.com/powerhouse-inc/document-model-electron/commit/170b252cd35fe786147f4e5306948eecf6a3990c)) +- bump lint deps ([544fcea](https://github.com/powerhouse-inc/document-model-electron/commit/544fcea7cdcf450756b8deb913c47047a9161849)) +- install ts-reset ([228b082](https://github.com/powerhouse-inc/document-model-electron/commit/228b082e36b1e689b47d7ed923dfe3347e74ad7d)) +- rename document drive node when document model name is changed ([b9008f7](https://github.com/powerhouse-inc/document-model-electron/commit/b9008f7e08e340329e16c0743133a09d044cb1dd)) +- update lint config ([170b252](https://github.com/powerhouse-inc/document-model-electron/commit/170b252cd35fe786147f4e5306948eecf6a3990c)) # [1.0.0-alpha.2](https://github.com/powerhouse-inc/document-model-electron/compare/v1.0.0-alpha.1...v1.0.0-alpha.2) (2023-12-20) - ### Bug Fixes -* allow concurrent drive operations ([17658ee](https://github.com/powerhouse-inc/document-model-electron/commit/17658ee1a67dc787896508d25ea329ca9b657a13)) -* folder selection in folder view ([f7e3681](https://github.com/powerhouse-inc/document-model-electron/commit/f7e36810b5d0223afc64736a9e8ec48e11f7fc57)) -* header text color ([4ee9745](https://github.com/powerhouse-inc/document-model-electron/commit/4ee9745dbbeddf0e2ea41f6d8c4c800d9f5bfd99)) -* remove duplicate package ([364afdd](https://github.com/powerhouse-inc/document-model-electron/commit/364afdde2e2c9c3d6c12d0364e6d0cfd612f5429)) -* remove yalc from package json ([9e184d8](https://github.com/powerhouse-inc/document-model-electron/commit/9e184d8df68d74803e9cbf95f7cf480f97a6d03e)) -* revert setSelectedDocument in addOperation document ([df06317](https://github.com/powerhouse-inc/document-model-electron/commit/df06317cc067b3f25deedb9832c1aa54d308158a)) - +- allow concurrent drive operations ([17658ee](https://github.com/powerhouse-inc/document-model-electron/commit/17658ee1a67dc787896508d25ea329ca9b657a13)) +- folder selection in folder view ([f7e3681](https://github.com/powerhouse-inc/document-model-electron/commit/f7e36810b5d0223afc64736a9e8ec48e11f7fc57)) +- header text color ([4ee9745](https://github.com/powerhouse-inc/document-model-electron/commit/4ee9745dbbeddf0e2ea41f6d8c4c800d9f5bfd99)) +- remove duplicate package ([364afdd](https://github.com/powerhouse-inc/document-model-electron/commit/364afdde2e2c9c3d6c12d0364e6d0cfd612f5429)) +- remove yalc from package json ([9e184d8](https://github.com/powerhouse-inc/document-model-electron/commit/9e184d8df68d74803e9cbf95f7cf480f97a6d03e)) +- revert setSelectedDocument in addOperation document ([df06317](https://github.com/powerhouse-inc/document-model-electron/commit/df06317cc067b3f25deedb9832c1aa54d308158a)) ### Features -* 🚀 added readable item path for File Items ([9f6a4ac](https://github.com/powerhouse-inc/document-model-electron/commit/9f6a4ac45318bb757e7c7c60df463e67b066771b)) -* 🚀 Implemented base folder-view design ([22ad4fc](https://github.com/powerhouse-inc/document-model-electron/commit/22ad4fc5046e27016ce1a47eda3282125af4db71)) -* add design system preset ([a6cb51c](https://github.com/powerhouse-inc/document-model-electron/commit/a6cb51c31d4500d31fd091f165a4f01ae37ff4d7)) -* add tailwind eslint plugin ([6e639bc](https://github.com/powerhouse-inc/document-model-electron/commit/6e639bc71bddeafe855c210c0f573cec7b2ce622)) -* added prepare script ([abeaa41](https://github.com/powerhouse-inc/document-model-electron/commit/abeaa41bb7bfc7a8d3a7332a9dd0ba0dad088659)) -* added support for delete option in FolderItem and FileItem ([85800ab](https://github.com/powerhouse-inc/document-model-electron/commit/85800ab374da9be041d6e8c547d186a0671a6b91)) -* apply auto fixes ([b10b111](https://github.com/powerhouse-inc/document-model-electron/commit/b10b111374636b145c52fa15f38ebc0751912483)) -* auto-select first drive if there's no selected path ([daf3083](https://github.com/powerhouse-inc/document-model-electron/commit/daf3083b4fff8dd6f033ce9806affe932fea4f04)) -* enabled rename option for folders in folder view ([d7a9b34](https://github.com/powerhouse-inc/document-model-electron/commit/d7a9b3490b0cb91d647ecb803513dbea590f04e0)) -* import styles from design system ([f7ac8ad](https://github.com/powerhouse-inc/document-model-electron/commit/f7ac8adc2608e8d491618e01b1c98be9f8c43fe2)) -* remove old tailwind classes ([10a8b95](https://github.com/powerhouse-inc/document-model-electron/commit/10a8b95edbcf212c17cb9011b13b32d2b924a767)) -* remove redundant config ([0c4d334](https://github.com/powerhouse-inc/document-model-electron/commit/0c4d334f3f75ccef7597470e1ce2a490b449eca8)) -* support add drive ([f827d33](https://github.com/powerhouse-inc/document-model-electron/commit/f827d338d4b6b49bde54f58ec6eb133756f3c765)) -* switch to using vars from design system ([587c258](https://github.com/powerhouse-inc/document-model-electron/commit/587c258c1f47b8f5f1004252aec491d91b14eb5a)) -* updated design system dep ([b378a42](https://github.com/powerhouse-inc/document-model-electron/commit/b378a420bad20debc06aeeb376401ecb311889ce)) -* use tailwind styles ([53dc69f](https://github.com/powerhouse-inc/document-model-electron/commit/53dc69f69663b4d315c03b57a64b87b274e698cd)) +- 🚀 added readable item path for File Items ([9f6a4ac](https://github.com/powerhouse-inc/document-model-electron/commit/9f6a4ac45318bb757e7c7c60df463e67b066771b)) +- 🚀 Implemented base folder-view design ([22ad4fc](https://github.com/powerhouse-inc/document-model-electron/commit/22ad4fc5046e27016ce1a47eda3282125af4db71)) +- add design system preset ([a6cb51c](https://github.com/powerhouse-inc/document-model-electron/commit/a6cb51c31d4500d31fd091f165a4f01ae37ff4d7)) +- add tailwind eslint plugin ([6e639bc](https://github.com/powerhouse-inc/document-model-electron/commit/6e639bc71bddeafe855c210c0f573cec7b2ce622)) +- added prepare script ([abeaa41](https://github.com/powerhouse-inc/document-model-electron/commit/abeaa41bb7bfc7a8d3a7332a9dd0ba0dad088659)) +- added support for delete option in FolderItem and FileItem ([85800ab](https://github.com/powerhouse-inc/document-model-electron/commit/85800ab374da9be041d6e8c547d186a0671a6b91)) +- apply auto fixes ([b10b111](https://github.com/powerhouse-inc/document-model-electron/commit/b10b111374636b145c52fa15f38ebc0751912483)) +- auto-select first drive if there's no selected path ([daf3083](https://github.com/powerhouse-inc/document-model-electron/commit/daf3083b4fff8dd6f033ce9806affe932fea4f04)) +- enabled rename option for folders in folder view ([d7a9b34](https://github.com/powerhouse-inc/document-model-electron/commit/d7a9b3490b0cb91d647ecb803513dbea590f04e0)) +- import styles from design system ([f7ac8ad](https://github.com/powerhouse-inc/document-model-electron/commit/f7ac8adc2608e8d491618e01b1c98be9f8c43fe2)) +- remove old tailwind classes ([10a8b95](https://github.com/powerhouse-inc/document-model-electron/commit/10a8b95edbcf212c17cb9011b13b32d2b924a767)) +- remove redundant config ([0c4d334](https://github.com/powerhouse-inc/document-model-electron/commit/0c4d334f3f75ccef7597470e1ce2a490b449eca8)) +- support add drive ([f827d33](https://github.com/powerhouse-inc/document-model-electron/commit/f827d338d4b6b49bde54f58ec6eb133756f3c765)) +- switch to using vars from design system ([587c258](https://github.com/powerhouse-inc/document-model-electron/commit/587c258c1f47b8f5f1004252aec491d91b14eb5a)) +- updated design system dep ([b378a42](https://github.com/powerhouse-inc/document-model-electron/commit/b378a420bad20debc06aeeb376401ecb311889ce)) +- use tailwind styles ([53dc69f](https://github.com/powerhouse-inc/document-model-electron/commit/53dc69f69663b4d315c03b57a64b87b274e698cd)) # 1.0.0-alpha.1 (2023-12-07) - ### Bug Fixes -* change config file names in scripts ([37fa872](https://github.com/powerhouse-inc/document-model-electron/commit/37fa872932c8f455e4844e6bd838a65720ad5380)) -* rename node id ([45235e5](https://github.com/powerhouse-inc/document-model-electron/commit/45235e516ce5ea52345c7ff9d1f7238ff4e9e095)) - +- change config file names in scripts ([37fa872](https://github.com/powerhouse-inc/document-model-electron/commit/37fa872932c8f455e4844e6bd838a65720ad5380)) +- rename node id ([45235e5](https://github.com/powerhouse-inc/document-model-electron/commit/45235e516ce5ea52345c7ff9d1f7238ff4e9e095)) ### Features -* 🚀 Added ItemsContext integration ([41fc40f](https://github.com/powerhouse-inc/document-model-electron/commit/41fc40f93420101ca9b2ec34e1b4f4cab4a43a4b)) -* add generate assets hook for icons copying ([4c25ebe](https://github.com/powerhouse-inc/document-model-electron/commit/4c25ebecc94941502e35dff28555664b3985f67b)) -* added open file and delete file ([01793c8](https://github.com/powerhouse-inc/document-model-electron/commit/01793c8a5f21b8e1701e649cc926c8baa7ece4fe)) -* added sort nodes + fix input styles + cancel new folders with empty name ([4a2f9fb](https://github.com/powerhouse-inc/document-model-electron/commit/4a2f9fbf2c4dc5427c58633f18e40eb10574600c)) -* cancel rename operation when new name is empty ([6c7a815](https://github.com/powerhouse-inc/document-model-electron/commit/6c7a815500339ebbced23214450750bacbfdebc9)) -* enabled rename option when copy/move an item ([3ef5ea4](https://github.com/powerhouse-inc/document-model-electron/commit/3ef5ea474997e10b670a989460dca939431f3a9a)) -* implemented rename and new folder actions ([45dbf5e](https://github.com/powerhouse-inc/document-model-electron/commit/45dbf5e527841f1107f9d444ac2b76f0dc6fa7c0)) -* port config files to ts ([f78e7f5](https://github.com/powerhouse-inc/document-model-electron/commit/f78e7f5444a47d637cc6681dd25917524b03b659)) -* re-implemented copy/move nodes with new DocumentDrive ([c4fad11](https://github.com/powerhouse-inc/document-model-electron/commit/c4fad117827b929d69dd73824d46ef33f767c57f)) +- 🚀 Added ItemsContext integration ([41fc40f](https://github.com/powerhouse-inc/document-model-electron/commit/41fc40f93420101ca9b2ec34e1b4f4cab4a43a4b)) +- add generate assets hook for icons copying ([4c25ebe](https://github.com/powerhouse-inc/document-model-electron/commit/4c25ebecc94941502e35dff28555664b3985f67b)) +- added open file and delete file ([01793c8](https://github.com/powerhouse-inc/document-model-electron/commit/01793c8a5f21b8e1701e649cc926c8baa7ece4fe)) +- added sort nodes + fix input styles + cancel new folders with empty name ([4a2f9fb](https://github.com/powerhouse-inc/document-model-electron/commit/4a2f9fbf2c4dc5427c58633f18e40eb10574600c)) +- cancel rename operation when new name is empty ([6c7a815](https://github.com/powerhouse-inc/document-model-electron/commit/6c7a815500339ebbced23214450750bacbfdebc9)) +- enabled rename option when copy/move an item ([3ef5ea4](https://github.com/powerhouse-inc/document-model-electron/commit/3ef5ea474997e10b670a989460dca939431f3a9a)) +- implemented rename and new folder actions ([45dbf5e](https://github.com/powerhouse-inc/document-model-electron/commit/45dbf5e527841f1107f9d444ac2b76f0dc6fa7c0)) +- port config files to ts ([f78e7f5](https://github.com/powerhouse-inc/document-model-electron/commit/f78e7f5444a47d637cc6681dd25917524b03b659)) +- re-implemented copy/move nodes with new DocumentDrive ([c4fad11](https://github.com/powerhouse-inc/document-model-electron/commit/c4fad117827b929d69dd73824d46ef33f767c57f)) diff --git a/Dockerfile b/Dockerfile index ae2bf3d1..849911a7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM node:lts-alpine AS builder -ARG BASE_PATH="" +ARG BASE_PATH="/" ENV BASE_PATH=${BASE_PATH} ARG SENTRY_ORG="" @@ -11,75 +11,11 @@ ENV SENTRY_PROJECT=${SENTRY_PROJECT} ARG SENTRY_AUTH_TOKEN="" ENV SENTRY_AUTH_TOKEN=${SENTRY_AUTH_TOKEN} -ARG VITE_BASE_HREF="" -ENV VITE_BASE_HREF=${VITE_BASE_HREF} - -ARG VITE_ROUTER_BASENAME="" -ENV VITE_ROUTER_BASENAME=${VITE_ROUTER_BASENAME} - -ARG VITE_RENOWN_NETWORK_ID="eip155" -ENV VITE_RENOWN_NETWORK_ID=${VITE_RENOWN_NETWORK_ID} - -ARG VITE_RENOWN_CHAIN_ID=1 -ENV VITE_RENOWN_CHAIN_ID=${VITE_RENOWN_CHAIN_ID} - -ARG VITE_RENOWN_URL="https://renown.id" -ENV VITE_RENOWN_URL=${VITE_RENOWN_URL} - -ARG VITE_SENTRY_DSN="" -ENV VITE_SENTRY_DSN=${VITE_SENTRY_DSN} - -ARG VITE_SENTRY_ENV="dev" -ENV VITE_SENTRY_ENV=${VITE_SENTRY_ENV} - -ARG VITE_DEFAULT_DRIVES_URL="" -ENV VITE_DEFAULT_DRIVES_URL=${VITE_DEFAULT_DRIVES_URL} - -ARG VITE_ENABLED_EDITORS="*" -ENV VITE_ENABLED_EDITORS=${VITE_ENABLED_EDITORS} - -ARG VITE_DISABLE_ADD_PUBLIC_DRIVES=false -ENV VITE_DISABLE_ADD_PUBLIC_DRIVES=${VITE_DISABLE_ADD_PUBLIC_DRIVES} - -ARG VITE_RENOWN_URL="https://www.renown.id" -ENV VITE_RENOWN_URL=${VITE_RENOWN_URL} - -ARG VITE_SEARCH_BAR_ENABLED=false -ENV VITE_SEARCH_BAR_ENABLED=${VITE_SEARCH_BAR_ENABLED} - -ARG VITE_DISABLE_ADD_CLOUD_DRIVES=false -ENV VITE_DISABLE_ADD_CLOUD_DRIVES=${VITE_DISABLE_ADD_CLOUD_DRIVES} - -ARG VITE_DISABLE_ADD_LOCAL_DRIVES=false -ENV VITE_DISABLE_ADD_LOCAL_DRIVES=${VITE_DISABLE_ADD_LOCAL_DRIVES} - -ARG VITE_DISABLE_DELETE_PUBLIC_DRIVES=false -ENV VITE_DISABLE_DELETE_PUBLIC_DRIVES=${VITE_DISABLE_DELETE_PUBLIC_DRIVES} - -ARG VITE_DISABLE_DELETE_CLOUD_DRIVES=false -ENV VITE_DISABLE_DELETE_CLOUD_DRIVES=${VITE_DISABLE_DELETE_CLOUD_DRIVES} - -ARG VITE_DISABLE_DELETE_LOCAL_DRIVES=false -ENV VITE_DISABLE_DELETE_LOCAL_DRIVES=${VITE_DISABLE_DELETE_LOCAL_DRIVES} - -ARG VITE_LOCAL_DRIVES_ENABLED=true -ENV VITE_LOCAL_DRIVES_ENABLED=${VITE_LOCAL_DRIVES_ENABLED} - -ARG VITE_ARBITRUM_ALLOW_LIST="" -ENV VITE_ARBITRUM_ALLOW_LIST=${VITE_ARBITRUM_ALLOW_LIST} - -ARG VITE_RWA_ALLOW_LIST="" -ENV VITE_RWA_ALLOW_LIST=${VITE_RWA_ALLOW_LIST} - -ARG VITE_HIDE_DOCUMENT_MODEL_SELECTION_SETTINGS=true -ENV VITE_HIDE_DOCUMENT_MODEL_SELECTION_SETTINGS=${VITE_HIDE_DOCUMENT_MODEL_SELECTION_SETTINGS} - - - WORKDIR /opt/app COPY . . RUN npm install -g husky vite RUN npm install --frozen-lockfile --force + RUN npm run build:web -- --base ${BASE_PATH} # Production image, copy all the files and run next @@ -90,9 +26,14 @@ WORKDIR /opt/app ENV NODE_ENV=production ARG PORT=80 ENV PORT=${PORT} -ARG BASE_PATH="" +ARG BASE_PATH="/" ENV BASE_PATH=${BASE_PATH} +ARG PH_CONNECT_SENTRY_DSN="" +ENV PH_CONNECT_SENTRY_DSN=${PH_CONNECT_SENTRY_DSN} +ARG PH_CONNECT_SENTRY_ENV="" +ENV PH_CONNECT_SENTRY_ENV=${PH_CONNECT_SENTRY_ENV} COPY --from=builder /opt/app/dist /usr/share/nginx/html - COPY nginx.conf /etc/nginx/conf.d/default.conf.template -CMD /bin/sh -c "envsubst '\$PORT,\$BASE_PATH' < /etc/nginx/conf.d/default.conf.template > /etc/nginx/conf.d/default.conf" && nginx -g 'daemon off;' +COPY nginx.sh /usr/share/nginx/nginx.sh +RUN chmod +x /usr/share/nginx/nginx.sh +ENTRYPOINT ["/usr/share/nginx/nginx.sh"] \ No newline at end of file diff --git a/cypress.config.ts b/cypress.config.ts index c6397b29..e3972fbe 100644 --- a/cypress.config.ts +++ b/cypress.config.ts @@ -10,7 +10,7 @@ export default defineConfig({ }, env: { TEST_PUBLIC_DRIVE: - 'https://apps.powerhouse.io/develop/powerhouse/switchboard/d/test', - TEST_PUBLIC_DRIVE_NAME: 'Test', + 'https://apps.powerhouse.io/develop/powerhouse/switchboard/d/cypress-test', + TEST_PUBLIC_DRIVE_NAME: 'CypressTest', }, }); diff --git a/cypress/e2e/navigation.cy.ts b/cypress/e2e/navigation.cy.ts index 94bd7ea1..aa666343 100644 --- a/cypress/e2e/navigation.cy.ts +++ b/cypress/e2e/navigation.cy.ts @@ -44,7 +44,7 @@ describe('Navigation', () => { }); it('should create a default local drive', () => { - cy.get('article').contains('My Local Drive').should('exist'); + cy.get('p').contains('My Local Drive').should('exist'); }); it('should create a folder inside the local drive', () => { @@ -60,6 +60,7 @@ describe('Navigation', () => { .clear() .type('test-document'); cy.get('button').contains('Create').click(); + selectSidebarItem('test-document'); cy.get('textarea[placeholder="Document Model Name"]').type('draft1'); cy.contains('Global State Schema').click(); @@ -71,20 +72,20 @@ describe('Navigation', () => { const publicDriveName = Cypress.env('TEST_PUBLIC_DRIVE_NAME') as string; addPublicDrive(publicDriveUrl); - cy.contains('article', publicDriveName).should('be.visible'); + cy.contains('.mr-1', publicDriveName).should('be.visible'); selectSidebarItem(publicDriveName); }); it('should create and delete a folder inside test drive', () => { const publicDriveName = Cypress.env('TEST_PUBLIC_DRIVE_NAME') as string; selectSidebarItem(publicDriveName); - newFolder(publicDriveName, 'test-folder'); - cy.contains('test-folder').should('exist'); + newFolder(publicDriveName, 'test-folder-delete'); + cy.contains('test-folder-delete').should('exist'); - clickSidebarItemOption('test-folder', 'delete'); + clickSidebarItemOption('test-folder-delete', 'delete'); cy.contains('button', 'Delete').click(); - cy.contains('test-folder').should('not.exist'); + cy.contains('test-folder-delete').should('not.exist'); }); it('should rename a folder inside test drive', () => { @@ -104,26 +105,26 @@ describe('Navigation', () => { it('should duplicate a folder inside test drive', () => { const publicDriveName = Cypress.env('TEST_PUBLIC_DRIVE_NAME') as string; selectSidebarItem(publicDriveName); - newFolder(publicDriveName, 'test-folder'); - clickSidebarItemOption('test-folder', 'duplicate'); + newFolder(publicDriveName, 'test-folder-duplicate'); + clickSidebarItemOption('test-folder-duplicate', 'duplicate'); - cy.contains('test-folder').should('exist'); - cy.contains('test-folder (copy) 1').should('exist'); + cy.contains('test-folder-duplicate').should('exist'); + cy.contains('test-folder-duplicate (copy) 1').should('exist'); - clickSidebarItemOption('test-folder', 'delete'); + clickSidebarItemOption('test-folder-duplicate', 'delete'); cy.contains('button', 'Delete').click(); - clickSidebarItemOption('test-folder (copy) 1', 'delete'); + clickSidebarItemOption('test-folder-duplicate (copy) 1', 'delete'); cy.contains('button', 'Delete').click(); }); - it('should create a document model inside test drive folder', () => { + // TODO: need to rewrite this test + it.skip('should create a document model inside test drive folder', () => { const publicDriveName = Cypress.env('TEST_PUBLIC_DRIVE_NAME') as string; selectSidebarItem(publicDriveName); newFolder(publicDriveName, 'test-folder'); selectSidebarItem('test-folder'); - cy.contains('DocumentModel').click(); cy.get('input[placeholder="Document name"]') .clear() @@ -188,9 +189,9 @@ describe('Navigation', () => { it('should open switchboard from document link', () => { const rwaDocumentCloseSelector = - '#document-editor-context > div > div.flex.items-center.justify-between > div.flex.justify-end.gap-x-2 > button.grid.size-8.place-items-center.rounded.border.border-gray-200.active\\:opacity-50'; + '.justify-between > :nth-child(2) > .grid'; const rwaSwitchboardLinkSelector = - '#document-editor-context > div > div.flex.items-center.justify-between > div.flex.justify-end.gap-x-2 > button:nth-child(1)'; + '[dir="ltr"] > .justify-between > :nth-child(2) > :nth-child(1)'; const publicDriveName = Cypress.env('TEST_PUBLIC_DRIVE_NAME') as string; selectSidebarItem(publicDriveName); @@ -218,9 +219,10 @@ describe('Navigation', () => { cy.contains('button', 'Delete').click(); }); - it('should open switchboard from file item menu', () => { + // TODO: check why switchboard link option is not available for files + it.skip('should open switchboard from file item menu', () => { const rwaDocumentCloseSelector = - '#document-editor-context > div > div.flex.items-center.justify-between > div.flex.justify-end.gap-x-2 > button.grid.size-8.place-items-center.rounded.border.border-gray-200.active\\:opacity-50'; + '.justify-between > :nth-child(2) > .grid'; const publicDriveName = Cypress.env('TEST_PUBLIC_DRIVE_NAME') as string; selectSidebarItem(publicDriveName); diff --git a/cypress/e2e/utils/index.ts b/cypress/e2e/utils/index.ts index fa7104e4..463d4691 100644 --- a/cypress/e2e/utils/index.ts +++ b/cypress/e2e/utils/index.ts @@ -67,41 +67,39 @@ export const clickSidebarItemOption = ( folderName: string, option: SidebarItemOption, ) => { - cy.get('article') + cy.get('.mr-1') .contains(folderName) - .then(el => { - hoverElement(el[0]); - }); - - cy.get('article') - .contains(folderName) - .closest('article') + .closest('div') .children('button') - .click(); + .invoke('removeClass', 'hidden') + .click() + .invoke('addClass', 'hidden'); const optionName = getOptionName(option); cy.contains(optionName).click(); }; export const newFolder = (parent: string, folderName: string) => { - cy.get('article') - .contains(parent) - .then(el => { - hoverElement(el[0]); - }); - - cy.get('article') + cy.get('.mr-1') .contains(parent) - .closest('article') + .closest('div') .children('button') - .click(); + .invoke('removeClass', 'hidden') + .click() + .invoke('addClass', 'hidden'); cy.contains('New Folder').click(); cy.get('input[value="New Folder"]').clear().type(`${folderName}{enter}`); + + cy.get('.mr-1') + .contains(parent) + .closest('div') + .children('button') + .invoke('addClass', 'hidden'); }; export const selectSidebarItem = (item: string) => { - cy.get('article').contains(item).click(); + cy.get('.mr-1').contains(item).click(); }; export const addPublicDrive = (url: string) => { @@ -143,9 +141,7 @@ export const clickContentViewItemOption = ( cy.get('#content-view') .contains(itemName) .parent() - .parent() .next() - .children('svg') .invoke('attr', 'style', 'display: inline-block; width: 24px') .click(); diff --git a/index.html b/index.html index 109d42d6..f581d991 100644 --- a/index.html +++ b/index.html @@ -4,7 +4,7 @@