File tree Expand file tree Collapse file tree 5 files changed +20
-7
lines changed Expand file tree Collapse file tree 5 files changed +20
-7
lines changed Original file line number Diff line number Diff line change
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.
Original file line number Diff line number Diff line change 1
1
# <img align =" left " src =" public/icons/icon-128.png " width =48 height =48 > Gitcasso
2
2
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).*
4
4
5
5
- "Syntax highlighting is the lie that enables us to see the truth."
6
6
- "The meaning of life is to find your lost comment drafts. The purpose of life is to post them."
7
7
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 )
9
9
10
- TODO: screenshot of comment draft storage and restoration
10
+ TODO: screenshot of comment draft index
11
11
12
12
If there's something you'd like to add or fix, see [ CONTRIBUTING.md] ( CONTRIBUTING.md ) .
13
13
Original file line number Diff line number Diff line change 67
67
"corpus" : " tsx tests/corpus-view.ts"
68
68
},
69
69
"type" : " module" ,
70
- "version" : " 0.0.1 "
70
+ "version" : " 0.1.0 "
71
71
}
Original file line number Diff line number Diff line change @@ -6,16 +6,17 @@ import { defineConfig } from 'wxt'
6
6
export default defineConfig ( {
7
7
manifest : {
8
8
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 /*' ] ,
11
11
icons : {
12
12
16 : '/icons/icon-16.png' ,
13
13
48 : '/icons/icon-48.png' ,
14
14
128 : '/icons/icon-128.png' ,
15
15
} ,
16
16
name : 'Gitcasso' ,
17
+ optional_host_permissions : [ 'https://*/*' , 'http://*/*' ] ,
17
18
permissions : [ 'activeTab' , 'tabs' ] ,
18
- version : '1.0 .0' ,
19
+ version : '0.1 .0' ,
19
20
} ,
20
21
modules : [ '@wxt-dev/webextension-polyfill' ] ,
21
22
srcDir : 'src' ,
You can’t perform that action at this time.
0 commit comments