diff options
author | Peter Åstrand <astrand@cendio.se> | 2009-02-27 10:12:14 +0000 |
---|---|---|
committer | Peter Åstrand <astrand@cendio.se> | 2009-02-27 10:12:14 +0000 |
commit | 4eacc02e123ed1cceb9c8181f16d5ae145fdae35 (patch) | |
tree | f3be44634f9e9c3ee32f4ed4cf387e69a8c0bedb /win/winvnc | |
parent | b031862497e0603622c498cc4311b2726c223cbb (diff) | |
download | tigervnc-4eacc02e123ed1cceb9c8181f16d5ae145fdae35.tar.gz tigervnc-4eacc02e123ed1cceb9c8181f16d5ae145fdae35.zip |
Rebrand the source as TigerVNC. It is my hope that this patch is
minimal but still complete. The rebranding was done using a script:
find trunk -name .svn -prune -o -type f -exec rep.sh \{\} \;
pushd trunk
svn revert doc/TODO doc/registered-codes.txt doc/ft-protocol-problems.txt doc/rfbtight.tex
perl -pi -e 's|tightvnc|tigervnc|g' unix/configure.ac win/configure.ac unix/README
With rep.sh looking like:
perl -pi -e 's|TightVNC|TigerVNC|g' "$@"
perl -pi -e 's|www\.tightvnc\.com/bugs\.html|www\.tigervnc\.org|g' "$@"
perl -pi -e 's|www\.tightvnc\.com|www\.tigervnc\.org|g' "$@"
perl -pi -e 's|devteam\@tightvnc\.com|tigervnc-devel\@lists\.sourceforge\.net|g' "$@"
perl -pi -e 's|TigerVNC Team|TightVNC Team|g' "$@"
perl -pi -e 's|TigerVNC Group|TightVNC Group|g' "$@"
perl -pi -e 's|TigerVNC protocol|TightVNC protocol|g' "$@"
perl -pi -e 's|TigerVNC-specific|TightVNC-specific|g' "$@"
perl -pi -e 's|Vendor signatures: standard VNC/RealVNC, TridiaVNC, and TigerVNC|Vendor signatures: standard VNC/RealVNC, TridiaVNC, and TightVNC|g' "$@"
perl -pi -e 's|TigerVNC vendor|TightVNC vendor|g' "$@"
perl -pi -e 's|TigerVNC extension|TightVNC extension|g' "$@"
perl -pi -e 's|protocolTigerVNC|protocolTightVNC|g' "$@"
perl -pi -e 's|TigerVNC additions were|TightVNC additions were|g' "$@"
perl -pi -e 's|TigerVNC 1\.2|TightVNC 1\.2|g' "$@"
perl -pi -e 's|TigerVNC authentication type|TightVNC authentication type|g' "$@"
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@3621 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'win/winvnc')
-rw-r--r-- | win/winvnc/VNCServerWin32.cxx | 2 | ||||
-rw-r--r-- | win/winvnc/winvnc.rc | 8 | ||||
-rw-r--r-- | win/winvnc/winvnc4.exe.manifest | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/win/winvnc/VNCServerWin32.cxx b/win/winvnc/VNCServerWin32.cxx index 3b0e1a0a..6412aaec 100644 --- a/win/winvnc/VNCServerWin32.cxx +++ b/win/winvnc/VNCServerWin32.cxx @@ -37,7 +37,7 @@ using namespace network; static LogWriter vlog("VNCServerWin32"); -const TCHAR* winvnc::VNCServerWin32::RegConfigPath = _T("Software\\TightVNC\\WinVNC4"); +const TCHAR* winvnc::VNCServerWin32::RegConfigPath = _T("Software\\TigerVNC\\WinVNC4"); // FIXME: Move into an .h file? extern const UINT VNCM_FT_DOWNLOAD; diff --git a/win/winvnc/winvnc.rc b/win/winvnc/winvnc.rc index 143b0d6f..7036da2e 100644 --- a/win/winvnc/winvnc.rc +++ b/win/winvnc/winvnc.rc @@ -72,14 +72,14 @@ BEGIN BEGIN VALUE "Comments", "\0" VALUE "CompanyName", "Constantin Kaplinsky\0" - VALUE "FileDescription", "TightVNC Server for Win32\0" + VALUE "FileDescription", "TigerVNC Server for Win32\0" VALUE "FileVersion", "4.1.1\0" VALUE "InternalName", "winvnc\0" VALUE "LegalCopyright", "Copyright (C) 1998-2005 [many holders]\0" - VALUE "LegalTrademarks", "TightVNC\0" + VALUE "LegalTrademarks", "TigerVNC\0" VALUE "OriginalFilename", "winvnc4.exe\0" VALUE "PrivateBuild", "\0" - VALUE "ProductName", "TightVNC Server\0" + VALUE "ProductName", "TigerVNC Server\0" VALUE "ProductVersion", "4.1.1\0" VALUE "SpecialBuild", "\0" END @@ -144,7 +144,7 @@ BEGIN LTEXT ">version<",IDC_VERSION,170,10,72,15 LTEXT ">buildtime<",IDC_BUILDTIME,45,25,202,15 LTEXT ">copyright<",IDC_COPYRIGHT,45,40,202,15 - LTEXT "See http://www.tightvnc.com for more information on VNC.", + LTEXT "See http://www.tigervnc.org for more information on VNC.", IDC_STATIC,45,55,202,15 END diff --git a/win/winvnc/winvnc4.exe.manifest b/win/winvnc/winvnc4.exe.manifest index 69be5a04..0a29d9eb 100644 --- a/win/winvnc/winvnc4.exe.manifest +++ b/win/winvnc/winvnc4.exe.manifest @@ -3,7 +3,7 @@ <assemblyIdentity version="4.0.0.26" processorArchitecture="X86" - name="TightVNC.winvnc4.exe" + name="TigerVNC.winvnc4.exe" type="win32" /> <description>.NET control deployment tool</description> |