From c3dcd62a138d85236ca32a48c26276c06f889246 Mon Sep 17 00:00:00 2001 From: Michael Krelin Date: Sun, 11 Jul 2004 04:31:14 +0000 Subject: prepared for klog 1.1 release git-svn-id: http://svn.klever.net/kin/klog/trunk@8 fe716a7a-6dde-0310-88d9-d003556173a8 --- diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..a9fb0c7 --- a/dev/null +++ b/AUTHORS @@ -0,0 +1,3 @@ +Klever dissected: + Michael 'hacker' Krelin + Leonid Ivanov diff --git a/COPYING b/COPYING index 997e508..9abe63f 100644 --- a/COPYING +++ b/COPYING @@ -1,4 +1,4 @@ -Copyright (c) 1998, 2002 Klever Group (http://www.klever.net/) +Copyright (c) 1998-2004 Klever Group (http://www.klever.net/) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in diff --git a/README b/README.RELEASE index fbdfd9c..fbdfd9c 100644 --- a/README +++ b/README.RELEASE diff --git a/help/klog.rtf b/help/klog.rtf index 587fbcd..9531c73 100644 --- a/help/klog.rtf +++ b/help/klog.rtf @@ -17,7 +17,7 @@ ${\footnote About KLog} \par\sa120\sb120\qj\pard \f1\fs18\sb120 \par\sa120\sb120\qj\pard \f1\fs18\sb120 {\b {\i Enjoy!}} { -\par\pard\plain\sb360\sa120 \f1\fs16 Copyright (c) 1998, 2002 {\uldb\cf0 Klever Group (http://www.klever.net/)}{\v %!ExecFile("http://www.klever.net/")} +\par\pard\plain\sb360\sa120 \f1\fs16 Copyright (c) 1998-2004 {\uldb\cf0 Klever Group (http://www.klever.net/)}{\v %!ExecFile("http://www.klever.net/")} \par\qj\sb120\sa120Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: \par The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. \par \sa360 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. @@ -29,8 +29,9 @@ ${\footnote About KLog} \pard\plain #{\footnote News} ${\footnote What's New} -\par\pard\plain\f1\fs24\qc\cf2\b 1.00 Beta 2 - August 19th, 2002 +\par\pard\plain\f1\fs24\qc\cf2\b 1.1 - July 11th, 2004 \par\pard\plain\fi0\li0\f1\fs18 \bullet Change of license and opening the source code +\par\pard\plain\fi0\li0\f1\fs18 \bullet Minor changes in code, mostly bugfixes \page \pard\plain\keepn diff --git a/help/klog.xml b/help/klog.xml index f566200..830b297 100644 --- a/help/klog.xml +++ b/help/klog.xml @@ -5,12 +5,13 @@

KLog is our Win32 implementation of *nix syslog daemon to support remote logging of messages from unix servers, routers, terminal servers and other syslog-enabled devices/applications.

Enjoy!

- + - + Change of license and opening the source code + Minor changes in code, mostly bugfixes diff --git a/install/install.cpp b/install/install.cpp index 212ad40..c0e0bb8 100644 --- a/install/install.cpp +++ b/install/install.cpp @@ -1,13 +1,13 @@ #include "resource.h" #include "../shared-code/install.h" -#define KINAME "KLog 1.00 Beta 2" +#define KINAME "KLog 1.1" #define SKINAME "KLog" BOOL Install(void) { -STRING dPath = strFETCH_REG_KEY(HKEY_LOCAL_MACHINE,"Software\\Klever Group, Inc.", SKINAME "Path"); -STRING kPath = strFETCH_REG_KEY(HKEY_LOCAL_MACHINE,"Software\\Klever Group, Inc.","KINPath"); +STRING dPath = strFETCH_REG_KEY(HKEY_LOCAL_MACHINE,"Software\\Klever Group", SKINAME "Path"); +STRING kPath = strFETCH_REG_KEY(HKEY_LOCAL_MACHINE,"Software\\Klever Group","KINPath"); LPCSTR qPath = ((LPCSTR)dPath)?(LPCSTR)dPath:(((LPCSTR)kPath)?(LPSTR)kPath:"C:\\Program Files\\Klever\\Nothings"); STRING path = REQUESTPATH(" " KINAME,"\nEnter destination path:",qPath); if(!path) @@ -34,9 +34,9 @@ STRING shortPath = GET_SHORT_PATH(path); return FALSE; } - ADDMENU("Accessories\\Klever Co.",SKINAME,path,SKINAME ".exe"); - strSET_REG_KEY(HKEY_LOCAL_MACHINE,"Software\\Klever Group, Inc.",SKINAME "Path",path); - strSET_REG_KEY(HKEY_LOCAL_MACHINE,"Software\\Klever Group, Inc.","KINPath",path); + ADDMENU("Klever Group",SKINAME,path,SKINAME ".exe"); + strSET_REG_KEY(HKEY_LOCAL_MACHINE,"Software\\Klever Group",SKINAME "Path",path); + strSET_REG_KEY(HKEY_LOCAL_MACHINE,"Software\\Klever Group","KINPath",path); FILE* inf=CREATE_INF_FILE(path,SKINAME ".INF"); if(!inf){ @@ -59,12 +59,12 @@ FILE* inf=CREATE_INF_FILE(path,SKINAME ".INF"); INF_UNINSTALL_REG(inf,SKINAME); INF_FILE_SECTION(inf,"kMenu"); - INF_MENU_GROUP(inf,1,"Accessories\\Klever Co."); + INF_MENU_GROUP(inf,1,"Klever Group"); INF_MENU_ITEM(inf,1,SKINAME); fclose(inf); REG_UNINSTALL_COMMAND(SKINAME,"Klever " KINAME,shortPath,SKINAME ".INF","Uninstall"); - MessageBox(NULL,KINAME " installed successfully, you may now run it from Programs/Accessories/Klever Co. menu, move it to your Startup group or remove it using Control Panel Add/Remove Programs applet."," Rejoice!",MB_ICONINFORMATION|MB_OK); + MessageBox(NULL,KINAME " installed successfully, you may now run it from 'Programs/Klever Group' menu, move it to your Startup group or remove it using Control Panel Add/Remove Programs applet."," Rejoice!",MB_ICONINFORMATION|MB_OK); return TRUE; } diff --git a/install/install.rc b/install/install.rc index 45bc88b..6a3fd3e 100644 --- a/install/install.rc +++ b/install/install.rc @@ -131,8 +131,8 @@ IDI_ICON ICON DISCARDABLE "../shared-data/install-icon.ico // VS_VERSION_INFO VERSIONINFO - FILEVERSION 1,0,0,2 - PRODUCTVERSION 1,0,0,2 + FILEVERSION 1,1,0,0 + PRODUCTVERSION 1,1,0,0 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -149,13 +149,13 @@ BEGIN BEGIN VALUE "CompanyName", "Klever Group (http://www.klever.net/)\0" VALUE "FileDescription", "INSTALL: KLog, logging daemon\0" - VALUE "FileVersion", "1, 0, 0, 2\0" + VALUE "FileVersion", "1, 1, 0, 0\0" VALUE "InternalName", "INSTALL\0" - VALUE "LegalCopyright", "Copyright © 1998, 2002 Klever Group (http://www.klever.net/)\0" + VALUE "LegalCopyright", "Copyright © 1998-2004 Klever Group (http://www.klever.net/)\0" VALUE "LegalTrademarks", "Klever Group (http://www.klever.net/)\0" VALUE "OriginalFilename", "INSTALL.EXE\0" VALUE "ProductName", "KLog\0" - VALUE "ProductVersion", "1, 0, 0, 2\0" + VALUE "ProductVersion", "1, 1, 0, 0\0" END END BLOCK "VarFileInfo" diff --git a/klog.rc b/klog.rc index 4b61320..92755ed 100644 --- a/klog.rc +++ b/klog.rc @@ -83,9 +83,9 @@ CAPTION "About KLog" FONT 8, "MS Sans Serif" BEGIN ICON IDR_MAINFRAME,IDC_STATIC,7,17,18,20 - LTEXT "KLog, Version 1.00 Beta 2",IDC_STATIC,40,16,119,8, + LTEXT "KLog, Version 1.1",IDC_STATIC,40,16,119,8, SS_NOPREFIX - LTEXT "Copyright © 1998,2002 Klever Group",IDC_STATIC,40,31,119,8 + LTEXT "Copyright © 1998-2004 Klever Group",IDC_STATIC,40,31,119,8 DEFPUSHBUTTON "OK",IDOK,178,13,32,14,WS_GROUP PUSHBUTTON "http://www.klever.net/",IDC_KLEVERNET,125,49,85,14 END @@ -804,8 +804,8 @@ END // VS_VERSION_INFO VERSIONINFO - FILEVERSION 1,0,0,2 - PRODUCTVERSION 1,0,0,2 + FILEVERSION 1,1,0,0 + PRODUCTVERSION 1,1,0,0 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -822,9 +822,9 @@ BEGIN BEGIN VALUE "CompanyName", "Klever Group (http://www.klever.net/)\0" VALUE "FileDescription", "KLog, logging daemon\0" - VALUE "FileVersion", "1, 0, 0, 2\0" + VALUE "FileVersion", "1, 1, 0, 0\0" VALUE "InternalName", "KLOG\0" - VALUE "LegalCopyright", "Copyright © 1998, 2002 Klever Group (http://www.klever.net/)\0" + VALUE "LegalCopyright", "Copyright © 1998-2004 Klever Group (http://www.klever.net/)\0" VALUE "LegalTrademarks", "Klever Group (http://www.klever.net/)\0" VALUE "OriginalFilename", "KLOG.EXE\0" VALUE "ProductName", "KLog\0" @@ -1072,7 +1072,7 @@ BEGIN IDS_KLOG_EXPORT "Export to" IDS_KLOG_IMPORT "Import from" IDS_KLOG_EXT ".klg" - IDS_REGISTRYKEY "Klever Group, Inc." + IDS_REGISTRYKEY "Klever Group" IDS_KLEVERNET_URL "http://www.klever.net/" IDS_TIP_LOG "%s [%s] %s.%s" IDS_LOGTIMEFORMAT "%H:%M:%S %B %d" -- cgit v0.9.0.2