Skip to content
This repository has been archived by the owner on Aug 11, 2021. It is now read-only.

v1.2.0

Latest
Compare
Choose a tag to compare
@vladdeSV vladdeSV released this 26 Dec 21:05
· 31 commits to master since this release

Changes

  • string_*(...) functions now assume first character index is at 1.
  • log(...), no long comma-separates arguments.
  • _unittests.gml, updated accordingly to other changes in this release.

Fixes

  • Renamed real_within_exlusive(...) -> real_within_exclusive(...) (typo).
  • Optimized array_swap_item(...) if index1 and index2 are the same.
  • Ensured array_height(array) checking if argument array is array.
  • Add unittests for ds_list_swap_item(...).
  • extractor.d complains if non-misc function do not have unittests.
  • assert(...) optional argument properly documented.
  • array_append(...), removed incorrect documentation.
  • Amount of scripts in the README.md.

Added

  • Added Marketplace link in README.md.
  • array_filter(array, script), returns array of items, where the items passed through the script returns true (if script(array[n]) == true).
  • array_2d_of(...), possibility to create 2D array. All aguments must be of type array (1D).
  • Unittests for all non-misc functions.