Skip to content

Commit

Permalink
upgrading after release
Browse files Browse the repository at this point in the history
  • Loading branch information
evandor committed Dec 1, 2024
1 parent 9735e50 commit 4e044f0
Show file tree
Hide file tree
Showing 3 changed files with 463 additions and 319 deletions.
48 changes: 24 additions & 24 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,22 +50,22 @@
},
"dependencies": {
"@calumk/editorjs-columns": "^0.3.2",
"@codexteam/icons": "^0.3.2",
"@editorjs/editorjs": "^2.30.5",
"@codexteam/icons": "^0.3.3",
"@editorjs/editorjs": "^2.30.7",
"@editorjs/header": "^2.8.7",
"@he-tree/vue": "^2.8.7",
"@he-tree/vue": "^2.9.2",
"@intlify/unplugin-vue-i18n": "^4.0.0",
"@mozilla/readability": "^0.5.0",
"@quasar/extras": "^1.16.12",
"@quasar/extras": "^1.16.14",
"@rowanmanning/feed-parser": "^1.1.0",
"@sentry/browser": "^8.32.0",
"@sentry/cli": "^2.36.3",
"@sentry/browser": "^8.41.0",
"@sentry/cli": "^2.39.1",
"@sentry/vite-plugin": "^2.22.4",
"@types/lodash": "^4.17.7",
"@types/mdast": "^4.0.4",
"@types/pngjs": "^6.0.5",
"@types/sanitize-html": "^2.13.0",
"axios": "^1.7.7",
"axios": "^1.7.8",
"buffer": "^6.0.3",
"chart.js": "^4.4.6",
"chartjs-chart-wordcloud": "^4.4.4",
Expand All @@ -78,13 +78,13 @@
"html-to-text": "^9.0.5",
"idb": "^8.0.0",
"js-sha256": "^0.11.0",
"jsonpath-plus": "^10.0.7",
"jsonpath-plus": "^10.2.0",
"keytar": "^7.9.0",
"lodash": "^4.17.21",
"mathjs": "^13.1.1",
"mathjs": "^14.0.0",
"mdast-util-from-markdown": "^2.0.1",
"mhtml2html": "^3.0.0",
"pinia": "^2.2.2",
"pinia": "^2.2.8",
"pngjs": "^7.0.0",
"quasar": "^2.16.11",
"regenerator-runtime": "^0.14.1",
Expand All @@ -93,49 +93,49 @@
"translate": "^3.0.0",
"ts-md5": "^1.3.1",
"url": "^0.11.4",
"uuid": "^10.0.0",
"uuid": "^11.0.3",
"vite-plugin-package-version": "^1.1.0",
"vue": "^3.5.10",
"vue": "^3.5.13",
"vue-chartjs": "^5.3.2",
"vue-draggable-next": "^2.2.1",
"vue-grid-layout-v3": "^3.0.3",
"vue-grid-layout-v3": "^3.1.1-rc.4",
"vue-highlight-words": "^3.0.1",
"vue-i18n": "^10.0.3",
"vue-i18n": "^10.0.5",
"vue-json-pretty": "^2.4.0",
"vue-router": "^4.4.3",
"vue-router": "^4.5.0",
"vue-timeago3": "^2.3.2"
},
"devDependencies": {
"@babel/preset-env": "^7.25.4",
"@capacitor/cli": "^6.1.2",
"@editorjs/checklist": "^1.6.0",
"@editorjs/image": "^2.10.0",
"@editorjs/image": "^2.10.1",
"@editorjs/link": "^2.6.2",
"@editorjs/quote": "^2.7.2",
"@editorjs/quote": "^2.7.4",
"@editorjs/raw": "^2.5.0",
"@editorjs/table": "^2.4.1",
"@electron/packager": "^18.3.4",
"@electron/packager": "^18.3.6",
"@playwright/test": "^1.49.0",
"@quasar/app-vite": "^1.9.5",
"@quasar/app-vite": "^1.11.0",
"@quasar/babel-preset-app": "^2.0.3",
"@quasar/quasar-app-extension-testing-unit-vitest": "^1.0.0",
"@types/node": "^22.7.4",
"@types/node": "^22.10.1",
"@types/uuid": "^10.0.0",
"@vitest/coverage-c8": "^0.33.0",
"@vitest/coverage-v8": "^1.6.0",
"@vitest/ui": "^1.6.0",
"@vue/devtools": "^7.4.6",
"@vue/devtools": "^7.6.7",
"@vue/test-utils": "^2.4.6",
"@wdio/cli": "^9.2.11",
"@wdio/cli": "^9.4.1",
"autoprefixer": "^10.4.20",
"canvas": "^2.11.2",
"editorjs-alert": "^1.1.4",
"editorjs-text-color-plugin": "^2.0.4",
"electron": "^32.0.2",
"electron-packager": "^17.1.2",
"fake-indexeddb": "^6.0.0",
"mermaid": "^11.4.0",
"typescript": "^5.6.2",
"mermaid": "^11.4.1",
"typescript": "^5.7.2",
"vite": "^2.9.18",
"vitepress": "^1.5.0",
"vitepress-plugin-mermaid": "^2.0.16",
Expand Down
6 changes: 3 additions & 3 deletions src/pages/sidepanel/SidePanelTagsListViewer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ watchEffect(() => {
})
t = new Map([...t.entries()].sort((a, b) => b[1] - a[1]))
tags.value = t
console.log("tags", t)
// console.log("tags", t)
const sliced: [string, number][] = Array.from(t).slice(0, 100)
const limitedMap = new Map<string, number>()
Expand All @@ -129,8 +129,8 @@ watchEffect(() => {
for (let [key, value] of wordCloud.value) {
words.push({key, value})
}
console.log("heier", words.map((d) => d.key))
console.log("heier", words.map((d) => 10 + d.value * 2))
// console.log("heier", words.map((d) => d.key))
// console.log("heier", words.map((d) => 10 + d.value * 2))
// const ctx = document.getElementById("myCanvas")
// console.log("ctx", ctx)
const chart = new Chart(myCanvas.value, {
Expand Down
Loading

0 comments on commit 4e044f0

Please sign in to comment.