Skip to content

Commit

Permalink
Omega IDE v2.1 - Released!
Browse files Browse the repository at this point in the history
  • Loading branch information
omegaui committed Oct 31, 2021
1 parent 1438480 commit c71e434
Show file tree
Hide file tree
Showing 8 changed files with 40 additions and 3 deletions.
Binary file modified out/Omega IDE-dailybuild.jar
Binary file not shown.
1 change: 1 addition & 0 deletions res/org/fife/ui/rsyntaxtextarea/themes/dark.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
<!--<baseFont family="..." size="13"/>-->

<!-- General editor colors. -->

<background color="293134" />
<caret color="c1cbc2" />
<selection useFG="false" bg="404E51" roundedEdges="false" />
Expand Down
17 changes: 17 additions & 0 deletions src/omega/instant/support/java/JavaCommentMarker.java
Original file line number Diff line number Diff line change
@@ -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 <http://www.gnu.org/licenses/>.
*/
package omega.instant.support.java;
import javax.swing.text.Document;
import javax.swing.text.AttributeSet;
Expand Down
2 changes: 1 addition & 1 deletion src/omega/jdk/JDKManager.java
Original file line number Diff line number Diff line change
@@ -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
Expand Down
18 changes: 18 additions & 0 deletions src/omega/plugin/event/PluginReactionEvent.java
Original file line number Diff line number Diff line change
@@ -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 <http://www.gnu.org/licenses/>.
*/

package omega.plugin.event;
public record PluginReactionEvent(int type, Object source, Object data) {
public static final int EVENT_TYPE_PROJECT_CHANGED = 0;
Expand Down
1 change: 1 addition & 0 deletions src/omega/plugin/event/PluginReactionManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ public class PluginReactionManager {

public PluginReactionManager(PluginManager pluginManager){
this.pluginManager = pluginManager;

}

public synchronized boolean registerPlugin(Plugin plugin, int pluginReactionType, PluginReactionEventListener listener){
Expand Down
2 changes: 1 addition & 1 deletion src/omega/utils/DataManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ public static synchronized boolean isParsingEnabled() {
public static void setParsingEnabled(boolean parsingEnabled) {
DataManager.parsingEnabled = parsingEnabled;
}

public static int getTabSize() {
return tabSize;
}
Expand Down
2 changes: 1 addition & 1 deletion src/omega/utils/Editor.java
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit c71e434

Please sign in to comment.