diff --git a/out/Omega IDE-dailybuild.jar b/out/Omega IDE-dailybuild.jar index cb19f68d..dd6a077f 100755 Binary files a/out/Omega IDE-dailybuild.jar and b/out/Omega IDE-dailybuild.jar differ diff --git a/res/org/fife/ui/rsyntaxtextarea/themes/dark.xml b/res/org/fife/ui/rsyntaxtextarea/themes/dark.xml index 5666799b..ee9c7f32 100755 --- a/res/org/fife/ui/rsyntaxtextarea/themes/dark.xml +++ b/res/org/fife/ui/rsyntaxtextarea/themes/dark.xml @@ -11,6 +11,7 @@ + diff --git a/src/omega/instant/support/java/JavaCommentMarker.java b/src/omega/instant/support/java/JavaCommentMarker.java index cab61040..e7d9809b 100644 --- a/src/omega/instant/support/java/JavaCommentMarker.java +++ b/src/omega/instant/support/java/JavaCommentMarker.java @@ -1,3 +1,20 @@ +/** + * JavaCommentMarker + * Copyright (C) 2021 Omega UI + + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . +*/ package omega.instant.support.java; import javax.swing.text.Document; import javax.swing.text.AttributeSet; diff --git a/src/omega/jdk/JDKManager.java b/src/omega/jdk/JDKManager.java index a88f752c..5d41bf9d 100644 --- a/src/omega/jdk/JDKManager.java +++ b/src/omega/jdk/JDKManager.java @@ -1,5 +1,5 @@ /** - * IDE's JDK Reader + * IDE 's JDK Manager * Copyright (C) 2021 Omega UI * This program is free software: you can redistribute it and/or modify diff --git a/src/omega/plugin/event/PluginReactionEvent.java b/src/omega/plugin/event/PluginReactionEvent.java index 8f8bd38e..c4c35fc1 100644 --- a/src/omega/plugin/event/PluginReactionEvent.java +++ b/src/omega/plugin/event/PluginReactionEvent.java @@ -1,3 +1,21 @@ +/** + * PluginReactionEvent + * Copyright (C) 2021 Omega UI + + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . +*/ + package omega.plugin.event; public record PluginReactionEvent(int type, Object source, Object data) { public static final int EVENT_TYPE_PROJECT_CHANGED = 0; diff --git a/src/omega/plugin/event/PluginReactionManager.java b/src/omega/plugin/event/PluginReactionManager.java index 8a630a6d..5885ed94 100644 --- a/src/omega/plugin/event/PluginReactionManager.java +++ b/src/omega/plugin/event/PluginReactionManager.java @@ -11,6 +11,7 @@ public class PluginReactionManager { public PluginReactionManager(PluginManager pluginManager){ this.pluginManager = pluginManager; + } public synchronized boolean registerPlugin(Plugin plugin, int pluginReactionType, PluginReactionEventListener listener){ diff --git a/src/omega/utils/DataManager.java b/src/omega/utils/DataManager.java index e5e45714..a1b5d820 100644 --- a/src/omega/utils/DataManager.java +++ b/src/omega/utils/DataManager.java @@ -210,7 +210,7 @@ public static synchronized boolean isParsingEnabled() { public static void setParsingEnabled(boolean parsingEnabled) { DataManager.parsingEnabled = parsingEnabled; } - + public static int getTabSize() { return tabSize; } diff --git a/src/omega/utils/Editor.java b/src/omega/utils/Editor.java index 0e7c3d20..a171869b 100644 --- a/src/omega/utils/Editor.java +++ b/src/omega/utils/Editor.java @@ -1,5 +1,5 @@ /** -* The IDE's Default Editor +* The IDE 's Default Editor * Copyright (C) 2021 Omega UI * This program is free software: you can redistribute it and/or modify