Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
544abdf
docs: Add development guide with branching strategy and quality checks
rubenvdlinde Feb 26, 2026
3ee5144
chore: Update app icons, gitignore, and metadata
rubenvdlinde Feb 27, 2026
f4ff465
feat: Add user settings dialog and consolidate settings backend
rubenvdlinde Feb 27, 2026
7ae5522
feat: Add task create dialog and improve list/detail views
rubenvdlinde Feb 27, 2026
c646fd2
refactor: Migrate admin settings to CnSettingsSection from shared lib…
rubenvdlinde Feb 27, 2026
96fcd47
docs: Add development guide, feature docs, and test results
rubenvdlinde Feb 27, 2026
d7c1f0a
build: Add @conduction/nextcloud-vue git dependency with conditional …
rubenvdlinde Feb 27, 2026
b0ddd1c
build: Switch @conduction/nextcloud-vue from git to npm beta package
rubenvdlinde Feb 27, 2026
966b4d7
fix: Revert licence to agpl for Nextcloud App Store compatibility
rubenvdlinde Mar 1, 2026
9dc1e68
chore: Add complete PHP quality tooling to match OpenRegister standard
rubenvdlinde Mar 3, 2026
764c8be
docs: Add rich README with screenshots, architecture, and full featur…
rubenvdlinde Mar 3, 2026
1eb683d
feat: Migrate to Vue Router and refactor views to use @conduction/nex…
rubenvdlinde Mar 3, 2026
e032eee
Merge pull request #1 from ConductionNL/feature/documentation
rubenvdlinde Mar 3, 2026
0513ed0
fix: Use app-store.svg logo (app.svg has white fill, invisible on Git…
rubenvdlinde Mar 3, 2026
9165fee
fix: Use app-store.svg logo (app.svg has white fill, invisible on Git…
rubenvdlinde Mar 3, 2026
01032f5
fix: Resolve all ESLint errors blocking CI quality check
rubenvdlinde Mar 3, 2026
0485f3e
fix: Apply ESLint auto-fix across all Vue components
rubenvdlinde Mar 3, 2026
39948c5
Merge pull request #2 from ConductionNL/feature/documentation
rubenvdlinde Mar 3, 2026
0c7e8dc
fix: Remove ESLint import workarounds, upgrade to @conduction/nextclo…
rubenvdlinde Mar 3, 2026
7d3d850
Merge pull request #3 from ConductionNL/feature/documentation
rubenvdlinde Mar 3, 2026
f926f27
refactor: Migrate CaseList and TaskList to enhanced useListView compo…
rubenvdlinde Mar 3, 2026
67d5796
docs: Update Docusaurus navbar logo to blue hexagon app-store.svg
rubenvdlinde Mar 3, 2026
d0767fc
feat: Add PHPUnit unit tests and CI integration
rubenvdlinde Mar 3, 2026
d03636c
feat: Add Psalm static analysis to PHP Quality CI
rubenvdlinde Mar 3, 2026
8929879
fix: Suppress OCA\OpenRegister runtime UndefinedClass and MissingTemp…
rubenvdlinde Mar 3, 2026
dabc516
Did some tests using OpenSpec through Cursor
WilcoLouwerse Mar 3, 2026
350d9aa
Merge remote-tracking branch 'origin/development' into main
rubenvdlinde Mar 5, 2026
3613c2e
Merge remote-tracking branch 'origin/main' into feature/wilco-testing
WilcoLouwerse Mar 5, 2026
824a312
fix(l10n): load app translations so Dutch displays in Procest
WilcoLouwerse Mar 5, 2026
e44e779
fix(phpstan): add OCP bootstrap and ignoreErrors for Nextcloud framework
WilcoLouwerse Mar 5, 2026
7477edd
chore: move .claude, .cursor, .github, .mcp.json to apps-extra
WilcoLouwerse Mar 6, 2026
f6e2ca9
chore: stop tracking openspec/schemas, add to gitignore
WilcoLouwerse Mar 6, 2026
d31bd3a
chore: remove /schemas from gitignore
WilcoLouwerse Mar 6, 2026
553ddd9
docs: add OpenSpec shared schema setup and post-clone instructions
WilcoLouwerse Mar 6, 2026
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
54 changes: 0 additions & 54 deletions .github/workflows/branch-policy.yml

This file was deleted.

70 changes: 0 additions & 70 deletions .github/workflows/code-quality.yml

This file was deleted.

67 changes: 0 additions & 67 deletions .github/workflows/documentation.yml

This file was deleted.

8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,11 @@
/docusaurus/node_modules/
/docusaurus/build/
/docusaurus/.docusaurus/

# Moved to apps-extra (parent folder)
/.claude/
/.cursor/
/.github/
/.mcp.json
/.mcs.json
/openspec/schemas/
10 changes: 10 additions & 0 deletions DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@
- npm
- A running Nextcloud instance with [OpenRegister](https://github.com/ConductionNL/openregister) installed

## OpenSpec (change management)

This project uses OpenSpec for proposal → specs → design → tasks workflows. The schema is shared from `apps-extra/openspec/schemas`. **After cloning**, run the one-time setup:

```powershell
.\openspec\setup-schemas.ps1
```

See [openspec/README.md](openspec/README.md) for details.

## Local Development

This app is developed using the [nextcloud-docker-dev](https://github.com/juliushaertl/nextcloud-docker-dev) environment. The app is volume-mounted into the Nextcloud container.
Expand Down
Loading