Compare commits

..

3 Commits

Author SHA1 Message Date
Lennart
701fa9dd9c Version 3.4.5 2025-06-23 08:54:26 +02:00
Lennart
31b17cfe7f Frontend: Fix dumb typo in calendar creation form
Fixes #82
2025-06-23 08:53:50 +02:00
Lennart
d802a0085a Add Home Assistant to tested clients 2025-06-23 00:42:45 +02:00
6 changed files with 16 additions and 14 deletions

22
Cargo.lock generated
View File

@@ -2736,7 +2736,7 @@ dependencies = [
[[package]]
name = "rustical"
version = "0.3.4"
version = "0.3.5"
dependencies = [
"anyhow",
"argon2",
@@ -2779,7 +2779,7 @@ dependencies = [
[[package]]
name = "rustical_caldav"
version = "0.3.4"
version = "0.3.5"
dependencies = [
"async-trait",
"axum",
@@ -2814,7 +2814,7 @@ dependencies = [
[[package]]
name = "rustical_carddav"
version = "0.3.4"
version = "0.3.5"
dependencies = [
"async-trait",
"axum",
@@ -2846,7 +2846,7 @@ dependencies = [
[[package]]
name = "rustical_dav"
version = "0.3.4"
version = "0.3.5"
dependencies = [
"async-trait",
"axum",
@@ -2871,7 +2871,7 @@ dependencies = [
[[package]]
name = "rustical_dav_push"
version = "0.3.4"
version = "0.3.5"
dependencies = [
"async-trait",
"axum",
@@ -2897,7 +2897,7 @@ dependencies = [
[[package]]
name = "rustical_frontend"
version = "0.3.4"
version = "0.3.5"
dependencies = [
"askama",
"askama_web",
@@ -2930,7 +2930,7 @@ dependencies = [
[[package]]
name = "rustical_ical"
version = "0.3.4"
version = "0.3.5"
dependencies = [
"axum",
"chrono",
@@ -2948,7 +2948,7 @@ dependencies = [
[[package]]
name = "rustical_oidc"
version = "0.3.4"
version = "0.3.5"
dependencies = [
"async-trait",
"axum",
@@ -2963,7 +2963,7 @@ dependencies = [
[[package]]
name = "rustical_store"
version = "0.3.4"
version = "0.3.5"
dependencies = [
"anyhow",
"async-trait",
@@ -2997,7 +2997,7 @@ dependencies = [
[[package]]
name = "rustical_store_sqlite"
version = "0.3.4"
version = "0.3.5"
dependencies = [
"async-trait",
"chrono",
@@ -3017,7 +3017,7 @@ dependencies = [
[[package]]
name = "rustical_xml"
version = "0.3.4"
version = "0.3.5"
dependencies = [
"quick-xml",
"thiserror 2.0.12",

View File

@@ -2,7 +2,7 @@
members = ["crates/*"]
[workspace.package]
version = "0.3.4"
version = "0.3.5"
edition = "2024"
description = "A CalDAV server"
repository = "https://github.com/lennart-k/rustical"

View File

@@ -30,3 +30,4 @@ a CalDAV/CardDAV server
- GNOME Accounts, GNOME Calendar, GNOME Contacts
- Evolution
- Apple Calendar
- Home Assistant integration

View File

@@ -95,7 +95,7 @@ export class CreateCalendarForm extends LitElement {
alert("No calendar components selected")
return
}
await this.client.createDirectory(`/ principal / ${this.user}/${this.id}`, {
await this.client.createDirectory(`/principal/${this.user}/${this.id}`, {
data: `
<mkcol xmlns="DAV:" xmlns:CAL="urn:ietf:params:xml:ns:caldav" xmlns:CS="http://calendarserver.org/ns/" xmlns:ICAL="http://apple.com/ns/ical/">
<set>

View File

@@ -72,7 +72,7 @@ let r = class extends u {
alert("No calendar components selected");
return;
}
return await this.client.createDirectory(`/ principal / ${this.user}/${this.id}`, {
return await this.client.createDirectory(`/principal/${this.user}/${this.id}`, {
data: `
<mkcol xmlns="DAV:" xmlns:CAL="urn:ietf:params:xml:ns:caldav" xmlns:CS="http://calendarserver.org/ns/" xmlns:ICAL="http://apple.com/ns/ical/">
<set>

View File

@@ -26,3 +26,4 @@ If you still want to play around with it in its current state, absolutely feel f
- GNOME Accounts, GNOME Calendar, GNOME Contacts
- Evolution
- Apple Calendar
- Home Assistant integration