Skip to content

Commit bb4bc69

Browse files
authored
1.0.10 release (#15)
1 parent 386cf43 commit bb4bc69

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

addon/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"manifest_version": 2,
33
"name": "Advent of Code to Markdown",
4-
"version": "1.0.9",
4+
"version": "1.0.10",
55
"description": "Converts a given Advent of Code page to a GitHub-compatible Markdown file.",
66
"icons": {
77
"16": "icons/aoc-to-markdown-16.png",

background_scripts/background.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ browser.tabs.onUpdated.addListener((id, changeInfo, tab) => {
1919

2020
browser.runtime.onMessage.addListener((message) => {
2121
if (message.action === "saveAs") {
22-
const blob = new Blob([message.text], { type: "text/plain;charset=utf-8" });
22+
const blob = new Blob([message.text], { type: "text/markdown;charset=utf-8" });
2323

2424
browser.downloads.download({
2525
url: URL.createObjectURL(blob),

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aoc-to-markdown",
3-
"version": "1.0.9",
3+
"version": "1.0.10",
44
"description": "Converts a given Advent of Code page to a GitHub-compatible Markdown file.",
55
"scripts": {
66
"build": "webpack && web-ext build -s addon --overwrite-dest",

0 commit comments

Comments
 (0)