Skip to content

Commit bb754d6

Browse files
committed
Update CHANGELOG and plugin metadata
1 parent bd81443 commit bb754d6

File tree

3 files changed

+20
-19
lines changed

3 files changed

+20
-19
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,20 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0).
66

77
This plugin has functionality that is common to both ReSharper and Rider. It also contains a plugin for the Unity editor that is used to communicate with Rider. Changes marked with a "Rider:" prefix are specific to Rider, while changes for the Unity editor plugin are marked with a "Unity editor:" prefix. No prefix means that the change is common to both Rider and ReSharper.
88

9+
## 2019.3.2
10+
* [Commits](https://github.com/JetBrains/resharper-unity/compare/net193-eap7-rtm-2019.3.0-rtm-2019.3.1...net193-eap8-rtm-2019.3.2)
11+
* [Milestone](https://github.com/JetBrains/resharper-unity/milestone/34?closed=1)
12+
13+
### Changed
14+
15+
- Unity Editor: Find Usages window now allows replacing current open scene ([#1479](https://github.com/JetBrains/resharper-unity/issues/1479), [#1480](https://github.com/JetBrains/resharper-unity/pull/1480))
16+
17+
### Fixed
18+
19+
- Avoid creating meta files outside of Asset or Packages folders ([#1489](https://github.com/JetBrains/resharper-unity/issues/1489), [#1491](https://github.com/JetBrains/resharper-unity/pull/1491))
20+
21+
22+
923
## 2019.3.1
1024
* [Commits](https://github.com/JetBrains/resharper-unity/compare/net193-eap7-rtm-2019.3.0...net193-eap7-rtm-2019.3.0-rtm-2019.3.1)
1125
* [Milestone](https://github.com/JetBrains/resharper-unity/milestone/33?closed=1)

resharper/resharper-unity/src/resharper-unity.resharper.nuspec

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,11 @@
3434
- And much more!
3535
</description>
3636
<releaseNotes>
37-
New in 2019.3.1
37+
New in 2019.3.2
3838

3939
Fixed:
4040
- Fix usage count for custom event based event handlers in Unity 2018.4+ (#1448, #1449)
41+
- Avoid creating meta files outside of Asset or Packages folders (#1489, #1491)
4142

4243
See CHANGELOG.md in the JetBrains/resharper-unity GitHub repo for more details and history.
4344
</releaseNotes>

rider/src/main/resources/META-INF/plugin.xml

Lines changed: 4 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -262,29 +262,15 @@
262262
<change-notes>
263263
<![CDATA[
264264
<p>
265-
<strong>New in 2019.3.1</strong>
266-
<em>Added:</em>
267-
<ul>
268-
<li>Add proper file icons for <tt>*.uxml</tt> and <tt>*.uss</tt> files (<a href="https://youtrack.jetbrains.com/issue/RIDER-34788">RIDER-34788</a>, <a href="https://github.com/JetBrains/resharper-unity/pull/1443">#1443</a>)</li>
269-
</ul>
265+
<strong>New in 2019.3.2</strong>
270266
<em>Changed:</em>
271267
<ul>
272-
<li>Entire plugin is no longer disabled if the CSS plugin is disabled (<a href="https://youtrack.jetbrains.com/issue/RIDER-36523">RIDER-36523</a>, <a href="https://github.com/JetBrains/resharper-unity/pull/1443">#1443</a>)</li>
273-
<li>Rider: Make Attach to Unity Process dialog resizable (<a href="https://github.com/JetBrains/resharper-unity/issues/1446">#1446</a>, <a href="https://github.com/JetBrains/resharper-unity/pull/1450">#1450</a>)</li>
274-
<li>Rider: Identify child processes by role in Attach to Unity Process dialog (<a href="https://github.com/JetBrains/resharper-unity/issues/1328">#1328</a>, <a href="https://github.com/JetBrains/resharper-unity/pull/1450">#1450</a>)</li>
275-
</ul>
276-
<em>Fixed:</em>
277-
<ul>
278-
<li>Rider: Show correct project name when Unity started with certain command line on Windows (<a href="https://github.com/JetBrains/resharper-unity/pull/1450">#1450</a>)</li>
279-
<li>Rider: Show correct project name when multiple Unity processes listed in Attach to Process popup list (<a href="https://github.com/JetBrains/resharper-unity/issues/1456">#1456</a>, <a href="https://github.com/JetBrains/resharper-unity/pull/1450">#1450</a>)</li>
280-
<li>Rider: Fix exception in Attach to Unity Process dialog causing list to be empty (<a href="https://github.com/JetBrains/resharper-unity/issues/1454">#1454</a>, <a href="https://github.com/JetBrains/resharper-unity/pull/1450">#1450</a>)</li>
281-
<li>Rider: Show run configuration dialog for Unity class library projects (<a href="https://github.com/JetBrains/resharper-unity/issues/1445">#1445</a>, <a href="https://github.com/JetBrains/resharper-unity/pull/1450">#1450</a>)</li>
282-
<li>Rider: Fix finding existing Unity instance to debug (<a href="https://youtrack.jetbrains.com/issue/RIDER-36256">RIDER-36256</a>, <a href="https://github.com/JetBrains/resharper-unity/pull/1450">#1450</a>)</li>
283-
<li>Rider: Fix <tt>EditorInstance.json</tt> being locked by Rider (<a href="https://github.com/JetBrains/resharper-unity/pull/1450">#1450</a>)</li>
268+
<li>Unity Editor: Find Usages window now allows replacing current open scene (<a href="https://github.com/JetBrains/resharper-unity/issues/1479">#1479</a>, <a hreff="https://github.com/JetBrains/resharper-unity/pull/1480">#1480</a>)</li>
284269
</ul>
270+
</p>
285271
<em>Fixed:</em>
286272
<ul>
287-
<li>Fix usage count for custom event based event handlers in Unity 2018.4+ (<a href="https://github.com/JetBrains/resharper-unity/issues/1448">#1448</a>, <a href="https://github.com/JetBrains/resharper-unity/pull/1449">#1449</a>)</li>
273+
<li>Avoid creating meta files outside of Asset or Packages folders (<a href="https://github.com/JetBrains/resharper-unity/issues/1489">#1489</a>, <a href="https://github.com/JetBrains/resharper-unity/pull/1491">#1491</a>)</li>
288274
</ul>
289275
</p>
290276
<p>See the <a href="https://github.com/JetBrains/resharper-unity/blob/net193/CHANGELOG.md">CHANGELOG</a> for more details and history.</p>

0 commit comments

Comments
 (0)