Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.5.7 #183

Merged
merged 3 commits into from
May 12, 2024
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
5 changes: 5 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"recommendations": [
"RedCMD.tmlanguage-syntax-highlighter",
]
}
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,6 @@
"Technote",
"unstage",
"userid"
]
],
"tmlanguage-syntax-highlighter.formattingStyle": "tight"
}
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

# v0.5.7

### What's New

- add github/git export in a wizard-like style

### Bug Fix

- simplify and fixed minor issues in pikchr syntax highlighting


# v0.5.6

### What's New
Expand Down
2 changes: 1 addition & 1 deletion docs/dev/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
1. Run tests: `npm run test`
1. Remove out directory: `rm -rf out`
1. Create package (.vsix file): `npm run package`
1. Ensure all files are there: `unzip -l fossil-#.#.#.vsix`. There should only be TWO .js files.
1. Ensure all files are there: `unzip -l fossil-#.#.#.vsix`. There should be FOUR .js files.


## Make commits
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"bugs": {
"url": "https://github.com/koog1000/vscode-fossil/issues"
},
"version": "0.5.6",
"version": "0.5.7",
"engines": {
"vscode": "^1.36.0"
},
Expand Down
24 changes: 5 additions & 19 deletions pikchr/codeblock.pikchr.tmLanguage.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,29 +12,15 @@
"begin": "(^|\\G)(\\s*)(.*)",
"while": "(^|\\G)(?!\\s*([`~]{3,})\\s*$)",
"contentName": "meta.embedded.block.pikchr",
"patterns": [
{
"include": "source.pikchr"
}
]
"patterns": [{"include": "source.pikchr"}]
}
],
"beginCaptures": {
"3": {
"name": "punctuation.definition.markdown"
},
"4": {
"name": "fenced_code.block.language.markdown"
},
"5": {
"name": "fenced_code.block.language.attributes.markdown"
}
"3": {"name": "punctuation.definition.markdown"},
"4": {"name": "fenced_code.block.language.markdown"},
"5": {"name": "fenced_code.block.language.attributes.markdown"}
},
"endCaptures": {
"1": {
"name": "punctuation.definition.markdown"
}
}
"endCaptures": {"1": {"name": "punctuation.definition.markdown"}}
}
],
"scopeName": "markdown.pikchr.codeblock"
Expand Down
Loading