File tree Expand file tree Collapse file tree 4 files changed +15
-5
lines changed
Expand file tree Collapse file tree 4 files changed +15
-5
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## [ unreleased]
99
10+ ## [ 0.1.8] - 2023-04-03
11+
12+ ### Fixed
13+
14+ - Changes to the DST handling introduced an issue where the schedule day was offset by one.
15+
1016## [ 0.1.7] - 2023-03-31
1117
1218### Fixed
@@ -92,8 +98,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9298- Ability to fill the attendance sheet for a month
9399- Ability to fill the attendance sheet for a day
94100
95- [ unreleased ] : https://github.com/DanielGilbert/kenBuddy/compare/v0.1.4...HEAD
96- [ 0.1.4 ] : https://github.com/DanielGilbert/kenBuddy/compare/v0.1.3...0.1.4
101+ [ unreleased ] : https://github.com/DanielGilbert/kenBuddy/compare/v0.1.8...HEAD
102+ [ 0.1.8 ] : https://github.com/DanielGilbert/kenBuddy/compare/v0.1.7...v0.1.8
103+ [ 0.1.7 ] : https://github.com/DanielGilbert/kenBuddy/compare/v0.1.6...v0.1.7
104+ [ 0.1.6 ] : https://github.com/DanielGilbert/kenBuddy/compare/v0.1.5...v0.1.6
105+ [ 0.1.5 ] : https://github.com/DanielGilbert/kenBuddy/compare/v0.1.4...v0.1.5
106+ [ 0.1.4 ] : https://github.com/DanielGilbert/kenBuddy/compare/v0.1.3...v0.1.4
97107[ 0.1.3 ] : https://github.com/DanielGilbert/kenBuddy/compare/v0.1.1...v0.1.3
98108[ 0.1.2 ] : https://github.com/DanielGilbert/kenBuddy/compare/v0.1.1...v0.1.2
99109[ 0.1.1 ] : https://github.com/DanielGilbert/kenBuddy/compare/v0.1.0...v0.1.1
Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ var allowEntriesInTheFuture = false;
113113 var count = 0 ;
114114 for ( let day = startOfWeek ; day <= endOfWeek ; day . setDate ( day . getDate ( ) + 1 ) ) {
115115 let result = await userHasEntryFor ( auth , user . ownerId , day )
116- if ( ! result && localSchedule [ count . toString ( ) ] != null ) {
116+ if ( ! result && ( ( day . getDay ( ) in localSchedule ) && localSchedule [ day . getDay ( ) ] . length != 0 ) ) {
117117 hasEntryForCurrentWeek = false ;
118118 break ;
119119 }
Original file line number Diff line number Diff line change 22 "manifest_version" : 2 ,
33 "name" : " kenBuddy" ,
44 "description" : " __MSG_extensionDescription__" ,
5- "version" : " 0.1.7 " ,
5+ "version" : " 0.1.8 " ,
66 "icons" : {
77 "16" : " logo/logo-16.png" ,
88 "48" : " logo/logo-48.png" ,
Original file line number Diff line number Diff line change 22 "manifest_version" : 3 ,
33 "name" : " kenBuddy" ,
44 "description" : " __MSG_extensionDescription__" ,
5- "version" : " 0.1.7 " ,
5+ "version" : " 0.1.8 " ,
66 "icons" : {
77 "16" : " logo/logo-16.png" ,
88 "48" : " logo/logo-48.png" ,
You can’t perform that action at this time.
0 commit comments