From 71d59c23dcea268b55f26c307ebb13220eda3a39 Mon Sep 17 00:00:00 2001 From: David Aguilar Date: Tue, 2 Feb 2010 16:15:01 -0800 Subject: [PATCH] win32: Remove colon from application name The Windows installer suggested "git-cola : a highly caffeinated git GUI" as the start-menu entry. This is an invalid folder-name, and the installer subsequently refuses to use it unless changed. Fixes #41 Signed-off-by: David Aguilar --- win32/install.iss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/win32/install.iss b/win32/install.iss index 35b3b894..ede744b5 100644 --- a/win32/install.iss +++ b/win32/install.iss @@ -1,5 +1,5 @@ #define APP_NAME 'git-cola' -#define APP_LONGNAME 'git-cola: A highly caffeinated git GUI' +#define APP_LONGNAME 'git-cola - A highly caffeinated git GUI' #define APP_VERSION '%APPVERSION%' #define APP_URL 'http://cola.tuxfamily.org/' -- 2.11.4.GIT