You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(42) |
Sep
(42) |
Oct
(57) |
Nov
(12) |
Dec
(47) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(14) |
Feb
(4) |
Mar
(52) |
Apr
(13) |
May
(89) |
Jun
(38) |
Jul
(5) |
Aug
(32) |
Sep
(68) |
Oct
(27) |
Nov
(2) |
Dec
(13) |
2004 |
Jan
(3) |
Feb
(6) |
Mar
(3) |
Apr
(1) |
May
|
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <ha...@us...> - 2002-10-22 08:19:25
|
Update of /cvsroot/decaldev/source/DecalFilters In directory usw-pr-cvs1:/tmp/cvs-serv18756 Modified Files: CharacterStats.cpp Log Message: Server is a pre-login field. Index: CharacterStats.cpp =================================================================== RCS file: /cvsroot/decaldev/source/DecalFilters/CharacterStats.cpp,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -d -r1.30 -r1.31 *** CharacterStats.cpp 17 Oct 2002 00:16:35 -0000 1.30 --- CharacterStats.cpp 22 Oct 2002 08:19:21 -0000 1.31 *************** *** 1050,1054 **** HRESULT cCharacterStats::get_Server(BSTR *pVal) { ! if (!GotLogin) return E_FAIL; --- 1050,1054 ---- HRESULT cCharacterStats::get_Server(BSTR *pVal) { ! if( !(*Server) ) return E_FAIL; |
From: <ha...@us...> - 2002-10-22 08:16:30
|
Update of /cvsroot/decaldev/source/DecalControls In directory usw-pr-cvs1:/tmp/cvs-serv16743 Modified Files: Edit.h Edit.cpp Log Message: Cynica_l's edit changes Index: Edit.h =================================================================== RCS file: /cvsroot/decaldev/source/DecalControls/Edit.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Edit.h 29 Sep 2001 06:24:22 -0000 1.3 --- Edit.h 22 Oct 2002 08:16:26 -0000 1.4 *************** *** 32,35 **** --- 32,36 ---- SIZE m_szMargin; + bool m_bAllowCapture; // cyn, 15/10/2002 bool m_bCapture; bool m_bDrawCaret; Index: Edit.cpp =================================================================== RCS file: /cvsroot/decaldev/source/DecalControls/Edit.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Edit.cpp 24 Jul 2002 03:56:34 -0000 1.3 --- Edit.cpp 22 Oct 2002 08:16:26 -0000 1.4 *************** *** 11,15 **** cEdit::cEdit() ! : m_bCapture( false ), m_bDrawCaret( false ), m_bSelection( false ), --- 11,16 ---- cEdit::cEdit() ! : m_bAllowCapture( true ), // cyn -- 15/10/2002 ! m_bCapture( false ), m_bDrawCaret( false ), m_bSelection( false ), *************** *** 186,189 **** --- 187,193 ---- STDMETHODIMP cEdit::KeyboardEndCapture( VARIANT_BOOL bCancel ) { + if (bCancel) { // cyn, 15/10/2002 + m_bAllowCapture = false; + } m_bCapture = false; m_pSite->EndTimer( TIMER_CARET ); *************** *** 193,196 **** --- 197,201 ---- m_pSite->get_ID( &nID ); Fire_End( nID, ( bCancel ) ? VARIANT_FALSE : VARIANT_TRUE ); + m_bAllowCapture = true; // cyn, 15/10/2002 return S_OK; *************** *** 578,598 **** STDMETHODIMP cEdit::Capture() { ! _ASSERTE( !m_bCapture ); ! m_bCapture = true; ! m_bDrawCaret = true; ! m_pSite->CaptureKeyboard(); ! m_pSite->Invalidate(); ! m_pSite->StartTimer( TIMER_CARET, 500 ); ! // Move the caret to the end ! // TODO: Select the entire contents ! put_Caret( -1 ); ! long nID; ! m_pSite->get_ID( &nID ); ! Fire_Begin( nID ); ! return S_OK; } --- 583,608 ---- STDMETHODIMP cEdit::Capture() { ! _ASSERTE( !m_bCapture ); ! if ( m_bAllowCapture ) { ! m_bCapture = true; ! m_bDrawCaret = true; ! m_pSite->CaptureKeyboard(); ! m_pSite->Invalidate(); ! m_pSite->StartTimer( TIMER_CARET, 500 ); ! // Move the caret to the end ! // TODO: Select the entire contents ! put_Caret( -1 ); ! long nID; ! m_pSite->get_ID( &nID ); ! Fire_Begin( nID ); ! ! return S_OK; ! } else { ! return S_FALSE; ! } } |
From: <ha...@us...> - 2002-10-22 08:15:16
|
Update of /cvsroot/decaldev/source/Inject In directory usw-pr-cvs1:/tmp/cvs-serv15356 Modified Files: Manager.cpp LayerSite.cpp Log Message: Cynica_l's edit changes Index: Manager.cpp =================================================================== RCS file: /cvsroot/decaldev/source/Inject/Manager.cpp,v retrieving revision 1.60 retrieving revision 1.61 diff -C2 -d -r1.60 -r1.61 *** Manager.cpp 22 Sep 2002 08:15:08 -0000 1.60 --- Manager.cpp 22 Oct 2002 08:15:10 -0000 1.61 *************** *** 838,843 **** { // End with success ! m_pKeyboard->sendKeyboardEndCapture( VARIANT_FALSE ); m_pKeyboard = NULL; clearDestroyList(); --- 838,850 ---- { // End with success ! // cyn, 15/10/2002 ! // Clear m_pKeyboard before triggering KeyboardEndCapture, ! // This allows KeyboardEndCapture to re-capture the keyboard ! // Edit will only allow recapture if VARIANT_FALSE is passed ! // I believe Edit is the only control in DecalControls.* that captures the keyboard ! cLayerSite *Keyboard = m_pKeyboard; m_pKeyboard = NULL; + Keyboard->sendKeyboardEndCapture( VARIANT_FALSE ); + Keyboard = NULL; // I don't know if it does some smart pointer reference counting or whatever.. can't hurt clearDestroyList(); Index: LayerSite.cpp =================================================================== RCS file: /cvsroot/decaldev/source/Inject/LayerSite.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** LayerSite.cpp 13 Apr 2002 18:23:00 -0000 1.5 --- LayerSite.cpp 22 Oct 2002 08:15:12 -0000 1.6 *************** *** 847,851 **** { // Cancel capture in the existing keyboard capture- if any ! if( cManager::_p->m_pKeyboard != NULL ) cManager::_p->m_pKeyboard->sendKeyboardEndCapture( VARIANT_TRUE ); --- 847,852 ---- { // Cancel capture in the existing keyboard capture- if any ! // Don't fire EndCapture if we already have the capture. cyn -- 15/10/2002 ! if( ( cManager::_p->m_pKeyboard != NULL ) && ( cManager::_p->m_pKeyboard != this ) ) cManager::_p->m_pKeyboard->sendKeyboardEndCapture( VARIANT_TRUE ); |
From: <as...@us...> - 2002-10-20 16:35:41
|
Update of /cvsroot/decaldev/source/DenAgent In directory usw-pr-cvs1:/tmp/cvs-serv32278 Modified Files: DownloaderDlg.h DownloaderDlg.cpp AutoUpdate.cpp Log Message: Fixed deleting files when autoupdate server was unavailable Index: DownloaderDlg.h =================================================================== RCS file: /cvsroot/decaldev/source/DenAgent/DownloaderDlg.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** DownloaderDlg.h 26 May 2002 20:47:31 -0000 1.2 --- DownloaderDlg.h 20 Oct 2002 16:35:36 -0000 1.3 *************** *** 17,20 **** --- 17,26 ---- // Construction public: + enum DownloadStatus + { + DOWNLOAD_SUCCEEDED, + DOWNLOAD_FAILED + }; + cDownloaderDlg(CWnd* pParent = NULL); // standard constructor *************** *** 35,38 **** --- 41,45 ---- bool m_bThreadDone; + DownloadStatus GetDownloadStatus(); unsigned long m_ulTotalData; *************** *** 64,67 **** --- 71,75 ---- private: std::vector<FILELIST> m_FileList; + bool m_bDownloadSucceeded; }; Index: DownloaderDlg.cpp =================================================================== RCS file: /cvsroot/decaldev/source/DenAgent/DownloaderDlg.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** DownloaderDlg.cpp 26 May 2002 20:47:31 -0000 1.10 --- DownloaderDlg.cpp 20 Oct 2002 16:35:36 -0000 1.11 *************** *** 19,23 **** cDownloaderDlg::cDownloaderDlg(CWnd* pParent /*=NULL*/) ! : CDialog(cDownloaderDlg::IDD, pParent) { //{{AFX_DATA_INIT(cDownloaderDlg) --- 19,23 ---- cDownloaderDlg::cDownloaderDlg(CWnd* pParent /*=NULL*/) ! : CDialog(cDownloaderDlg::IDD, pParent), m_bDownloadSucceeded(false) { //{{AFX_DATA_INIT(cDownloaderDlg) *************** *** 107,113 **** callback.m_pDlg = this; - - //char szFile[MAX_PATH+1]; - CString strFullURL = m_FileList[i].strFile; m_stIEMsg.SetWindowText ( strFullURL ); --- 107,110 ---- *************** *** 130,133 **** --- 127,132 ---- sMsg.Format ( _T("Download failed."), (DWORD) hr ); + m_bDownloadSucceeded = false; + AfxMessageBox ( sMsg ); PostMessage(WM_USER+1, 1, NULL); *************** *** 135,152 **** else { PostMessage(WM_USER+1, IDCANCEL, NULL); AfxEndThread(0); } } else { OFSTRUCT targetFile; ! if (OpenFile(m_FileList[i].strFile, &targetFile, OF_EXIST) != HFILE_ERROR) ! DeleteFile(m_FileList[i].strFile); ! MoveFile(m_FileList[i].strLFile, m_FileList[i].strFile); } if(g_fAbortDownload) { PostMessage(WM_USER+1, IDCANCEL, NULL); AfxEndThread(0); --- 134,161 ---- else { + m_bDownloadSucceeded = false; + PostMessage(WM_USER+1, IDCANCEL, NULL); AfxEndThread(0); } } else { + m_bDownloadSucceeded = true; + OFSTRUCT targetFile; + OFSTRUCT sourceFile; ! // Make sure we really got a source file ! if (OpenFile(m_FileList[i].strLFile, &sourceFile, OF_EXIST) != HFILE_ERROR) ! { ! if (OpenFile(m_FileList[i].strFile, &targetFile, OF_EXIST) != HFILE_ERROR) ! DeleteFile(m_FileList[i].strFile); ! MoveFile(m_FileList[i].strLFile, m_FileList[i].strFile); ! } } if(g_fAbortDownload) { + m_bDownloadSucceeded = false; PostMessage(WM_USER+1, IDCANCEL, NULL); AfxEndThread(0); *************** *** 226,228 **** --- 235,246 ---- } return 0; + } + + cDownloaderDlg::DownloadStatus cDownloaderDlg::GetDownloadStatus() + { + if (m_bDownloadSucceeded) + return DownloadStatus::DOWNLOAD_SUCCEEDED; + else + return DownloadStatus::DOWNLOAD_FAILED; + } Index: AutoUpdate.cpp =================================================================== RCS file: /cvsroot/decaldev/source/DenAgent/AutoUpdate.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** AutoUpdate.cpp 27 May 2002 22:44:04 -0000 1.5 --- AutoUpdate.cpp 20 Oct 2002 16:35:36 -0000 1.6 *************** *** 9,13 **** static LPCSTR updateList = "updatelist.xml" ; ! // DownloadAGent /* static */ bool DownloadAgent::downloadFile(std::string remoteFile, std::string localFile) { --- 9,13 ---- static LPCSTR updateList = "updatelist.xml" ; ! // DownloadAgent /* static */ bool DownloadAgent::downloadFile(std::string remoteFile, std::string localFile) { *************** *** 20,24 **** dlg.DoModal(); ! return true; } --- 20,24 ---- dlg.DoModal(); ! return (dlg.GetDownloadStatus() == cDownloaderDlg::DownloadStatus::DOWNLOAD_SUCCEEDED); } *************** *** 56,60 **** dlg.DoModal(); ! return true; } --- 56,60 ---- dlg.DoModal(); ! return (dlg.GetDownloadStatus() == cDownloaderDlg::DownloadStatus::DOWNLOAD_SUCCEEDED); } *************** *** 203,212 **** // Download the remote XML document to a local file ! DownloadAgent::downloadFile(m_RemoteXML, m_DecalDir + "/" + updateList); // Parse it as an XML document MSXML::IXMLDOMDocumentPtr pDoc; ! try { pDoc.CreateInstance (__uuidof(MSXML::DOMDocument), NULL, CLSCTX_INPROC_SERVER); pDoc->async = false; --- 203,218 ---- // Download the remote XML document to a local file ! if (!DownloadAgent::downloadFile(m_RemoteXML, m_DecalDir + "/" + updateList)) ! { ! // We couldn't download the update list. We must bail here, or suffer! ! ::MessageBox(NULL, "Could not obtain updatelist.xml. Cannot update - Hosting server down?", NULL, MB_OK); ! ! return false; ! } // Parse it as an XML document MSXML::IXMLDOMDocumentPtr pDoc; ! // try { pDoc.CreateInstance (__uuidof(MSXML::DOMDocument), NULL, CLSCTX_INPROC_SERVER); pDoc->async = false; *************** *** 295,301 **** m_RemoteSources.push_back(aUSource); } ! } catch (...) { ! return false; ! } return true; --- 301,307 ---- m_RemoteSources.push_back(aUSource); } ! // } catch (...) { ! // return false; ! // } return true; |
From: <ha...@us...> - 2002-10-18 01:53:11
|
Update of /cvsroot/decaldev/source/Installer In directory usw-pr-cvs1:/tmp/cvs-serv2883 Modified Files: DecalInstaller.wip Log Message: installer updates Index: DecalInstaller.wip =================================================================== RCS file: /cvsroot/decaldev/source/Installer/DecalInstaller.wip,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 Binary files /tmp/cvsNOeZt9 and /tmp/cvsinAPB8 differ |
From: <ha...@us...> - 2002-10-18 01:52:43
|
Update of /cvsroot/decaldev/source/Installer/Res In directory usw-pr-cvs1:/tmp/cvs-serv2724 Modified Files: readme.rtf Install.vbs Log Message: installer updates Index: readme.rtf =================================================================== RCS file: /cvsroot/decaldev/source/Installer/Res/readme.rtf,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** readme.rtf 3 Oct 2002 08:26:53 -0000 1.18 --- readme.rtf 18 Oct 2002 01:52:38 -0000 1.19 *************** *** 1,4 **** {\rtf1\ansi\ansicpg1252\uc1\deff0\stshfdbch0\stshfloch0\stshfhich0\stshfbi0\deflang1033\deflangfe1033{\fonttbl{\f0\froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;} ! {\f2\fmodern\fcharset0\fprq1{\*\panose 02070309020205020404}Courier New;}{\f3\froman\fcharset2\fprq2{\*\panose 05050102010706020507}Symbol;}{\f36\froman\fcharset0\fprq2{\*\panose 02040502050405020303}Georgia;} {\f37\froman\fcharset238\fprq2 Times New Roman CE;}{\f38\froman\fcharset204\fprq2 Times New Roman Cyr;}{\f40\froman\fcharset161\fprq2 Times New Roman Greek;}{\f41\froman\fcharset162\fprq2 Times New Roman Tur;} {\f42\froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\f43\froman\fcharset178\fprq2 Times New Roman (Arabic);}{\f44\froman\fcharset186\fprq2 Times New Roman Baltic;}{\f45\froman\fcharset163\fprq2 Times New Roman (Vietnamese);} --- 1,4 ---- {\rtf1\ansi\ansicpg1252\uc1\deff0\stshfdbch0\stshfloch0\stshfhich0\stshfbi0\deflang1033\deflangfe1033{\fonttbl{\f0\froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;} ! {\f2\fmodern\fcharset0\fprq1{\*\panose 02070309020205020404}Courier New;}{\f3\froman\fcharset2\fprq2{\*\panose 05050102010706020507}Symbol;}{\f36\froman\fcharset0\fprq2{\*\panose 00000000000000000000}Georgia;} {\f37\froman\fcharset238\fprq2 Times New Roman CE;}{\f38\froman\fcharset204\fprq2 Times New Roman Cyr;}{\f40\froman\fcharset161\fprq2 Times New Roman Greek;}{\f41\froman\fcharset162\fprq2 Times New Roman Tur;} {\f42\froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\f43\froman\fcharset178\fprq2 Times New Roman (Arabic);}{\f44\froman\fcharset186\fprq2 Times New Roman Baltic;}{\f45\froman\fcharset163\fprq2 Times New Roman (Vietnamese);} *************** *** 11,42 **** \ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \fs20\lang1024\langfe1024\cgrid\langnp1024\langfenp1024 \snext11 \ssemihidden Normal Table;}}{\*\listtable{\list\listtemplateid-511903560\listsimple{\listlevel\levelnfc0\levelnfcn0 \leveljc0\leveljcn0\levelfollow0\levelstartat0\levelspace0\levelindent0{\leveltext\'01*;}{\levelnumbers;}}{\listname ;}\listid-2}}{\*\listoverridetable{\listoverride\listid-2\listoverridecount1{\lfolevel\listoverrideformat{\listlevel\levelnfc23 ! \levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat0\levelold\levelspace0\levelindent0{\leveltext\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0 }}\ls1}}{\*\rsidtbl \rsid13653186}{\*\generator Microsoft Word 10.0.2627;}{\info{\title Decal README} ! {\author Jeffrey Dodge}{\operator Jeffrey Dodge}{\creatim\yr2002\mo10\dy3\hr3\min43}{\revtim\yr2002\mo10\dy3\hr3\min43}{\version2}{\edmins4}{\nofpages1}{\nofwords148}{\nofchars847}{\*\company The Anarchs}{\nofcharsws994}{\vern16437}} ! \widowctrl\ftnbj\aenddoc\noxlattoyen\expshrtn\noultrlspc\dntblnsbdb\nospaceforul\hyphcaps0\horzdoc\dghspace120\dgvspace120\dghorigin1701\dgvorigin1984\dghshow0\dgvshow3\jcompress\viewkind4\viewscale100\nolnhtadjtbl\rsidroot13653186 \fet0\sectd ! \linex0\sectdefaultcl\sftnbj {\*\pnseclvl1\pnucrm\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl2\pnucltr\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl3\pndec\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl4 \pnlcltr\pnstart1\pnindent720\pnhang {\pntxta )}}{\*\pnseclvl5\pndec\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl6\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl7\pnlcrm\pnstart1\pnindent720\pnhang {\pntxtb (} {\pntxta )}}{\*\pnseclvl8\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl9\pnlcrm\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}\pard\plain \qc \li0\ri0\nowidctlpar\faauto\rin0\lin0\itap0 \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\b\f36\fs28\cf1\insrsid13653186 Decal README \par }{\f2\fs20\cf1\insrsid13653186 ! \par }{\fs20\cf1\insrsid13653186 This is the 2.4.1.2}{\fs20\cf1\insrsid13653186 BETA Release of Decal. \par ! \par }\pard \ql \li0\ri0\nowidctlpar\faauto\rin0\lin0\itap0 {\fs22\cf1\insrsid13653186 This is Decal 2.4.1.}{\fs22\cf1\insrsid13653186 2}{\fs22\cf1\insrsid13653186 , a BETA release. Beta releases are not intended for all users, and very limited support is available. Beta software contains bugs, if you run into problems, please report them at http://forums.acdev.org/phpBB2/viewforum.php. ! \par }{\b\fs22\cf1\insrsid13653186 ! \par }\pard \ql \li0\ri0\nowidctlpar\faauto\rin0\lin0\itap0\pararsid13653186 {\b\fs22\cf1\insrsid13653186 Changes since Release 2.4.1.0 \par {\pntext\pard\plain\f3\fs22\cf1\insrsid13653186 \loch\af3\dbch\af0\hich\f3 \'b7\tab}}\pard \ql \fi-360\li360\ri0\nowidctlpar{\*\pn \pnlvlbody\ilvl0\ls1\pnrnot0\pnf3 {\pntxtb \'b7}}\faauto\ls1\rin0\lin360\itap0\pararsid13653186 {\fs22\cf1\insrsid13653186 ACHooks: QueryMemLoc added to the IDL (it should have always been there). ! \par {\pntext\pard\plain\f3\fs22\cf1\insrsid13653186 \loch\af3\dbch\af0\hich\f3 \'b7\tab}ACHooks->QueryMemLoc now returns NULL if there is a client and memlocs.xml version mismatch. \par {\pntext\pard\plain\f3\fs22\cf1\insrsid13653186 \loch\af3\dbch\af0\hich\f3 \'b7\tab}}\pard \ql \fi-360\li360\ri0\nowidctlpar{\*\pn \pnlvlbody\ilvl0\ls1\pnrnot0\pnf3 {\pntxtb \'b7}}\faauto\ls1\rin0\lin360\itap0\pararsid13653186 {\fs22\cf1\insrsid13653186 ACHooks is created by the Decal object rather than IPluginSite. As a result Services can obtain a reference to it now. \par {\pntext\pard\plain\f3\fs22\cf1\insrsid13653186 \loch\af3\dbch\af0\hich\f3 \'b7\tab}}\pard \ql \fi-360\li360\ri0\nowidctlpar{\*\pn \pnlvlbody\ilvl0\ls1\pnrnot0\pnf3 {\pntxtb \'b7}}\faauto\ls1\rin0\lin360\itap0\pararsid13653186 {\fs22\cf1\insrsid13653186 ACHooks: SendTellEx Hook ! \par {\pntext\pard\plain\f3\fs22\cf1\insrsid13653186 \loch\af3\dbch\af0\hich\f3 \'b7\tab}DecalNet: Uses client hooks for a quicker and more stable parsing method. If the memory locations are not there, it falls back to the previous parser. ! \par }\pard \ql \li0\ri0\nowidctlpar\faauto\rin0\lin0\itap0 {\b\fs22\cf1\insrsid13653186 \par ! \par }{\b\fs22\cf1\insrsid13653186 Changes since Release 2.4 ! \par {\pntext\pard\plain\f3\fs22\cf1 \loch\af3\dbch\af0\hich\f3 \'b7\tab}}\pard \ql \fi-360\li360\ri0\nowidctlpar{\*\pn \pnlvlbody\ilvl0\ls1\pnrnot0\pnf3 {\pntxtb \'b7}}\faauto\ls1\rin0\lin360\itap0\pararsid13653186 {\fs22\cf1\insrsid13653186 ACHooks: Added hook for SetAutoRun ! \par {\pntext\pard\plain\f3\fs22\cf1 \loch\af3\dbch\af0\hich\f3 \'b7\tab}ACHooks: Added hood for SendTell ! \par {\pntext\pard\plain\f3\fs22\cf1 \loch\af3\dbch\af0\hich\f3 \'b7\tab}WorldFilter: Now uses DestroyedObject hook, this should result in less lag and better memory usage \par }} --- 11,54 ---- \ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \fs20\lang1024\langfe1024\cgrid\langnp1024\langfenp1024 \snext11 \ssemihidden Normal Table;}}{\*\listtable{\list\listtemplateid-511903560\listsimple{\listlevel\levelnfc0\levelnfcn0 \leveljc0\leveljcn0\levelfollow0\levelstartat0\levelspace0\levelindent0{\leveltext\'01*;}{\levelnumbers;}}{\listname ;}\listid-2}}{\*\listoverridetable{\listoverride\listid-2\listoverridecount1{\lfolevel\listoverrideformat{\listlevel\levelnfc23 ! \levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat0\levelold\levelspace0\levelindent0{\leveltext\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0 }}\ls1}}{\*\rsidtbl \rsid8468288\rsid13653186}{\*\generator Microsoft Word 10.0.2627;}{\info ! {\title Decal README}{\author Jeffrey Dodge}{\operator Jeffrey Dodge}{\creatim\yr2002\mo10\dy3\hr3\min43}{\revtim\yr2002\mo10\dy17\hr21\min39}{\version3}{\edmins8}{\nofpages1}{\nofwords165}{\nofchars944}{\*\company The Anarchs}{\nofcharsws1107} ! {\vern16437}}\widowctrl\ftnbj\aenddoc\noxlattoyen\expshrtn\noultrlspc\dntblnsbdb\nospaceforul\hyphcaps0\horzdoc\dghspace120\dgvspace120\dghorigin1701\dgvorigin1984\dghshow0\dgvshow3\jcompress\viewkind4\viewscale100\nolnhtadjtbl\rsidroot13653186 \fet0 ! \sectd \linex0\sectdefaultcl\sftnbj {\*\pnseclvl1\pnucrm\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl2\pnucltr\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl3\pndec\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl4 \pnlcltr\pnstart1\pnindent720\pnhang {\pntxta )}}{\*\pnseclvl5\pndec\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl6\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl7\pnlcrm\pnstart1\pnindent720\pnhang {\pntxtb (} {\pntxta )}}{\*\pnseclvl8\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl9\pnlcrm\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}\pard\plain \qc \li0\ri0\nowidctlpar\faauto\rin0\lin0\itap0 \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\b\f36\fs28\cf1\insrsid13653186 Decal README \par }{\f2\fs20\cf1\insrsid13653186 ! \par }{\fs20\cf1\insrsid13653186 This is the 2.4.1.}{\fs20\cf1\insrsid8468288 3}{\fs20\cf1\insrsid13653186 BETA Release of Decal. \par ! \par }\pard \ql \li0\ri0\nowidctlpar\faauto\rin0\lin0\itap0 {\fs22\cf1\insrsid13653186 This is Decal 2.4.1.}{\fs22\cf1\insrsid8468288 3}{\fs22\cf1\insrsid13653186 , a BETA release. Beta releases are not intended for all users, and very limited support is available. Beta software contains bugs, if you run into problems, please report them at http://forums.acdev.org/phpBB2/viewforum.php. ! \par }\pard \ql \li0\ri0\nowidctlpar\faauto\rin0\lin0\itap0\pararsid8468288 {\b\fs22\cf1\insrsid8468288 ! \par Changes since Release 2.4.1.2 ! \par {\pntext\pard\plain\f3\fs22\cf1\insrsid8468288 \loch\af3\dbch\af0\hich\f3 \'b7\tab}}\pard \ql \fi-360\li360\ri0\nowidctlpar{\*\pn \pnlvlbody\ilvl0\ls1\pnrnot0\pnf3 {\pntxtb \'b7}}\faauto\ls1\rin0\lin360\itap0\pararsid8468288 {\fs22\cf1\insrsid8468288 ! Compiled in VC6 (works on windows 9x again) ! \par {\pntext\pard\plain\f3\fs22\cf1\insrsid8468288 \loch\af3\dbch\af0\hich\f3 \'b7\tab}}\pard \ql \fi-360\li360\ri0\nowidctlpar{\*\pn \pnlvlbody\ilvl0\ls1\pnrnot0\pnf3 {\pntxtb \'b7}}\faauto\ls1\rin0\lin360\itap0\pararsid8468288 {\fs22\cf1\insrsid8468288 Ch ! aracterStats fixes ! \par {\pntext\pard\plain\f3\fs22\cf1\insrsid8468288 \loch\af3\dbch\af0\hich\f3 \'b7\tab}}\pard \ql \fi-360\li360\ri0\nowidctlpar{\*\pn \pnlvlbody\ilvl0\ls1\pnrnot0\pnf3 {\pntxtb \'b7}}\faauto\ls1\rin0\lin360\itap0\pararsid8468288 {\fs22\cf1\insrsid8468288 ! WorldFilter fixes ! \par }\pard \ql \li0\ri0\nowidctlpar{\*\pn \pnlvlcont\ilvl0\ls0\pnrnot0\pndec }\faauto\rin0\lin0\itap0 {\b\fs22\cf1\insrsid13653186 ! \par }\pard \ql \li0\ri0\nowidctlpar{\*\pn \pnlvlcont\ilvl0\ls0\pnrnot0\pndec }\faauto\rin0\lin0\itap0\pararsid13653186 {\b\fs22\cf1\insrsid13653186 Changes since Release 2.4.1.0 \par {\pntext\pard\plain\f3\fs22\cf1\insrsid13653186 \loch\af3\dbch\af0\hich\f3 \'b7\tab}}\pard \ql \fi-360\li360\ri0\nowidctlpar{\*\pn \pnlvlbody\ilvl0\ls1\pnrnot0\pnf3 {\pntxtb \'b7}}\faauto\ls1\rin0\lin360\itap0\pararsid13653186 {\fs22\cf1\insrsid13653186 ACHooks: QueryMemLoc added to the IDL (it should have always been there). ! \par {\pntext\pard\plain\f3\fs22\cf1\insrsid13653186 \loch\af3\dbch\af0\hich\f3 \'b7\tab}}\pard \ql \fi-360\li360\ri0\nowidctlpar{\*\pn \pnlvlbody\ilvl0\ls1\pnrnot0\pnf3 {\pntxtb \'b7}}\faauto\ls1\rin0\lin360\itap0\pararsid13653186 {\fs22\cf1\insrsid13653186 ! ACHooks->QueryMemLoc now returns NULL if there is a client and memlocs.xml version mismatch. \par {\pntext\pard\plain\f3\fs22\cf1\insrsid13653186 \loch\af3\dbch\af0\hich\f3 \'b7\tab}}\pard \ql \fi-360\li360\ri0\nowidctlpar{\*\pn \pnlvlbody\ilvl0\ls1\pnrnot0\pnf3 {\pntxtb \'b7}}\faauto\ls1\rin0\lin360\itap0\pararsid13653186 {\fs22\cf1\insrsid13653186 ACHooks is created by the Decal object rather than IPluginSite. As a result Services can obtain a reference to it now. \par {\pntext\pard\plain\f3\fs22\cf1\insrsid13653186 \loch\af3\dbch\af0\hich\f3 \'b7\tab}}\pard \ql \fi-360\li360\ri0\nowidctlpar{\*\pn \pnlvlbody\ilvl0\ls1\pnrnot0\pnf3 {\pntxtb \'b7}}\faauto\ls1\rin0\lin360\itap0\pararsid13653186 {\fs22\cf1\insrsid13653186 ACHooks: SendTellEx Hook ! \par {\pntext\pard\plain\f3\fs22\cf1\insrsid13653186 \loch\af3\dbch\af0\hich\f3 \'b7\tab}}\pard \ql \fi-360\li360\ri0\nowidctlpar{\*\pn \pnlvlbody\ilvl0\ls1\pnrnot0\pnf3 {\pntxtb \'b7}}\faauto\ls1\rin0\lin360\itap0\pararsid13653186 {\fs22\cf1\insrsid13653186 ! DecalNet: Uses client hooks for a quicker and more stable parsing method. If the memory locations are not there, it falls back to the previous parser. ! \par }\pard \ql \li0\ri0\nowidctlpar{\*\pn \pnlvlcont\ilvl0\ls0\pnrnot0\pndec }\faauto\rin0\lin0\itap0 {\b\fs22\cf1\insrsid13653186 \par ! \par Changes since Release 2.4 ! \par {\pntext\pard\plain\f3\fs22\cf1\insrsid13653186 \loch\af3\dbch\af0\hich\f3 \'b7\tab}}\pard \ql \fi-360\li360\ri0\nowidctlpar{\*\pn \pnlvlbody\ilvl0\ls1\pnrnot0\pnf3 {\pntxtb \'b7}}\faauto\ls1\rin0\lin360\itap0\pararsid13653186 {\fs22\cf1\insrsid13653186 ACHooks: Added hook for SetAutoRun ! \par {\pntext\pard\plain\f3\fs22\cf1\insrsid13653186 \loch\af3\dbch\af0\hich\f3 \'b7\tab}}\pard \ql \fi-360\li360\ri0\nowidctlpar{\*\pn \pnlvlbody\ilvl0\ls1\pnrnot0\pnf3 {\pntxtb \'b7}}\faauto\ls1\rin0\lin360\itap0\pararsid13653186 {\fs22\cf1\insrsid13653186 ! ACHooks: Added hood for SendTell ! \par {\pntext\pard\plain\f3\fs22\cf1\insrsid13653186 \loch\af3\dbch\af0\hich\f3 \'b7\tab}}\pard \ql \fi-360\li360\ri0\nowidctlpar{\*\pn \pnlvlbody\ilvl0\ls1\pnrnot0\pnf3 {\pntxtb \'b7}}\faauto\ls1\rin0\lin360\itap0\pararsid13653186 {\fs22\cf1\insrsid13653186 ! WorldFilter: Now uses DestroyedObject hook, this should result in less lag and better memory usage \par }} Index: Install.vbs =================================================================== RCS file: /cvsroot/decaldev/source/Installer/Res/Install.vbs,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** Install.vbs 3 Oct 2002 08:26:53 -0000 1.26 --- Install.vbs 18 Oct 2002 01:52:38 -0000 1.27 *************** *** 57,61 **** 'All of these -must- be specified Private Const ThisProduct = "Decal" ' The name of your product, used it dialogs and such ! Private Const ThisVersion = "2.4.1.2" ' The version of your product, used in dialogs and such Private Const MSIFileName = "Decal.msi" ' The name of the MSI file that will be excuted 'Add all of your previous product IDs to the dictionary for removal by the installer --- 57,61 ---- 'All of these -must- be specified Private Const ThisProduct = "Decal" ' The name of your product, used it dialogs and such ! Private Const ThisVersion = "2.4.1.3" ' The version of your product, used in dialogs and such Private Const MSIFileName = "Decal.msi" ' The name of the MSI file that will be excuted 'Add all of your previous product IDs to the dictionary for removal by the installer *************** *** 91,94 **** --- 91,95 ---- AllProducts.Add "2.4.1.0", "{E6E9AB9D-812C-40D7-A57C-ED298B48557F}" AllProducts.Add "2.4.1.2", "{09C6E670-D686-11D6-BFDA-009027B6A4F1}" + AllProducts.Add "2.4.1.3", "{E62F700A-E214-11D6-B2DA-009027B6A4F1}" |
From: <kw...@us...> - 2002-10-17 04:27:43
|
Update of /cvsroot/decaldev/source/PlainText In directory usw-pr-cvs1:/tmp/cvs-serv11001 Modified Files: PlainText.rc Log Message: Update version resources 2.4.1.3 Index: PlainText.rc =================================================================== RCS file: /cvsroot/decaldev/source/PlainText/PlainText.rc,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** PlainText.rc 3 Oct 2002 07:46:02 -0000 1.24 --- PlainText.rc 17 Oct 2002 04:27:40 -0000 1.25 *************** *** 1,3 **** ! // Microsoft Visual C++ generated resource script. // #include "resource.h" --- 1,3 ---- ! //Microsoft Developer Studio generated resource script. // #include "resource.h" *************** *** 28,37 **** // ! 1 TEXTINCLUDE BEGIN "resource.h\0" END ! 2 TEXTINCLUDE BEGIN "#include ""winres.h""\r\n" --- 28,37 ---- // ! 1 TEXTINCLUDE MOVEABLE PURE BEGIN "resource.h\0" END ! 2 TEXTINCLUDE MOVEABLE PURE BEGIN "#include ""winres.h""\r\n" *************** *** 39,43 **** END ! 3 TEXTINCLUDE BEGIN "1 TYPELIB ""PlainText.tlb""\r\n" --- 39,43 ---- END ! 3 TEXTINCLUDE MOVEABLE PURE BEGIN "1 TYPELIB ""PlainText.tlb""\r\n" *************** *** 48,51 **** --- 48,52 ---- + #ifndef _MAC ///////////////////////////////////////////////////////////////////////////// // *************** *** 54,59 **** VS_VERSION_INFO VERSIONINFO ! FILEVERSION 2,4,1,2 ! PRODUCTVERSION 2,4,1,2 FILEFLAGSMASK 0x3fL #ifdef _DEBUG --- 55,60 ---- VS_VERSION_INFO VERSIONINFO ! FILEVERSION 2,4,1,3 ! PRODUCTVERSION 2,4,1,3 FILEFLAGSMASK 0x3fL #ifdef _DEBUG *************** *** 70,81 **** BLOCK "040904b0" BEGIN ! VALUE "Comments", "PlainText is a Decal surrogate that allows plug-ins to be written using Windows Scripting Technologies" ! VALUE "FileDescription", "PlainText Module" ! VALUE "FileVersion", "2, 4, 1, 2" ! VALUE "InternalName", "PlainText" ! VALUE "LegalCopyright", "Copyright 2001" ! VALUE "OriginalFilename", "PlainText.DLL" ! VALUE "ProductName", "PlainText Module" ! VALUE "ProductVersion", "2, 4, 1, 2" END END --- 71,86 ---- BLOCK "040904b0" BEGIN ! VALUE "Comments", "PlainText is a Decal surrogate that allows plug-ins to be written using Windows Scripting Technologies\0" ! VALUE "CompanyName", "\0" ! VALUE "FileDescription", "PlainText Module\0" ! VALUE "FileVersion", "2, 4, 1, 3\0" ! VALUE "InternalName", "PlainText\0" ! VALUE "LegalCopyright", "Copyright 2001\0" ! VALUE "LegalTrademarks", "\0" ! VALUE "OriginalFilename", "PlainText.DLL\0" ! VALUE "PrivateBuild", "\0" ! VALUE "ProductName", "PlainText Module\0" ! VALUE "ProductVersion", "2, 4, 1, 3\0" ! VALUE "SpecialBuild", "\0" END END *************** *** 86,89 **** --- 91,96 ---- END + #endif // !_MAC + ///////////////////////////////////////////////////////////////////////////// *************** *** 92,96 **** // ! IDR_SCRIPTVIEW REGISTRY "ScriptView.rgs" ///////////////////////////////////////////////////////////////////////////// --- 99,103 ---- // ! IDR_SCRIPTVIEW REGISTRY MOVEABLE PURE "ScriptView.rgs" ///////////////////////////////////////////////////////////////////////////// *************** *** 99,103 **** // ! STRINGTABLE BEGIN IDS_PROJNAME "PlainText" --- 106,110 ---- // ! STRINGTABLE DISCARDABLE BEGIN IDS_PROJNAME "PlainText" *************** *** 122,126 **** // ! IDR_SCRIPTPLUGIN REGISTRY "ScriptPlugin.rgs" #endif // English (Canada) resources ///////////////////////////////////////////////////////////////////////////// --- 129,133 ---- // ! IDR_SCRIPTPLUGIN REGISTRY MOVEABLE PURE "ScriptPlugin.rgs" #endif // English (Canada) resources ///////////////////////////////////////////////////////////////////////////// |
From: <kw...@us...> - 2002-10-17 04:27:30
|
Update of /cvsroot/decaldev/source/Inject In directory usw-pr-cvs1:/tmp/cvs-serv10952 Modified Files: Inject.rc Log Message: Update version resources 2.4.1.3 Index: Inject.rc =================================================================== RCS file: /cvsroot/decaldev/source/Inject/Inject.rc,v retrieving revision 1.37 retrieving revision 1.38 diff -C2 -d -r1.37 -r1.38 *** Inject.rc 3 Oct 2002 07:45:40 -0000 1.37 --- Inject.rc 17 Oct 2002 04:27:27 -0000 1.38 *************** *** 1,3 **** ! // Microsoft Visual C++ generated resource script. // #include "resource.h" --- 1,3 ---- ! //Microsoft Developer Studio generated resource script. // #include "resource.h" *************** *** 27,31 **** // ! IDR_PLUGINADAPTERV1 REGISTRY "PluginAdapterV1.rgs" #endif // Neutral resources ///////////////////////////////////////////////////////////////////////////// --- 27,31 ---- // ! IDR_PLUGINADAPTERV1 REGISTRY MOVEABLE PURE "PluginAdapterV1.rgs" #endif // Neutral resources ///////////////////////////////////////////////////////////////////////////// *************** *** 47,56 **** // ! 1 TEXTINCLUDE BEGIN "resource.h\0" END ! 2 TEXTINCLUDE BEGIN "#include ""winres.h""\r\n" --- 47,56 ---- // ! 1 TEXTINCLUDE MOVEABLE PURE BEGIN "resource.h\0" END ! 2 TEXTINCLUDE MOVEABLE PURE BEGIN "#include ""winres.h""\r\n" *************** *** 58,62 **** END ! 3 TEXTINCLUDE BEGIN "1 TYPELIB ""Inject.tlb""\r\n" --- 58,62 ---- END ! 3 TEXTINCLUDE MOVEABLE PURE BEGIN "1 TYPELIB ""Inject.tlb""\r\n" *************** *** 67,70 **** --- 67,71 ---- + #ifndef _MAC ///////////////////////////////////////////////////////////////////////////// // *************** *** 73,78 **** VS_VERSION_INFO VERSIONINFO ! FILEVERSION 2,4,1,2 ! PRODUCTVERSION 2,4,1,2 FILEFLAGSMASK 0x3fL #ifdef _DEBUG --- 74,79 ---- VS_VERSION_INFO VERSIONINFO ! FILEVERSION 2,4,1,3 ! PRODUCTVERSION 2,4,1,3 FILEFLAGSMASK 0x3fL #ifdef _DEBUG *************** *** 89,100 **** BLOCK "040904b0" BEGIN ! VALUE "Comments", "Inject is the heart of Decal, it places itself within the memory space of the AC Client and is responsible for drawing the UI on the screen" ! VALUE "FileDescription", "Inject Module" ! VALUE "FileVersion", "2, 4, 1, 2" ! VALUE "InternalName", "Inject" ! VALUE "LegalCopyright", "Copyright 2000, 2001" ! VALUE "OriginalFilename", "Inject.DLL" ! VALUE "ProductName", "Inject Module" ! VALUE "ProductVersion", "2, 4, 1, 2" END END --- 90,105 ---- BLOCK "040904b0" BEGIN ! VALUE "Comments", "Inject is the heart of Decal, it places itself within the memory space of the AC Client and is responsible for drawing the UI on the screen\0" ! VALUE "CompanyName", "\0" ! VALUE "FileDescription", "Inject Module\0" ! VALUE "FileVersion", "2, 4, 1, 3\0" ! VALUE "InternalName", "Inject\0" ! VALUE "LegalCopyright", "Copyright 2000, 2001\0" ! VALUE "LegalTrademarks", "\0" ! VALUE "OriginalFilename", "Inject.DLL\0" ! VALUE "PrivateBuild", "\0" ! VALUE "ProductName", "Inject Module\0" ! VALUE "ProductVersion", "2, 4, 1, 3\0" ! VALUE "SpecialBuild", "\0" END END *************** *** 105,108 **** --- 110,115 ---- END + #endif // !_MAC + ///////////////////////////////////////////////////////////////////////////// *************** *** 111,115 **** // ! STRINGTABLE BEGIN IDS_PROJNAME "Decal" --- 118,122 ---- // ! STRINGTABLE DISCARDABLE BEGIN IDS_PROJNAME "Decal" *************** *** 134,140 **** // ! IDR_BUTTON REGISTRY "Button.rgs" ! IDR_PAGER REGISTRY "Pager.rgs" ! IDR_INJECTSERVICE REGISTRY "InjectService.rgs" ///////////////////////////////////////////////////////////////////////////// --- 141,147 ---- // ! IDR_BUTTON REGISTRY MOVEABLE PURE "Button.rgs" ! IDR_PAGER REGISTRY MOVEABLE PURE "Pager.rgs" ! IDR_INJECTSERVICE REGISTRY MOVEABLE PURE "InjectService.rgs" ///////////////////////////////////////////////////////////////////////////// *************** *** 145,149 **** // Icon with lowest ID value placed first to ensure application icon // remains consistent on all systems. ! IDR_MAINFRAME ICON "res\\DenAgent.ico" #endif // English (Canada) resources ///////////////////////////////////////////////////////////////////////////// --- 152,156 ---- // Icon with lowest ID value placed first to ensure application icon // remains consistent on all systems. ! IDR_MAINFRAME ICON DISCARDABLE "res\\DenAgent.ico" #endif // English (Canada) resources ///////////////////////////////////////////////////////////////////////////// |
From: <kw...@us...> - 2002-10-17 04:27:18
|
Update of /cvsroot/decaldev/source/DenAgent In directory usw-pr-cvs1:/tmp/cvs-serv10918 Modified Files: DenAgent.rc Log Message: Update version resources 2.4.1.3 Index: DenAgent.rc =================================================================== RCS file: /cvsroot/decaldev/source/DenAgent/DenAgent.rc,v retrieving revision 1.57 retrieving revision 1.58 diff -C2 -d -r1.57 -r1.58 *** DenAgent.rc 3 Oct 2002 07:45:27 -0000 1.57 --- DenAgent.rc 17 Oct 2002 04:27:15 -0000 1.58 *************** *** 1,3 **** ! // Microsoft Visual C++ generated resource script. // #include "resource.h" --- 1,3 ---- ! //Microsoft Developer Studio generated resource script. // #include "resource.h" *************** *** 29,33 **** // Icon with lowest ID value placed first to ensure application icon // remains consistent on all systems. ! IDR_TRAYICON ICON "res\\idr_tray.ico" #endif // Neutral (Default) resources ///////////////////////////////////////////////////////////////////////////// --- 29,33 ---- // Icon with lowest ID value placed first to ensure application icon // remains consistent on all systems. ! IDR_TRAYICON ICON DISCARDABLE "res\\idr_tray.ico" #endif // Neutral (Default) resources ///////////////////////////////////////////////////////////////////////////// *************** *** 50,54 **** // Icon with lowest ID value placed first to ensure application icon // remains consistent on all systems. ! IDR_MAINFRAME ICON "res\\DenAgent.ico" ///////////////////////////////////////////////////////////////////////////// --- 50,54 ---- // Icon with lowest ID value placed first to ensure application icon // remains consistent on all systems. ! IDR_MAINFRAME ICON DISCARDABLE "res\\DenAgent.ico" ///////////////////////////////////////////////////////////////////////////// *************** *** 58,63 **** IDD_DENAGENT_DIALOG DIALOGEX 0, 0, 265, 215 ! STYLE DS_SETFONT | DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | ! WS_SYSMENU EXSTYLE WS_EX_APPWINDOW CAPTION "Decal Agent" --- 58,62 ---- IDD_DENAGENT_DIALOG DIALOGEX 0, 0, 265, 215 ! STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU EXSTYLE WS_EX_APPWINDOW CAPTION "Decal Agent" *************** *** 84,88 **** IDD_ADDREMOVE DIALOGEX 0, 0, 301, 171 ! STYLE DS_SETFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU CAPTION "Add/Remove Plugins" FONT 8, "MS Sans Serif", 0, 0, 0x1 --- 83,87 ---- IDD_ADDREMOVE DIALOGEX 0, 0, 301, 171 ! STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU CAPTION "Add/Remove Plugins" FONT 8, "MS Sans Serif", 0, 0, 0x1 *************** *** 99,104 **** END ! IDD_DOWNLOAD DIALOG 0, 0, 203, 71 ! STYLE DS_SETFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION CAPTION "Downloading Component" FONT 8, "MS Sans Serif" --- 98,103 ---- END ! IDD_DOWNLOAD DIALOG DISCARDABLE 0, 0, 203, 71 ! STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION CAPTION "Downloading Component" FONT 8, "MS Sans Serif" *************** *** 111,116 **** END ! IDD_CHANGEDIR DIALOG 0, 0, 236, 49 ! STYLE DS_SETFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU CAPTION "Change Decal URL" FONT 8, "MS Sans Serif" --- 110,115 ---- END ! IDD_CHANGEDIR DIALOG DISCARDABLE 0, 0, 236, 49 ! STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU CAPTION "Change Decal URL" FONT 8, "MS Sans Serif" *************** *** 123,128 **** END ! IDD_OPTIONS DIALOG 0, 0, 255, 215 ! STYLE DS_SETFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU CAPTION "Decal Options" FONT 8, "MS Sans Serif" --- 122,127 ---- END ! IDD_OPTIONS DIALOG DISCARDABLE 0, 0, 255, 215 ! STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU CAPTION "Decal Options" FONT 8, "MS Sans Serif" *************** *** 174,179 **** END ! IDD_DOWNLOADER DIALOG 0, 0, 202, 86 ! STYLE DS_SETFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU CAPTION "Downloading Components" FONT 8, "MS Sans Serif" --- 173,178 ---- END ! IDD_DOWNLOADER DIALOG DISCARDABLE 0, 0, 202, 86 ! STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU CAPTION "Downloading Components" FONT 8, "MS Sans Serif" *************** *** 191,194 **** --- 190,194 ---- + #ifndef _MAC ///////////////////////////////////////////////////////////////////////////// // *************** *** 197,202 **** VS_VERSION_INFO VERSIONINFO ! FILEVERSION 2,4,1,2 ! PRODUCTVERSION 2,4,1,2 FILEFLAGSMASK 0x3fL #ifdef _DEBUG --- 197,202 ---- VS_VERSION_INFO VERSIONINFO ! FILEVERSION 2,4,1,3 ! PRODUCTVERSION 2,4,1,3 FILEFLAGSMASK 0x3fL #ifdef _DEBUG *************** *** 213,224 **** BLOCK "040904b0" BEGIN ! VALUE "Comments", "DenAgent is the program that manages Decal settings" ! VALUE "FileDescription", "DenAgent MFC Application" ! VALUE "FileVersion", "2, 4, 1, 2" ! VALUE "InternalName", "DenAgent" ! VALUE "LegalCopyright", "Copyright (C) 2000, 2001" ! VALUE "OriginalFilename", "DenAgent.EXE" ! VALUE "ProductName", "DenAgent Application" ! VALUE "ProductVersion", "2, 4, 1, 2" END END --- 213,228 ---- BLOCK "040904b0" BEGIN ! VALUE "Comments", "DenAgent is the program that manages Decal settings\0" ! VALUE "CompanyName", "\0" ! VALUE "FileDescription", "DenAgent MFC Application\0" ! VALUE "FileVersion", "2, 4, 1, 3\0" ! VALUE "InternalName", "DenAgent\0" ! VALUE "LegalCopyright", "Copyright (C) 2000, 2001\0" ! VALUE "LegalTrademarks", "\0" ! VALUE "OriginalFilename", "DenAgent.EXE\0" ! VALUE "PrivateBuild", "\0" ! VALUE "ProductName", "DenAgent Application\0" ! VALUE "ProductVersion", "2, 4, 1, 3\0" ! VALUE "SpecialBuild", "\0" END END *************** *** 229,232 **** --- 233,238 ---- END + #endif // !_MAC + ///////////////////////////////////////////////////////////////////////////// *************** *** 236,240 **** #ifdef APSTUDIO_INVOKED ! GUIDELINES DESIGNINFO BEGIN IDD_DENAGENT_DIALOG, DIALOG --- 242,246 ---- #ifdef APSTUDIO_INVOKED ! GUIDELINES DESIGNINFO MOVEABLE PURE BEGIN IDD_DENAGENT_DIALOG, DIALOG *************** *** 319,323 **** // ! IDR_POPUPS MENU BEGIN POPUP "SYSTRAY" --- 325,329 ---- // ! IDR_POPUPS MENU DISCARDABLE BEGIN POPUP "SYSTRAY" *************** *** 334,338 **** // ! IDR_VERSION_STATES TOOLBAR 21, 20 BEGIN BUTTON IDC_STATIC --- 340,344 ---- // ! IDR_VERSION_STATES TOOLBAR MOVEABLE PURE 21, 20 BEGIN BUTTON IDC_STATIC *************** *** 348,354 **** // ! IDR_VERSION_STATES BITMAP "res\\version_.bmp" ! IDB_IMAGES BITMAP "Images.bmp" ! IDB_BITMAP1 BITMAP "res\\bitmap1.bmp" #endif // English (U.S.) resources ///////////////////////////////////////////////////////////////////////////// --- 354,360 ---- // ! IDR_VERSION_STATES BITMAP MOVEABLE PURE "res\\version_.bmp" ! IDB_IMAGES BITMAP MOVEABLE PURE "Images.bmp" ! IDB_BITMAP1 BITMAP MOVEABLE PURE "res\\bitmap1.bmp" #endif // English (U.S.) resources ///////////////////////////////////////////////////////////////////////////// *************** *** 369,373 **** // ! IDB_GROUPS BITMAP "res\\groups.bmp" #ifdef APSTUDIO_INVOKED --- 375,379 ---- // ! IDB_GROUPS BITMAP MOVEABLE PURE "res\\groups.bmp" #ifdef APSTUDIO_INVOKED *************** *** 377,386 **** // ! 1 TEXTINCLUDE BEGIN "resource.h\0" END ! 2 TEXTINCLUDE BEGIN "#include ""afxres.h""\r\n" --- 383,392 ---- // ! 1 TEXTINCLUDE MOVEABLE PURE BEGIN "resource.h\0" END ! 2 TEXTINCLUDE MOVEABLE PURE BEGIN "#include ""afxres.h""\r\n" *************** *** 388,392 **** END ! 3 TEXTINCLUDE BEGIN "#define _AFX_NO_SPLITTER_RESOURCES\r\n" --- 394,398 ---- END ! 3 TEXTINCLUDE MOVEABLE PURE BEGIN "#define _AFX_NO_SPLITTER_RESOURCES\r\n" *************** *** 414,418 **** // ! IDR_DENAGENT REGISTRY "DenAgent.rgs" ///////////////////////////////////////////////////////////////////////////// --- 420,424 ---- // ! IDR_DENAGENT REGISTRY MOVEABLE PURE "DenAgent.rgs" ///////////////////////////////////////////////////////////////////////////// *************** *** 421,425 **** // ! STRINGTABLE BEGIN IDE_NOCLIENTEXE "Could not locate client.exe" --- 427,431 ---- // ! STRINGTABLE DISCARDABLE BEGIN IDE_NOCLIENTEXE "Could not locate client.exe" |
From: <kw...@us...> - 2002-10-17 04:27:05
|
Update of /cvsroot/decaldev/source/DecalNet In directory usw-pr-cvs1:/tmp/cvs-serv10887 Modified Files: DecalNet.rc Log Message: Update version resources 2.4.1.3 Index: DecalNet.rc =================================================================== RCS file: /cvsroot/decaldev/source/DecalNet/DecalNet.rc,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** DecalNet.rc 3 Oct 2002 07:45:18 -0000 1.24 --- DecalNet.rc 17 Oct 2002 04:27:02 -0000 1.25 *************** *** 1,3 **** ! // Microsoft Visual C++ generated resource script. // #include "resource.h" --- 1,3 ---- ! //Microsoft Developer Studio generated resource script. // #include "resource.h" *************** *** 28,37 **** // ! 1 TEXTINCLUDE BEGIN "resource.h\0" END ! 2 TEXTINCLUDE BEGIN "#include ""winres.h""\r\n" --- 28,37 ---- // ! 1 TEXTINCLUDE MOVEABLE PURE BEGIN "resource.h\0" END ! 2 TEXTINCLUDE MOVEABLE PURE BEGIN "#include ""winres.h""\r\n" *************** *** 39,43 **** END ! 3 TEXTINCLUDE BEGIN "1 TYPELIB ""DecalNet.tlb""\r\n" --- 39,43 ---- END ! 3 TEXTINCLUDE MOVEABLE PURE BEGIN "1 TYPELIB ""DecalNet.tlb""\r\n" *************** *** 48,51 **** --- 48,52 ---- + #ifndef _MAC ///////////////////////////////////////////////////////////////////////////// // *************** *** 54,59 **** VS_VERSION_INFO VERSIONINFO ! FILEVERSION 2,4,1,2 ! PRODUCTVERSION 2,4,1,2 FILEFLAGSMASK 0x3fL #ifdef _DEBUG --- 55,60 ---- VS_VERSION_INFO VERSIONINFO ! FILEVERSION 2,4,1,3 ! PRODUCTVERSION 2,4,1,3 FILEFLAGSMASK 0x3fL #ifdef _DEBUG *************** *** 70,81 **** BLOCK "040904b0" BEGIN ! VALUE "Comments", "DecalNet is the core module that processes the network messages between the client and the server" ! VALUE "FileDescription", "DecalNet Module" ! VALUE "FileVersion", "2, 4, 1, 2" ! VALUE "InternalName", "DecalNet" ! VALUE "LegalCopyright", "Copyright 2001" ! VALUE "OriginalFilename", "DecalNet.DLL" ! VALUE "ProductName", "DecalNet Module" ! VALUE "ProductVersion", "2, 4, 1, 2" END END --- 71,86 ---- BLOCK "040904b0" BEGIN ! VALUE "Comments", "DecalNet is the core module that processes the network messages between the client and the server\0" ! VALUE "CompanyName", "\0" ! VALUE "FileDescription", "DecalNet Module\0" ! VALUE "FileVersion", "2, 4, 1, 3\0" ! VALUE "InternalName", "DecalNet\0" ! VALUE "LegalCopyright", "Copyright 2001\0" ! VALUE "LegalTrademarks", "\0" ! VALUE "OriginalFilename", "DecalNet.DLL\0" ! VALUE "PrivateBuild", "\0" ! VALUE "ProductName", "DecalNet Module\0" ! VALUE "ProductVersion", "2, 4, 1, 3\0" ! VALUE "SpecialBuild", "\0" END END *************** *** 86,89 **** --- 91,96 ---- END + #endif // !_MAC + ///////////////////////////////////////////////////////////////////////////// *************** *** 92,96 **** // ! STRINGTABLE BEGIN IDS_PROJNAME "DecalNet" --- 99,103 ---- // ! STRINGTABLE DISCARDABLE BEGIN IDS_PROJNAME "DecalNet" *************** *** 115,120 **** // ! IDR_NETSERVICE REGISTRY "NetService.rgs" ! IDR_WEBREQUEST REGISTRY "WebRequest.rgs" #endif // English (Canada) resources ///////////////////////////////////////////////////////////////////////////// --- 122,127 ---- // ! IDR_NETSERVICE REGISTRY MOVEABLE PURE "NetService.rgs" ! IDR_WEBREQUEST REGISTRY MOVEABLE PURE "WebRequest.rgs" #endif // English (Canada) resources ///////////////////////////////////////////////////////////////////////////// |
From: <kw...@us...> - 2002-10-17 04:26:55
|
Update of /cvsroot/decaldev/source/DecalInput In directory usw-pr-cvs1:/tmp/cvs-serv10835 Modified Files: DecalInput.rc Log Message: Update version resources 2.4.1.3 Index: DecalInput.rc =================================================================== RCS file: /cvsroot/decaldev/source/DecalInput/DecalInput.rc,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** DecalInput.rc 3 Oct 2002 07:45:05 -0000 1.23 --- DecalInput.rc 17 Oct 2002 04:26:52 -0000 1.24 *************** *** 1,3 **** ! // Microsoft Visual C++ generated resource script. // #include "resource.h" --- 1,3 ---- ! //Microsoft Developer Studio generated resource script. // #include "resource.h" *************** *** 28,37 **** // ! 1 TEXTINCLUDE BEGIN "resource.h\0" END ! 2 TEXTINCLUDE BEGIN "#include ""winres.h""\r\n" --- 28,37 ---- // ! 1 TEXTINCLUDE MOVEABLE PURE BEGIN "resource.h\0" END ! 2 TEXTINCLUDE MOVEABLE PURE BEGIN "#include ""winres.h""\r\n" *************** *** 39,43 **** END ! 3 TEXTINCLUDE BEGIN "1 TYPELIB ""DecalInput.tlb""\r\n" --- 39,43 ---- END ! 3 TEXTINCLUDE MOVEABLE PURE BEGIN "1 TYPELIB ""DecalInput.tlb""\r\n" *************** *** 48,51 **** --- 48,52 ---- + #ifndef _MAC ///////////////////////////////////////////////////////////////////////////// // *************** *** 54,59 **** VS_VERSION_INFO VERSIONINFO ! FILEVERSION 2,4,1,2 ! PRODUCTVERSION 2,4,1,2 FILEFLAGSMASK 0x3fL #ifdef _DEBUG --- 55,60 ---- VS_VERSION_INFO VERSIONINFO ! FILEVERSION 2,4,1,3 ! PRODUCTVERSION 2,4,1,3 FILEFLAGSMASK 0x3fL #ifdef _DEBUG *************** *** 70,80 **** BLOCK "040904b0" BEGIN ! VALUE "FileDescription", "DecalInput Module" ! VALUE "FileVersion", "2, 4, 1, 2" ! VALUE "InternalName", "DecalInput" ! VALUE "LegalCopyright", "Copyright 2001" ! VALUE "OriginalFilename", "DecalInput.DLL" ! VALUE "ProductName", "DecalInput Module" ! VALUE "ProductVersion", "2, 4, 1, 2" END END --- 71,86 ---- BLOCK "040904b0" BEGIN ! VALUE "Comments", "\0" ! VALUE "CompanyName", "\0" ! VALUE "FileDescription", "DecalInput Module\0" ! VALUE "FileVersion", "2, 4, 1, 3\0" ! VALUE "InternalName", "DecalInput\0" ! VALUE "LegalCopyright", "Copyright 2001\0" ! VALUE "LegalTrademarks", "\0" ! VALUE "OriginalFilename", "DecalInput.DLL\0" ! VALUE "PrivateBuild", "\0" ! VALUE "ProductName", "DecalInput Module\0" ! VALUE "ProductVersion", "2, 4, 1, 3\0" ! VALUE "SpecialBuild", "\0" END END *************** *** 85,88 **** --- 91,96 ---- END + #endif // !_MAC + ///////////////////////////////////////////////////////////////////////////// *************** *** 91,95 **** // ! STRINGTABLE BEGIN IDS_PROJNAME "DecalInput" --- 99,103 ---- // ! STRINGTABLE DISCARDABLE BEGIN IDS_PROJNAME "DecalInput" *************** *** 114,129 **** // ! IDR_INPUTSERVICE REGISTRY "InputService.rgs" ! IDR_TIMER REGISTRY "Timer.rgs" ! IDR_HOTKEY REGISTRY "Hotkey.rgs" ! IDR_WINMSGHOOK REGISTRY "WinMsgHook.rgs" ! IDR_WNDMSG REGISTRY "WndMsg.rgs" ! IDR_INPUTBUFFER REGISTRY "InputBuffer.rgs" ! IDR_TYPEACTION REGISTRY "TypeAction.rgs" ! IDR_MOUSEMOVEACTION REGISTRY "MouseMoveAction.rgs" ! IDR_DELAYACTION REGISTRY "DelayAction.rgs" ! IDR_EVENTACTION REGISTRY "EventAction.rgs" ! IDR_POLLEDDELAYACTION REGISTRY "PolledDelayAction.rgs" ! IDR_RESTOREACTION REGISTRY "RestoreAction.rgs" #endif // English (Canada) resources ///////////////////////////////////////////////////////////////////////////// --- 122,137 ---- // ! IDR_INPUTSERVICE REGISTRY MOVEABLE PURE "InputService.rgs" ! IDR_TIMER REGISTRY MOVEABLE PURE "Timer.rgs" ! IDR_HOTKEY REGISTRY MOVEABLE PURE "Hotkey.rgs" ! IDR_WINMSGHOOK REGISTRY MOVEABLE PURE "WinMsgHook.rgs" ! IDR_WNDMSG REGISTRY MOVEABLE PURE "WndMsg.rgs" ! IDR_INPUTBUFFER REGISTRY MOVEABLE PURE "InputBuffer.rgs" ! IDR_TYPEACTION REGISTRY MOVEABLE PURE "TypeAction.rgs" ! IDR_MOUSEMOVEACTION REGISTRY MOVEABLE PURE "MouseMoveAction.rgs" ! IDR_DELAYACTION REGISTRY MOVEABLE PURE "DelayAction.rgs" ! IDR_EVENTACTION REGISTRY MOVEABLE PURE "EventAction.rgs" ! IDR_POLLEDDELAYACTION REGISTRY MOVEABLE PURE "PolledDelayAction.rgs" ! IDR_RESTOREACTION REGISTRY MOVEABLE PURE "RestoreAction.rgs" #endif // English (Canada) resources ///////////////////////////////////////////////////////////////////////////// |
From: <kw...@us...> - 2002-10-17 04:26:42
|
Update of /cvsroot/decaldev/source/DecalFilters In directory usw-pr-cvs1:/tmp/cvs-serv10784 Modified Files: DecalFilters.rc Log Message: Update version resources 2.4.1.3 Index: DecalFilters.rc =================================================================== RCS file: /cvsroot/decaldev/source/DecalFilters/DecalFilters.rc,v retrieving revision 1.48 retrieving revision 1.49 diff -C2 -d -r1.48 -r1.49 *** DecalFilters.rc 3 Oct 2002 07:44:51 -0000 1.48 --- DecalFilters.rc 17 Oct 2002 04:26:39 -0000 1.49 *************** *** 1,3 **** ! // Microsoft Visual C++ generated resource script. // #include "resource.h" --- 1,3 ---- ! //Microsoft Developer Studio generated resource script. // #include "resource.h" *************** *** 28,37 **** // ! 1 TEXTINCLUDE BEGIN "resource.h\0" END ! 2 TEXTINCLUDE BEGIN "#include ""winres.h""\r\n" --- 28,37 ---- // ! 1 TEXTINCLUDE MOVEABLE PURE BEGIN "resource.h\0" END ! 2 TEXTINCLUDE MOVEABLE PURE BEGIN "#include ""winres.h""\r\n" *************** *** 39,43 **** END ! 3 TEXTINCLUDE BEGIN "1 TYPELIB ""DecalFilters.tlb""\r\n" --- 39,43 ---- END ! 3 TEXTINCLUDE MOVEABLE PURE BEGIN "1 TYPELIB ""DecalFilters.tlb""\r\n" *************** *** 48,51 **** --- 48,52 ---- + #ifndef _MAC ///////////////////////////////////////////////////////////////////////////// // *************** *** 54,59 **** VS_VERSION_INFO VERSIONINFO ! FILEVERSION 2,4,1,2 ! PRODUCTVERSION 2,4,1,2 FILEFLAGSMASK 0x3fL #ifdef _DEBUG --- 55,60 ---- VS_VERSION_INFO VERSIONINFO ! FILEVERSION 2,4,1,3 ! PRODUCTVERSION 2,4,1,3 FILEFLAGSMASK 0x3fL #ifdef _DEBUG *************** *** 70,81 **** BLOCK "040904b0" BEGIN ! VALUE "Comments", "DecalFilters gives plug-in developers interfaces for monitoring client/server messages" ! VALUE "FileDescription", "DecalFilters Module" ! VALUE "FileVersion", "2, 4, 1, 2" ! VALUE "InternalName", "DecalFilters" ! VALUE "LegalCopyright", "Copyright 2001" ! VALUE "OriginalFilename", "DecalFilters.DLL" ! VALUE "ProductName", "DecalFilters Module" ! VALUE "ProductVersion", "2, 4, 1, 2" END END --- 71,86 ---- BLOCK "040904b0" BEGIN ! VALUE "Comments", "DecalFilters gives plug-in developers interfaces for monitoring client/server messages\0" ! VALUE "CompanyName", "\0" ! VALUE "FileDescription", "DecalFilters Module\0" ! VALUE "FileVersion", "2, 4, 1, 3\0" ! VALUE "InternalName", "DecalFilters\0" ! VALUE "LegalCopyright", "Copyright 2001\0" ! VALUE "LegalTrademarks", "\0" ! VALUE "OriginalFilename", "DecalFilters.DLL\0" ! VALUE "PrivateBuild", "\0" ! VALUE "ProductName", "DecalFilters Module\0" ! VALUE "ProductVersion", "2, 4, 1, 3\0" ! VALUE "SpecialBuild", "\0" END END *************** *** 86,89 **** --- 91,96 ---- END + #endif // !_MAC + ///////////////////////////////////////////////////////////////////////////// *************** *** 92,98 **** // ! IDR_WORLD REGISTRY "World.rgs" ! IDR_WORLDOBJECT REGISTRY "WorldObject.rgs" ! IDR_WORLDITERATOR REGISTRY "WorldIterator.rgs" ///////////////////////////////////////////////////////////////////////////// --- 99,105 ---- // ! IDR_WORLD REGISTRY MOVEABLE PURE "World.rgs" ! IDR_WORLDOBJECT REGISTRY MOVEABLE PURE "WorldObject.rgs" ! IDR_WORLDITERATOR REGISTRY MOVEABLE PURE "WorldIterator.rgs" ///////////////////////////////////////////////////////////////////////////// *************** *** 101,105 **** // ! STRINGTABLE BEGIN IDS_PROJNAME "DecalFilters" --- 108,112 ---- // ! STRINGTABLE DISCARDABLE BEGIN IDS_PROJNAME "DecalFilters" *************** *** 124,131 **** // ! IDR_ECHOFILTER REGISTRY "EchoFilter.rgs" ! IDR_CHARACTERSTATS REGISTRY "CharacterStats.rgs" ! IDR_PREFILTER REGISTRY "Prefilter.rgs" ! IDR_ECHOFILTER2 REGISTRY "EchoFilter2.rgs" #endif // English (Canada) resources ///////////////////////////////////////////////////////////////////////////// --- 131,138 ---- // ! IDR_ECHOFILTER REGISTRY MOVEABLE PURE "EchoFilter.rgs" ! IDR_CHARACTERSTATS REGISTRY MOVEABLE PURE "CharacterStats.rgs" ! IDR_PREFILTER REGISTRY MOVEABLE PURE "Prefilter.rgs" ! IDR_ECHOFILTER2 REGISTRY MOVEABLE PURE "EchoFilter2.rgs" #endif // English (Canada) resources ///////////////////////////////////////////////////////////////////////////// |
From: <kw...@us...> - 2002-10-17 04:26:32
|
Update of /cvsroot/decaldev/source/DecalDat In directory usw-pr-cvs1:/tmp/cvs-serv10756 Modified Files: DecalDat.rc Log Message: Update version resources 2.4.1.3 Index: DecalDat.rc =================================================================== RCS file: /cvsroot/decaldev/source/DecalDat/DecalDat.rc,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** DecalDat.rc 3 Oct 2002 07:44:40 -0000 1.23 --- DecalDat.rc 17 Oct 2002 04:26:29 -0000 1.24 *************** *** 1,3 **** ! // Microsoft Visual C++ generated resource script. // #include "resource.h" --- 1,3 ---- ! //Microsoft Developer Studio generated resource script. // #include "resource.h" *************** *** 28,37 **** // ! 1 TEXTINCLUDE BEGIN "resource.h\0" END ! 2 TEXTINCLUDE BEGIN "#include ""winres.h""\r\n" --- 28,37 ---- // ! 1 TEXTINCLUDE MOVEABLE PURE BEGIN "resource.h\0" END ! 2 TEXTINCLUDE MOVEABLE PURE BEGIN "#include ""winres.h""\r\n" *************** *** 39,43 **** END ! 3 TEXTINCLUDE BEGIN "1 TYPELIB ""DecalDat.tlb""\r\n" --- 39,43 ---- END ! 3 TEXTINCLUDE MOVEABLE PURE BEGIN "1 TYPELIB ""DecalDat.tlb""\r\n" *************** *** 48,51 **** --- 48,52 ---- + #ifndef _MAC ///////////////////////////////////////////////////////////////////////////// // *************** *** 54,59 **** VS_VERSION_INFO VERSIONINFO ! FILEVERSION 2,4,1,2 ! PRODUCTVERSION 2,4,1,2 FILEFLAGSMASK 0x3fL #ifdef _DEBUG --- 55,60 ---- VS_VERSION_INFO VERSIONINFO ! FILEVERSION 2,4,1,3 ! PRODUCTVERSION 2,4,1,3 FILEFLAGSMASK 0x3fL #ifdef _DEBUG *************** *** 70,81 **** BLOCK "040904b0" BEGIN ! VALUE "Comments", "DecalDat houses the functionality that extracts data from the portal.dat file" ! VALUE "FileDescription", "DecalDat Module" ! VALUE "FileVersion", "2, 4, 1, 2" ! VALUE "InternalName", "DecalDat" ! VALUE "LegalCopyright", "Copyright 2001" ! VALUE "OriginalFilename", "DecalDat.DLL" ! VALUE "ProductName", "DecalDat Module" ! VALUE "ProductVersion", "2, 4, 1, 2" END END --- 71,86 ---- BLOCK "040904b0" BEGIN ! VALUE "Comments", "DecalDat houses the functionality that extracts data from the portal.dat file\0" ! VALUE "CompanyName", "\0" ! VALUE "FileDescription", "DecalDat Module\0" ! VALUE "FileVersion", "2, 4, 1, 3\0" ! VALUE "InternalName", "DecalDat\0" ! VALUE "LegalCopyright", "Copyright 2001\0" ! VALUE "LegalTrademarks", "\0" ! VALUE "OriginalFilename", "DecalDat.DLL\0" ! VALUE "PrivateBuild", "\0" ! VALUE "ProductName", "DecalDat Module\0" ! VALUE "ProductVersion", "2, 4, 1, 3\0" ! VALUE "SpecialBuild", "\0" END END *************** *** 86,89 **** --- 91,96 ---- END + #endif // !_MAC + ///////////////////////////////////////////////////////////////////////////// *************** *** 92,96 **** // ! STRINGTABLE BEGIN IDS_PROJNAME "DecalDat" --- 99,103 ---- // ! STRINGTABLE DISCARDABLE BEGIN IDS_PROJNAME "DecalDat" *************** *** 115,119 **** // ! IDR_DATSERVICE REGISTRY "DatService.rgs" #endif // English (Canada) resources ///////////////////////////////////////////////////////////////////////////// --- 122,126 ---- // ! IDR_DATSERVICE REGISTRY MOVEABLE PURE "DatService.rgs" #endif // English (Canada) resources ///////////////////////////////////////////////////////////////////////////// |
From: <kw...@us...> - 2002-10-17 04:26:21
|
Update of /cvsroot/decaldev/source/DecalControls In directory usw-pr-cvs1:/tmp/cvs-serv10704 Modified Files: DecalControls.rc Log Message: Update version resources 2.4.1.3 Index: DecalControls.rc =================================================================== RCS file: /cvsroot/decaldev/source/DecalControls/DecalControls.rc,v retrieving revision 1.34 retrieving revision 1.35 diff -C2 -d -r1.34 -r1.35 *** DecalControls.rc 3 Oct 2002 07:44:30 -0000 1.34 --- DecalControls.rc 17 Oct 2002 04:26:18 -0000 1.35 *************** *** 1,3 **** ! // Microsoft Visual C++ generated resource script. // #include "resource.h" --- 1,3 ---- ! //Microsoft Developer Studio generated resource script. // #include "resource.h" *************** *** 28,37 **** // ! 1 TEXTINCLUDE BEGIN "resource.h\0" END ! 2 TEXTINCLUDE BEGIN "#include ""winres.h""\r\n" --- 28,37 ---- // ! 1 TEXTINCLUDE MOVEABLE PURE BEGIN "resource.h\0" END ! 2 TEXTINCLUDE MOVEABLE PURE BEGIN "#include ""winres.h""\r\n" *************** *** 39,43 **** END ! 3 TEXTINCLUDE BEGIN "1 TYPELIB ""DecalControls.tlb""\r\n" --- 39,43 ---- END ! 3 TEXTINCLUDE MOVEABLE PURE BEGIN "1 TYPELIB ""DecalControls.tlb""\r\n" *************** *** 48,51 **** --- 48,52 ---- + #ifndef _MAC ///////////////////////////////////////////////////////////////////////////// // *************** *** 54,59 **** VS_VERSION_INFO VERSIONINFO ! FILEVERSION 2,4,1,2 ! PRODUCTVERSION 2,4,1,2 FILEFLAGSMASK 0x3fL #ifdef _DEBUG --- 55,60 ---- VS_VERSION_INFO VERSIONINFO ! FILEVERSION 2,4,1,3 ! PRODUCTVERSION 2,4,1,3 FILEFLAGSMASK 0x3fL #ifdef _DEBUG *************** *** 70,81 **** BLOCK "040904b0" BEGIN ! VALUE "Comments", "DecalControls is a group of control objects that give plug-in developers a basic group of UI elements to work with" ! VALUE "FileDescription", "DecalControls Module" ! VALUE "FileVersion", "2, 4, 1, 2" ! VALUE "InternalName", "DecalControls" ! VALUE "LegalCopyright", "Copyright 2001" ! VALUE "OriginalFilename", "DecalControls.DLL" ! VALUE "ProductName", "DecalControls Module" ! VALUE "ProductVersion", "2, 4, 1, 2" END END --- 71,86 ---- BLOCK "040904b0" BEGIN ! VALUE "Comments", "DecalControls is a group of control objects that give plug-in developers a basic group of UI elements to work with\0" ! VALUE "CompanyName", "\0" ! VALUE "FileDescription", "DecalControls Module\0" ! VALUE "FileVersion", "2, 4, 1, 3\0" ! VALUE "InternalName", "DecalControls\0" ! VALUE "LegalCopyright", "Copyright 2001\0" ! VALUE "LegalTrademarks", "\0" ! VALUE "OriginalFilename", "DecalControls.DLL\0" ! VALUE "PrivateBuild", "\0" ! VALUE "ProductName", "DecalControls Module\0" ! VALUE "ProductVersion", "2, 4, 1, 3\0" ! VALUE "SpecialBuild", "\0" END END *************** *** 86,89 **** --- 91,96 ---- END + #endif // !_MAC + ///////////////////////////////////////////////////////////////////////////// *************** *** 92,112 **** // ! IDR_TEXTCOLUMN REGISTRY "TextColumn.rgs" ! IDR_ICONCOLUMN REGISTRY "IconColumn.rgs" ! IDR_LIST REGISTRY "List.rgs" ! IDR_NOTEBOOK REGISTRY "Notebook.rgs" ! IDR_SCROLLER REGISTRY "Scroller.rgs" ! IDR_CHECKCOLUMN REGISTRY "CheckColumn.rgs" ! IDR_EDIT REGISTRY "Edit.rgs" ! IDR_CHOICE REGISTRY "Choice.rgs" ! IDR_FIXEDLAYOUT REGISTRY "FixedLayout.rgs" ! IDR_BORDERLAYOUT REGISTRY "BorderLayout.rgs" ! IDR_PAGELAYOUT REGISTRY "PageLayout.rgs" ! IDR_PUSHBUTTON REGISTRY "PushButton.rgs" ! IDR_STATIC REGISTRY "Static.rgs" ! IDR_CHECKBOX REGISTRY "Checkbox.rgs" ! IDR_DerethMap REGISTRY "DerethMap.rgs" ! IDR_SLIDER REGISTRY "Slider.rgs" ! IDR_PROGRESS REGISTRY "Progress.rgs" ///////////////////////////////////////////////////////////////////////////// --- 99,119 ---- // ! IDR_TEXTCOLUMN REGISTRY MOVEABLE PURE "TextColumn.rgs" ! IDR_ICONCOLUMN REGISTRY MOVEABLE PURE "IconColumn.rgs" ! IDR_LIST REGISTRY MOVEABLE PURE "List.rgs" ! IDR_NOTEBOOK REGISTRY MOVEABLE PURE "Notebook.rgs" ! IDR_SCROLLER REGISTRY MOVEABLE PURE "Scroller.rgs" ! IDR_CHECKCOLUMN REGISTRY MOVEABLE PURE "CheckColumn.rgs" ! IDR_EDIT REGISTRY MOVEABLE PURE "Edit.rgs" ! IDR_CHOICE REGISTRY MOVEABLE PURE "Choice.rgs" ! IDR_FIXEDLAYOUT REGISTRY MOVEABLE PURE "FixedLayout.rgs" ! IDR_BORDERLAYOUT REGISTRY MOVEABLE PURE "BorderLayout.rgs" ! IDR_PAGELAYOUT REGISTRY MOVEABLE PURE "PageLayout.rgs" ! IDR_PUSHBUTTON REGISTRY MOVEABLE PURE "PushButton.rgs" ! IDR_STATIC REGISTRY MOVEABLE PURE "Static.rgs" ! IDR_CHECKBOX REGISTRY MOVEABLE PURE "Checkbox.rgs" ! IDR_DerethMap REGISTRY MOVEABLE PURE "DerethMap.rgs" ! IDR_SLIDER REGISTRY MOVEABLE PURE "Slider.rgs" ! IDR_PROGRESS REGISTRY MOVEABLE PURE "Progress.rgs" ///////////////////////////////////////////////////////////////////////////// *************** *** 115,124 **** // ! STRINGTABLE BEGIN IDS_PROJNAME "DecalControls" END ! STRINGTABLE BEGIN IDS_DERETHMAP_DESC "DerethMap Class" --- 122,131 ---- // ! STRINGTABLE DISCARDABLE BEGIN IDS_PROJNAME "DecalControls" END ! STRINGTABLE DISCARDABLE BEGIN IDS_DERETHMAP_DESC "DerethMap Class" |
From: <kw...@us...> - 2002-10-17 04:26:10
|
Update of /cvsroot/decaldev/source/Decal In directory usw-pr-cvs1:/tmp/cvs-serv10636 Modified Files: Decal.rc Log Message: Update version resources 2.4.1.3 Index: Decal.rc =================================================================== RCS file: /cvsroot/decaldev/source/Decal/Decal.rc,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 *** Decal.rc 3 Oct 2002 07:44:18 -0000 1.31 --- Decal.rc 17 Oct 2002 04:26:05 -0000 1.32 *************** *** 1,3 **** ! // Microsoft Visual C++ generated resource script. // #include "resource.h" --- 1,3 ---- ! //Microsoft Developer Studio generated resource script. // #include "resource.h" *************** *** 28,37 **** // ! 1 TEXTINCLUDE BEGIN "resource.h\0" END ! 2 TEXTINCLUDE BEGIN "#include ""winres.h""\r\n" --- 28,37 ---- // ! 1 TEXTINCLUDE MOVEABLE PURE BEGIN "resource.h\0" END ! 2 TEXTINCLUDE MOVEABLE PURE BEGIN "#include ""winres.h""\r\n" *************** *** 39,43 **** END ! 3 TEXTINCLUDE BEGIN "1 TYPELIB ""Decal.tlb""\r\n" --- 39,43 ---- END ! 3 TEXTINCLUDE MOVEABLE PURE BEGIN "1 TYPELIB ""Decal.tlb""\r\n" *************** *** 48,51 **** --- 48,52 ---- + #ifndef _MAC ///////////////////////////////////////////////////////////////////////////// // *************** *** 54,59 **** VS_VERSION_INFO VERSIONINFO ! FILEVERSION 2,4,1,2 ! PRODUCTVERSION 2,4,1,2 FILEFLAGSMASK 0x3fL #ifdef _DEBUG --- 55,60 ---- VS_VERSION_INFO VERSIONINFO ! FILEVERSION 2,4,1,3 ! PRODUCTVERSION 2,4,1,3 FILEFLAGSMASK 0x3fL #ifdef _DEBUG *************** *** 70,80 **** BLOCK "040904b0" BEGIN ! VALUE "FileDescription", "Decal Module" ! VALUE "FileVersion", "2, 4, 1, 2" ! VALUE "InternalName", "Decal" ! VALUE "LegalCopyright", "Copyright 2001-2002" ! VALUE "OriginalFilename", "Decal.DLL" ! VALUE "ProductName", "Decal Module" ! VALUE "ProductVersion", "2, 4, 1, 2" END END --- 71,86 ---- BLOCK "040904b0" BEGIN ! VALUE "Comments", "\0" ! VALUE "CompanyName", "\0" ! VALUE "FileDescription", "Decal Module\0" ! VALUE "FileVersion", "2, 4, 1, 3\0" ! VALUE "InternalName", "Decal\0" ! VALUE "LegalCopyright", "Copyright 2001-2002\0" ! VALUE "LegalTrademarks", "\0" ! VALUE "OriginalFilename", "Decal.DLL\0" ! VALUE "PrivateBuild", "\0" ! VALUE "ProductName", "Decal Module\0" ! VALUE "ProductVersion", "2, 4, 1, 3\0" ! VALUE "SpecialBuild", "\0" END END *************** *** 85,88 **** --- 91,96 ---- END + #endif // !_MAC + ///////////////////////////////////////////////////////////////////////////// *************** *** 91,95 **** // ! IDR_ACHooks REGISTRY "ACHooks.rgs" ///////////////////////////////////////////////////////////////////////////// --- 99,103 ---- // ! IDR_ACHooks REGISTRY MOVEABLE PURE "ACHooks.rgs" ///////////////////////////////////////////////////////////////////////////// *************** *** 98,102 **** // ! STRINGTABLE BEGIN IDS_PROJNAME "Decal" --- 106,110 ---- // ! STRINGTABLE DISCARDABLE BEGIN IDS_PROJNAME "Decal" *************** *** 104,108 **** END ! STRINGTABLE BEGIN IDE_INDEXOUTOFRANGE "The provided index is below 0 or greater than the number of items in the list." --- 112,116 ---- END ! STRINGTABLE DISCARDABLE BEGIN IDE_INDEXOUTOFRANGE "The provided index is below 0 or greater than the number of items in the list." *************** *** 136,143 **** // ! IDR_DECAL REGISTRY "Decal.rgs" ! IDR_SURROGATEREMOVE REGISTRY "SurrogateRemove.rgs" ! IDR_ACTIVEXSURROGATE REGISTRY "ActiveXSurrogate.rgs" ! IDR_DECALRES REGISTRY "DecalRes.rgs" #endif // English (Canada) resources ///////////////////////////////////////////////////////////////////////////// --- 144,151 ---- // ! IDR_DECAL REGISTRY MOVEABLE PURE "Decal.rgs" ! IDR_SURROGATEREMOVE REGISTRY MOVEABLE PURE "SurrogateRemove.rgs" ! IDR_ACTIVEXSURROGATE REGISTRY MOVEABLE PURE "ActiveXSurrogate.rgs" ! IDR_DECALRES REGISTRY MOVEABLE PURE "DecalRes.rgs" #endif // English (Canada) resources ///////////////////////////////////////////////////////////////////////////// |
From: <ec...@us...> - 2002-10-17 00:16:38
|
Update of /cvsroot/decaldev/source/DecalFilters In directory usw-pr-cvs1:/tmp/cvs-serv14894 Modified Files: SkillInfo.h SkillInfo.cpp DecalFilters.idl CharacterStats.h CharacterStats.cpp Log Message: Charstats wub night tonight! These are the October compatability fixes courtesy of Akilla. Index: SkillInfo.h =================================================================== RCS file: /cvsroot/decaldev/source/DecalFilters/SkillInfo.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** SkillInfo.h 21 Aug 2002 19:49:14 -0000 1.3 --- SkillInfo.h 17 Oct 2002 00:16:34 -0000 1.4 *************** *** 43,47 **** STDMETHOD(get_ShortName)(/*[out, retval]*/ BSTR *pVal); STDMETHOD(get_Name)(/*[out, retval]*/ BSTR *pVal); ! STDMETHOD(get_FreeExp)(/*[out, retval]*/ long *pVal); }; --- 43,47 ---- STDMETHOD(get_ShortName)(/*[out, retval]*/ BSTR *pVal); STDMETHOD(get_Name)(/*[out, retval]*/ BSTR *pVal); ! STDMETHOD(get_Bonus)(/*[out, retval]*/ long *pVal); }; Index: SkillInfo.cpp =================================================================== RCS file: /cvsroot/decaldev/source/DecalFilters/SkillInfo.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** SkillInfo.cpp 21 Aug 2002 19:49:14 -0000 1.4 --- SkillInfo.cpp 17 Oct 2002 00:16:35 -0000 1.5 *************** *** 135,139 **** get_Base( &nBase ); ! *pVal = nBase + m_pSkill->m_nOffset; return S_OK; --- 135,139 ---- get_Base( &nBase ); ! *pVal = nBase + m_pSkill->m_nOffset + m_pSkill->m_nBonus; return S_OK; *************** *** 192,196 **** } ! STDMETHODIMP cSkillInfo::get_FreeExp(long *pVal) { if( pVal == NULL ) --- 192,196 ---- } ! STDMETHODIMP cSkillInfo::get_Bonus(long *pVal) { if( pVal == NULL ) *************** *** 200,204 **** } ! *pVal = m_pSkill->m_nFreeExp; return S_OK; --- 200,204 ---- } ! *pVal = m_pSkill->m_nBonus; return S_OK; Index: DecalFilters.idl =================================================================== RCS file: /cvsroot/decaldev/source/DecalFilters/DecalFilters.idl,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** DecalFilters.idl 30 Aug 2002 19:13:40 -0000 1.27 --- DecalFilters.idl 17 Oct 2002 00:16:35 -0000 1.28 *************** *** 178,182 **** [propget, id(8), helpstring("property Known")] HRESULT Known([out, retval] VARIANT_BOOL *pVal); [propget, id(9), helpstring("property Increment")] HRESULT Increment([out, retval] long *pVal); ! [propget, id(10), helpstring("property FreeExp")] HRESULT FreeExp([out, retval] long *pVal); }; --- 178,182 ---- [propget, id(8), helpstring("property Known")] HRESULT Known([out, retval] VARIANT_BOOL *pVal); [propget, id(9), helpstring("property Increment")] HRESULT Increment([out, retval] long *pVal); ! [propget, id(10), helpstring("property Bonus")] HRESULT Bonus([out, retval] long *pVal); }; Index: CharacterStats.h =================================================================== RCS file: /cvsroot/decaldev/source/DecalFilters/CharacterStats.h,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** CharacterStats.h 21 Aug 2002 19:49:14 -0000 1.13 --- CharacterStats.h 17 Oct 2002 00:16:35 -0000 1.14 *************** *** 97,101 **** long m_nOffset, m_nExp, ! m_nFreeExp; eTrainingType m_trained; }; --- 97,101 ---- long m_nOffset, m_nExp, ! m_nBonus; eTrainingType m_trained; }; *************** *** 133,137 **** DWORD PrimStat[6], PrimStatInitial[6]; DWORD SecStatInc[3]; ! DWORD SkillInc[40], SkillTrain[40], SkillXP[40], SkillFreeXP[40]; private: --- 133,137 ---- DWORD PrimStat[6], PrimStatInitial[6]; DWORD SecStatInc[3]; ! DWORD SkillInc[40], SkillTrain[40], SkillXP[40], SkillBonus[40]; private: Index: CharacterStats.cpp =================================================================== RCS file: /cvsroot/decaldev/source/DecalFilters/CharacterStats.cpp,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** CharacterStats.cpp 16 Oct 2002 22:15:11 -0000 1.29 --- CharacterStats.cpp 17 Oct 2002 00:16:35 -0000 1.30 *************** *** 287,293 **** _variant_t vAttrib, vNew; pMessage->get_Member(_variant_t("Attribute"), &vAttrib); ! pMessage->get_Member(_variant_t("NewValue"), &vNew); ! PrimStat[vAttrib.iVal - 1] = vNew.lVal; RecalcStat(vAttrib.iVal - 1); --- 287,293 ---- _variant_t vAttrib, vNew; pMessage->get_Member(_variant_t("Attribute"), &vAttrib); ! pMessage->get_Member(_variant_t("NewIncrement"), &vNew); ! PrimStat[vAttrib.iVal - 1] = vNew.lVal + vAttrib.lVal; RecalcStat(vAttrib.iVal - 1); *************** *** 391,400 **** pMessage->get_Member(_variant_t ("initialSelf"), &G); PrimStatInitial[5] = G.lVal; ! pMessage->get_Member(_variant_t ("currentStrength"), &G); PrimStat[0] = G.lVal; CurStat[0] = G.lVal; ! pMessage->get_Member(_variant_t ("currentEndurance"), &G); PrimStat[1] = G.lVal; CurStat[1] = G.lVal; ! pMessage->get_Member(_variant_t ("currentQuickness"), &G); PrimStat[2] = G.lVal; CurStat[2] = G.lVal; ! pMessage->get_Member(_variant_t ("currentCoordination"), &G); PrimStat[3] = G.lVal; CurStat[3] = G.lVal; ! pMessage->get_Member(_variant_t ("currentFocus"), &G); PrimStat[4] = G.lVal; CurStat[4] = G.lVal; ! pMessage->get_Member(_variant_t ("currentSelf"), &G); PrimStat[5] = G.lVal; CurStat[5] = G.lVal; pMessage->get_Member(_variant_t ("incHealth"), &G); SecStatInc[0] = G.lVal; --- 391,400 ---- pMessage->get_Member(_variant_t ("initialSelf"), &G); PrimStatInitial[5] = G.lVal; ! pMessage->get_Member(_variant_t ("incStrength"), &G); PrimStat[0] = G.lVal + PrimStatInitial[0]; CurStat[0] = G.lVal; ! pMessage->get_Member(_variant_t ("incEndurance"), &G); PrimStat[1] = G.lVal + PrimStatInitial[1]; CurStat[1] = G.lVal; ! pMessage->get_Member(_variant_t ("incQuickness"), &G); PrimStat[2] = G.lVal + PrimStatInitial[2]; CurStat[2] = G.lVal; ! pMessage->get_Member(_variant_t ("incCoordination"), &G); PrimStat[3] = G.lVal + PrimStatInitial[3]; CurStat[3] = G.lVal; ! pMessage->get_Member(_variant_t ("incFocus"), &G); PrimStat[4] = G.lVal + PrimStatInitial[4]; CurStat[4] = G.lVal; ! pMessage->get_Member(_variant_t ("incSelf"), &G); PrimStat[5] = G.lVal + PrimStatInitial[5]; CurStat[5] = G.lVal; pMessage->get_Member(_variant_t ("incHealth"), &G); SecStatInc[0] = G.lVal; *************** *** 410,413 **** --- 410,415 ---- pMessage->get_Member (_variant_t ("skills"), &vSkills); + ZeroMemory(SkillTrain, sizeof(SkillTrain)); + for(i = 0; i < (vRecordCount.iVal); i++) { *************** *** 423,432 **** pRecord->get_Member(_variant_t ("trained"), &vSkillT); pRecord->get_Member(_variant_t ("exp"), &vSkillX); ! pRecord->get_Member(_variant_t ("freeXP"), &vSkillF); ! SkillFreeXP[vSkillN.iVal] = vSkillF.lVal; SkillXP[vSkillN.iVal] = vSkillX.lVal; SkillTrain[vSkillN.iVal] = vSkillT.lVal; ! SkillInc[vSkillN.iVal] = vSkillI.lVal; float TPS = 0; --- 425,434 ---- pRecord->get_Member(_variant_t ("trained"), &vSkillT); pRecord->get_Member(_variant_t ("exp"), &vSkillX); ! pRecord->get_Member(_variant_t ("bonusPoints"), &vSkillF); ! SkillBonus[vSkillN.iVal] = vSkillF.lVal; SkillXP[vSkillN.iVal] = vSkillX.lVal; SkillTrain[vSkillN.iVal] = vSkillT.lVal; ! SkillInc[vSkillN.iVal] = vSkillI.iVal; float TPS = 0; *************** *** 971,975 **** TPS /= SkillInfo[Skill].Divider; ! TPS += SkillInc[Skill] + 0.5f; for (std::map<DWORD, float>::iterator tpf = FamilyMap.begin(); tpf != FamilyMap.end(); tpf++) --- 973,977 ---- TPS /= SkillInfo[Skill].Divider; ! TPS += SkillInc[Skill] + SkillBonus[Skill] + 0.5f; for (std::map<DWORD, float>::iterator tpf = FamilyMap.begin(); tpf != FamilyMap.end(); tpf++) *************** *** 1160,1163 **** --- 1162,1166 ---- pSkill->m_pSkill->m_nExp = SecondaryStatArray[SecStatInc[Index - 1]]; + pSkill->m_pSkill->m_nBonus = 0; pSkill->m_pSkill->m_nOffset = SecStatInc[Index - 1]; pSkill->m_pSkill->m_trained = eTrainTrained; *************** *** 1181,1185 **** pSkill->m_pSkill->m_nExp = SkillXP[Index]; ! pSkill->m_pSkill->m_nFreeExp = SkillFreeXP[Index]; pSkill->m_pSkill->m_nOffset = SkillInc[Index]; --- 1184,1188 ---- pSkill->m_pSkill->m_nExp = SkillXP[Index]; ! pSkill->m_pSkill->m_nBonus = SkillBonus[Index]; pSkill->m_pSkill->m_nOffset = SkillInc[Index]; |
From: <kw...@us...> - 2002-10-16 22:40:40
|
Update of /cvsroot/decaldev/source/DecalControls In directory usw-pr-cvs1:/tmp/cvs-serv15497 Modified Files: List.cpp Log Message: removed unreferenced local variable Index: List.cpp =================================================================== RCS file: /cvsroot/decaldev/source/DecalControls/List.cpp,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** List.cpp 10 Sep 2002 05:19:25 -0000 1.19 --- List.cpp 16 Oct 2002 22:40:37 -0000 1.20 *************** *** 539,543 **** STDMETHODIMP cList::put_Color(long nX, long nY, long newVal) { ! int i, j; if (nX >= m_cols.size()) { /* cyn - 07/08/2002 */ --- 539,543 ---- STDMETHODIMP cList::put_Color(long nX, long nY, long newVal) { ! int i; if (nX >= m_cols.size()) { /* cyn - 07/08/2002 */ *************** *** 548,553 **** if (!rowData.m_colors) { ! j = m_cols.size(); ! rowData.m_colors = new long[ j ]; if (!rowData.m_colors) { return E_OUTOFMEMORY; --- 548,553 ---- if (!rowData.m_colors) { ! i = m_cols.size(); ! rowData.m_colors = new long[ i ]; if (!rowData.m_colors) { return E_OUTOFMEMORY; |
From: <kw...@us...> - 2002-10-16 22:15:18
|
Update of /cvsroot/decaldev/source/DecalFilters In directory usw-pr-cvs1:/tmp/cvs-serv29649 Modified Files: CharacterStats.cpp Log Message: Updated skill formulae for Thrown Weapons and Tinkering skills Index: CharacterStats.cpp =================================================================== RCS file: /cvsroot/decaldev/source/DecalFilters/CharacterStats.cpp,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -d -r1.28 -r1.29 *** CharacterStats.cpp 14 Sep 2002 15:28:53 -0000 1.28 --- CharacterStats.cpp 16 Oct 2002 22:15:11 -0000 1.29 *************** *** 41,45 **** { _T( "Staff" ), eAttrStrength, eAttrCoordination, 3, eTrainUnusable }, { _T( "Sword" ), eAttrStrength, eAttrCoordination, 3, eTrainUnusable }, ! { _T( "Thrown Weapons" ), eAttrStrength, eAttrCoordination, 3, eTrainUnusable }, { _T( "Unarmed Combat" ), eAttrStrength, eAttrCoordination, 3, eTrainUnusable }, { _T( "Arcane Lore" ), eAttrFocus, eAttrNULL, 3, eTrainUnusable }, --- 41,45 ---- { _T( "Staff" ), eAttrStrength, eAttrCoordination, 3, eTrainUnusable }, { _T( "Sword" ), eAttrStrength, eAttrCoordination, 3, eTrainUnusable }, ! { _T( "Thrown Weapons" ), eAttrCoordination, eAttrNULL, 2, eTrainUnusable }, { _T( "Unarmed Combat" ), eAttrStrength, eAttrCoordination, 3, eTrainUnusable }, { _T( "Arcane Lore" ), eAttrFocus, eAttrNULL, 3, eTrainUnusable }, *************** *** 47,51 **** { _T( "Mana Conversion" ), eAttrFocus, eAttrSelf, 6, eTrainUnusable }, { _T( "Unknown" ), eAttrNULL, eAttrNULL, 1, eTrainUnusable }, ! { _T( "Item Tinkering" ), eAttrFocus, eAttrNULL, 1, eTrainUnusable }, { _T( "Assess Person" ), eAttrFocus, eAttrSelf, 2, eTrainUnusable }, { _T( "Deception" ), eAttrFocus, eAttrSelf, 4, eTrainUnusable }, --- 47,51 ---- { _T( "Mana Conversion" ), eAttrFocus, eAttrSelf, 6, eTrainUnusable }, { _T( "Unknown" ), eAttrNULL, eAttrNULL, 1, eTrainUnusable }, ! { _T( "Item Tinkering" ), eAttrFocus, eAttrCoordination, 2, eTrainUnusable }, { _T( "Assess Person" ), eAttrFocus, eAttrSelf, 2, eTrainUnusable }, { _T( "Deception" ), eAttrFocus, eAttrSelf, 4, eTrainUnusable }, *************** *** 57,62 **** { _T( "Unknown" ), eAttrNULL, eAttrNULL, 1, eTrainUnusable }, { _T( "Assess Creature" ), eAttrFocus, eAttrSelf, 2, eTrainUnusable }, ! { _T( "Weapon Tinkering" ), eAttrFocus, eAttrNULL, 1, eTrainUnusable }, ! { _T( "Armor Tinkering" ), eAttrFocus, eAttrNULL, 1, eTrainUnusable }, { _T( "Magic Item Tinkering" ), eAttrFocus, eAttrNULL, 1, eTrainUnusable }, { _T( "Creature Enchantment" ), eAttrFocus, eAttrSelf, 4, eTrainUnusable }, --- 57,62 ---- { _T( "Unknown" ), eAttrNULL, eAttrNULL, 1, eTrainUnusable }, { _T( "Assess Creature" ), eAttrFocus, eAttrSelf, 2, eTrainUnusable }, ! { _T( "Weapon Tinkering" ), eAttrFocus, eAttrStrength, 2, eTrainUnusable }, ! { _T( "Armor Tinkering" ), eAttrFocus, eAttrEndurance, 2, eTrainUnusable }, { _T( "Magic Item Tinkering" ), eAttrFocus, eAttrNULL, 1, eTrainUnusable }, { _T( "Creature Enchantment" ), eAttrFocus, eAttrSelf, 4, eTrainUnusable }, *************** *** 386,391 **** pMessage->get_Member(_variant_t ("initialStrength"), &G); PrimStatInitial[0] = G.lVal; pMessage->get_Member(_variant_t ("initialEndurance"), &G); PrimStatInitial[1] = G.lVal; ! pMessage->get_Member(_variant_t ("initialQuickness"), &G); PrimStatInitial[2] = G.lVal; ! pMessage->get_Member(_variant_t ("initialCoordination"), &G); PrimStatInitial[3] = G.lVal; pMessage->get_Member(_variant_t ("initialFocus"), &G); PrimStatInitial[4] = G.lVal; pMessage->get_Member(_variant_t ("initialSelf"), &G); PrimStatInitial[5] = G.lVal; --- 386,391 ---- pMessage->get_Member(_variant_t ("initialStrength"), &G); PrimStatInitial[0] = G.lVal; pMessage->get_Member(_variant_t ("initialEndurance"), &G); PrimStatInitial[1] = G.lVal; ! pMessage->get_Member(_variant_t ("initialQuickness"), &G); PrimStatInitial[2] = G.lVal; ! pMessage->get_Member(_variant_t ("initialCoordination"), &G); PrimStatInitial[3] = G.lVal; pMessage->get_Member(_variant_t ("initialFocus"), &G); PrimStatInitial[4] = G.lVal; pMessage->get_Member(_variant_t ("initialSelf"), &G); PrimStatInitial[5] = G.lVal; |
From: <ha...@us...> - 2002-10-08 19:35:02
|
Update of /cvsroot/decaldev/source/DecalFilters In directory usw-pr-cvs1:/tmp/cvs-serv10993 Modified Files: World.cpp World.h Log Message: some WF cleanup with hooks Index: World.cpp =================================================================== RCS file: /cvsroot/decaldev/source/DecalFilters/World.cpp,v retrieving revision 1.42 retrieving revision 1.43 diff -C2 -d -r1.42 -r1.43 *** World.cpp 3 Oct 2002 07:46:32 -0000 1.42 --- World.cpp 8 Oct 2002 19:34:59 -0000 1.43 *************** *** 137,143 **** _DebugLog("\n\nLogin") ; ! if (!m_HookIsSet) { SetHook() ; - } return S_OK; --- 137,143 ---- _DebugLog("\n\nLogin") ; ! ! if( !m_HookIsSet ) SetHook() ; return S_OK; *************** *** 147,180 **** void cWorld::SetHook() { ! CComPtr< IDecal > pDecal; ! HRESULT hr = m_pService->get_Decal( &pDecal ); ! if (SUCCEEDED(hr)) { _DebugLog("\nGotDecal") ; - CComPtr< IInjectService > pInject; - HRESULT hr = pDecal->get_Object ( _bstr_t ( _T( "services\\DecalPlugins.InjectService" ) ), - __uuidof ( IInjectService ), reinterpret_cast< LPVOID * > ( &pInject ) ); ! if (SUCCEEDED(hr)) { ! _DebugLog("\nGot Inject") ; ! pInject->get_Site(&m_pPluginSite); ! if (SUCCEEDED(hr)) { ! _DebugLog("\nGot PluginSite") ; ! hr = m_pPluginSite->get_Hooks(&m_pHooks) ; ! if (SUCCEEDED(hr)) { ! _DebugLog("\nGot Hooks") ; ! IACHooksEventsImpl<HookDestroyObj, cWorld>::advise(m_pHooks) ; ! m_HookIsSet = true ; ! } else { ! _DebugLog("\nFailed Get Hooks %x", hr) ; ! } ! } else { ! _DebugLog("\nFailed to get PluginSite %x", hr) ; ! } ! } else { ! _DebugLog("\nFailed to get Inject %x", hr) ; } ! } else { ! _DebugLog("\nFailed to get Decal %x", hr) ; } } --- 147,171 ---- void cWorld::SetHook() { ! HRESULT hr = m_pService->get_Decal( &m_pDecal ); ! ! if( SUCCEEDED( hr ) ) ! { _DebugLog("\nGotDecal") ; ! hr = m_pDecal->get_Hooks(&m_pHooks) ; ! ! if( SUCCEEDED( hr ) ) ! { ! _DebugLog("\nGot Hooks") ; ! IACHooksEventsImpl<HookDestroyObj, cWorld>::advise(m_pHooks) ; ! m_HookIsSet = true ; } ! ! else ! _DebugLog("\nFailed Get Hooks %x", hr) ; } + + else + _DebugLog("\nFailed to get Decal %x", hr) ; } *************** *** 184,199 **** _DebugLog("OnTerminate") ; _DebugLog("CLOSEFILE") ; ! if (m_HookIsSet) { ! IACHooksEventsImpl<HookDestroyObj, cWorld>::unadvise(m_pPluginSite) ; ! if (m_pHooks!=NULL) { m_pHooks.Release() ; m_pHooks = NULL ; } ! if (m_pPluginSite!=NULL) { ! m_pPluginSite.Release() ; ! m_pPluginSite = NULL ; ! } m_HookIsSet = false ; } return S_OK; } --- 175,197 ---- _DebugLog("OnTerminate") ; _DebugLog("CLOSEFILE") ; ! if( m_HookIsSet ) ! { ! IACHooksEventsImpl<HookDestroyObj, cWorld>::unadvise(m_pHooks) ; ! ! if( m_pHooks != NULL ) ! { m_pHooks.Release() ; m_pHooks = NULL ; } ! m_HookIsSet = false ; } + + if( m_pDecal != NULL ) + { + m_pDecal.Release() ; + m_pDecal = NULL ; + } + return S_OK; } *************** *** 213,229 **** // Gouru: reset the player so next login the player gets updated... m_objects.player(0) ; - - if (m_HookIsSet) { - IACHooksEventsImpl<HookDestroyObj, cWorld>::unadvise(m_pPluginSite) ; - if (m_pHooks!=NULL) { - m_pHooks.Release() ; - m_pHooks = NULL ; - } - if (m_pPluginSite!=NULL) { - m_pPluginSite.Release() ; - m_pPluginSite = NULL ; - } - m_HookIsSet = false ; - } } --- 211,214 ---- Index: World.h =================================================================== RCS file: /cvsroot/decaldev/source/DecalFilters/World.h,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -d -r1.30 -r1.31 *** World.h 16 Sep 2002 19:17:05 -0000 1.30 --- World.h 8 Oct 2002 19:34:59 -0000 1.31 *************** *** 247,251 **** long m_nNextTime; bool m_HookIsSet ; ! CComPtr<IPluginSite> m_pPluginSite ; CComPtr< IACHooks > m_pHooks ; --- 247,251 ---- long m_nNextTime; bool m_HookIsSet ; ! CComPtr< IDecal > m_pDecal ; CComPtr< IACHooks > m_pHooks ; |
From: <ha...@us...> - 2002-10-08 19:16:14
|
Update of /cvsroot/decaldev/source/Installer In directory usw-pr-cvs1:/tmp/cvs-serv3212 Added Files: DecalInstallerVC7.wip DecalInstallerVC7.sln Log Message: Install package for Decal when build with VC7 without STLport --- NEW FILE: DecalInstallerVC7.wip --- (This appears to be a binary file; contents omitted.) --- NEW FILE: DecalInstallerVC7.sln --- Microsoft Visual Studio Solution File, Format Version 1.00 Project("{73393D18-DAC4-11D1-88FC-0000F8064EBB}") = "Decal", "DecalInstallerVC7.wip", "{3606BE98-3576-4296-9CF6-23746B25EA4E}" EndProject Global GlobalSection(LocalDeployment) = postSolution StartupProject = {00000000-0000-0000-0000-000000000000} EndGlobalSection GlobalSection(BuildOrder) = postSolution 0 = {3606BE98-3576-4296-9CF6-23746B25EA4E} EndGlobalSection GlobalSection(DeploymentRoot) = postSolution EndGlobalSection EndGlobal |
From: <ha...@us...> - 2002-10-03 15:57:45
|
Update of /cvsroot/decaldev/source/Decal In directory usw-pr-cvs1:/tmp/cvs-serv15487 Modified Files: ACHooks.cpp Log Message: SendTell/SendTellEx fixes (thanks cynica_l) Index: ACHooks.cpp =================================================================== RCS file: /cvsroot/decaldev/source/Decal/ACHooks.cpp,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** ACHooks.cpp 1 Oct 2002 05:33:37 -0000 1.23 --- ACHooks.cpp 3 Oct 2002 15:57:40 -0000 1.24 *************** *** 9,16 **** void (*pfnUseItem)( DWORD, DWORD ) = NULL; void (*pfnMoveItemEx)( DWORD, DWORD, DWORD ) = NULL; ! void (*pfnInternalStringDestructor)( qString * ) = NULL; long (*pfnSendMessageToID)( qString *, long ) = NULL; long (*pfnSendMessageToName)( qString *, qString * ) = NULL; ! qString* (*pfnInternalStringConstructor)( qString *, long, char * ) = NULL; extern void ObjectDestroyedHook (); --- 9,16 ---- void (*pfnUseItem)( DWORD, DWORD ) = NULL; void (*pfnMoveItemEx)( DWORD, DWORD, DWORD ) = NULL; ! void ( __fastcall *pfnInternalStringDestructor)( qString * ) = NULL; long (*pfnSendMessageToID)( qString *, long ) = NULL; long (*pfnSendMessageToName)( qString *, qString * ) = NULL; ! qString* ( __fastcall *pfnInternalStringConstructor)( qString *, long, char * ) = NULL; extern void ObjectDestroyedHook (); *************** *** 369,373 **** m_lInternalStringConstructor = Val; ! pfnInternalStringConstructor = reinterpret_cast< qString *(*)(qString *, long, char *) >( Val ); } --- 369,373 ---- m_lInternalStringConstructor = Val; ! pfnInternalStringConstructor = reinterpret_cast< qString *(__fastcall*)(qString *, long, char *) >( Val ); } *************** *** 377,381 **** m_lInternalStringDestructor = Val; ! pfnInternalStringDestructor = reinterpret_cast< void(*)(qString *) >( Val ); } --- 377,381 ---- m_lInternalStringDestructor = Val; ! pfnInternalStringDestructor = reinterpret_cast< void(__fastcall *)(qString *) >( Val ); } |
From: <ha...@us...> - 2002-10-03 08:27:51
|
Update of /cvsroot/decaldev/source/Installer In directory usw-pr-cvs1:/tmp/cvs-serv29433 Modified Files: DecalInstaller.wip Log Message: 2.4.1.2 release Index: DecalInstaller.wip =================================================================== RCS file: /cvsroot/decaldev/source/Installer/DecalInstaller.wip,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 Binary files /tmp/cvsfyT5He and /tmp/cvs41rGVn differ |
From: <ha...@us...> - 2002-10-03 08:26:56
|
Update of /cvsroot/decaldev/source/Installer/Res In directory usw-pr-cvs1:/tmp/cvs-serv29248 Modified Files: readme.rtf Install.vbs Log Message: 2.4.1.2 release Index: readme.rtf =================================================================== RCS file: /cvsroot/decaldev/source/Installer/Res/readme.rtf,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 Binary files /tmp/cvsufFmEA and /tmp/cvsOs6o50 differ Index: Install.vbs =================================================================== RCS file: /cvsroot/decaldev/source/Installer/Res/Install.vbs,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** Install.vbs 17 Sep 2002 19:39:53 -0000 1.25 --- Install.vbs 3 Oct 2002 08:26:53 -0000 1.26 *************** *** 57,61 **** 'All of these -must- be specified Private Const ThisProduct = "Decal" ' The name of your product, used it dialogs and such ! Private Const ThisVersion = "2.4.1.0" ' The version of your product, used in dialogs and such Private Const MSIFileName = "Decal.msi" ' The name of the MSI file that will be excuted 'Add all of your previous product IDs to the dictionary for removal by the installer --- 57,61 ---- 'All of these -must- be specified Private Const ThisProduct = "Decal" ' The name of your product, used it dialogs and such ! Private Const ThisVersion = "2.4.1.2" ' The version of your product, used in dialogs and such Private Const MSIFileName = "Decal.msi" ' The name of the MSI file that will be excuted 'Add all of your previous product IDs to the dictionary for removal by the installer *************** *** 90,93 **** --- 90,94 ---- AllProducts.Add "2.4.0.0", "{4D7BE8B5-6B0A-4135-8C75-BE8E4BB2E351}" AllProducts.Add "2.4.1.0", "{E6E9AB9D-812C-40D7-A57C-ED298B48557F}" + AllProducts.Add "2.4.1.2", "{09C6E670-D686-11D6-BFDA-009027B6A4F1}" |
From: <ha...@us...> - 2002-10-03 07:46:35
|
Update of /cvsroot/decaldev/source/DecalFilters In directory usw-pr-cvs1:/tmp/cvs-serv19082 Modified Files: World.cpp Log Message: World Sets Hook on init now. Index: World.cpp =================================================================== RCS file: /cvsroot/decaldev/source/DecalFilters/World.cpp,v retrieving revision 1.41 retrieving revision 1.42 diff -C2 -d -r1.41 -r1.42 *** World.cpp 17 Sep 2002 19:39:49 -0000 1.41 --- World.cpp 3 Oct 2002 07:46:32 -0000 1.42 *************** *** 135,138 **** --- 135,144 ---- { _DebugLog("OnInitialize") ; + + _DebugLog("\n\nLogin") ; + if (!m_HookIsSet) { + SetHook() ; + } + return S_OK; } *************** *** 704,711 **** void cWorld::DoLogin(CComPtr<IMessageIterator> pMembers) { - _DebugLog("\n\nLogin") ; - if (!m_HookIsSet) { - SetHook() ; - } CComPtr<IMessageIterator> pItems, pItem; long nCount, ixSlot = 0, ixPack=0 ; --- 710,713 ---- |
From: <ha...@us...> - 2002-10-03 07:46:05
|
Update of /cvsroot/decaldev/source/PlainText In directory usw-pr-cvs1:/tmp/cvs-serv18950 Modified Files: PlainText.rc Log Message: Update version resources 2.4.1.2 Index: PlainText.rc =================================================================== RCS file: /cvsroot/decaldev/source/PlainText/PlainText.rc,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** PlainText.rc 10 Sep 2002 05:19:27 -0000 1.23 --- PlainText.rc 3 Oct 2002 07:46:02 -0000 1.24 *************** *** 1,3 **** ! //Microsoft Developer Studio generated resource script. // #include "resource.h" --- 1,3 ---- ! // Microsoft Visual C++ generated resource script. // #include "resource.h" *************** *** 28,37 **** // ! 1 TEXTINCLUDE DISCARDABLE BEGIN "resource.h\0" END ! 2 TEXTINCLUDE DISCARDABLE BEGIN "#include ""winres.h""\r\n" --- 28,37 ---- // ! 1 TEXTINCLUDE BEGIN "resource.h\0" END ! 2 TEXTINCLUDE BEGIN "#include ""winres.h""\r\n" *************** *** 39,43 **** END ! 3 TEXTINCLUDE DISCARDABLE BEGIN "1 TYPELIB ""PlainText.tlb""\r\n" --- 39,43 ---- END ! 3 TEXTINCLUDE BEGIN "1 TYPELIB ""PlainText.tlb""\r\n" *************** *** 48,52 **** - #ifndef _MAC ///////////////////////////////////////////////////////////////////////////// // --- 48,51 ---- *************** *** 55,60 **** VS_VERSION_INFO VERSIONINFO ! FILEVERSION 2,4,0,0 ! PRODUCTVERSION 2,4,0,0 FILEFLAGSMASK 0x3fL #ifdef _DEBUG --- 54,59 ---- VS_VERSION_INFO VERSIONINFO ! FILEVERSION 2,4,1,2 ! PRODUCTVERSION 2,4,1,2 FILEFLAGSMASK 0x3fL #ifdef _DEBUG *************** *** 71,87 **** BLOCK "040904b0" BEGIN ! VALUE "Comments", "PlainText is a Decal surrogate that allows plug-ins to be written using Windows Scripting Technologies\0" ! VALUE "CompanyName", "\0" ! VALUE "FileDescription", "PlainText Module\0" ! VALUE "FileVersion", "2, 4, 0, 0\0" ! VALUE "InternalName", "PlainText\0" ! VALUE "LegalCopyright", "Copyright 2001\0" ! VALUE "LegalTrademarks", "\0" ! VALUE "OLESelfRegister", "\0" ! VALUE "OriginalFilename", "PlainText.DLL\0" ! VALUE "PrivateBuild", "\0" ! VALUE "ProductName", "PlainText Module\0" ! VALUE "ProductVersion", "2, 4, 0, 0\0" ! VALUE "SpecialBuild", "\0" END END --- 70,81 ---- BLOCK "040904b0" BEGIN ! VALUE "Comments", "PlainText is a Decal surrogate that allows plug-ins to be written using Windows Scripting Technologies" ! VALUE "FileDescription", "PlainText Module" ! VALUE "FileVersion", "2, 4, 1, 2" ! VALUE "InternalName", "PlainText" ! VALUE "LegalCopyright", "Copyright 2001" ! VALUE "OriginalFilename", "PlainText.DLL" ! VALUE "ProductName", "PlainText Module" ! VALUE "ProductVersion", "2, 4, 1, 2" END END *************** *** 92,97 **** END - #endif // !_MAC - ///////////////////////////////////////////////////////////////////////////// --- 86,89 ---- *************** *** 100,104 **** // ! IDR_SCRIPTVIEW REGISTRY DISCARDABLE "ScriptView.rgs" ///////////////////////////////////////////////////////////////////////////// --- 92,96 ---- // ! IDR_SCRIPTVIEW REGISTRY "ScriptView.rgs" ///////////////////////////////////////////////////////////////////////////// *************** *** 107,111 **** // ! STRINGTABLE DISCARDABLE BEGIN IDS_PROJNAME "PlainText" --- 99,103 ---- // ! STRINGTABLE BEGIN IDS_PROJNAME "PlainText" *************** *** 130,134 **** // ! IDR_SCRIPTPLUGIN REGISTRY DISCARDABLE "ScriptPlugin.rgs" #endif // English (Canada) resources ///////////////////////////////////////////////////////////////////////////// --- 122,126 ---- // ! IDR_SCRIPTPLUGIN REGISTRY "ScriptPlugin.rgs" #endif // English (Canada) resources ///////////////////////////////////////////////////////////////////////////// |