Skip to content

Commit fb1a92c

Browse files
last quick fixes
1 parent abbf8d4 commit fb1a92c

File tree

3 files changed

+40
-17
lines changed

3 files changed

+40
-17
lines changed

src/changelog.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,16 @@
3333
</style>
3434

3535
<div class="opm-changelog" style="display: flex; flex-direction: column; gap: 16px;">
36+
<div>
37+
<div style="font-weight: bold; margin-bottom: 4px;">Version 2.5.0</div>
38+
<ul>
39+
<li>Add tags to your prompts to organize your prompts</li>
40+
<li>Activate tags in the settings. Drag & Drop them to reorder them, or delete them in the tag management section.</li>
41+
<li>Squashed a lot of bugs, refactored the codebase.</li>
42+
<li>Thank you to Robert for notifying me of a bug, and thank you to Abdallah for the quick fix!</li>
43+
</ul>
44+
</div>
45+
</div>
3646

3747
<div>
3848
<div style="font-weight: bold; margin-bottom: 4px;">Version 2.4.0</div>

src/info.html

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,13 @@
1111
.pm-title { font-weight: 500; color: #575757; }
1212
.pm-muted, .pm-sep { color: #666; }
1313

14-
/*dark mode text color*/
14+
/* Dark mode overrides scoped to our root to avoid affecting host page */
1515
@media (prefers-color-scheme: dark) {
16-
.pm-muted { color: #e1e1e1; }
17-
.pm-title { color: #e1e1e1; }
16+
#opm-root .pm-info { color: #E2E8F0; }
17+
#opm-root .pm-title { color: #E2E8F0; }
18+
#opm-root .pm-muted, #opm-root .pm-sep { color: #A0AEC0; }
19+
#opm-root .pm-link { color: #E2E8F0; }
20+
#opm-root .pm-link:hover, #opm-root .pm-link:focus { text-decoration: underline; }
1821
}
1922

2023
/* Reusable chips for actions and keys */
@@ -25,6 +28,8 @@
2528
/* Links */
2629
.pm-link { color: #3674B5; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
2730
.pm-icon { min-width: 16px; }
31+
.pm-link svg { color: inherit; }
32+
.pm-link svg path { fill: currentColor; }
2833
</style>
2934

3035
<div class="pm-info">

src/sidepanel/index.html

Lines changed: 22 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -124,23 +124,31 @@ <h3>Keyboard Navigation &amp; Shortcuts</h3>
124124
<p></p>
125125
<!-- Sticky footer for icons/links -->
126126
<footer class="footer">
127-
<div class="footer-icons">
127+
<div class="footer-icons" style="display: flex; align-items: center; gap: 8px;">
128128
<a id="link" href="https://github.com/jonathanbertholet/promptmanager"
129-
target="_blank" title="Github"><img class="footer-icons" src="../icons/github-icon.png" alt="Github"
130-
style="margin-right: 5px" /></a>
129+
target="_blank" title="Github"><img class="footer-icons" src="../icons/github-icon.png" alt="Github" /></a>
131130
<a id="link" href="https://chromewebstore.google.com/detail/open-prompt-manager/gmhaghdbihgenofhnmdbglbkbplolain"
132-
target="_blank" title="Review me"><img class="footer-icons" src="../icons/review-icon.png" alt="Review me"
133-
style="margin-right: 5px" /></a>
134-
<a id="link" href="../settings.html" style="margin-right: 5px" title="Settings"><img id="settings-icon" class="footer-icons"
131+
target="_blank" title="Review me"><img class="footer-icons" src="../icons/review-icon.png" alt="Review me" /></a>
132+
<a id="link" href="../settings.html" title="Settings"><img id="settings-icon" class="footer-icons"
135133
src="../icons/settings-icon.png" alt="Settings" /></a>
136-
<!--
137-
<a id="link" href="../changelog.html" title="Changelog" style="margin-right: 5px">
138-
<img class="footer-icons" src="../icons/notes.svg" alt="Changelog" />
139-
</a>
140-
Changelog link commented out for now.
141-
-->
142-
<a id="link" href="../permissions/permissions.html" title="Open Permissions Manager" target="_blank"><img id="permissions-icon" class="footer-icons" src="../icons/permissions-icon.svg"
143-
alt="Open Permissions Manager" /></a>
134+
<a id="link" href="../permissions/permissions.html" title="Activate more LLMs" target="_blank" style="text-decoration: none;">
135+
<span style="
136+
display: inline-flex;
137+
align-items: center;
138+
background-color: var(--primary, #3674B5);
139+
color: #fff;
140+
padding: 4px 14px;
141+
border-radius: 999px;
142+
font-size: 13px;
143+
font-weight: 500;
144+
gap: 7px;
145+
box-shadow: 0 1px 2px rgba(0,0,0,0.04);
146+
transition: background 0.15s;
147+
">
148+
<img id="permissions-icon" class="footer-icons" src="../icons/permissions-icon.svg" alt="Activate more LLMs" style="width: 14px; height: 14px; margin: 0; filter: brightness(0) invert(1);" />
149+
Activate more LLMs
150+
</span>
151+
</a>
144152
</div>
145153
</footer>
146154
<script type="module" src="sidepanel.js"></script>

0 commit comments

Comments
 (0)