Skip to content

Commit

Permalink
release v0.18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
0x6b committed May 10, 2020
1 parent 06848a1 commit 843bfa7
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [0.18.0](https://addons.mozilla.org/en-US/firefox/addon/copy-selection-as-markdown/versions/0.18.0) - 2020-05-10

- Copy rich text versionof selection to the clipboard (#60)

## [0.17.1](https://addons.mozilla.org/en-US/firefox/addon/copy-selection-as-markdown/versions/0.17.1) - 2020-05-09

- Update settings text from Append to Prepend (#59) thanks to @clach04
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ Right click and select:
- when user context-clicks in the page: **Copy Title and URL as Markdown**
- when user context-clicks in the link: **Copy Link as Markdown**

Since v0.18.0, rich text (`text/html`) version of the selection will be copied to the clipboard as well. Almost all of users of this extension might be using plain text editor, but it should be useful for using with [Slack](https://slack.com).

## Settings

The add-on have multiple configuration to suit your setup as follows. Set your preference by:
Expand All @@ -45,7 +47,7 @@ The add-on have multiple configuration to suit your setup as follows. Set your p

### General

- Append quote (<code>&gt;</code>) to selection
- Prepend quote (<code>&gt;</code>) to selection
- Include link to source web page in the beginning of copied text
- Enable experimental MathJax support
- Disable link styling (`like this (https://example.com)` instead of `[like this](https://example.com)`)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "copy-selection-as-markdown",
"version": "0.17.1",
"version": "0.18.0",
"scripts": {
"web-ext": "web-ext",
"watch:webextension": "unset WEB_EXT_FIREFOX WEB_EXT_API_KEY WEB_EXT_API_SECRET && web-ext --browser-console --config=web-ext-config.js run",
Expand Down
2 changes: 1 addition & 1 deletion src/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "Copy Selection as Markdown",
"version": "0.17.1",
"version": "0.18.0",
"description": "Copy title, URL, and selection as Markdown",
"icons": {
"48": "icons/extension.svg",
Expand Down

0 comments on commit 843bfa7

Please sign in to comment.