Skip to content

Commit

Permalink
Version bump 4.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bluecaret committed Oct 22, 2023
1 parent 0b8f11a commit 9e3fc94
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 13 deletions.
4 changes: 2 additions & 2 deletions manifest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ const getManifestSettings = (env) => {
short_name: 'CaretTab',
name: env.mode === 'beta' ? 'CaretTab BETA' : '__MSG_appName__',
description: env.mode === 'beta' ? 'Beta version of the New Tab extension, CaretTab' : '__MSG_appDesc__',
version: `4.1.1`,
version_name: `4.1.1`,
version: `4.2.0`,
version_name: `4.2.0`,
default_locale: 'en',
icons: {
16: 'img/icon16.png',
Expand Down
29 changes: 18 additions & 11 deletions src/components/settings/WhatsNew.vue
Original file line number Diff line number Diff line change
Expand Up @@ -70,20 +70,27 @@ const handleClearWhatsNew = async () => {
<div class="modalContent">
<div class="group">
<div class="fill">
<h4 class="subtitle">v4.1.1 {{ $t('updates.fixesAndOthers') }}</h4>
<ul class="ul">
<li>Fixed: Default items such as Todo tasks, quotes and quick links sometimes could not be removed.</li>
<li>Fixed: French translation of the word "save"</li>
<li>Fixed: Added error handling when weather data is unavailable</li>
<li>Fixed: Quick Links may not move overflow links to the "more" menu correctly</li>
</ul>
<h4 class="subtitle">v4.1.1 Known bugs</h4>
<h4 class="subtitle">v4.2.0 {{ $t('updates.newFeatures') }}</h4>
<ul class="ul">
<li>
Bug: Weather data not downloading - I've discovered a problem with weather not loading correctly
around 8PM PST every night. I haven't found a fix but am looking into it. It appears to only be an
issue for about 1 hour at that time each night so far.
New: Dynamic scaling is back and better! Size individual widgets based on the browser screen size.
</li>
<li>New: Widget container and font settings are all available in the free plan, no Premium needed.</li>
<li>New: You can now filter the widget list when adding widgets.</li>
<li>Added: IFrame widget for embedding websites on the New Tab.</li>
<li>Added: Breathing Exercise tool in the toolbar. Requires Premium Access.</li>
<li>Added: Snake game widget. Requires Premium Access.</li>
<li>Added: Fidget toy widget. Requires Premium Access.</li>
</ul>
<h4 class="subtitle">v4.2.0 {{ $t('updates.fixesAndOthers') }}</h4>
<ul class="ul">
<li>Fixed: Meridiem in digital clock would be stuck on AM depending on the selected language.</li>
<li>Fixed: Multiple spaces now allowed in the Quote and Text widgets.</li>
<li>Fixed: Various translation bugs.</li>
<li>Weather widget has a maximum number of widgets allowed to avoid API abuse.</li>
<li>Fixed: The warning about the weather failing to update was too obtrusive.</li>
<li>Fixed: Incorrect favicon was showing depending on theme.</li>
<li>Fixed: Weather container styles not applying correctly.</li>
</ul>
</div>
</div>
Expand Down

0 comments on commit 9e3fc94

Please sign in to comment.