1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206
|
<HTML>
<head>
<title>AngelScript - Changes</title>
<style>
H1
{
FONT-WEIGHT: bold;
FONT-SIZE: 24px;
FONT-FAMILY: Verdana
}
H2
{
FONT-WEIGHT: bold;
FONT-SIZE: 18px;
FONT-FAMILY: Verdana
}
H3
{
FONT-WEIGHT: bold;
FONT-SIZE: 16px;
FONT-FAMILY: Verdana
}
H4
{
FONT-WEIGHT: bold;
FONT-SIZE: 14px;
FONT-FAMILY: Verdana
}
P
{
FONT-SIZE: 12px;
FONT-FAMILY: Arial
}
BODY
{
FONT-SIZE: 12px;
FONT-FAMILY: Arial
}
TD
{
FONT-SIZE: 12px;
FONT-FAMILY: Arial
}
.text_small
{
FONT-SIZE: 10px;
FONT-FAMILY: Arial
}
.text_normal
{
FONT-SIZE: 12px;
FONT-FAMILY: Arial
}
.text_large
{
FONT-SIZE: 14px;
FONT-FAMILY: Arial
}
.header_normal
{
FONT-WEIGHT: bold;
FONT-SIZE: 18px;
FONT-FAMILY: Verdana
}
.header_small
{
FONT-WEIGHT: bold;
FONT-SIZE: 16px;
FONT-FAMILY: Verdana
}
.header_large
{
FONT-WEIGHT: bold;
FONT-SIZE: 24px;
FONT-FAMILY: Verdana
}
A
{
TEXT-DECORATION: none
}
A:hover
{
TEXT-DECORATION: underline
}
.border
{
BORDER-RIGHT: gray 1px solid;
BORDER-TOP: gray 1px solid;
BORDER-LEFT: gray 1px solid;
BORDER-BOTTOM: gray 1px solid;
MARGIN-TOP: 0;
MARGIN-LEFT: 0;
MARGIN-RIGHT: 5;
MARGIN-BOTTOM: 5;
PADDING: 5 5 5 5;
DISPLAY: block;
}
.a
{
BACKGROUND-COLOR: #FFFFCC;
DISPLAY: block;
margin-bottom: 2;
PADDING: 5 5 5 5;
}
.b
{
BACKGROUND-COLOR: #EEEEEE;
DISPLAY: block;
margin-bottom: 2;
PADDING: 5 5 5 5;
}
</style>
</head>
<body>
<h1>AngelScript Change Log</h1>
<h2>Version 0.95 - 2003/06/17</h2>
<ul>
<li>Fixed bug in constant declaration
<li>Improved byte code for string manipulation
<li>Added data type: <code>bits</code>
<li>new operators: <code>~ | & ^ << >> >>> |= &= ^= <<= >>= >>>=</code>
<li>added bits constants: <code>0xFFA</code>
<li>Fixed a bug in the call stack
</ul>
<h2>Version 0.85 - 2003/06/04</h2>
<ul>
<li>stack positions are re-used when variables goes out of scope
<li><code>bstr</code> is now copied instead of reference counted
<li>concatenation operators for <code>bstr</code>: <code>+ +=</code>
<li>comparison operators for <code>bstr</code>: <code>== != < > <= >=</code>
<li>If script is aborted or an exception occurs the engine cleans up the stack
<li>Engine now executes until finished or until aborted
<li>Arguments can now be sent by reference instead of by value
</ul>
<h2>Version 0.7 - 2003/05/28</h2>
<ul>
<li>Added <code>?:</code> operator
<li>Added compound assignments: <code>+= -= *= /= %=</code>
<li>New data type: <code>bstr</code> (byte string)
<li>Added support for string constants
<li>Character sequences: <code>\n \r \0 \\ \" \x00</code>
</ul>
<h2>Version 0.55 - 2003/05/19</h2>
<ul>
<li>removed <code>include</code> from AngelScript
<li>AngelScript no longer loads the scriptcode from disk
<li>the host application can add several pieces of code that will be compiled as one
</ul>
<h2>Version 0.5 - 2003/05/15</h2>
<ul>
<li>declaration of global constants through directive: <code>const</code>
<li>added <code>do-while</code> statement
<li>fixed bug in AngelScript
</ul>
<h2>Version 0.4 - 2003/05/09</h2>
<ul>
<li>AngelScript now allows for application defined datatypes
<li>fixed potential bug in AngelScript
</ul>
<h2>Version 0.3 - 2003/04/23</h2>
<ul>
<li>Modulo operator <code>%</code>
<li>minor changes in the virtual machine
<li>fixed bug in compiler
</ul>
<h2>Version 0.25 - 2003/04/15</h2>
<ul>
<li>Added <code>++ --</code>
<li>Boolean expressions are no longer fully evaluated
<li>Added <code>break continue</code>
</ul>
<h2>Version 0.2 - 2003/04/09</h2>
<ul>
<li>using cdecl calling convention
</ul>
<h2>Version 0.1 - 2003/03/28</h2>
<ul>
<li>Simple scripting with <code>int float</code>
</ul>
</body>
</html>
|