You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 7, 2023. It is now read-only.
* filter calendars, alldayevents with calCircles
- allow filtering calendars
- let disable all-day events from counting towards eventCircle color
- change "flipped" to also use widget parameter
Copy file name to clipboardExpand all lines: README.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,11 +25,13 @@
25
25
calendar app.
26
26
-`calendarApp` - Tapping on the widget launches a calendar app (as long as `debug: false`), by default it launches the iOS Calendar app, however it can be changed to anything as long as the app supports callback URLs. Changing the `calshow` to something else would open other apps. E.g. for Google Calendar it is `googlecalendar`, for Fantastical it is `x-fantastical3`.
27
27
-`backgroundImage` - Image path to use as the widget background, which is taken either from the widget parameters, from the `params` variable at the top, or just replace `params.bg` with the image path. To get an image that can then be used to have a "transparent" widget background use [this](https://gist.github.com/mzeryck/3a97ccd1e059b3afa3c6666d27a496c9#gistcomment-3468585) script and save it to the _Scriptable_ folder on iCloud. Then set either the widget parameter (long press on the widget -> edit widget -> parameter) to `{ "bg": "my-image.jpg"}` where `my-image` is the name of your transparent background **OR** change the line which has `{ bg: "1121.jpg" }` to include your image name.
28
+
-`calFilter` - Optionally an array of calendars to show, shows all calendars if empty. Can be supplied as a widget parameter to only affect that particular widget.
28
29
-`widgetBackgroundColor` - In case of no background image, what color to use.
29
30
-`todayTextColor` - color of today's date
30
31
-`markToday` - show a circle around today or not
31
32
-`todayCircleColor` - if we mark days, then in what color
32
33
-`showEventCircles` - adds colored background for all days that have an event. The color intensity is based roughly on how many events take place that day.
34
+
-`discountAllDayEvents` - if true, all-day events don't count towards eventCircle intensity value
33
35
-`eventCircleColor` - if showing event circles, then in what color
34
36
-`weekdayTextColor` - color of weekdays
35
37
-`weekendLetters` - color of the letters in the top row
@@ -48,6 +50,7 @@
48
50
-`showPrevMonth` - would show days from the previous month if they fit into the calendar view.
49
51
-`showNextMonth` - would show days from the next month if they fit into the calendar view.
50
52
-`individualDateTargets` - would allow tapping on a date to open that specific day in the calendar set by the `calendarApp` setting. (atm, supports default iOS calendar and Fantastical callback urls, should be possible to add more).
53
+
-`flipped` - the layout for the medium-sized widget can be either the default, `events - calendar`, or a flipped, `calendar - events` layout. This setting can also be given as a widget parameter (something like: `{ "flipped": true }`) to just affect that particular widget.
0 commit comments