Skip to content

Commit

Permalink
chore(version): Bump version number to 4.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
itsmartashub committed Sep 16, 2024
1 parent f433905 commit c23b963
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/manifests/chromium-mv3/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"manifest_version": 3,
"version": "4.0.3",
"version": "4.0.4",
"name": "GPThemes - ChatGPT Customization",
"description": "Transform ChatGPT's user interface with customisable accent colour, font styles and chats width, modern designs and chat bubbles.",
"author": "itsmarta",
Expand Down
2 changes: 1 addition & 1 deletion src/manifests/firefox-mv2/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"manifest_version": 2,
"version": "4.0.3",
"version": "4.0.4",
"name": "GPThemes - ChatGPT Customization",
"description": "Transform ChatGPT's user interface with customisable accent colour, font styles and chats width, modern designs and chat bubbles.",
"author": "itsmarta",
Expand Down
26 changes: 19 additions & 7 deletions src/popup/changes.js
Original file line number Diff line number Diff line change
@@ -1,25 +1,37 @@
let issue = (hashNumber) =>
`<a href="https://github.com/itsmartashub/GPThemes/issues/${hashNumber}" target="_blank" rel="noopener noreferrer" class="changelog__seefullchangelog">#${hashNumber}</a>`

const RELEASE_CHANGES = `
<h3>🛠️ Improvements</h3>
<ul>
<li>Theme changes made in GPT settings are now reflected in the GPThemes theme, and vice versa, to maintain consistency across the board.</li>
<li>The application of themes across the extension has been enhanced to ensure consistency, which was previously broken due to new OpenAI's code loading techniques.</li>
<li><strong>Theme Sync Fixed: </strong> Theme changes made in GPT settings are now reflected in the GPThemes theme, and vice versa, to maintain consistency across the board ${issue(
48
)}</li>
<li><strong>Consistency Enhanced: </strong>The application of themes across the extension has been enhanced to ensure consistency, which was previously broken due to new OpenAI's code loading techniques ${issue(
48
)}</li>
</ul>
<h3>🐛 Bug Fixes</h3>
<ul>
<li>Scrollbar styling issues caused by recent OpenAI changes have been resolved.</li>
<li>The OLED theme display has been fixed in dialogs and GPT Stores.</li>
<li><strong>Scrollbar Fixed: </strong>Scrollbar styling issues caused by recent OpenAI changes have been resolved ${issue(
50
)}</li>
<li><strong>OLED Theme Fix: </strong>The OLED theme display has been fixed in dialogs and GPT Stores.</li>
<li><strong>Temporary Chat Text Color: </strong>Fix the text color in the prompt textarea for temporary chats in light themes.</li>
</ul>
<h3>🔧 Under the Hood</h3>
<ul>
<li>Storage management has been optimized for better efficiency.</li>
<li>Significant code improvements have been made to enhance maintanability.</li>
<li><strong>Storage Optimized: </strong>Storage management has been optimized for better efficiency ${issue(
49
)}</li>
<li><strong>DRY: </strong>Significant code improvements have been made to enhance maintanability ${issue(49)}</li>
</ul>
<h3>⚠️ Known Issue</h3>
<ul>
<li>A minor theme inconsistency remains on shared chat pages due to recent ChatGPT updates. Custom accent colors are not applied due to OpenAI's new dynamic code loading, which overrides some extension code.</li>
<li><strong>Share Page Theme Inconsistency: </strong>A minor theme inconsistency remains on shared chat pages due to recent ChatGPT updates. Custom accent colors are not applied due to OpenAI's new dynamic code loading, which overrides some extension code.</li>
</ul>
`

Expand Down

0 comments on commit c23b963

Please sign in to comment.