diff --git a/README.md b/README.md index 8d6c280..2cfa403 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ I initially built this for myself. Had too many tabs open at the end of the day, 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). -[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) +[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) diff --git a/docs/changelog.md b/docs/changelog.md index a25fdb9..344756b 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -10,6 +10,12 @@ PRs and other ideas are welcome. ## Changes ## **May 2021** +#### 2.4.2 +- Introducing Icon Themes - Starting with a shiny new Animal theme. Change your theme on the Settings page. +- Setting to choose between 12 Hour / 24 Hour time formats +- Open links from the Nap Room without waking up a tab +- Bug fixes on the Rise and Shine page + #### 2.4.1 - show number of search results in the nap room - misc ui related fixes diff --git a/docs/safari.md b/docs/safari.md index 7e73929..b55596f 100644 --- a/docs/safari.md +++ b/docs/safari.md @@ -49,8 +49,6 @@ If you want to build your own version of Snoozz for Safari, here's how you do it Safari does not let you configure your own keyboard shortcuts. - **Inconsistent wake up times:** 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. -- **Shit input for "Choose your own time" in the popup menu:** - Safari does not have custom panels for date and time inputs. Fallbacks to a simple (ugly) text field with no validation UI. - **UI bugs:** This extension was designed for Chrome and Firefox, so things might look a teeny bit off. diff --git a/manifest.json b/manifest.json index 20d32f3..0af712c 100644 --- a/manifest.json +++ b/manifest.json @@ -2,7 +2,7 @@ "name": "Snoozz - Snooze Tabs & Windows for later", "short_name": "Snoozz", "description": "Declutter your browser by snoozing tabs and windows until you actually need them.", - "version": "2.4.1", + "version": "2.4.2", "icons": { "128": "icons/ext-icon-128.png", diff --git a/scripts/common.js b/scripts/common.js index 2337994..1be6b18 100644 --- a/scripts/common.js +++ b/scripts/common.js @@ -277,7 +277,7 @@ async function getChoices(which) { 'in-an-hour': { label: 'In One Hour', time: NOW.add(1, 'h'), - timeString: NOW.add(1, 'h').format('D MMM'), + timeString: NOW.add(1, 'h').dayOfYear() == NOW.dayOfYear() ? 'Today' : 'Tomorrow', menuLabel: 'for an hour' }, 'today-morning': { @@ -297,13 +297,13 @@ async function getChoices(which) { 'tom-morning': { label: 'Tomorrow Morning', time: NOW.startOf('d').add(1,'d').add(config.morning, 'h'), - timeString: NOW.add(1,'d').format('ddd D'), + timeString: NOW.add(1,'d').format('ddd, D MMM'), menuLabel: 'till tomorrow morning' }, 'tom-evening': { label: 'Tomorrow Evening', time: NOW.startOf('d').add(1,'d').add(config.evening, 'h'), - timeString: NOW.add(1,'d').format('ddd D'), + timeString: NOW.add(1,'d').format('ddd, D MMM'), menuLabel: 'till tomorrow evening' }, 'weekend': {