Skip to content

Commit ffa9151

Browse files
authored
Merge pull request #65 from skalarproduktraum/feature/language-selection-on-startup
Add constructor parameter to specify language preference for REPL
2 parents c70e981 + 50bf8f6 commit ffa9151

File tree

62 files changed

+102
-70
lines changed

Some content is hidden

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

62 files changed

+102
-70
lines changed

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2009 - 2022, SciJava developers.
1+
Copyright (c) 2009 - 2023, SciJava developers.
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without modification,

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</parent>
1111

1212
<artifactId>script-editor</artifactId>
13-
<version>0.7.10-SNAPSHOT</version>
13+
<version>0.8.0-SNAPSHOT</version>
1414

1515
<name>SciJava Script Editor</name>
1616
<description>Script Editor and Interpreter for SciJava script languages.</description>

src/main/java/org/scijava/ui/swing/script/AutoImporter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* #%L
33
* Script Editor and Interpreter for SciJava script languages.
44
* %%
5-
* Copyright (C) 2009 - 2022 SciJava developers.
5+
* Copyright (C) 2009 - 2023 SciJava developers.
66
* %%
77
* Redistribution and use in source and binary forms, with or without
88
* modification, are permitted provided that the following conditions are met:

src/main/java/org/scijava/ui/swing/script/Bookmark.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* #%L
33
* Script Editor and Interpreter for SciJava script languages.
44
* %%
5-
* Copyright (C) 2009 - 2022 SciJava developers.
5+
* Copyright (C) 2009 - 2023 SciJava developers.
66
* %%
77
* Redistribution and use in source and binary forms, with or without
88
* modification, are permitted provided that the following conditions are met:

src/main/java/org/scijava/ui/swing/script/BookmarkDialog.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* #%L
33
* Script Editor and Interpreter for SciJava script languages.
44
* %%
5-
* Copyright (C) 2009 - 2022 SciJava developers.
5+
* Copyright (C) 2009 - 2023 SciJava developers.
66
* %%
77
* Redistribution and use in source and binary forms, with or without
88
* modification, are permitted provided that the following conditions are met:

src/main/java/org/scijava/ui/swing/script/CommandPalette.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* #%L
33
* Script Editor and Interpreter for SciJava script languages.
44
* %%
5-
* Copyright (C) 2009 - 2022 SciJava developers.
5+
* Copyright (C) 2009 - 2023 SciJava developers.
66
* %%
77
* Redistribution and use in source and binary forms, with or without
88
* modification, are permitted provided that the following conditions are met:

src/main/java/org/scijava/ui/swing/script/DefaultAutoImporters.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* #%L
33
* Script Editor and Interpreter for SciJava script languages.
44
* %%
5-
* Copyright (C) 2009 - 2022 SciJava developers.
5+
* Copyright (C) 2009 - 2023 SciJava developers.
66
* %%
77
* Redistribution and use in source and binary forms, with or without
88
* modification, are permitted provided that the following conditions are met:

src/main/java/org/scijava/ui/swing/script/DefaultLanguageSupportService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* #%L
33
* Script Editor and Interpreter for SciJava script languages.
44
* %%
5-
* Copyright (C) 2009 - 2022 SciJava developers.
5+
* Copyright (C) 2009 - 2023 SciJava developers.
66
* %%
77
* Redistribution and use in source and binary forms, with or without
88
* modification, are permitted provided that the following conditions are met:

src/main/java/org/scijava/ui/swing/script/EditorPane.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* #%L
33
* Script Editor and Interpreter for SciJava script languages.
44
* %%
5-
* Copyright (C) 2009 - 2022 SciJava developers.
5+
* Copyright (C) 2009 - 2023 SciJava developers.
66
* %%
77
* Redistribution and use in source and binary forms, with or without
88
* modification, are permitted provided that the following conditions are met:

src/main/java/org/scijava/ui/swing/script/EditorPaneActions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* #%L
33
* Script Editor and Interpreter for SciJava script languages.
44
* %%
5-
* Copyright (C) 2009 - 2022 SciJava developers.
5+
* Copyright (C) 2009 - 2023 SciJava developers.
66
* %%
77
* Redistribution and use in source and binary forms, with or without
88
* modification, are permitted provided that the following conditions are met:

0 commit comments

Comments
 (0)