Skip to content

Releases: JM-Lemmi/ical-relay

v1.3.0

07 Nov 15:11
9b107b2
Compare
Choose a tag to compare
  • 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

28 Oct 19:05
5668e29
Compare
Choose a tag to compare
  • 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

13 Oct 16:15
Compare
Choose a tag to compare
  • add move-time to Module edit-bysummary-regex #51

v1.1.3

04 Sep 15:07
5a6e2a1
Compare
Choose a tag to compare
  • Remove /view path and go.rice dependency

v1.1.2

20 Apr 12:26
Compare
Choose a tag to compare

Hotfix for #39: Empty property will no be filled in "overwrite" mode.

v1.1.0

12 Apr 07:16
Compare
Choose a tag to compare
  • Add save-to-file-Module
  • delete-timeframe-Module now accepts "now" as valid value for before and after
  • empty source is now allowed and create a new empty calendar

v1.0.0

10 Apr 18:27
Compare
Choose a tag to compare

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

07 Apr 14:40
Compare
Choose a tag to compare
  • bug fixes in "delete-timeframe"
  • banner message with version number

v1.0.0-rc1

07 Apr 11:36
8c7bf23
Compare
Choose a tag to compare
  • 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

06 Apr 19:02
Compare
Choose a tag to compare
v1.0.0-beta1 Pre-release
Pre-release

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"