Skip to content

Commit

Permalink
refactor: Remove deprecated popover plugin
Browse files Browse the repository at this point in the history
Closes #4663
  • Loading branch information
nathanlesage committed Feb 3, 2024
1 parent 032b1f0 commit 42dde4a
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 788 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -103,6 +103,8 @@ be able to run the app again just fine on ARM computers with Linux.
for fully sandboxing the window code; instead polyfill the required functions,
testing them against the module's behavior
- Completely sandbox renderers
- Switched the popover logic away from deprecated plugin syntax to child
components with `Teleport` (#4663)

# 3.0.3

Expand Down
3 changes: 0 additions & 3 deletions source/win-main/index.ts
Expand Up @@ -17,10 +17,8 @@ import { createApp } from 'vue'
import { createPinia } from 'pinia'
import App from './App.vue'
import createStore, { key as storeKey } from './store'
import PopupProvider from './popup-provider'
import { DP_EVENTS, type OpenDocument } from '@dts/common/documents'
import { useOpenDirectoryStore } from './pinia'
import { useStore } from 'vuex'

const ipcRenderer = window.ipc

Expand All @@ -43,7 +41,6 @@ function afterRegister (): void {
const app = createApp(App)
.use(pinia)
.use(appStore, storeKey)
.use(PopupProvider)

app.mount('#app')

Expand Down
122 changes: 0 additions & 122 deletions source/win-main/popup-provider/index.ts

This file was deleted.

0 comments on commit 42dde4a

Please sign in to comment.