Skip to content

Commit bcc440b

Browse files
committed
bump version number
1 parent 7895b39 commit bcc440b

File tree

5 files changed

+11
-7
lines changed

5 files changed

+11
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ I initially built this for myself. Had too many tabs open at the end of the day,
4545

4646
Available on [Chrome](https://chrome.google.com/webstore/detail/snoozz-snooze-tabs-window/lklendgldejcnkkaldoggoapclkepgfb), [Firefox](https://addons.mozilla.org/en-US/firefox/addon/snoozz/), [Edge](https://microsoftedge.microsoft.com/addons/detail/ifofnjpbldmdcbkaalbdgaopphhlopok) and as a custom build for [Safari](https://github.com/rohanb10/snoozz-tab-snoozing/blob/master/docs/safari.md).
4747

48-
[Latest Release](https://github.com/rohanb10/snoozz-tab-snoozing/releases/latest/) | [Changelog](https://snoozz.me/changelog.html) | [Browser Compatibility](https://github.com/rohanb10/snoozz-tab-snoozing/blob/master/docs/compatibility.md) | [Privacy](https://snoozz.me/privacy.html)
48+
[Latest Release](https://github.com/rohanb10/snoozz-tab-snoozing/releases/latest/) | [Changelog](https://snoozz.me/changelog.html) | [Browser Compatibility](https://snoozz.me/compatibility.html) | [Privacy](https://snoozz.me/privacy.html)
4949

5050

5151

docs/changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ PRs and other ideas are welcome.
1010
## Changes ##
1111

1212
**May 2021**
13+
#### 2.4.2
14+
- Introducing Icon Themes - Starting with a shiny new Animal theme. Change your theme on the Settings page.
15+
- Setting to choose between 12 Hour / 24 Hour time formats
16+
- Open links from the Nap Room without waking up a tab
17+
- Bug fixes on the Rise and Shine page
18+
1319
#### 2.4.1
1420
- show number of search results in the nap room
1521
- misc ui related fixes

docs/safari.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,6 @@ If you want to build your own version of Snoozz for Safari, here's how you do it
4949
Safari does not let you configure your own keyboard shortcuts.
5050
- **Inconsistent wake up times:**
5151
Safari does not support the `idle` API. It is used to calculate the next tab to wake up after your computer comes back from standby. It's very likely that your tabs will not wake up until you interact with the extension in any way.
52-
- **Shit input for "Choose your own time" in the popup menu:**
53-
Safari does not have custom panels for date and time inputs. Fallbacks to a simple (ugly) text field with no validation UI.
5452
- **UI bugs:**
5553
This extension was designed for Chrome and Firefox, so things might look a teeny bit off.
5654

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "Snoozz - Snooze Tabs & Windows for later",
33
"short_name": "Snoozz",
44
"description": "Declutter your browser by snoozing tabs and windows until you actually need them.",
5-
"version": "2.4.1",
5+
"version": "2.4.2",
66

77
"icons": {
88
"128": "icons/ext-icon-128.png",

scripts/common.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ async function getChoices(which) {
277277
'in-an-hour': {
278278
label: 'In One Hour',
279279
time: NOW.add(1, 'h'),
280-
timeString: NOW.add(1, 'h').format('D MMM'),
280+
timeString: NOW.add(1, 'h').dayOfYear() == NOW.dayOfYear() ? 'Today' : 'Tomorrow',
281281
menuLabel: 'for an hour'
282282
},
283283
'today-morning': {
@@ -297,13 +297,13 @@ async function getChoices(which) {
297297
'tom-morning': {
298298
label: 'Tomorrow Morning',
299299
time: NOW.startOf('d').add(1,'d').add(config.morning, 'h'),
300-
timeString: NOW.add(1,'d').format('ddd D'),
300+
timeString: NOW.add(1,'d').format('ddd, D MMM'),
301301
menuLabel: 'till tomorrow morning'
302302
},
303303
'tom-evening': {
304304
label: 'Tomorrow Evening',
305305
time: NOW.startOf('d').add(1,'d').add(config.evening, 'h'),
306-
timeString: NOW.add(1,'d').format('ddd D'),
306+
timeString: NOW.add(1,'d').format('ddd, D MMM'),
307307
menuLabel: 'till tomorrow evening'
308308
},
309309
'weekend': {

0 commit comments

Comments
 (0)