Browse Source

Installer Changes to fix Issues raised by cnorthwood


git-svn-id: http://svn.dmdirc.com/trunk@2121 00569f92-eb28-0410-84fd-f71c24880f
tags/0.5
Shane Mc Cormack 17 years ago
parent
commit
2d491dcc7c

+ 2
- 2
src/com/dmdirc/Main.java View File

@@ -48,12 +48,12 @@ public final class Main {
48 48
     /**
49 49
      * Stores the current textual program version.
50 50
      */
51
-    public static final String VERSION = "SVN";
51
+    public static final String VERSION = "0.5RC1";
52 52
     
53 53
     /**
54 54
      * Stores the release date of this version.
55 55
      */
56
-    public static final int RELEASE_DATE = 0;
56
+    public static final int RELEASE_DATE = 20070921;
57 57
     
58 58
     /**
59 59
      * Stores the update channel that this version came from, if any.

+ 7
- 7
src/com/dmdirc/installer/StepConfirm.java View File

@@ -76,25 +76,25 @@ public final class StepConfirm extends Step implements SpecialStep {
76 76
 		
77 77
 		if (Main.getInstaller().supportsShortcut(ShortcutType.MENU)) {
78 78
 			if (settings.getShortcutMenuState()) {
79
-				shortcutText = shortcutText + " - Do Set up Menu shortcuts"+ "\n";
79
+				shortcutText = shortcutText + " - Do set up Menu shortcuts"+ "\n";
80 80
 			} else {
81
-				shortcutText = shortcutText + " - Do Not Set up Menu shortcuts"+ "\n";
81
+				shortcutText = shortcutText + " - Do not set up Menu shortcuts"+ "\n";
82 82
 			}
83 83
 		}
84 84
 		
85 85
 		if (Main.getInstaller().supportsShortcut(ShortcutType.DESKTOP)) {
86 86
 			if (settings.getShortcutDesktopState()) {
87
-				shortcutText = shortcutText + " - Do Set up Desktop shortcuts"+ "\n";
87
+				shortcutText = shortcutText + " - Do set up Desktop shortcuts"+ "\n";
88 88
 			} else {
89
-				shortcutText = shortcutText + " - Do Not Set up Desktop shortcuts"+ "\n";
89
+				shortcutText = shortcutText + " - Do not set up Desktop shortcuts"+ "\n";
90 90
 			}
91 91
 		}
92 92
 		
93 93
 		if (Main.getInstaller().supportsShortcut(ShortcutType.QUICKLAUNCH)) {
94 94
 			if (settings.getShortcutQuickState()) {
95
-				shortcutText = shortcutText + " - Do Set up Quick Launch shortcuts"+ "\n";
95
+				shortcutText = shortcutText + " - Do set up Quick Launch shortcuts"+ "\n";
96 96
 			} else {
97
-				shortcutText = shortcutText + " - Do Not Set up Quick Launch shortcuts"+ "\n";
97
+				shortcutText = shortcutText + " - Do not set up Quick Launch shortcuts"+ "\n";
98 98
 			}
99 99
 		}
100 100
 		
@@ -102,6 +102,6 @@ public final class StepConfirm extends Step implements SpecialStep {
102 102
 		                + " - Install Location:\n"
103 103
 		                + "    " +((StepSettings) Main.getWizardDialog().getStep(1)).getInstallLocation() + "\n"
104 104
 		                + shortcutText + "\n"
105
-		                + "If these are correct, press next to begin the installation, else press previous to change them");
105
+		                + "If these are correct, press Next to begin the installation, else press Previous to change them");
106 106
 	}
107 107
 }

+ 2
- 2
src/com/dmdirc/installer/StepInstall.java View File

@@ -117,10 +117,10 @@ public final class StepInstall extends Step implements SpecialStep, TextStep {
117 117
 		
118 118
 		if (Main.getInstaller().supportsShortcut(ShortcutType.QUICKLAUNCH)) {
119 119
 			if (settings.getShortcutQuickState()) {
120
-				addText("Setting up QuickLaunch shortcut");
120
+				addText("Setting up Quick Launch shortcut");
121 121
 				myInstaller.setupShortcut(location, ShortcutType.QUICKLAUNCH);
122 122
 			} else {
123
-				addText("Not setting up QuickLaunch shortcut");
123
+				addText("Not setting up Quick Launch shortcut");
124 124
 			}
125 125
 		}
126 126
 		

+ 3
- 3
src/com/dmdirc/installer/StepSettings.java View File

@@ -51,11 +51,11 @@ public final class StepSettings extends Step {
51 51
 	private static final long serialVersionUID = 3;
52 52
 	
53 53
 	/** Menu Shorcuts checkbox. */
54
-	private final JCheckBox shortcutMenu = new JCheckBox("Setup menu shortcut to DMDirc?");
54
+	private final JCheckBox shortcutMenu = new JCheckBox("Setup Menu shortcut to DMDirc?");
55 55
 	/** Desktop Shorcuts checkbox. */
56
-	private final JCheckBox shortcutDesktop = new JCheckBox("Setup desktop shortcut to DMDirc?");
56
+	private final JCheckBox shortcutDesktop = new JCheckBox("Setup Desktop shortcut to DMDirc?");
57 57
 	/** Quick-Launch Shorcuts checkbox. */
58
-	private final JCheckBox shortcutQuick = new JCheckBox("Setup Quicklaunch shortcut to DMDirc?");
58
+	private final JCheckBox shortcutQuick = new JCheckBox("Setup Quick Launch shortcut to DMDirc?");
59 59
 	/** Install Location input. */
60 60
 	private final JTextField location = new JTextField(Main.getInstaller().defaultInstallLocation(), 20);
61 61
 	

+ 2
- 2
src/com/dmdirc/installer/StepWelcome.java View File

@@ -52,9 +52,9 @@ public final class StepWelcome extends Step {
52 52
 		
53 53
 		JTextArea infoLabel;
54 54
 		infoLabel = new JTextArea("This application will install DMDirc on this computer.\n\n"
55
-		                        + "DMDirc is Copyright (c) 2006-2007 Chris Smith, Shane Mc Cormack and Gregory Holmes."
55
+		                        + "DMDirc is Copyright (c) 2006-2007 Chris Smith, Shane Mc Cormack and Gregory Holmes.\n\n"
56 56
 		                        + "DMDirc is released under the MIT License, more information is available at http://www.dmdirc.com\n\n"
57
-		                        + "Please click next to continue, or close if you do not wish to install DMDirc at this time.");
57
+		                        + "Please click Next to continue, or close if you do not wish to install DMDirc at this time.");
58 58
 		infoLabel.setEditable(false);
59 59
 		infoLabel.setWrapStyleWord(true);
60 60
 		infoLabel.setLineWrap(true);

Loading…
Cancel
Save