Skip to content

Commit

Permalink
docs: Prepare for 1.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Timo Reymann authored and Timo Reymann committed Apr 23, 2021
1 parent e1af73d commit 2b6b461
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
]]></description>
<change-notes><![CDATA[
<ul>
<li>TBD
<li>1.8.0
<ul>
<li>Add support for es6 custom components</li>
<li>Add support for custom TypeScript components using <a href="https://github.com/timo-reymann/mjml-custom-component-decorator">mjml-custom-component-decorator</a></li>
Expand All @@ -46,6 +46,7 @@
<li>Add gutter icon for custom component usage</li>
<li>Add boolean properties</li>
<li>Add loading progress for copying preview files</li>
<li>Invalid attribute values are now treated as warnings to prevent custom template engines etc. built on top of mjml to highlight as error</li>
</ul>
</li>
<li>1.7.0
Expand Down
2 changes: 1 addition & 1 deletion testData/inspection/color/emptyColor.mjml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<mj-section
<error descr="Invalid color specification, either the color name, hex or rgb notation can be used">background-color="a"</error>
<warning descr="Invalid color specification, either the color name, hex or rgb notation can be used">background-color="a"</warning>
></mj-section>
2 changes: 1 addition & 1 deletion testData/inspection/color/invalidColorName.mjml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<mj-section
<error descr="Invalid color specification, either the color name, hex or rgb notation can be used">background-color="reeed"</error>
<warning descr="Invalid color specification, either the color name, hex or rgb notation can be used">background-color="reeed"</warning>
></mj-section>
2 changes: 1 addition & 1 deletion testData/inspection/color/invalidHexColor.mjml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<mj-section
<error descr="Invalid color specification, either the color name, hex or rgb notation can be used">background-color="#ff"</error>
<warning descr="Invalid color specification, either the color name, hex or rgb notation can be used">background-color="#ff"</warning>
></mj-section>
2 changes: 1 addition & 1 deletion testData/inspection/path/invalidMjmlFile.mjml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<mj-include
<error descr="_include.txt is not resolving to a valid mjml file">path="_include.txt"</error>
<warning descr="_include.txt is not resolving to a valid mjml file">path="_include.txt"</warning>
/>
2 changes: 1 addition & 1 deletion testData/inspection/path/nonExistingPath.mjml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<mj-include <error descr="nonExistent.mjml is not resolving to a valid mjml file">path="nonExistent.mjml"</error> />
<mj-include <warning descr="nonExistent.mjml is not resolving to a valid mjml file">path="nonExistent.mjml"</warning> />

0 comments on commit 2b6b461

Please sign in to comment.