Skip to content

Commit 9a36253

Browse files
authored
Merge pull request #162 from cloud-atlas-ai/release/1.9
Release/1.9
2 parents 1e1dc55 + 6cb1023 commit 9a36253

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,11 +77,13 @@ You can see the available fields an the [Event interface](https://github.com/clo
7777

7878
### Full Calendar
7979

80+
Or you can use [Full Calendar](https://github.com/obsidian-community/obsidian-full-calendar) to render a calendar view of your events. Here's an example of how you can use it:
81+
8082
```javascript
8183
const { renderCalendar } = app.plugins.getPlugin("obsidian-full-calendar");
8284
const thisWeek = Array.from({length: 7}).map((_, weekday) => moment().set({weekday}).format("YYYY-MM-DD"))
8385
const icsPlugin = app.plugins.getPlugin('ics')
84-
const events = (await icsPlugin.getEvents(...thisWeek))
86+
const events = (await icsPlugin.getEvents(...thisWeek))
8587
.map(event => {
8688
const start = moment.unix(event.utime)
8789
const [endHours, endMinutes] = event.endTime.split(":")
@@ -109,6 +111,7 @@ If you want to support my work, you can [buy me a coffee](https://www.buymeacoff
109111
- [Documenting Dataview usage](https://github.com/muness/obsidian-ics/issues/56#issuecomment-1746417368) @afonsoguerra
110112
- [Vdir enhancements](https://github.com/cloud-atlas-ai/obsidian-ics/pull/131) @bpannier
111113
- [Ensure recurrent flag is set correctly](https://github.com/cloud-atlas-ai/obsidian-ics/pull/158) for recurrence overrides @mikeh
114+
- [Support multiple days](https://github.com/cloud-atlas-ai/obsidian-ics/pull/160) and document [Full Calendar](https://github.com/obsidian-community/obsidian-full-calendar) usage @ctrl-q
112115

113116
## Manual Installation
114117

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "ics",
33
"name": "ICS",
4-
"version": "1.8.4",
4+
"version": "1.9",
55
"minAppVersion": "1.7.7",
66
"description": "Parse multiple ICS files to include in your notes. Designed for Daily Notes and the Day Planner format. Through templates you can customize it for other use cases.",
77
"author": "Cloud Atlas",

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "obsidian-ics",
3-
"version": "1.8.4",
3+
"version": "1.9",
44
"description": "Adds events from calendar ics published on the web to daily note on demand. Daily Note or Periodic Notes plugins: specifically it gets the date to search for events during from the currently open daily note.",
55
"main": "dist/main.js",
66
"scripts": {

versions.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,6 @@
5757
"1.8.2": "1.7.7",
5858
"1.8.3": "1.7.7",
5959
"1.8.3.1": "1.7.7",
60-
"1.8.4": "1.7.7"
60+
"1.8.4": "1.7.7",
61+
"1.9": "1.7.7"
6162
}

0 commit comments

Comments
 (0)