-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathrelease_notes.txt
399 lines (213 loc) · 12.3 KB
/
release_notes.txt
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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
TAME V4.3.1 Release Notes
-------------------------
- Bugfix: Error with user defined data types in SumRequests fixed. Arrays
and structures were overwritten with the user defined type. Minor error
with data type STRING fixed.
TAME V4.3 Release Notes
-----------------------
- Changed file names: For providing an NPM module I decided to rename the
files to the common standart:
old new
----------- --------------
tame-w-comments.js tame.js
tame.js tame.min.js
So tame.js is now the readable version and tame.min.js is the minified one.
- Bugfix: Minor errors fixed.
TAME V4.2 Release Notes
-----------------------
- New feature: Data type INT2DP added (INT in PLC, number with 2 decimal
points in JavaScript.
- New feature: Code and files for using TAME as an NPM module added.
TAME V4.1.2 Release Notes
-------------------------
- Bugfix: 3 syntax errors fixed (commas deleted, thanks to Jouzer for
reporting).
TAME V4.1.1 Release Notes
-------------------------
- Bugfix: The TPY file generated by TwinCAT 3 can contain data types with
no type information (especially if OSCAT is used). The parser stopped
there with an error. Now there will be just a message logged in the
console.
- New feature: There is a new example using SVG graphics. Thanks to Niels
Linnemann for providing this example.
TAME V4.1 Release Notes
-----------------------
- New feature: For better error handling there is now an on-error function.
Usage is similar to the on-complete function. It fires on ADS-, XML- and
network errors.
- New feature: Timeout for XMLHttpRequest added. The default value is set to
5000 ms. You can change the value by overwriting the "xmlHttpReqTimeout"
property of the client.
- New feature: There are missing data types in some TwinCAT libraries. By
default TAME drops an error and stops importing the data types from the TPY
file. With the new client parameter "skipMissingTypes" set to true it will
just drop a message an continue parsing the file.
TAME V4.0.1 Release Notes
-------------------------
- Bugfix: The onReady function was not executed under iOS, fixed.
TAME V4.0 Release Notes
-----------------------
- Changed API: Synchronous XMLHttpRequest outside of workers is in the process
of being removed from the web platform and it's already deprecated in most
browsers. TAME has been used synchronous requests for building the symbol
table. With asynchronous requests became a new "onReady" property nessecary
and the process of starting the client is different to V3.x.
!!! If you want to replace V3.x with V4 you have to change the way of starting
your scripts !!!
- New feature: Handles are supported now. There are functions for getting and
releasing handles as well as for logging them to the JavaScript console.
TwinCAT 2.11 >= Build 1550 is needed to use this feature.
- Bugfix: User and password were not used for fetching the TPY file, fixed.
TAME V3.5 Release Notes
-----------------------
- New feature: Using the *.tpy file generated by TwinCAT it's now possible to
access single elements of structures and arrays and also internal variables
and parameters of FB's. Structure definitions are built automatically if no
definition is provided by user. Target information like NetId and port can be
read from the file, it's no longer necessary to set them manually.
- New feature: Just like the symbol table, the data type information can be
im-/exported from/to a JSON string. Especially intented for Tasker scripts.
- Changed API: New client parameter "configFileUrl". The path to the *.tpy file
on the webserver.
- Changed API: New client parameter "forceUploadUsage". Skips building the
symbol table from the data of the *.tpy file and use the Upload instead.
TAME V3.4 Release Notes
------------------------
- Some changes made for TwinCAT 3 compatibility (symbol table, alignment).
- Changed API: The client parameter "dataAlign4" is depricated, for setting the
value for the data alignment there is now a new parameter named "alignment".
- Bugfix: LREAL values were written with 16 bytes length, fixed.
- Bugfix: The "SP" parameter was not recognized if structures were written with
a SumWriteRequest, fixed.
TAME V3.3 Release Notes
------------------------
- New feature: SumWriteRequest added. TwinCAT 2.11 >= Build 1550 is needed to use
this feature.
- Bugfix: Bug in SumReadRequest fixed.
- Minor impovements.
TAME V3.2 Release Notes
------------------------
- New feature: Values for writing TOD variables can be a string now, i.e. "21:32".
- New feature: Function "readAdsState()" added for checking the current state of PLC
(run/stop).
- New feature: Authentication added.
- More error messages.
TAME V3.1 Release Notes
-----------------------
- New feature: Methods for importing/exporting the symbol table from/to a JSON
string added. Especially intented for Tasker scripts (Android).
- Changed API: For a better understanding I changed the name of the parameter
for preventing the use of the Upload for building the symbol table.
old new
----------- --------------
dontReadUpload dontFetchSymbols
- Bugfix: Variables of a SumReadRequest defined after a structure or an array
were not updated, fixed.
- Some code improvements and Strict Mode added.
TAME V3.1b2 Release Notes
-------------------------
- New feature: Options for using synchronous XMLHttpRequests added. Especially
intented for Tasker scripts (Android).
TAME V3.1b Release Notes
-------------------------
- New feature: The SumReadReq supports arrays and structures now.
TAME V3.0 Release Notes
-------------------------
- Bugfix: Fixed a problem with "readReq()" using addressed items.
TAME V3.0b2 Release Notes
-------------------------
- Changed API: The name of the parameter for preventing the use of the
Upload for building the symbol table has changed.
old new
----------- --------------
useUploadInfo dontReadUpload
TAME V3.0b Release Notes
------------------------
- New feature: Access to PLC variables by name is now possible. Internally
IndexGroup/IndexOffset is used instead of handles, so a visualisation
has to be reloaded in the browser when the PLC program has changed.
- New feature: Multiple PLC variables can be read by a SumReadRequest. The
advantage over the standart ReadRequest is that variables don't have to be
located. TwinCAT V2.10 Build >= 1324 is needed to use this feature!
TAME V2.2.2 Release Notes
-------------------------
- Documentation updated: For the reading of structures the parameter "SP" was not described.
- Minor changes.
TAME V2.2.1 Release Notes
-------------------------
- Minor fixes.
TAME V2.2 Release Notes
-----------------------
- New feature: Support for data type LREAL added (thanks to Martin Geiger for the preliminary work).
- New feature: For the method "readReq" and those for reading single variables
there are now 2 new options, "prefix" and "suffix". Documentation updated.
- Bugfix: Issue with reading REAL values of 0 fixed.
- Bugfix: Incorrect alignment (ARM-Processors) for arrays of structures fixed.
- Bugfix: Problems with the basic example solved. I've changed addresses both in the PLC program
and in the JavaScript file.
TAME V2.1 Release Notes
-----------------------
- New feature: All numeric data types and the data type TIME with bounds
checking now. Added a new Webservice Client property "useCheckBounds",
which is set to "true" by default.
- Bugfix: Some issues with writing of REAL variables fixed.
- Bugfix: Firefox splits XML response strings in 4k chunks, workaround
added.
- Minor improvements.
TAME V2.0.1 Release Notes
-------------------------
- Paramter "strlen" in method "readString" and "writeString" didn't work, fixed.
TAME V2.0 Release Notes
-----------------------
- Improved performance due to a complete redesign and a lot of micro-
optimizations.
- More and improved debug messages.
- New examples.
- New feature: For the methods "writeArray" and "writeArrayOfStruct":
With the parameter "item" set to the index number of an array item,
only this item of the array is written to the PLC. So there's no need to
write the whole array or calculating the address of the item by yourself,
if one want's to write one element only.
- New feature: For reading/writing structures it's now possible to define
arrays as a type in structures, i.e. ARRAY.20.STRING.11 for an array of
20 string variables, each with 11 characters length.
- New feature: Instead of defining the field "fld" and the address as a number
in the request descriptor, the address can now be written like the address
in the PLC:
addr: "%MB23"
addr: "%MW100"
addr: "%MX0.1"
Although the old notation is still supported, it's deprecated and should
not be used anymore.
- New feature: The WebServiceClient has an additonal property "language" for
setting the language of names of days and months, used for the formatted
output of dates.
Defaults to german (ge).
- Changed API: The name of the parameter for reading variables defined in a
direct sequence has changed (method "readReq").
old new
----------- ------------
cont seq
- Changed API: The item list of a request descriptor has to be an array now,
the alternative use of an object literal has been removed. The name of
the property has also changed:
old new
----------- ------------
varlist items
- Changed API: Renamed paramters for creating the Webservice Client:
- Changed call: TAME.WebServiceClient.createClient
- Changed parameter:
old new
----------- -----------
url serviceUrl
netId amsNetId
port amsPort
dataAlignm dataAlign4
- Changed API: For the methods "readString/writeString" and "readArrayOfString/
writeArrayOfString" the parameter for the length of the string has changed.
old new
----------- ------------
len strlen
- Bugfix: Acknowledgement counter was broken, fixed.
- Bugfix: Upper limts for SINT, INT and DINT were wrong, fixed.
- Various minor fixes and improvements.