Skip to content

Commit 6fac6a5

Browse files
committed
v1.0.0
1 parent 3e1104c commit 6fac6a5

File tree

5 files changed

+28
-2
lines changed

5 files changed

+28
-2
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
6+
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
7+
8+
## Unreleased
9+
10+
## 1.0.0 - 2022-03-18
11+
12+
### Added
13+
- Changelog

index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ <h4>Select your calendar</h4>
102102
<tr><td id="google-calendar"><a>Google Calendar</a></td></tr>
103103
<tr><td id="outlook"><a>Outlook</a></td></tr>
104104
<tr><td id="office365"><a>Office 365</a></td></tr>
105+
<tr><td id="yahoo"><a>Yahoo</a></td></tr>
105106
<tr><td id="other-app"><a>Other calendar application</a></td></tr>
106107
</tbody>
107108
</table>

js/participants.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export function getParticipantViaCalendarUrl(url, participants) {
6868
const webids = Object.keys(participants);
6969
let i = 0;
7070

71-
while (i < webids.length && participants[webids[i]].calendar !== url) {
71+
while (i < webids.length && participants[webids[i]].calendar.url !== url) {
7272
i++;
7373
}
7474

js/slots.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,10 @@ function showCalendarLinksForSlot(startDate, endDate) {
144144
officeLink.setAttribute('href', office365(event));
145145
officeLink.setAttribute('target', '_blank');
146146

147+
const yahooLink = document.querySelector('#yahoo a');
148+
yahooLink.setAttribute('href', yahoo(event));
149+
yahooLink.setAttribute('target', '_blank');
150+
147151
const otherApp = document.querySelector('#other-app a');
148152
otherApp.setAttribute('href', ics(event));
149153
otherApp.setAttribute('download', 'meeting.ics');
@@ -169,6 +173,7 @@ function showCalendarLinksForSlot(startDate, endDate) {
169173
googleLink.setAttribute('href', google(event));
170174
outlookLink.setAttribute('href', outlook(event));
171175
officeLink.setAttribute('href', office365(event));
176+
yahooLink.setAttribute('href', yahoo(event));
172177
otherApp.setAttribute('href', ics(event));
173178
}
174179

package.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
{
2+
"name": "knoodle",
3+
"version": "1.0.0",
4+
"author": "Pieter Heyvaert (https://pieterheyvaert.com)",
5+
"contributors": [
6+
"Ben De Meester (https://ben.de-meester.org)"
7+
],
28
"scripts": {
39
"prestart": "npx webpack",
410
"start": "npx http-server .",
@@ -22,5 +28,6 @@
2228
"jsonld": "^5.2.0",
2329
"rdf-parse": "^1.9.1",
2430
"readable-web-to-node-stream": "^3.0.2"
25-
}
31+
},
32+
"license": "MIT"
2633
}

0 commit comments

Comments
 (0)