Skip to content

Commit

Permalink
Bumping version numbers to 6.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbylight committed Nov 29, 2024
1 parent 77d1fe0 commit cb2125a
Show file tree
Hide file tree
Showing 14 changed files with 16 additions and 14 deletions.
2 changes: 1 addition & 1 deletion MakeRTextInstaller.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

; HM NIS Edit Wizard helper defines
!define PRODUCT_NAME "RText"
!define PRODUCT_VERSION "6.0.2"
!define PRODUCT_VERSION "6.0.3"
!define PRODUCT_WEB_SITE "https://bobbylight.github.io/RText/"
!define PRODUCT_DIR_REGKEY "Software\Microsoft\Windows\CurrentVersion\App Paths\RText.exe"
!define PRODUCT_UNINST_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}"
Expand Down
2 changes: 1 addition & 1 deletion mac/build-mac-app.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

# The version of RText you're building. This appears in the generated
# .dmg file name.
APP_VERSION=6.0.2
APP_VERSION=6.0.3

#
# You probably don't want to change anything below this line.
Expand Down
4 changes: 3 additions & 1 deletion src/main/dist/doc/en/Changes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,12 @@ https://bobbylight.github.io/RText/

6.0.3
------------------
- Updating bundled JRE from 17 to 21
-

6.0.2 (08/05/2023)
------------------
- Adding auto=indent to Python
- Adding auto-indent to Python
- Fixed a bug in code folding for Python
- Fixed a rendering bug for selected files in the source browser tree

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/fife/rtext/RText.java
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ public class RText extends AbstractPluggableGUIApplication<RTextPrefs>
*/
private static final String PROPERTY_PRINT_START_TIMES = "printStartTimes";

public static final String VERSION_STRING = "6.0.2";
public static final String VERSION_STRING = "6.0.3";


/**
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/fife/rtext/plugins/console/Plugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
*/
public class Plugin extends GUIPlugin<RText> {

private static final String VERSION = "6.0.2";
private static final String VERSION = "6.0.3";
private static final String DOCKABLE_WINDOW_CONSOLE = "consoleDockableWindow";

private ConsoleWindow window;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public class FileSystemTreePlugin extends GUIPlugin<RText> {

static final String BUNDLE_NAME =
"org/fife/rtext/plugins/filesystemtree/FileSystemTree";
private static final String VERSION_STRING = "6.0.2";
private static final String VERSION_STRING = "6.0.3";

public static final String SELECT_CURRENT_FILE_ACTION_NAME =
"FileSystemTree.SelectCurrentFileAction";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public class HeapIndicatorPlugin extends StatusBarPlugin<RText> {

private static final String BUNDLE_NAME =
"org.fife.rtext.plugins.heapindicator.HeapIndicator";
private static final String VERSION = "6.0.2";
private static final String VERSION = "6.0.3";


/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public class Plugin extends GUIPlugin<RText> {
private Map<ParserNotice.Level, Icon> icons;
private TypeScriptSupport typeScriptSupport;

private static final String PLUGIN_VERSION = "6.0.2";
private static final String PLUGIN_VERSION = "6.0.3";
private static final String PREFS_FILE_NAME = "langSupport.properties";

private static final String MSG_BUNDLE = "org.fife.rtext.plugins.langsupport.Plugin";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
public class MacroPlugin extends AbstractPlugin<RText>
implements PropertyChangeListener {

private static final String VERSION = "6.0.2";
private static final String VERSION = "6.0.3";

private MacroOptionPanel optionPanel;
private JMenu macrosMenu;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public class ProjectPlugin extends GUIPlugin<RText> {

private static final String VIEW_CONSOLE_ACTION = "viewProjectWindowAction";
private static final String DOCKABLE_WINDOW_PROJECTS = "projectsDockableWindow";
private static final String VERSION_STRING = "6.0.2";
private static final String VERSION_STRING = "6.0.3";


public ProjectPlugin(RText app) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public class SourceBrowserPlugin extends GUIPlugin<RText>
static final String BUNDLE_NAME =
"org.fife.rtext.plugins.sourcebrowser.SourceBrowser";

private static final String VERSION_STRING = "6.0.2";
private static final String VERSION_STRING = "6.0.3";

private static final String VIEW_SB_ACTION = "ViewSourceBrowserAction";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public class TasksPlugin extends GUIPlugin<RText> {
private static final String MSG_BUNDLE = "org.fife.rtext.plugins.tasks.TasksPlugin";
private static final ResourceBundle MSG = ResourceBundle.getBundle(MSG_BUNDLE);

private static final String VERSION = "6.0.2";
private static final String VERSION = "6.0.3";
private static final String VIEW_TASKS_ACTION = "viewTasksAction";
private static final String DOCKABLE_WINDOW_TASKS = "tasksDockableWindow";

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/fife/rtext/plugins/tidy/Plugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public class Plugin extends AbstractPlugin<RText>
private XmlOptions xmlOptions;
private JsonOptions jsonOptions;

private static final String PLUGIN_VERSION = "6.0.2";
private static final String PLUGIN_VERSION = "6.0.3";

private static final String TIDY_ACTION = "PrettyPrintAction";

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/fife/rtext/plugins/tools/ToolPlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
*/
public class ToolPlugin extends GUIPlugin<RText> implements PropertyChangeListener {

private static final String VERSION = "6.0.2";
private static final String VERSION = "6.0.3";

private ToolOptionPanel optionPanel;
private Map<String, Icon> icons;
Expand Down

0 comments on commit cb2125a

Please sign in to comment.