Skip to content

Commit 3a1f654

Browse files
authored
Initial publish (#93)
2 parents 3627fc6 + 536656d commit 3a1f654

File tree

5 files changed

+20
-7
lines changed

5 files changed

+20
-7
lines changed
212 KB
Loading

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Changelog
2+
All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
3+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
4+
5+
Version must be kept in-sync between [`package.json`](package.json) and [`wxt.config.js`](wxt.config.ts).
6+
7+
## [Unreleased]
8+
- TBD
9+
10+
## [0.1.0] - 2025-09-26
11+
- Initial release!
12+
- Good enough to dogfood, not good enough to put effort into marketing it yet.

README.md

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

3-
*Syntax highlighting and autosave for comments on GitHub (and other other markdown-friendly websites).*
3+
*Syntax highlighting and autosave for comments on GitHub (and 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."
77

8-
TODO: screenshot of GitHub comment syntax highlighting
8+
![screenshot of syntax highlighting in the edit pane of a GitHub issue](.github/screenshot_highlighting.png)
99

10-
TODO: screenshot of comment draft storage and restoration
10+
TODO: screenshot of comment draft index
1111

1212
If there's something you'd like to add or fix, see [CONTRIBUTING.md](CONTRIBUTING.md).
1313

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,5 +67,5 @@
6767
"corpus": "tsx tests/corpus-view.ts"
6868
},
6969
"type": "module",
70-
"version": "0.0.1"
70+
"version": "0.1.0"
7171
}

wxt.config.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,17 @@ import { defineConfig } from 'wxt'
66
export default defineConfig({
77
manifest: {
88
description:
9-
'Syntax highlighting and autosave for comments on GitHub (and other other markdown-friendly websites).',
10-
host_permissions: ['https://*/*', 'http://*/*'],
9+
'Syntax highlighting and autosave for comments on GitHub (and other markdown-friendly websites).',
10+
host_permissions: ['https://github.com/*'],
1111
icons: {
1212
16: '/icons/icon-16.png',
1313
48: '/icons/icon-48.png',
1414
128: '/icons/icon-128.png',
1515
},
1616
name: 'Gitcasso',
17+
optional_host_permissions: ['https://*/*', 'http://*/*'],
1718
permissions: ['activeTab', 'tabs'],
18-
version: '1.0.0',
19+
version: '0.1.0',
1920
},
2021
modules: ['@wxt-dev/webextension-polyfill'],
2122
srcDir: 'src',

0 commit comments

Comments
 (0)