Skip to content

Commit

Permalink
see CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
wernerjoss committed Apr 15, 2022
1 parent 6af9bc5 commit 720f3f5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
# v0.3.1
## 03/06/2022
# v0.3.2
## 04/15/2022

1. [](#new)
* add minutes Timezone Offset config Option
2. [](#bugfix)
* fix day shift for recurring all-day events
3. [](#new)
* merge docs improvement pull requests #48 + #49 from elgandoz
3. [](#bugfix)
* fix issue #50, calendar file not found for non-root calendar page

# v0.3.0
## 01/10/2022
Expand Down
5 changes: 3 additions & 2 deletions assets/calendar.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ if (typeof jQuery=='undefined') {
}

function whenJqReady() {
var verbose = false;//true;
var verbose = false;
var defaultLocale = 'en';
var cfgWeekNums = jQuery('#weeknums').text(); // get Paramter from DOM
weekNums = false;
Expand Down Expand Up @@ -79,7 +79,8 @@ function whenJqReady() {
var index = cfgFile.lastIndexOf("/") + 1;
calName = cfgFile.substr(index); // calName is used for Legend, should be only Name, NOT full Url !
} else {
calendarUrl = getAbsolutePath() + 'user/data/calendars/' + cfgFile;
// calendarUrl = getAbsolutePath() + 'user/data/calendars/' + cfgFile; // does not work for non-root calendar pages, see issue #50
calendarUrl = BaseUrl + '/user/data/calendars/' + cfgFile; // 15.04.22
}
if (verbose) console.log('Calendar URL:' + calendarUrl);
cfgUrls.push(calendarUrl);
Expand Down
2 changes: 1 addition & 1 deletion blueprints.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: FullCalendar
version: 0.3.1
version: 0.3.2
description: show Calendar Widget from ICS File(s), based on fullcalendar.io
icon: calendar
author:
Expand Down

0 comments on commit 720f3f5

Please sign in to comment.