Releases: JM-Lemmi/ical-relay
Releases · JM-Lemmi/ical-relay
v1.3.0
- Immutable past is now a profile boolean option. Simply add
immutable-past: true
to your profile configuration. - Query Parameters can be used to start a module with parameters given at runtime.
?reminder=15m
adds an Alarm to every Entry of 15 minutes before. It is not supported in dynamic calendars from Outlook or Google.
- Notification Mails now look much more readable and don't deliver the whole ICS Event.
v1.2.0
- add Notifiers: Get Notifications per Mail, if a calendar changes
- periodic
- from cronjobs with
--notifier
- add API
/api/calendars
: Returns all Public Calendars as json-array./api/reloadconfig
: Reloads the config from disk./api/notifier/<notifier>/addrecipient?mail=
: with an E-Mail Address as parameter adds the recipient to the notifier.
- Release as
.deb
Package
v1.1.6
v1.1.3
v1.1.2
v1.1.0
v1.0.0
The first full release of ical-relay. Compared to v0.4 it is now modularized. This enables much easier new features and faster processing times for complex edits.
Included Modules:
delete-bysummary-regex
delete-byid
add-url
add-file
delete-timeframe
delete-duplicates
Docker image: ghcr.io/jm-lemmi/ical-relay:v1.0.0
Binary for linux in this release.
v1.0.0-rc2
- bug fixes in "delete-timeframe"
- banner message with version number
v1.0.0-rc1
- yml config files
- converting to modules:
- delete-bysummary-regex
- delete-byid
- add-url
- added configurable HTTP Headers
- add-file
- new modules:
- delete-timeframe
- delete-duplicates
v1.0.0-beta1
This release brings the new yaml structure with modules and some finished modules
profiles:
relay:
source: "https://example.com/calendar.ics"
public: true
modules:
- name: "delete-bysummary-regex"
regex: "testentry"
from: "2021-12-02T00:00:00Z"
until: "2021-12-31T00:00:00Z"
- name: "add-url"
url: "https://othersource.com/othercalendar.ics"