Skip to content
This repository has been archived by the owner on Feb 4, 2020. It is now read-only.

Commit

Permalink
Releasing 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
attilabuti committed Oct 28, 2018
1 parent ecac8ec commit 9633d86
Show file tree
Hide file tree
Showing 27 changed files with 2,175 additions and 1,190 deletions.
20 changes: 20 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
root = true

[*]
charset = utf-8
end_of_line = lf
indent_style = space
insert_final_newline = true
tab_width = 4
trim_trailing_whitespace = true

[*.json]
insert_final_newline = false

[*.{gif,gitignore,html,jpeg,jpg,md,png,svg,vscodeignore}]
insert_final_newline = false
trim_trailing_whitespace = false

[LICENSE]
insert_final_newline = false
trim_trailing_whitespace = false
17 changes: 9 additions & 8 deletions .vscodeignore
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
.vscode/**
typings/**
out/test/**
test/**
src/**
**/*.map
.gitignore
images/**/*.gif
.vscode/**
documentation/**
!documentation/examples/*
!documentation/images/*
!documentation/documentation.html
images/**/*.gif
out/test/**
src/**
typings/**
test/**
.editorconfig
.gitignore
ISSUE_TEMPLATE.md
tsconfig.json
vsc-extension-quickstart.md
tslint.json
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
All notable changes to the "mjml" extension will be documented in this file.
This project adheres to [Semantic Versioning](https://semver.org/).

### [1.6.0] (2018-10-28)
* [new] Configuration property `mjml.templateGallery`: Show the template gallery instead of quick pick.
* [new] Configuration property `mjml.templateGalleryAutoClose`: Automatically close template gallery when selecting a template.
* [#42](https://github.com/attilabuti/vscode-mjml/issues/42) [#43](https://github.com/attilabuti/vscode-mjml/issues/43): fixed beautify issues.
* [new] [#47](https://github.com/attilabuti/vscode-mjml/issues/47) `MJML: Version`: Shows the version of MJML.
* .mjmlconfig is working again.
* MJML 4.2.0
* Other improvements and bugfixes.

### [1.5.1] (2018-10-03)
* [#41](https://github.com/attilabuti/vscode-mjml/issues/41): fixed preview issue.
* [#40](https://github.com/attilabuti/vscode-mjml/issues/40): fixed comment issue.
Expand Down
35 changes: 35 additions & 0 deletions ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
Before you open an issue, please check if a similar issue already exists or has been closed before.

## Expected behavior

Please provide a description of the behavior you expect.

## Actual behavior

Please provide a description of the actual behavior you observe.

## Steps to reproduce the problem

1.
1.
1.

## Code sample

```
Please provide a code snippet.
```

## Screenshot / GIF

Please attach screenshot/gif if you consider them as helpful to understand/reproduce the issue.

## Specifications

- VS Code version:
- MJML extension version:
- Operating system and version:

## Other information

List any other information that is relevant to your issue.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ The following command is available:
* **MJML: Template** Fetch official templates.
* **MJML: Documentation** open the MJML documentation.
* **MJML: Search in MJML documentation** search for the selected mj-element in the MJML documentation.
* **MJML: Version** Shows the version of MJML.

## Settings

Expand Down Expand Up @@ -78,6 +79,8 @@ The following command is available:
| `mjml.previewBackgroundColor` | ` ` | Preview background color. |
| `mjml.autoClosePreview` | `true` | Automatically close preview when all open MJML documents have been closed. |
| `mjml.showSaveDialog` | `false` | Show the save as dialog instead of input box. |
| `mjml.templateGallery` | `false` | Show the template gallery instead of quick pick. |
| `mjml.templateGalleryAutoClose` | `true` | Automatically close template gallery when selecting a template. |

## Snippets

Expand Down Expand Up @@ -159,6 +162,15 @@ Please see the [Nodemailer](https://nodemailer.com) documentation for more infor

## Change Log

### [1.6.0] (2018-10-28)
* [new] Configuration property `mjml.templateGallery`: Show the template gallery instead of quick pick.
* [new] Configuration property `mjml.templateGalleryAutoClose`: Automatically close template gallery when selecting a template.
* [#42](https://github.com/attilabuti/vscode-mjml/issues/42) [#43](https://github.com/attilabuti/vscode-mjml/issues/43): fixed beautify issues.
* [new] [#47](https://github.com/attilabuti/vscode-mjml/issues/47) `MJML: Version`: Shows the version of MJML.
* .mjmlconfig is working again.
* MJML 4.2.0
* Other improvements and bugfixes.

### [1.5.1] (2018-10-03)
* [#41](https://github.com/attilabuti/vscode-mjml/issues/41): fixed preview issue.
* [#40](https://github.com/attilabuti/vscode-mjml/issues/40): fixed comment issue.
Expand Down
4 changes: 2 additions & 2 deletions documentation/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
import * as fs from "fs";
import * as path from "path";

import * as fetch from "node-fetch";
import * as hljs from "highlight.js";
import * as fetch from "node-fetch";

const md = require("markdown-it")({
html: true,
Expand Down Expand Up @@ -247,4 +247,4 @@ async function tryItLive(html: string): Promise<string> {
return html;
}

run();
run();
Loading

0 comments on commit 9633d86

Please sign in to comment.