Skip to content

Commit 88445d4

Browse files
Rikdekkerclaude
andcommitted
Release v0.2.6 - File uploads and form embedding
- Add file upload question type with configurable allowed types and size limits - Add form embedding for external websites (SharePoint, intranets) - Add embed code generator with responsive options - Add admin setting to restrict embedding domains - Add DAV plugin to strip sensitive data from .fvform downloads - Editor and question cards UI redesign - Update .gitignore for certificate files Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 41ef937 commit 88445d4

5 files changed

Lines changed: 7 additions & 5 deletions

File tree

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,10 @@ npm-debug.log*
2626
*.tmp
2727
*.temp
2828

29-
# Certificates and private keys (NEVER commit!)
29+
# Certificates and private keys (NEVER commit to GitHub!)
3030
*.key
3131
*.pem
3232
certificates/*.key
3333
certificates/*.csr
34+
certificates/*.crt
35+
certificates/

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
All notable changes to FormVox will be documented in this file.
44

5-
## [0.2.6] - 2026-01-27
5+
## [0.2.6] - 2026-01-28
66

77
### Added
88
- File upload question type with configurable allowed file types and size limits

appinfo/info.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ FormVox is a file-based forms and polls app for Nextcloud. Unlike traditional fo
4242
4343
Built with Vue 3 and modern web technologies for a smooth, secure experience.
4444
]]></description>
45-
<version>0.2.5</version>
45+
<version>0.2.6</version>
4646
<licence>agpl</licence>
4747
<author mail="sam@mief.info">Sam Ditmeijer</author>
4848
<author mail="rik@shalution.nl">Rik Dekker</author>

docs/architecture/comparison.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This document compares FormVox with Nextcloud Forms to help you choose the right
88
|--------|---------|-----------------|
99
| **Storage** | File-based (.fvform) | Database |
1010
| **Architecture** | Single file per form | Database tables |
11-
| **First Release** | 2024 | 2020 |
11+
| **First Release** | 2026 | 2020 |
1212
| **Status** | Active development | Mature, stable |
1313

1414
## Feature Comparison

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "formvox",
3-
"version": "0.2.5",
3+
"version": "0.2.6",
44
"description": "File-based forms and polls for Nextcloud",
55
"scripts": {
66
"build": "webpack",

0 commit comments

Comments
 (0)