-rw-r--r-- | dipstick.rc | 8 | ||||
-rw-r--r-- | help/dipstick.rtf | 3 | ||||
-rw-r--r-- | help/dipstick.xml | 3 | ||||
-rw-r--r-- | install/install.cpp | 8 |
4 files changed, 15 insertions, 7 deletions
diff --git a/dipstick.rc b/dipstick.rc index 8797946..305eb77 100644 --- a/dipstick.rc +++ b/dipstick.rc | |||
@@ -84,3 +84,3 @@ BEGIN | |||
84 | ICON IDR_MAINFRAME,IDC_STATIC,11,17,21,20 | 84 | ICON IDR_MAINFRAME,IDC_STATIC,11,17,21,20 |
85 | LTEXT "Dipstick, Version 3.1-trunk",IDC_STATIC,40,7,89,8,SS_NOPREFIX | 85 | LTEXT "Dipstick, Version 3.1",IDC_STATIC,40,7,89,8,SS_NOPREFIX |
86 | LTEXT "Copyright © 1996-2005 Klever Group",IDC_STATIC,40,25, | 86 | LTEXT "Copyright © 1996-2005 Klever Group",IDC_STATIC,40,25, |
@@ -95,3 +95,3 @@ EXSTYLE WS_EX_TOOLWINDOW | WS_EX_CLIENTEDGE | WS_EX_CONTEXTHELP | | |||
95 | WS_EX_APPWINDOW | 95 | WS_EX_APPWINDOW |
96 | CAPTION " Dipstick 3.1-trunk" | 96 | CAPTION " Dipstick 3.1" |
97 | FONT 8, "MS Sans Serif", 0, 0, 0x1 | 97 | FONT 8, "MS Sans Serif", 0, 0, 0x1 |
@@ -461,3 +461,3 @@ BEGIN | |||
461 | IDS_ABEST_TITLE " Dipstick - report" | 461 | IDS_ABEST_TITLE " Dipstick - report" |
462 | IDS_DRAGPAD_TITLE " Dipstick 3.1-trunk" | 462 | IDS_DRAGPAD_TITLE " Dipstick 3.1" |
463 | IDS_DRAGPAD_URLS " %d/%d URL(s)" | 463 | IDS_DRAGPAD_URLS " %d/%d URL(s)" |
@@ -481,3 +481,3 @@ STRINGTABLE DISCARDABLE | |||
481 | BEGIN | 481 | BEGIN |
482 | IDC_DNDTARGET "Dipstick 3.1-trunk, click the right mouse button to display main window, left mouse button for menu" | 482 | IDC_DNDTARGET "Dipstick 3.1, click the right mouse button to display main window, left mouse button for menu" |
483 | IDC_HOST "Host name as specified or resolved by Dipstick" | 483 | IDC_HOST "Host name as specified or resolved by Dipstick" |
diff --git a/help/dipstick.rtf b/help/dipstick.rtf index 839d331..6568499 100644 --- a/help/dipstick.rtf +++ b/help/dipstick.rtf | |||
@@ -33,4 +33,5 @@ ${\footnote What's new} | |||
33 | { \f1\fs18\b\sb120 What's New} | 33 | { \f1\fs18\b\sb120 What's New} |
34 | \par\pard\plain\f1\fs24\qc\cf2\b 3.1 - July 26th, 2005 | 34 | \par\pard\plain\f1\fs24\qc\cf2\b 3.1 - August 6th, 2005 |
35 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Ability to parse multiple URLs from plaintext selection | 35 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Ability to parse multiple URLs from plaintext selection |
36 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Fixed uninstall procedure so that it works on XP | ||
36 | \par\pard\plain\f1\fs24\qc\cf2\b 3.0 - July 11th, 2004 | 37 | \par\pard\plain\f1\fs24\qc\cf2\b 3.0 - July 11th, 2004 |
diff --git a/help/dipstick.xml b/help/dipstick.xml index 8ed0383..21363ab 100644 --- a/help/dipstick.xml +++ b/help/dipstick.xml | |||
@@ -12,4 +12,5 @@ | |||
12 | <heading scroll="no">What's New</heading> | 12 | <heading scroll="no">What's New</heading> |
13 | <newsfor version="3.1" date="July 26th, 2005"> | 13 | <newsfor version="3.1" date="August 6th, 2005"> |
14 | <ni>Ability to parse multiple URLs from plaintext selection</ni> | 14 | <ni>Ability to parse multiple URLs from plaintext selection</ni> |
15 | <ni>Fixed uninstall procedure so that it works on XP</ni> | ||
15 | </newsfor> | 16 | </newsfor> |
diff --git a/install/install.cpp b/install/install.cpp index 1d91bc2..fcd32d7 100644 --- a/install/install.cpp +++ b/install/install.cpp | |||
@@ -5,3 +5,3 @@ | |||
5 | #define KINSHORT KINNAME | 5 | #define KINSHORT KINNAME |
6 | #define VERSION "3.1-trunk" | 6 | #define VERSION "3.1" |
7 | 7 | ||
@@ -63,2 +63,8 @@ FILE* inf=CREATE_INF_FILE(path,KINSHORT ".INF"); | |||
63 | REG_UNINSTALL_COMMAND(KINSHORT,"Klever " KINNAME " " VERSION,shortPath,KINSHORT ".INF","Uninstall"); | 63 | REG_UNINSTALL_COMMAND(KINSHORT,"Klever " KINNAME " " VERSION,shortPath,KINSHORT ".INF","Uninstall"); |
64 | REG_UNINSTALL_ICON(KINSHORT,path,"dipstick.exe",0); | ||
65 | REG_UNINSTALL_COMMENT(KINSHORT,"Klever Dipstick"); | ||
66 | REG_UNINSTALL_VERSION(KINSHORT,VERSION); | ||
67 | REG_UNINSTALL_LOCATION(KINSHORT,path); | ||
68 | REG_UNINSTALL_PUBLISHER(KINSHORT,"Klever Group"); | ||
69 | REG_UNINSTALL_URLS(KINSHORT,"http://www.klever.net/","http://kin.klever.net/dipstick/"); | ||
64 | 70 | ||