Skip to content

Commit

Permalink
Prepare for 0.8.4-beta.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
groboclown committed Mar 4, 2017
1 parent 86cbea3 commit f607b9a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@
thread and into the background.
* Fixed the reload buttons to be disabled while the process is running.
* Moved the client name field spinner to be consistent with the rest of the UI.
* Changed validation check for the server configuration and the client
configuration so it now reports a warning rather than throwing an
error (#144).
* Added validation check to ensure client name is not purely numeric.
* Temporarily disabled the client name refresh button until that's all worked out.

Expand Down
6 changes: 5 additions & 1 deletion plugin/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<idea-plugin version="2">
<name>Perforce IDEA Community Integration</name>
<id>PerforceIC</id>
<version>0.8.4-beta.1</version>
<version>0.8.4-beta.2</version>
<idea-version since-build="IC-135.1286"/>
<category>VCS Integration</category>
<change-notes><![CDATA[
Expand All @@ -21,7 +21,11 @@
thread and into the background.</li>
<li>Fixed the reload buttons to be disabled while the process is running.</li>
<li>Moved the client name field spinner to be consistent with the rest of the UI.</li>
<li>Changed validation check for the server configuration and the client
configuration so it now reports a warning rather than throwing an
error.</li>
<li>Added validation check to ensure client name is not purely numeric.</li>
<li>Temporarily disabled the client name refresh button until that's all worked out.</li>
</ol>
</li>
<li><em>0.8.3</em>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -375,8 +375,9 @@ private static class ClientServerSetup {
private ClientServerSetup(@Nullable ServerConfig serverConfig, @NotNull MultipleDataPart dataPart,
@NotNull VirtualFile path) {
if (serverConfig != null && ! serverConfig.isSameServer(dataPart)) {
LOG.error("Server config " + serverConfig + " does not match " +
ConfigPropertiesUtil.toProperties(dataPart));
LOG.warn("Server config " + serverConfig + " does not match "
+ ConfigPropertiesUtil.toProperties(dataPart) + ". Turn on debugging for category #"
+ ServerConfig.class.getName() + " to understand where the mismatch occurred.");
}
if (LOG.isDebugEnabled() && serverConfig == null) {
LOG.debug("Created ClientServerSetup with null server config for " +
Expand Down

0 comments on commit f607b9a

Please sign in to comment.