Skip to content

Commit

Permalink
Moving LICENSE file to root directory and preparing for 3.1.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbylight committed Jan 9, 2022
1 parent f3db1d0 commit 10f8b6d
Show file tree
Hide file tree
Showing 51 changed files with 89 additions and 84 deletions.
4 changes: 2 additions & 2 deletions AutoComplete/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ assert current().isJava8Compatible()
archivesBaseName = 'autocomplete'

dependencies {
api 'com.fifesoft:rsyntaxtextarea:3.1.4'
api 'com.fifesoft:rsyntaxtextarea:3.1.6'
}

ext.isReleaseVersion = !project.version.endsWith('SNAPSHOT')
Expand Down Expand Up @@ -70,7 +70,7 @@ publishing {
licenses {
license {
name = 'BSD-3-Clause'
url = 'https://github.com/bobbylight/AutoComplete/blob/master/AutoComplete/src/main/dist/AutoComplete.License.txt'
url = 'https://github.com/bobbylight/AutoComplete/blob/master/LICENSE.md'
}
}
developers {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* AbstractCompletion.java - Base class for possible completions.
*
* This library is distributed under a modified BSD license. See the included
* AutoComplete.License.txt file for details.
* LICENSE.md file for details.
*/
package org.fife.ui.autocomplete;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* AbstractCompletionProvider.java - Base class for completion providers.
*
* This library is distributed under a modified BSD license. See the included
* AutoComplete.License.txt file for details.
* LICENSE.md file for details.
*/
package org.fife.ui.autocomplete;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* currently selected completion.
*
* This library is distributed under a modified BSD license. See the included
* AutoComplete.License.txt file for details.
* LICENSE.md file for details.
*/
package org.fife.ui.autocomplete;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* choices.
*
* This library is distributed under a modified BSD license. See the included
* AutoComplete.License.txt file for details.
* LICENSE.md file for details.
*/
package org.fife.ui.autocomplete;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* AutoCompletion.java - Handles auto-completion for a text component.
*
* This library is distributed under a modified BSD license. See the included
* AutoComplete.License.txt file for details.
* LICENSE.md file for details.
*/
package org.fife.ui.autocomplete;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* 02/08/2014
*
* This library is distributed under a modified BSD license. See the included
* AutoComplete.License.txt file for details.
* LICENSE.md file for details.
*/
package org.fife.ui.autocomplete;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* 02/08/2014
*
* This library is distributed under a modified BSD license. See the included
* AutoComplete.License.txt file for details.
* LICENSE.md file for details.
*/
package org.fife.ui.autocomplete;

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


}
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* AutoCompletionStyleContext.java - Manages styles related to auto-completion.
*
* This library is distributed under a modified BSD license. See the included
* AutoComplete.License.txt file for details.
* LICENSE.md file for details.
*/
package org.fife.ui.autocomplete;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* BasicCompletion.java - A straightforward Completion implementation.
*
* This library is distributed under a modified BSD license. See the included
* AutoComplete.License.txt file for details.
* LICENSE.md file for details.
*/
package org.fife.ui.autocomplete;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Completion.java - Represents a single completion choice.
*
* This library is distributed under a modified BSD license. See the included
* AutoComplete.License.txt file for details.
* LICENSE.md file for details.
*/
package org.fife.ui.autocomplete;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* completion types like Eclipse or NetBeans does.
*
* This library is distributed under a modified BSD license. See the included
* AutoComplete.License.txt file for details.
* LICENSE.md file for details.
*/
package org.fife.ui.autocomplete;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* CompletionListModel.java - A model that allows bulk addition of elements.
*
* This library is distributed under a modified BSD license. See the included
* AutoComplete.License.txt file for details.
* LICENSE.md file for details.
*/
package org.fife.ui.autocomplete;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* text currently in a text component.
*
* This library is distributed under a modified BSD license. See the included
* AutoComplete.License.txt file for details.
* LICENSE.md file for details.
*/
package org.fife.ui.autocomplete;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* CompletionProviderBase.java - Base completion provider implementation.
*
* This library is distributed under a modified BSD license. See the included
* AutoComplete.License.txt file for details.
* LICENSE.md file for details.
*/
package org.fife.ui.autocomplete;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* C-like language.
*
* This library is distributed under a modified BSD license. See the included
* AutoComplete.License.txt file for details.
* LICENSE.md file for details.
*/
package org.fife.ui.autocomplete;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* DefaultCompletionProvider.java - A basic completion provider implementation.
*
* This library is distributed under a modified BSD license. See the included
* AutoComplete.License.txt file for details.
* LICENSE.md file for details.
*/
package org.fife.ui.autocomplete;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* to the Completion's provider's renderer, if there is one.
*
* This library is distributed under a modified BSD license. See the included
* AutoComplete.License.txt file for details.
* LICENSE.md file for details.
*/
package org.fife.ui.autocomplete;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* 05/11/2012
*
* This library is distributed under a modified BSD license. See the included
* AutoComplete.License.txt file for details.
* LICENSE.md file for details.
*/
package org.fife.ui.autocomplete;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* EmptyIcon.java - The canonical icon that paints nothing.
*
* This library is distributed under a modified BSD license. See the included
* AutoComplete.License.txt file for details.
* LICENSE.md file for details.
*/
package org.fife.ui.autocomplete;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* to handle the user clicking on external URL's.
*
* This library is distributed under a modified BSD license. See the included
* AutoComplete.License.txt file for details.
* LICENSE.md file for details.
*/
package org.fife.ui.autocomplete;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* rendered with HTML, which is slow with BasicListUI extensions.
*
* This library is distributed under a modified BSD license. See the included
* AutoComplete.License.txt file for details.
* LICENSE.md file for details.
*/
package org.fife.ui.autocomplete;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* FunctionCompletion.java - A completion representing a function.
*
* This library is distributed under a modified BSD license. See the included
* AutoComplete.License.txt file for details.
* LICENSE.md file for details.
*/
package org.fife.ui.autocomplete;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* of the language it is working with.
*
* This library is distributed under a modified BSD license. See the included
* AutoComplete.License.txt file for details.
* LICENSE.md file for details.
*/
package org.fife.ui.autocomplete;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* 05/16/2012
*
* This library is distributed under a modified BSD license. See the included
* AutoComplete.License.txt file for details.
* LICENSE.md file for details.
*/
package org.fife.ui.autocomplete;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* as HTML or XML.
*
* This library is distributed under a modified BSD license. See the included
* AutoComplete.License.txt file for details.
* LICENSE.md file for details.
*/
package org.fife.ui.autocomplete;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* around its text.
*
* This library is distributed under a modified BSD license. See the included
* AutoComplete.License.txt file for details.
* LICENSE.md file for details.
*/
package org.fife.ui.autocomplete;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* ParameterizedCompletion's parameters.
*
* This library is distributed under a modified BSD license. See the included
* AutoComplete.License.txt file for details.
* LICENSE.md file for details.
*/
package org.fife.ui.autocomplete;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* ParameterizedCompletion.java - A completion option.
*
* This library is distributed under a modified BSD license. See the included
* AutoComplete.License.txt file for details.
* LICENSE.md file for details.
*/
package org.fife.ui.autocomplete;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* parameter.
*
* This library is distributed under a modified BSD license. See the included
* AutoComplete.License.txt file for details.
* LICENSE.md file for details.
*/
package org.fife.ui.autocomplete;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* completion-related UI components during code completion.
*
* This library is distributed under a modified BSD license. See the included
* AutoComplete.License.txt file for details.
* LICENSE.md file for details.
*/
package org.fife.ui.autocomplete;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* information on the function or method currently being entered.
*
* This library is distributed under a modified BSD license. See the included
* AutoComplete.License.txt file for details.
* LICENSE.md file for details.
*/
package org.fife.ui.autocomplete;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* changes required for a specific parameterized completion.
*
* This library is distributed under a modified BSD license. See the included
* AutoComplete.License.txt file for details.
* LICENSE.md file for details.
*/
package org.fife.ui.autocomplete;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* 12/02/2013
*
* This library is distributed under a modified BSD license. See the included
* AutoComplete.License.txt file for details.
* LICENSE.md file for details.
*/
package org.fife.ui.autocomplete;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* text.
*
* This library is distributed under a modified BSD license. See the included
* AutoComplete.License.txt file for details.
* LICENSE.md file for details.
*/
package org.fife.ui.autocomplete;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* allowing the user to easily resize that window.
*
* This library is distributed under a modified BSD license. See the included
* AutoComplete.License.txt file for details.
* LICENSE.md file for details.
*/
package org.fife.ui.autocomplete;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* sorting them lexicographically.
*
* This library is distributed under a modified BSD license. See the included
* AutoComplete.License.txt file for details.
* LICENSE.md file for details.
*/
package org.fife.ui.autocomplete;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* for-loops.
*
* This library is distributed under a modified BSD license. See the included
* AutoComplete.License.txt file for details.
* LICENSE.md file for details.
*/
package org.fife.ui.autocomplete;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* TemplatePiece.java - A logical piece of a template completion.
*
* This library is distributed under a modified BSD license. See the included
* AutoComplete.License.txt file for details.
* LICENSE.md file for details.
*/
package org.fife.ui.autocomplete;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* TipUtil.java - Utility methods for homemade tool tips.
*
* This library is distributed under a modified BSD license. See the included
* AutoComplete.License.txt file for details.
* LICENSE.md file for details.
*/
package org.fife.ui.autocomplete;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Util.java - Utility methods for the autocompletion package.
*
* This library is distributed under a modified BSD license. See the included
* AutoComplete.License.txt file for details.
* LICENSE.md file for details.
*/
package org.fife.ui.autocomplete;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* VariableCompletion.java - A completion for a variable.
*
* This library is distributed under a modified BSD license. See the included
* AutoComplete.License.txt file for details.
* LICENSE.md file for details.
*/
package org.fife.ui.autocomplete;

Expand Down
Loading

0 comments on commit 10f8b6d

Please sign in to comment.