@hebcal/icalendar
Advanced tools
Comparing version 4.14.0 to 4.14.1
@@ -1,2 +0,2 @@ | ||
/*! @hebcal/icalendar v4.14.0 */ | ||
/*! @hebcal/icalendar v4.14.1 */ | ||
'use strict'; | ||
@@ -430,3 +430,3 @@ | ||
var version="4.14.0"; | ||
var version="4.14.1"; | ||
@@ -564,7 +564,7 @@ const VTIMEZONE = {}; | ||
} else if (mask & core.flags.OMER_COUNT) { | ||
this.alarm = '0DT3H30M0S'; // 8:30pm Omer alarm evening before | ||
this.alarm = '-P0DT3H30M0S'; // 8:30pm Omer alarm evening before | ||
} else if (isUserEvent) { | ||
this.alarm = '0DT12H0M0S'; // noon the day before | ||
this.alarm = '-P0DT12H0M0S'; // noon the day before | ||
} else if (timed && ev.getDesc().startsWith('Candle lighting')) { | ||
this.alarm = '0DT0H10M0S'; // ten minutes | ||
this.alarm = '-P0DT0H10M0S'; // ten minutes | ||
} | ||
@@ -629,3 +629,3 @@ | ||
if (this.alarm) { | ||
arr.push('BEGIN:VALARM', 'ACTION:DISPLAY', 'DESCRIPTION:This is an event reminder', `TRIGGER:-P${this.alarm}`, 'END:VALARM'); | ||
arr.push('BEGIN:VALARM', 'ACTION:DISPLAY', 'DESCRIPTION:This is an event reminder', `TRIGGER:${this.alarm}`, 'END:VALARM'); | ||
} | ||
@@ -632,0 +632,0 @@ |
{ | ||
"name": "@hebcal/icalendar", | ||
"version": "4.14.0", | ||
"version": "4.14.1", | ||
"author": "Michael J. Radwin (https://github.com/mjradwin)", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
70003