File tree Expand file tree Collapse file tree 10 files changed +62
-35
lines changed Expand file tree Collapse file tree 10 files changed +62
-35
lines changed Original file line number Diff line number Diff line change 11# EventCalendar changelog
22
3+ ## 4.4.2
4+ June 26, 2025
5+ * Fixed an issue with ` updateEvent() ` producing an error ([ 516] ( https://github.com/vkurko/calendar/issues/516 ) )
6+
37## 4.4.1
48June 16, 2025
59* Fixed event positioning issue ([ 511] ( https://github.com/vkurko/calendar/issues/511 ) )
Original file line number Diff line number Diff line change @@ -228,8 +228,8 @@ This bundle contains a version of the calendar that includes all plugins and is
228228
229229The first step is to include the following lines of code in the ` <head> ` section of your page:
230230``` html
231- <link rel =" stylesheet" href =" https://cdn.jsdelivr.net/npm/@event-calendar/build@4.4.1 /dist/event-calendar.min.css" >
232- <script src =" https://cdn.jsdelivr.net/npm/@event-calendar/build@4.4.1 /dist/event-calendar.min.js" ></script >
231+ <link rel =" stylesheet" href =" https://cdn.jsdelivr.net/npm/@event-calendar/build@4.4.2 /dist/event-calendar.min.css" >
232+ <script src =" https://cdn.jsdelivr.net/npm/@event-calendar/build@4.4.2 /dist/event-calendar.min.js" ></script >
233233```
234234
235235<details >
Original file line number Diff line number Diff line change 1212 < link rel ="manifest " href ="site.webmanifest ">
1313 < link rel ="stylesheet " href ="global.css?20231021 ">
1414
15- < link rel ="stylesheet " href ="https://cdn.jsdelivr.net/npm/@event-calendar/build@4.4.1 /dist/event-calendar.min.css ">
16- < script src ="https://cdn.jsdelivr.net/npm/@event-calendar/build@4.4.1 /dist/event-calendar.min.js "> </ script >
15+ < link rel ="stylesheet " href ="https://cdn.jsdelivr.net/npm/@event-calendar/build@4.4.2 /dist/event-calendar.min.css ">
16+ < script src ="https://cdn.jsdelivr.net/npm/@event-calendar/build@4.4.2 /dist/event-calendar.min.js "> </ script >
1717
1818 < style >
1919 .ec-timeline .ec-time , .ec-timeline .ec-line {
Original file line number Diff line number Diff line change 11{
22 "name" : " event-calendar" ,
33 "private" : true ,
4- "version" : " 4.4.1 " ,
4+ "version" : " 4.4.2 " ,
55 "type" : " module" ,
66 "scripts" : {
77 "dev" : " vite" ,
1212 },
1313 "devDependencies" : {
1414 "@sveltejs/vite-plugin-svelte" : " ^5.1.0" ,
15- "sass" : " ^1.89.1 " ,
16- "svelte" : " ^5.33.14 " ,
15+ "sass" : " ^1.89.2 " ,
16+ "svelte" : " ^5.34.8 " ,
1717 "vite" : " ^6.3.5" ,
1818 "vite-plugin-banner" : " ^0.8.1"
1919 }
Original file line number Diff line number Diff line change @@ -228,8 +228,8 @@ This bundle contains a version of the calendar that includes all plugins and is
228228
229229The first step is to include the following lines of code in the ` <head> ` section of your page:
230230``` html
231- <link rel =" stylesheet" href =" https://cdn.jsdelivr.net/npm/@event-calendar/build@4.4.1 /dist/event-calendar.min.css" >
232- <script src =" https://cdn.jsdelivr.net/npm/@event-calendar/build@4.4.1 /dist/event-calendar.min.js" ></script >
231+ <link rel =" stylesheet" href =" https://cdn.jsdelivr.net/npm/@event-calendar/build@4.4.2 /dist/event-calendar.min.css" >
232+ <script src =" https://cdn.jsdelivr.net/npm/@event-calendar/build@4.4.2 /dist/event-calendar.min.js" ></script >
233233```
234234
235235<details >
Original file line number Diff line number Diff line change 11{
22 "name" : " @event-calendar/build" ,
3- "version" : " 4.4.1 " ,
3+ "version" : " 4.4.2 " ,
44 "title" : " Event Calendar" ,
55 "description" : " Full-sized drag & drop event calendar with resource & timeline views" ,
66 "keywords" : [
Original file line number Diff line number Diff line change @@ -228,8 +228,8 @@ This bundle contains a version of the calendar that includes all plugins and is
228228
229229The first step is to include the following lines of code in the ` <head> ` section of your page:
230230``` html
231- <link rel =" stylesheet" href =" https://cdn.jsdelivr.net/npm/@event-calendar/build@4.4.1 /dist/event-calendar.min.css" >
232- <script src =" https://cdn.jsdelivr.net/npm/@event-calendar/build@4.4.1 /dist/event-calendar.min.js" ></script >
231+ <link rel =" stylesheet" href =" https://cdn.jsdelivr.net/npm/@event-calendar/build@4.4.2 /dist/event-calendar.min.css" >
232+ <script src =" https://cdn.jsdelivr.net/npm/@event-calendar/build@4.4.2 /dist/event-calendar.min.js" ></script >
233233```
234234
235235<details >
Original file line number Diff line number Diff line change 11{
22 "name" : " @event-calendar/core" ,
3- "version" : " 4.4.1 " ,
3+ "version" : " 4.4.2 " ,
44 "title" : " Event Calendar Core package" ,
55 "description" : " Full-sized drag & drop event calendar with resource & timeline views" ,
66 "keywords" : [
3232 "#components" : " ./src/lib/components/index.js"
3333 },
3434 "dependencies" : {
35- "svelte" : " ^5.33.14 "
35+ "svelte" : " ^5.34.8 "
3636 }
3737}
Original file line number Diff line number Diff line change 7171 let id = String (event .id );
7272 let idx = $_events .findIndex (event => event .id === id);
7373 if (idx >= 0 ) {
74- $_events[idx] = createEvents ([event ])[0 ];
74+ event = createEvents ([event ])[0 ];
75+ $_events[idx] = event ;
7576 return toEventWithLocalDates (event );
7677 }
7778 return null ;
You can’t perform that action at this time.
0 commit comments