Skip to content

Commit 52c4c18

Browse files
Merge pull request #13 from DanielGilbert/dev
Updates manifests to 0.1.7
2 parents 4578544 + c852c51 commit 52c4c18

4 files changed

Lines changed: 10 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff 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.7] - 2023-03-31
11+
12+
### Fixed
13+
14+
- An issue regarding the switch to Daylight Savings Time has been addressed
15+
1016
## [0.1.6] - 2023-03-17
1117

1218
### Fixed

extension/manifest_v2.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 2,
33
"name": "kenBuddy",
44
"description": "__MSG_extensionDescription__",
5-
"version": "0.1.6",
5+
"version": "0.1.7",
66
"icons": {
77
"16": "logo/logo-16.png",
88
"48": "logo/logo-48.png",

extension/manifest_v3.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 3,
33
"name": "kenBuddy",
44
"description": "__MSG_extensionDescription__",
5-
"version": "0.1.6",
5+
"version": "0.1.7",
66
"icons": {
77
"16": "logo/logo-16.png",
88
"48": "logo/logo-48.png",

extension/utils/utils.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,12 @@ function endOfMonth(date) {
7676

7777
function getStartOfWeek(date) {
7878
var currentDate = startOfDay(date);
79-
return new Date(currentDate.setDate(currentDate.getDate() - currentDate.getDay()));
79+
return new Date(currentDate.setDate(currentDate.getDate() - currentDate.getDay() + 1));
8080
}
8181

8282
function getEndOfWeek(date) {
8383
var currentDate = endOfDay(date);
84-
return new Date(currentDate.setDate(currentDate.getDate() - currentDate.getDay() + 6));
84+
return new Date(currentDate.setDate(currentDate.getDate() - currentDate.getDay() + 7));
8585
}
8686

8787
function hhmmToMinutes(str) {

0 commit comments

Comments
 (0)