Gentee Versions Save

Gentee - script programming language for automation. It uses VM and compiler written in Go (Golang).

v1.22.0

2 years ago
  • Added ThreadData and SetThreadData function.
  • Added Custom field to Runtime structure.

v1.21.0

2 years ago
  • Fix ifaceToObj function for processing nil fields;
  • Rename ifaceToObj to IfaceToObj.

v1.20.0

3 years ago
  • Added the handle type.
  • Added ArchiveName(str, str) str and Path(finfo) str functions.
  • Improved MatchPath(str, str) bool.
  • Added function for working with zip and tar.gz archives.

v1.19.0

3 years ago
  • Added EncodeInt(buf,int) and DecodeInt(buf, int) functions.
  • Added SetLen(buf,int) and Write(buf, int, buf) functions.
  • Added file type and OpenFile, CloseFile, Read(file, int), Write(file,buf), SetPos(file,int,int), FileInfo(file) functions.
  • Fixed bug in try & catch statements.

v1.18.0

3 years ago
  • Added StructEncode(struct) and StructDecode(buf, struct) functions.
  • Added AESEncrypt(str, buf) and AESDecrypt(str, buf) functions.

v1.17.0

3 years ago
  • Added FindFirstRegExp(str, str) function.
  • Added IsEmptyDir(str) function.
  • Added ONLYDIRS flag to ReadDir function.
  • Added ReadDir(str, int, arr.str, arr.str) function.

v1.16.0

3 years ago
  • Added obj += obj operator for appending an item to obj array.
  • Added arr(obj), arrstr(obj), obj(finfo), map(obj), IsArray(obj), IsMap(obj) functions.
  • Added Sort(arr.obj, cmpobjfunc) function.
  • Added str(time) function.

v1.15.1

3 years ago
  • Added UnsetEnv function.
  • Added Size function.
  • Added ProgressHandle to Settings.
  • Added ProgressStart, Progress, ProgressEnd functions.
  • Improved playground tests.

v1.14.0

3 years ago
  • Fixed getting Mode in FileInfo function.
  • Added HeadInfo function for getting HTTP headers.
  • Added Playground mode.

v1.13.0

3 years ago
  • Fixed a bug with empty return from functions.
  • Added HTTPRequest function.