Skip to content

Commit afe4b0d

Browse files
author
ntwigg
committed
Minor tagline and version fixes.
1 parent 2561ef7 commit afe4b0d

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# <img align="left" src="browser-extension/public/icons/icon-48.png"> Gitcasso
22

3-
*Syntax highlighting and autosave for comments on GitHub (and other other markdown-friendly places).*
3+
*Syntax highlighting and autosave for comments on GitHub (and other other markdown-friendly websites).*
44

55
- "Syntax highlighting is the lie that enables us to see the truth."
66
- "The meaning of life is to find your lost comment drafts. The purpose of life is to post them."
@@ -12,6 +12,6 @@ TODO: screenshot of comment draft storage and restoration
1212
If there's something you'd like to add or fix, see [CONTRIBUTING.md](CONTRIBUTING.md).
1313

1414
Special thanks to:
15-
- [overtype](https://github.com/panphora/overtype) for the trick which makes syntax highlighting possible
16-
- [shiki](https://github.com/shikijs/shiki) for the broad library of syntax highlighters
15+
- [overtype](https://overtype.dev/) for doing `textarea` syntax highlighting of `md`
16+
- [highlight.js](https://highlightjs.org/) for the broad library of syntax highlighters
1717
- [Yukai Huang](https://github.com/Yukaii) for [the PRs](https://github.com/panphora/overtype/issues?q=is%3Apr+author%3AYukaii) which made the two work together

browser-extension/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"@wxt-dev/webextension-polyfill": "^1.0.0",
55
"webextension-polyfill": "^0.12.0"
66
},
7-
"description": "Syntax highlighting and autosave for comments on GitHub (and other other markdown-friendly places).",
7+
"description": "Syntax highlighting and autosave for comments on GitHub (and other other markdown-friendly websites).",
88
"devDependencies": {
99
"@biomejs/biome": "^2.1.2",
1010
"@testing-library/jest-dom": "^6.6.4",
@@ -41,5 +41,5 @@
4141
"zip:firefox": "wxt zip -b firefox"
4242
},
4343
"type": "module",
44-
"version": "1.0.0"
44+
"version": "0.0.1"
4545
}

browser-extension/src/entrypoints/popup/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<div id="app">
1010
<div class="header">
1111
<div class="logo">Gitcasso Markdown Assistant</div>
12-
<div class="subtitle">Syntax highlighting and autosave for comments on GitHub (and other other markdown-friendly places).</div>
12+
<div class="subtitle">Syntax highlighting and autosave for comments on GitHub (and other other markdown-friendly websites).</div>
1313
</div>
1414
<div id="scan-results">
1515
<p>Loading drafts from local storage...</p>

browser-extension/wxt.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { defineConfig } from 'wxt'
33
export default defineConfig({
44
manifest: {
55
description:
6-
'Syntax highlighting and autosave for comments on GitHub (and other other markdown-friendly places).',
6+
'Syntax highlighting and autosave for comments on GitHub (and other other markdown-friendly websites).',
77
host_permissions: ['https://*/*', 'http://*/*'],
88
icons: {
99
16: '/icons/icon-16.png',

0 commit comments

Comments
 (0)