Skip to content

Commit 10f8b6d

Browse files
committed
Moving LICENSE file to root directory and preparing for 3.1.4 release
1 parent f3db1d0 commit 10f8b6d

51 files changed

Lines changed: 89 additions & 84 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

AutoComplete/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ assert current().isJava8Compatible()
1111
archivesBaseName = 'autocomplete'
1212

1313
dependencies {
14-
api 'com.fifesoft:rsyntaxtextarea:3.1.4'
14+
api 'com.fifesoft:rsyntaxtextarea:3.1.6'
1515
}
1616

1717
ext.isReleaseVersion = !project.version.endsWith('SNAPSHOT')
@@ -70,7 +70,7 @@ publishing {
7070
licenses {
7171
license {
7272
name = 'BSD-3-Clause'
73-
url = 'https://github.com/bobbylight/AutoComplete/blob/master/AutoComplete/src/main/dist/AutoComplete.License.txt'
73+
url = 'https://github.com/bobbylight/AutoComplete/blob/master/LICENSE.md'
7474
}
7575
}
7676
developers {

AutoComplete/src/main/java/org/fife/ui/autocomplete/AbstractCompletion.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* AbstractCompletion.java - Base class for possible completions.
55
*
66
* This library is distributed under a modified BSD license. See the included
7-
* AutoComplete.License.txt file for details.
7+
* LICENSE.md file for details.
88
*/
99
package org.fife.ui.autocomplete;
1010

AutoComplete/src/main/java/org/fife/ui/autocomplete/AbstractCompletionProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* AbstractCompletionProvider.java - Base class for completion providers.
55
*
66
* This library is distributed under a modified BSD license. See the included
7-
* AutoComplete.License.txt file for details.
7+
* LICENSE.md file for details.
88
*/
99
package org.fife.ui.autocomplete;
1010

AutoComplete/src/main/java/org/fife/ui/autocomplete/AutoCompleteDescWindow.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* currently selected completion.
66
*
77
* This library is distributed under a modified BSD license. See the included
8-
* AutoComplete.License.txt file for details.
8+
* LICENSE.md file for details.
99
*/
1010
package org.fife.ui.autocomplete;
1111

AutoComplete/src/main/java/org/fife/ui/autocomplete/AutoCompletePopupWindow.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* choices.
66
*
77
* This library is distributed under a modified BSD license. See the included
8-
* AutoComplete.License.txt file for details.
8+
* LICENSE.md file for details.
99
*/
1010
package org.fife.ui.autocomplete;
1111

AutoComplete/src/main/java/org/fife/ui/autocomplete/AutoCompletion.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* AutoCompletion.java - Handles auto-completion for a text component.
55
*
66
* This library is distributed under a modified BSD license. See the included
7-
* AutoComplete.License.txt file for details.
7+
* LICENSE.md file for details.
88
*/
99
package org.fife.ui.autocomplete;
1010

AutoComplete/src/main/java/org/fife/ui/autocomplete/AutoCompletionEvent.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* 02/08/2014
33
*
44
* This library is distributed under a modified BSD license. See the included
5-
* AutoComplete.License.txt file for details.
5+
* LICENSE.md file for details.
66
*/
77
package org.fife.ui.autocomplete;
88

AutoComplete/src/main/java/org/fife/ui/autocomplete/AutoCompletionListener.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* 02/08/2014
33
*
44
* This library is distributed under a modified BSD license. See the included
5-
* AutoComplete.License.txt file for details.
5+
* LICENSE.md file for details.
66
*/
77
package org.fife.ui.autocomplete;
88

@@ -28,4 +28,4 @@ public interface AutoCompletionListener extends EventListener {
2828
void autoCompleteUpdate(AutoCompletionEvent e);
2929

3030

31-
}
31+
}

AutoComplete/src/main/java/org/fife/ui/autocomplete/AutoCompletionStyleContext.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* AutoCompletionStyleContext.java - Manages styles related to auto-completion.
55
*
66
* This library is distributed under a modified BSD license. See the included
7-
* AutoComplete.License.txt file for details.
7+
* LICENSE.md file for details.
88
*/
99
package org.fife.ui.autocomplete;
1010

AutoComplete/src/main/java/org/fife/ui/autocomplete/BasicCompletion.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* BasicCompletion.java - A straightforward Completion implementation.
55
*
66
* This library is distributed under a modified BSD license. See the included
7-
* AutoComplete.License.txt file for details.
7+
* LICENSE.md file for details.
88
*/
99
package org.fife.ui.autocomplete;
1010

0 commit comments

Comments
 (0)