Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
111 changes: 45 additions & 66 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
"extends @nextcloud/browserslist-config"
],
"dependencies": {
"@conduction/nextcloud-vue": "^1.0.0-beta.12",
"@conduction/nextcloud-vue": "^1.0.0-beta.35",
"@nextcloud/auth": "^2.5.0",
"@nextcloud/axios": "^2.5.0",
"@nextcloud/axios": "~2.5.2",
"@nextcloud/dialogs": "^3.2.0",
"@nextcloud/initial-state": "^2.2.0",
"@nextcloud/l10n": "^2.0.1",
Expand All @@ -37,7 +37,8 @@
"vue-router": "^3.6.5"
},
"overrides": {
"libxmljs2": "^0.37.0"
"libxmljs2": "^0.37.0",
"@nextcloud/axios": "~2.5.2"
},
"devDependencies": {
"@cyclonedx/cyclonedx-npm": "^4.2.1",
Expand Down
11 changes: 11 additions & 0 deletions src/customComponents.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,13 @@
// See: https://github.com/ConductionNL/nextcloud-vue → docs/migrating-to-manifest.md

import CustomExample from './views/CustomExample.vue'
// Features & Roadmap page — thin wrapper around the lib's
// CnFeaturesAndRoadmapView (in-product roadmap surface powered by
// OpenRegister's github-issue-proxy). Shipped wired-up so apps scaffolded
// from this template inherit the Settings-section "Features & roadmap"
// entry; change the repo fallback in views/FeaturesRoadmap.vue. See
// ConductionNL/hydra#251.
import FeaturesRoadmapView from './views/FeaturesRoadmap.vue'

export default {
// Example custom component. Keep or delete when scaffolding a new
Expand All @@ -31,4 +38,8 @@ export default {
// cloners. Wire it up by adding a `type: "custom"` page entry to
// `src/manifest.json` with `"component": "CustomExample"`.
CustomExample,
// Features & Roadmap page (lib's CnFeaturesAndRoadmapView) — wired up
// in src/manifest.json (the `FeaturesRoadmap` custom page + the
// `FeaturesRoadmapMenu` settings entry).
FeaturesRoadmap: FeaturesRoadmapView,
}
Loading
Loading