Skip to content

Commit 8f7a74f

Browse files
committed
Release v3.3.0
1 parent 259a43c commit 8f7a74f

File tree

5 files changed

+42
-12
lines changed

5 files changed

+42
-12
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ node_modules/
1515
*.vsix
1616

1717
# Log file
18-
*.log
18+
*.log

.vscodeignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ node_modules/
1414
# YAML files
1515
snippets/*.yaml
1616
syntaxes/*.yaml
17+
language-configuration.yaml
1718
appveyor.yml
1819

1920
# Compiled config
@@ -32,3 +33,6 @@ webpack.config.js
3233

3334
# Packaged extensions
3435
*.vsix
36+
37+
# Log file
38+
*.log

CHANGELOG.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,26 @@ All notable changes to the "Wikitext" extension will be documented in this file.
44

55
(The version marked with an asterisk(&ast;) means that the version has been adjusted internally and has not been released.)<!-- http://keepachangelog.com/ -->
66

7-
## [3.2.4] - 2021-3-18
7+
## [3.3.0] - 2021-05-30
8+
9+
### Added
10+
11+
- Table caption syntax.
12+
- `<ref>` tag synax.
13+
14+
### Changed
15+
16+
- Enhanced URI view page function.
17+
- Some of textmate scopes.
18+
- Turn part of the analysis into a built-in language extension that depends on VSCode such as XML and JSON.
19+
- The extension will be activated when language is set to wikitext to speed up user commands.
20+
- Removed unnecessary assets.
21+
22+
### Fixed
23+
24+
- Errors about XML syntax.
25+
26+
## [3.2.4] - 2021-03-18
827

928
### Added
1029

README.md

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![VSMarket: wikitext](https://img.shields.io/badge/Visual%20Studio%20Market-wikitext-blueviolet)](https://marketplace.visualstudio.com/items?itemName=RoweWilsonFrederiskHolme.wikitext)
66
[![GitHub: wikitext](https://img.shields.io/badge/GitHub-wikitext-green)](https://github.com/Frederisk/Wikitext-VSCode-Extension)
77
[![Build status](https://ci.appveyor.com/api/projects/status/25okygmf42atyvi0?svg=true)](https://ci.appveyor.com/project/Frederisk/wikitext-vscode-extension)
8-
[![GitHub Actions CodeQL](https://github.com/Frederisk/Wikitext-VSCode-Extension/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/Frederisk/Wikitext-VSCode-Extension/actions?query=workflow%3ACodeQL)
8+
[![GitHub Actions CodeQL](https://github.com/Frederisk/Wikitext-VSCode-Extension/actions/workflows/codeql-analysis.yml/badge.svg/)](https://github.com/Frederisk/Wikitext-VSCode-Extension/actions?query=workflow%3ACodeQL)
99
[![CodeFactor Status](https://www.codefactor.io/repository/github/frederisk/wikitext-vscode-extension/badge)](https://www.codefactor.io/repository/github/frederisk/wikitext-vscode-extension)
1010
[![Patreon Donate](https://img.shields.io/badge/donate-patreon-orange)](https://www.patreon.com/rwfholme)
1111

@@ -43,6 +43,17 @@ If you get help with this project, give this project a star or recommend it to o
4343

4444
- Browse the page by entering the page name. Press `F1` then select `View the page`.
4545

46+
## Release Notes
47+
48+
- Removed unnecessary assets, The size of the installation file is now ⅒ the original size!
49+
- Enhanced URI view page function.
50+
- Added Table caption syntax.
51+
- Added `<ref>` tag synax.
52+
- Fixed errors about XML syntax.
53+
- Turn part of the synax analysis into a built-in language extension that depends on VSCode such as XML and JSON.
54+
- Changed some of textmate scopes.
55+
- The extension will be activated when language is set to wikitext to speed up user commands.
56+
4657
## Usage
4758

4859
### Usage Requirements
@@ -63,22 +74,17 @@ Firstly, clone this repository and change directory to the repository, then inst
6374

6475
```bash
6576
npm install yarn vsce -g # VS Code Extension Manager
66-
yarn # devDependencies
77+
yarn install # Install devDependencies
6778
```
6879

69-
Package this project and you will get a vsix file:
80+
Package this project and you will get a .vsix file:
7081

7182
```bash
72-
vsce package
83+
vsce package --yarn # Package Extension with yarn
7384
```
7485

7586
This is it!
7687

77-
## Release Notes
78-
79-
- Added more snippets and auto closing pairs.
80-
- Provided CSS adjustment support for Perviewer.
81-
8288
## Special Thanks
8389

8490
- [caltaojihun](https://github.com/caltaojihun)

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "wikitext",
33
"displayName": "Wikitext",
44
"description": "Wikitext is a document written in a wiki markup language. This extension provides functional support for the Wikitext language with MediaWiki such as Wikipedia.",
5-
"version": "3.2.4",
5+
"version": "3.3.0",
66
"publisher": "RoweWilsonFrederiskHolme",
77
"license": "SEE LICENSE IN LICENSE.txt",
88
"author": {
@@ -38,6 +38,7 @@
3838
"onCommand:wikitext.writePage",
3939
"onCommand:wikitext.viewPage",
4040
"onCommand:wikitext.citeWeb",
41+
"onLanguage:wikitext",
4142
"onUri"
4243
],
4344
"main": "./dist/extension",

0 commit comments

Comments
 (0)