Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Release "2.8.39". |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 7abe7b66d3cf5dc63b4987f479aecdcc |
User & Date: | pmacdona 2019-07-23 14:23:53 |
Context
2019-07-27
| ||
14:46 | Fix erroneous error for String.fromCharCode. [33ca23183f] check-in: 576fa59f01 user: pmacdona tags: trunk | |
2019-07-23
| ||
14:23 | Release "2.8.39". check-in: 7abe7b66d3 user: pmacdona tags: trunk | |
2019-07-02
| ||
22:30 | Fix jsi.jsi bug check-in: 78045b0aa0 user: pmacdona tags: trunk | |
Changes
Changes to src/jsi.c.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
/* jsi.h : External API header file for Jsi. */
#ifndef __JSI_H__
#define __JSI_H__
#define JSI_VERSION_MAJOR 2
#define JSI_VERSION_MINOR 8
#define JSI_VERSION_RELEASE 38
#define JSI_VERSION (JSI_VERSION_MAJOR + ((Jsi_Number)JSI_VERSION_MINOR/100.0) + ((Jsi_Number)JSI_VERSION_RELEASE/10000.0))
#ifndef JSI_EXTERN
#define JSI_EXTERN extern
#endif
|
| |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
/* jsi.h : External API header file for Jsi. */
#ifndef __JSI_H__
#define __JSI_H__
#define JSI_VERSION_MAJOR 2
#define JSI_VERSION_MINOR 8
#define JSI_VERSION_RELEASE 39
#define JSI_VERSION (JSI_VERSION_MAJOR + ((Jsi_Number)JSI_VERSION_MINOR/100.0) + ((Jsi_Number)JSI_VERSION_RELEASE/10000.0))
#ifndef JSI_EXTERN
#define JSI_EXTERN extern
#endif
|
Changes to src/jsi.h.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
/* jsi.h : External API header file for Jsi. */
#ifndef __JSI_H__
#define __JSI_H__
#define JSI_VERSION_MAJOR 2
#define JSI_VERSION_MINOR 8
#define JSI_VERSION_RELEASE 38
#define JSI_VERSION (JSI_VERSION_MAJOR + ((Jsi_Number)JSI_VERSION_MINOR/100.0) + ((Jsi_Number)JSI_VERSION_RELEASE/10000.0))
#ifndef JSI_EXTERN
#define JSI_EXTERN extern
#endif
|
| |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
/* jsi.h : External API header file for Jsi. */
#ifndef __JSI_H__
#define __JSI_H__
#define JSI_VERSION_MAJOR 2
#define JSI_VERSION_MINOR 8
#define JSI_VERSION_RELEASE 39
#define JSI_VERSION (JSI_VERSION_MAJOR + ((Jsi_Number)JSI_VERSION_MINOR/100.0) + ((Jsi_Number)JSI_VERSION_RELEASE/10000.0))
#ifndef JSI_EXTERN
#define JSI_EXTERN extern
#endif
|
Changes to tools/protos.jsi.
1 2 3 4 5 6 7 8 |
//JSI Command Prototypes: version 2.8.38
throw("NOT EXECUTABLE: USE FILE IN GEANY EDITOR FOR CMD LINE COMPLETION + GOTO TAG");
var Array = function(cmd,args) {};
Array.prototype.concat = function(...):array {};
Array.prototype.every = function(callback:function):any {};
Array.prototype.fill = function(value:any, start:number=0, end:number=-1):array {};
Array.prototype.filter = function(callback:function, this:object=void):array {};
|
| |
1 2 3 4 5 6 7 8 |
//JSI Command Prototypes: version 2.8.39
throw("NOT EXECUTABLE: USE FILE IN GEANY EDITOR FOR CMD LINE COMPLETION + GOTO TAG");
var Array = function(cmd,args) {};
Array.prototype.concat = function(...):array {};
Array.prototype.every = function(callback:function):any {};
Array.prototype.fill = function(value:any, start:number=0, end:number=-1):array {};
Array.prototype.filter = function(callback:function, this:object=void):array {};
|