Skip to content

Commit

Permalink
Release v3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Frederisk committed May 30, 2021
1 parent 259a43c commit 8f7a74f
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ node_modules/
*.vsix

# Log file
*.log
*.log
4 changes: 4 additions & 0 deletions .vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ node_modules/
# YAML files
snippets/*.yaml
syntaxes/*.yaml
language-configuration.yaml
appveyor.yml

# Compiled config
Expand All @@ -32,3 +33,6 @@ webpack.config.js

# Packaged extensions
*.vsix

# Log file
*.log
21 changes: 20 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,26 @@ All notable changes to the "Wikitext" extension will be documented in this file.

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

## [3.2.4] - 2021-3-18
## [3.3.0] - 2021-05-30

### Added

- Table caption syntax.
- `<ref>` tag synax.

### Changed

- Enhanced URI view page function.
- Some of textmate scopes.
- Turn part of the analysis into a built-in language extension that depends on VSCode such as XML and JSON.
- The extension will be activated when language is set to wikitext to speed up user commands.
- Removed unnecessary assets.

### Fixed

- Errors about XML syntax.

## [3.2.4] - 2021-03-18

### Added

Expand Down
24 changes: 15 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[![VSMarket: wikitext](https://img.shields.io/badge/Visual%20Studio%20Market-wikitext-blueviolet)](https://marketplace.visualstudio.com/items?itemName=RoweWilsonFrederiskHolme.wikitext)
[![GitHub: wikitext](https://img.shields.io/badge/GitHub-wikitext-green)](https://github.com/Frederisk/Wikitext-VSCode-Extension)
[![Build status](https://ci.appveyor.com/api/projects/status/25okygmf42atyvi0?svg=true)](https://ci.appveyor.com/project/Frederisk/wikitext-vscode-extension)
[![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)
[![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)
[![CodeFactor Status](https://www.codefactor.io/repository/github/frederisk/wikitext-vscode-extension/badge)](https://www.codefactor.io/repository/github/frederisk/wikitext-vscode-extension)
[![Patreon Donate](https://img.shields.io/badge/donate-patreon-orange)](https://www.patreon.com/rwfholme)

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

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

## Release Notes

- Removed unnecessary assets, The size of the installation file is now ⅒ the original size!
- Enhanced URI view page function.
- Added Table caption syntax.
- Added `<ref>` tag synax.
- Fixed errors about XML syntax.
- Turn part of the synax analysis into a built-in language extension that depends on VSCode such as XML and JSON.
- Changed some of textmate scopes.
- The extension will be activated when language is set to wikitext to speed up user commands.

## Usage

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

```bash
npm install yarn vsce -g # VS Code Extension Manager
yarn # devDependencies
yarn install # Install devDependencies
```

Package this project and you will get a vsix file:
Package this project and you will get a .vsix file:

```bash
vsce package
vsce package --yarn # Package Extension with yarn
```

This is it!

## Release Notes

- Added more snippets and auto closing pairs.
- Provided CSS adjustment support for Perviewer.

## Special Thanks

- [caltaojihun](https://github.com/caltaojihun)
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "wikitext",
"displayName": "Wikitext",
"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.",
"version": "3.2.4",
"version": "3.3.0",
"publisher": "RoweWilsonFrederiskHolme",
"license": "SEE LICENSE IN LICENSE.txt",
"author": {
Expand Down Expand Up @@ -38,6 +38,7 @@
"onCommand:wikitext.writePage",
"onCommand:wikitext.viewPage",
"onCommand:wikitext.citeWeb",
"onLanguage:wikitext",
"onUri"
],
"main": "./dist/extension",
Expand Down

0 comments on commit 8f7a74f

Please sign in to comment.