4 Commits

Author SHA1 Message Date
028da81df7 Tagged 1.75a 2006-07-19 09:24:24 +00:00
57ccee89f2 bump3d v3rsion 2006-07-04 17:37:49 +00:00
4b649469b0 underlined "FTP" in FTP install page
bumped version number to 1.75a
2006-07-04 17:36:41 +00:00
f1d3274f0e fixed bug at40706 (angle_vector) 2006-07-02 15:24:00 +00:00
6 changed files with 26 additions and 9 deletions

View File

@ -73,7 +73,7 @@
#define AMXXLOG_Log g_log.Log
#define AMXXLOG_Error g_log.LogError
#define AMX_VERSION "1.75"
#define AMX_VERSION "1.75a"
extern AMX_NATIVE_INFO core_Natives[];
extern AMX_NATIVE_INFO time_Natives[];

View File

@ -141,13 +141,16 @@ static cell AMX_NATIVE_CALL angle_vector(AMX *amx, cell *params)
{
case ANGLEVECTORS_FORWARD:
v_return = v_forward;
break;
case ANGLEVECTORS_RIGHT:
v_return = v_right;
break;
case ANGLEVECTORS_UP:
v_return = v_up;
break;
}
vCell = get_amxaddr(amx,params[3]);
vCell = get_amxaddr(amx, params[3]);
vCell[0] = FloatToCell(v_return.x);
vCell[1] = FloatToCell(v_return.y);
vCell[2] = FloatToCell(v_return.z);

View File

@ -26,8 +26,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
//
VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,7,5,0
PRODUCTVERSION 1,7,5,0
FILEVERSION 1,7,5,1
PRODUCTVERSION 1,7,5,1
FILEFLAGSMASK 0x17L
#ifdef _DEBUG
FILEFLAGS 0x1L
@ -44,12 +44,12 @@ BEGIN
BEGIN
VALUE "Comments", "AMX Mod X"
VALUE "FileDescription", "AMX Mod X"
VALUE "FileVersion", "1.75"
VALUE "FileVersion", "1.75a"
VALUE "InternalName", "amxmodx"
VALUE "LegalCopyright", "Copyright (c) 2004-2006, AMX Mod X Dev Team"
VALUE "OriginalFilename", "amxmodx_mm.dll"
VALUE "ProductName", "AMX Mod X"
VALUE "ProductVersion", "1.75"
VALUE "ProductVersion", "1.75a"
END
END
BLOCK "VarFileInfo"

Binary file not shown.

View File

@ -5977,7 +5977,7 @@ object frmMain: TfrmMain
' to install AMX Mod X to:'
WordWrap = True
end
object Shape1: TShape
object shpMods: TShape
Left = 134
Top = 140
Width = 255
@ -6127,6 +6127,19 @@ object frmMain: TfrmMain
Height = 13
Caption = '5. Click Next.'
end
object lblFTP: TLabel
Left = 101
Top = 56
Width = 18
Height = 13
Caption = 'FTP'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = [fsUnderline]
ParentFont = False
end
object pnlHeader3: TPanel
Left = 0
Top = 0

View File

@ -102,7 +102,7 @@ type
frbListenServer: TFlatRadioButton;
frbStandaloneServer: TFlatRadioButton;
frbSelectMod: TFlatRadioButton;
Shape1: TShape;
shpMods: TShape;
lblSelectModNote: TLabel;
lblStep3: TLabel;
pnlOS: TPanel;
@ -111,6 +111,7 @@ type
optLinux64: TFlatRadioButton;
lblOSNote: TLabel;
lblStep5: TLabel;
lblFTP: TLabel;
procedure jvwStepsCancelButtonClick(Sender: TObject);
procedure cmdCancelClick(Sender: TObject);
procedure cmdNextClick(Sender: TObject);
@ -147,7 +148,7 @@ var
frmMain: TfrmMain;
gMultiAccount: Boolean;
const VERSION = '1.75';
const VERSION = '1.75a';
implementation