Skip to content

Commit

Permalink
Fix #212 by removing the duplicate event registration call.
Browse files Browse the repository at this point in the history
  • Loading branch information
groboclown committed Mar 2, 2020
1 parent e66b168 commit 97631a7
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 5 deletions.
12 changes: 12 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
# IDEA Community VCS Integration for Perforce


## ::v0.10.16::

### Overview

* Bug fixes

### Details

* Bug fixes
* Removed a duplicate event registration, which on Android Studio causes the plugin not to load (#212).


## ::v0.10.15::

### Overview
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,6 @@ public <E extends Exception> void onHostConnectionError(@NotNull ServerErrorEven
// }
//});

UserSelectedOfflineMessage.addListener(projectBusClient, this, this::onUserSelectedOffline);
ReconnectRequestMessage.addListener(projectBusClient, this, new ReconnectRequestMessage.Listener() {
@Override
public void reconnectToAllClients(@NotNull ReconnectRequestMessage.ReconnectAllEvent e) {
Expand Down
8 changes: 4 additions & 4 deletions plugin-v3/src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
<idea-plugin>
<name>Perforce IDEA Community Integration</name>
<id>PerforceIC</id>
<version>0.10.15</version>
<version>0.10.16</version>
<!-- see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html -->
<idea-version since-build="171"/>
<category>VCS Integration</category>
<change-notes><![CDATA[
<ul>
<li><em>0.10.16</em><ul
<li>Removed a duplicate event registration, which on Android Studio causes the plugin not to load.</li>
</ul></li>
<li><em>0.10.15</em><ul>
<li>The VCS root directory options now better sets values independently between roots.</li>
<li>Fixed some NPEs caused by certain error and logging conditions.</li>
<li>Normalized the path view in the connections panel for Windows.</li>
<li>Fixed a problem when file locations don't map to a client workspace file.</li>
</ul></li>
<li><em>0.10.13 and 0.10.14</em><ul>
<li>Quick patch to incorrect "add" to a read-only list.</li>
</ul></li>
</ul>
]]></change-notes>
<description><![CDATA[
Expand Down

0 comments on commit 97631a7

Please sign in to comment.