Skip to content

Commit

Permalink
Merge pull request #2056 from Hannah-Sten/b0.7.10
Browse files Browse the repository at this point in the history
Release 0.7.10
  • Loading branch information
PHPirates authored Sep 1, 2021
2 parents caf5fa0 + 4056494 commit 333623d
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 25 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ plugins {
}

group = "nl.hannahsten"
version = "0.7.10-alpha.2"
version = "0.7.10"

repositories {
mavenCentral()
Expand Down
35 changes: 14 additions & 21 deletions resources/META-INF/description-changenotes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@

<!-- Changelog -->
<change-notes><![CDATA[
<p><strong>Beta 0.7.9</strong></p>
<p><strong>Beta 0.7.10</strong></p>
<p>
Welcome to TeXiFy IDEA 0.7.9! This release fixes some crashes that appeared in IDEA 2021.2, and has some minor improvements.
Welcome to TeXiFy IDEA 0.7.10! This release implements a new 'fill paragraph' action, fixes some false positives in inspections and has some more bug fixes.
<p>
<p>
We thank everyone who submitted issues and provided feedback to make TeXiFy IDEA better.
Expand All @@ -55,33 +55,26 @@
<em>Additions</em>
</p>
<ul>
<li> Support optional parameter for \lstinline in parser. (<a href="https://github.com/Hannah-Sten/TeXiFy-IDEA/issues/1989">#1989</a>)</li>
<li> Improve update warning when submitting a crash report. (<a href="https://github.com/Hannah-Sten/TeXiFy-IDEA/issues/1994">#1994</a>)</li>
<li> Add 'fill paragraph' action. (<a href="https://github.com/Hannah-Sten/TeXiFy-IDEA/issues/2032">#2032</a>)</li>
<li> Remember resource folder in 'Save image from clipboard' dialog. (<a href="https://github.com/Hannah-Sten/TeXiFy-IDEA/issues/2047">#2047</a>)</li>
<li> Fold dashes in editor. (<a href="https://github.com/Hannah-Sten/TeXiFy-IDEA/issues/2050">#2050</a>)</li>
</ul>
<br>
<!-- <p>-->
<!-- <em>Changes</em>-->
<!-- </p>-->
<!-- <ul>-->
<!-- <li> Ignore permission problems when extracting package zips on Windows. (<a href="https://github.com/Hannah-Sten/TeXiFy-IDEA/issues/1894"><a href="https://github.com/Hannah-Sten/TeXiFy-IDEA/issues/1894">#1894</a></a>)</li>-->
<!-- </ul>-->
<!-- <br>-->
<p>
<em>Bug fixes</em>
</p>
<ul>
<li> Fix exception when pasting unsupported images. (<a href="https://github.com/Hannah-Sten/TeXiFy-IDEA/issues/1983">#1983</a>)</li>
<li> Fix invalid stealthy ranges for Grazie. (<a href="https://github.com/Hannah-Sten/TeXiFy-IDEA/issues/1985">#1985</a>)</li>
<li> Remove empty tooltip. (<a href="https://github.com/Hannah-Sten/TeXiFy-IDEA/issues/1985">#1985</a>)</li>
<li> Fix crash related to plugin descriptor. (<a href="https://github.com/Hannah-Sten/TeXiFy-IDEA/issues/1989">#1989</a>)</li>
<li> Fix false positive for unicode inspection. (<a href="https://github.com/Hannah-Sten/TeXiFy-IDEA/issues/1989">#1989</a>)</li>
<li> The tectonic executable should never be prefixed with the SDK directory. (<a href="https://github.com/Hannah-Sten/TeXiFy-IDEA/issues/1999">#1999</a>)</li>
<li> Also show error output when the command to compile the preview times out. (<a href="https://github.com/Hannah-Sten/TeXiFy-IDEA/issues/2015">#2015</a>)</li>
<li> Add live templates for generic environments with parameters. (<a href="https://github.com/Hannah-Sten/TeXiFy-IDEA/issues/2043">#2043</a>)</li>
<li> Fix false positives about unescaped or duplicate labels in \(re)newenvironment. (<a href="https://github.com/Hannah-Sten/TeXiFy-IDEA/issues/2045">#2045</a>)</li>
<li> Fix incorrect whitespacing before section command in command definition. (<a href="https://github.com/Hannah-Sten/TeXiFy-IDEA/issues/2051">#2051</a>)</li>
<li> Fix other crashes. (<a href="https://github.com/Hannah-Sten/TeXiFy-IDEA/issues/2050">#2050</a>)</li>
</ul>
<br>
<!-- <p>-->
<!-- Thanks to ... for contributing to this release.-->
<!-- </p>-->
<!-- <br>-->
<p>
Thanks to F.W. Dekker for contributing to this release!
</p>
<br>
<p>
The full list of releases is available on the <a href="https://github.com/Hannah-Sten/TeXiFy-IDEA/releases">GitHub releases page</a>.
</p>
Expand Down
2 changes: 1 addition & 1 deletion resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<!-- Plugin information -->
<id>nl.rubensten.texifyidea</id>
<name>TeXiFy IDEA</name>
<version>0.7.8</version>
<version>0.x.x</version>
<!--
Info about build ranges: https://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html
Note that an xyz branch corresponds to version 20xy.z and a since build of xyz.*
Expand Down
2 changes: 1 addition & 1 deletion resources/nl/hannahsten/texifyidea/packages/package.list

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/nl/hannahsten/texifyidea/LatexParserDefinition.kt
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class LatexParserDefinition : ParserDefinition {
val FILE: IStubFileElementType<*> = object : IStubFileElementType<LatexFileStub>(
Language.findInstance(LatexLanguage::class.java)
) {
override fun getStubVersion(): Int = 29
override fun getStubVersion(): Int = 30
}
}

Expand Down

0 comments on commit 333623d

Please sign in to comment.