Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .github/screenshot_highlighting.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Changelog
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/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

Version must be kept in-sync between [`package.json`](package.json) and [`wxt.config.js`](wxt.config.ts).

## [Unreleased]
- TBD

## [0.1.0] - 2025-09-26
- Initial release!
- Good enough to dogfood, not good enough to put effort into marketing it yet.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# <img align="left" src="public/icons/icon-128.png" width=48 height=48> Gitcasso

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

- "Syntax highlighting is the lie that enables us to see the truth."
- "The meaning of life is to find your lost comment drafts. The purpose of life is to post them."

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

TODO: screenshot of comment draft storage and restoration
TODO: screenshot of comment draft index

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

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,5 +67,5 @@
"corpus": "tsx tests/corpus-view.ts"
},
"type": "module",
"version": "0.0.1"
"version": "0.1.0"
}
7 changes: 4 additions & 3 deletions wxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,17 @@ import { defineConfig } from 'wxt'
export default defineConfig({
manifest: {
description:
'Syntax highlighting and autosave for comments on GitHub (and other other markdown-friendly websites).',
host_permissions: ['https://*/*', 'http://*/*'],
'Syntax highlighting and autosave for comments on GitHub (and other markdown-friendly websites).',
host_permissions: ['https://github.com/*'],
icons: {
16: '/icons/icon-16.png',
48: '/icons/icon-48.png',
128: '/icons/icon-128.png',
},
name: 'Gitcasso',
optional_host_permissions: ['https://*/*', 'http://*/*'],
permissions: ['activeTab', 'tabs'],
version: '1.0.0',
version: '0.1.0',
},
modules: ['@wxt-dev/webextension-polyfill'],
srcDir: 'src',
Expand Down