Skip to content

Commit 6df5420

Browse files
committed
Merge remote-tracking branch 'origin/intellij14' into intellij14.1
# Conflicts: # gradle.properties
2 parents d819a59 + 6ecb76f commit 6df5420

14 files changed

Lines changed: 56 additions & 35 deletions

File tree

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,9 @@ Unofficial [IntelliJ Platform](http://www.jetbrains.com/idea/) plugin for the
2121
* Android Studio
2222
* DataGrip
2323
* CLion
24-
* Gogland
24+
* GoLand
2525
* Rider
26+
* MPS
2627

2728
*Compiled with Java 1.6*
2829

@@ -135,6 +136,7 @@ Credits
135136
------
136137
* IntelliJ Github plugin (some code of this plugin is based on its code)
137138

139+
Thanks to [JetBrains](https://www.jetbrains.com/) for providing a free licence for developing this project.
138140

139141
Donations
140142
--------
@@ -147,7 +149,7 @@ Please only use the link from github.com/uwolfer/gerrit-intellij-plugin to verif
147149
Copyright and license
148150
--------------------
149151

150-
Copyright 2013 - 2017 Urs Wolfer
152+
Copyright 2013 - 2018 Urs Wolfer
151153

152154
Licensed under the Apache License, Version 2.0 (the "License");
153155
you may not use this work except in compliance with the License.

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
plugins {
18-
id 'org.jetbrains.intellij' version '0.2.16'
18+
id 'org.jetbrains.intellij' version '0.2.17'
1919
}
2020

2121
apply plugin: 'java'

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ideaVersion=IC-14.1.6
22
ijPluginRepoChannel=
33
downloadIdeaSources=false
4-
version=1.0.4-141
4+
version=1.0.5-141
55
javaVersion=1.6

gradle/wrapper/gradle-wrapper.jar

773 Bytes
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
33
zipStoreBase=GRADLE_USER_HOME
44
zipStorePath=wrapper/dists
5-
distributionUrl=https\://services.gradle.org/distributions/gradle-2.13-bin.zip
5+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-bin.zip

gradlew

Lines changed: 17 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradlew.bat

Lines changed: 0 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main/java/com/urswolfer/intellij/plugin/gerrit/ui/LoginPanel.form

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,10 @@
6464
<grid row="0" column="0" row-span="1" col-span="1" vsize-policy="0" hsize-policy="0" anchor="8" fill="0" indent="0" use-parent-layout="false"/>
6565
</constraints>
6666
<properties>
67-
<text value="URL:"/>
67+
<text value="Web-URL:"/>
6868
</properties>
6969
</component>
70-
<component id="f5630" class="javax.swing.JTextField" binding="hostTextField">
70+
<component id="f5630" class="com.intellij.ui.components.JBTextField" binding="hostTextField">
7171
<constraints>
7272
<grid row="0" column="1" row-span="1" col-span="1" vsize-policy="0" hsize-policy="6" anchor="8" fill="1" indent="0" use-parent-layout="false">
7373
<preferred-size width="150" height="-1"/>

src/main/java/com/urswolfer/intellij/plugin/gerrit/ui/LoginPanel.java

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
package com.urswolfer.intellij.plugin.gerrit.ui;
1919

2020
import com.intellij.ui.DocumentAdapter;
21+
import com.intellij.ui.components.JBTextField;
2122
import com.intellij.util.ui.UIUtil;
2223

2324
import javax.swing.*;
@@ -35,16 +36,18 @@
3536
*/
3637
public class LoginPanel {
3738
public static final String LOGIN_CREDENTIALS_INFO =
38-
"* If logging in with your normal Gerrit login credentials fails, you need to set a HTTP access password" +
39+
"* If login in with your usual Gerrit login credentials fails, you need to set a HTTP access password" +
3940
" for your account in the Gerrit Web Application (Settings > HTTP Password).";
4041

4142
private JPanel pane;
42-
private JTextField hostTextField;
43+
private JBTextField hostTextField;
4344
private JTextField loginTextField;
4445
private JPasswordField passwordField;
4546
private JTextPane gerritLoginInfoTestField;
4647

4748
public LoginPanel(final LoginDialog dialog) {
49+
hostTextField.getEmptyText().setText("https://review.example.org");
50+
4851
hostTextField.addFocusListener(new FocusAdapter() {
4952
@Override
5053
public void focusLost(FocusEvent e) {

src/main/java/com/urswolfer/intellij/plugin/gerrit/ui/SettingsPanel.form

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,10 @@
8787
<grid row="0" column="0" row-span="1" col-span="1" vsize-policy="0" hsize-policy="0" anchor="8" fill="0" indent="0" use-parent-layout="false"/>
8888
</constraints>
8989
<properties>
90-
<text value="URL:"/>
90+
<text value="Web-URL:"/>
9191
</properties>
9292
</component>
93-
<component id="3352a" class="javax.swing.JTextField" binding="hostTextField">
93+
<component id="3352a" class="com.intellij.ui.components.JBTextField" binding="hostTextField">
9494
<constraints>
9595
<grid row="0" column="1" row-span="1" col-span="2" vsize-policy="0" hsize-policy="6" anchor="8" fill="1" indent="0" use-parent-layout="false">
9696
<preferred-size width="150" height="-1"/>

0 commit comments

Comments
 (0)