Skip to content

Commit a88a0f9

Browse files
authored
Merge pull request #13 from denco/0.1.5
0.1.5
2 parents c70d292 + 83cc325 commit a88a0f9

File tree

13 files changed

+271
-178
lines changed

13 files changed

+271
-178
lines changed

.vscode/launch.json

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.1.0",
44
"configurations": [
55
{
6-
"name": "Extension",
6+
"name": "Debug extension Extension",
77
"type": "extensionHost",
88
"request": "launch",
99
"runtimeExecutable": "${execPath}",
@@ -17,6 +17,22 @@
1717
],
1818
"preLaunchTask": "npm: watch"
1919
},
20+
{
21+
"name": "Debug extension OSS",
22+
"type": "extensionHost",
23+
"request": "launch",
24+
// path to VSCode executable
25+
"runtimeExecutable": "${execPath}",
26+
"args": [
27+
"/usr/lib/code/",
28+
"--extensionDevelopmentPath=${workspaceRoot}",
29+
"${workspaceRoot}/src/test/testfiles/",
30+
],
31+
"stopOnEntry": false,
32+
"sourceMaps": true,
33+
"outFiles": ["${workspaceRoot}/out"],
34+
"preLaunchTask": "npm: watch"
35+
},
2036
{
2137
"name": "Extension Tests",
2238
"type": "extensionHost",

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Confluence Wiki Markup
22

3+
## 0.1.5
4+
* use webview api for rendering in vscode 1.33.x
5+
* refactor confluence snippets
6+
* new logo
7+
* preview unsaved files
8+
39
## 0.1.4
410
* fix [List indenting @win](https://github.com/denco/vscode-confluence-markup/issues/6)
511
* restructure

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,15 @@
77

88
Adds syntax highlighting, snippets and preview for Confluence® Wiki files in Visual Studio Code.
99

10-
Adds Preview for Confluence Markup while editing them in VSCode
10+
Preview for Confluence Markup while editing them in VSCode
11+
12+
LanguageID: `confluence`
13+
14+
Defaulft supported file extentions:
15+
- `.confluence`
16+
- `.wiki`
17+
- `.jira`
18+
- `.markup`
1119

1220
The extension can be activated in two ways
1321

media/logo/confluence-markup.png

19.3 KB
Loading

package.json

Lines changed: 19 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "confluence-markup",
33
"displayName": "Confluence markup",
4-
"version": "0.1.4",
4+
"version": "0.1.5",
55
"publisher": "denco",
66
"description": "Confluence markup language support for Visual Studio Code",
77
"keywords": [
@@ -30,7 +30,7 @@
3030
"license": "MIT",
3131
"homepage": "https://github.com/denco/vscode-confluence-markup/blob/master/README.md",
3232
"engines": {
33-
"vscode": "^1.20.0"
33+
"vscode": "^1.25.0"
3434
},
3535
"activationEvents": [
3636
"onCommand:confluence.showPreview",
@@ -46,11 +46,13 @@
4646
"Confluence",
4747
"markup",
4848
"wiki",
49+
"jira",
4950
"Confluence Markup"
5051
],
5152
"extensions": [
5253
".confluence",
5354
".wiki",
55+
".jira",
5456
".markup"
5557
],
5658
"configuration": "./language-configuration.json"
@@ -74,13 +76,13 @@
7476
"command": "confluence.showPreview",
7577
"key": "ctrl+shift+v",
7678
"mac": "cmd+shift+v",
77-
"when": "resourceLangId == confluence"
79+
"when": "editorLangId == confluence"
7880
},
7981
{
8082
"command": "confluence.showPreviewToSide",
8183
"key": "ctrl+k v",
8284
"mac": "cmd+k v",
83-
"when": "resourceLangId == confluence"
85+
"when": "editorLangId == confluence"
8486
}
8587
],
8688
"commands": [
@@ -99,11 +101,11 @@
99101
"editor/title": [
100102
{
101103
"command": "confluence.showPreview",
102-
"when": "resourceLangId == confluence"
104+
"when": "editorLangId == confluence"
103105
},
104106
{
105107
"command": "confluence.showPreviewToSide",
106-
"when": "resourceLangId == confluence"
108+
"when": "editorLangId == confluence"
107109
}
108110
]
109111
}
@@ -113,16 +115,19 @@
113115
"compile": "tsc -p ./",
114116
"watch": "tsc -watch -p ./",
115117
"postinstall": "node ./node_modules/vscode/bin/install",
116-
"test": "npm run compile && node ./node_modules/vscode/bin/test"
118+
"test": "npm run compile && node ./node_modules/vscode/bin/test",
119+
"package": "./node_modules/.bin/vsce package",
120+
"clean": "rm -rfv ./out",
121+
"clean-all": "rm ./confluence-markup*.vsix; rm -rf ./.vscode-test; rm -rfv ./out; rm -rfv ./node_modules"
117122
},
118123
"devDependencies": {
119-
"@types/mocha": "^5.2.5",
120-
"@types/node": "^10.10.1",
121-
"eslint": "^5.6.0",
122-
"tslint": "^5.11.0",
123-
"typescript": "^3.0.3",
124-
"vsce": "^1.51.0",
125-
"vscode": "^1.1.21"
124+
"@types/mocha": "^5.2.6",
125+
"@types/node": "^11.13.9",
126+
"eslint": "^5.16.0",
127+
"tslint": "^5.16.0",
128+
"typescript": "^3.3.0",
129+
"vsce": "^1.60.0",
130+
"vscode": "^1.1.23"
126131
},
127132
"__metadata": {
128133
"publisherDisplayName": "denco"

0 commit comments

Comments
 (0)