====== Zeolite change log ====== ===== v16.01 ===== * Released: 5th of March, 2016. * Requires: L3DT 16.01 or later * Changes * Added [[zeolite:functions:zmap_nMipmaps]] * Added [[zeolite:functions:zmap_AllocMipmaps]] * Added [[zeolite:functions:zmap_GetMipmapLevel2]] * Added [[zeolite:functions:zmap_GetScanlinePtr]] * Added [[zeolite:functions:zmap_GetScanlineArray]] * Added [[zeolite:functions:zmap_IsContiguous]] * Added [[zeolite:functions:zmap_MakeContiguous]] * Added [[zeolite:functions:zmap_tile_GetScanlinePtr]] * Added [[zeolite:functions:zmap_tile_GetScanlineArray]] * Added [[zeolite:functions:zmap_tile_IsContiguous]] * Added [[zeolite:functions:zmap_tile_MakeContiguous]] -> Download link: [[http://www.bundysoft.com/L3DT/downloads/zeolite/zeolite_v16.01.zip|zeolite_v16.01.zip]] ===== v11.08 ===== * //Includes changes from v2.9.8 (June 8), v2.9.7 (May 11) and v2.9.6 (March 9).// * Released: 19th of August, 2011. * Requires: L3DT release 11.08 or later. * Changes (files) * Created new 'Zeolite.h' and 'Zeolite.cpp' files, and removed 'ExtAPI.h/cpp'. * Created new 'zMenu', 'zView' and 'zFile' files, separating from core API. * Added 'zBackup', 'zSettings' helper files. * Added ''helper/atMeshDecimator.h/cpp'' files. * Changes (API core functions) * Changed '[[zeolite:functions:zmenu_InsertItem]]' to take script arg, rather than function name. * Replaced var_GetValueA and var_SetValueA with [[zeolite:functions:zvar_GetValueText]] and [[zeolite:functions:zvar_SetValueText]] * Deprecated func_LoadFunc; renamed func_LoadFuncEx as [[zeolite:functions:zfunc_Load]]; all extension function names must be fully specified. * Renamed 'var_CreateTemp' as [[zeolite:functions:zvar_Create]], 'var_Create' becomes [[zeolite:functions:zvar_CreateShared]], 'var_GetVar' becomes [[zeolite:functions:zvar_GetSharedVar]], and zfunc 'var.Create' became 'var.CreateShared'. Changes were to make using shared variable names more intuitive. * Renamed 'project_GetSettingsListH' as [[zeolite:functions:zproj_GetSettingsList]], and did likewise for all other 'H' functions. * Changed CExtAPI::file_GetExt and similar to [[zeolite:functions:zFile_GetExt]], and changed argument orders. * Added [[zeolite:functions:zmap_tile_MarkChanged]]. * Renamed ''zfilesel_GetCurSelA'' as [[zeolite:functions:zfilesel_GetPathA]] * Renamed ''zdirsel_GetCurSelA'' as [[zeolite:functions:zdirsel_GetPathA]] * Added Flags parameter to [[zeolite:functions:zcombosel_Init]] * Added [[zeolite:functions:zcombosel_nOptions]] * Added [[zeolite:functions:zcombosel_GetSelI]] * Added [[zeolite:functions:zcombosel_SetSelI]] * Added [[zeolite:functions:zcombosel_GetSelA]] * Added [[zeolite:functions:zcombosel_SetSelA]] * Added [[zeolite:functions:zcombosel_FindItemA]] * Added [[zeolite:functions:zcombosel_AddItemA]] * Added [[zeolite:functions:zcombosel_GetItemText]] * Added [[zeolite:functions:zproj_GetMapAlternateName]] * Changes (classes) * Added [[zeolite:classes:CzMapTile]] class. * Added [[zeolite:functions:czmap_GetMosaicTile|CzMap::GetMosaicTile]] function. * Added [[zeolite:functions:czmap_OpenDirectInterface|CzMap::OpenDirectInterface]] and [[zeolite:functions:czmap_CloseDirectInterface|CzMap::CloseDirectInterface]] * Added [[zeolite:functions:czbuffer_OpenDirectInterface|CzBuffer::OpenDirectInterface]] and [[zeolite:functions:czbuffer_CloseDirectInterface|CzBuffer::CloseDirectInterface]] * Added CzMesh, CzMeshFaceGroup and CzMeshMtl classes, and associated helper functions. * Changes (extension functions) * Changed rval of 'file.FindFile' to be bool, and files returned through hResultList arg. * Renamed 'file.RecursiveFindByExt' as 'file.FindFile', with flag arg (0x1 is no recursion). * Renamed 'zeofunc.GetFuncList' as 'zfunc.GetFunctionList', and changed rval to hvar. * Renamed 'file.xml.Load' as 'file.XML.Load' (same for Save). * Renamed 'file.export.areaH' as 'map.ExportArea' (same for area2H). * Renamed 'filsel.InitFS' as 'filesel.Init' * Renamed 'filesel.GetFilename' as 'filesel.GetCurSelA' (different args & return val). * Renamed 'dirsel.InitDS' as 'dirsel.Init' * Renamed 'dirsel.GetFilename' as 'dirsel.GetCurSelA' (different args & return val). * Renamed 'combosel.InitCS' as 'combosel.Init' * Renamed 'combosel.SetOptions' as 'dirsel.SetOptionsA'. * Renamed 'combosel.GetOptions' as 'dirsel.GetOptionsA'. * Renamed 'combosel.GetCurSel' as 'dirsel.GetCurSelA' (different args & return val). * Renamed 'combosel.SetCurSel' as 'dirsel.SetCurSelA' (different args & return val). * Added 'combosel.SetCurSelI'. * Added 'combosel.GetCurSelI'. * Renamed 'map.GenMipmaps2' as 'map.GenMipmap' * Created 'view.GetSelectedArea', 'view.SetSelectedArea', 'view.GetActiveMap' and 'menu.InsertItem' extension functions. * Deprecated 'threadman.RunTiles' and replaced with 'threadman.RunTiles2' (different args). * Changes (plugin structure / requirements) * Changed 'ExitInitPlugin' function to 'zeoInitPlugin', and changed arg list (no args now). * Removed requirement for user to initialise API; is now handled directly b/w L3DT and Zeolite.cpp file, before 'zeoInitPlugin' is called. * Removed requirement for function names to be included in exports list; can use 'zeoexport' declaration (and L3DT handles the name decoration). -> Download link: [[http://www.bundysoft.com/L3DT/downloads/zeolite/zeolite_v11.08.zip|zeolite_v11.08.zip]] ===== v2.9 ===== * Released: 11th of January, 2010. * Requires: L3DT release 2.9 or later. * Added/changed (core API) * Added [[zeolite:functions:var_EditUIEx|var_EditUIEx]], and deprecated [[zeolite:functions:var_EditUI2|var_EditUI2]]. * Added [[zeolite:functions:list_Append|list_Append]]. * Added [[zeolite:functions:dirsel_InitDS|dirsel_InitDS]]. * Added [[zeolite:functions:dirsel_GetDirname|dirsel_GetDirname]]. * Added [[zeolite:functions:combosel_InitCS|combosel_InitCS]] (was composite) * Changed 'VarID_FileSelector' to 'VarID_filesel'. * Changed 'VarID_DirSelector' to 'VarID_dirsel'. * Changed 'VarID_ComboSelector' to 'VarID_combosel'. * Added/changed (C++ wrapper classes) * Added CzDirSel. * Added/changed (helper files) * Added zApp.cpp/.h, for accessing application settings. * Added zFile.cpp/.h, for file, directory and path manipulation functions. * Added zVarCast.cpp/.h, for variable type casting support. -> Download link: [[http://www.bundysoft.com/L3DT/downloads/zeolite/zeolite_v2.9.zip|zeolite_v2.9.zip]] ===== v2.7.4 ===== * Released: 2nd of October, 2009. * Requires: L3DT Pro release 2.7 build 33 or later. * Added/changed (core API) * Added [[zeolite:functions:menu_InsertItem2|menu_InsertItem2]], deprecated [[zeolite:functions:menu_InsertItem|menu_InsertItem]] and removed [[zeolite:functions:menu_InsertItemEx|menu_InsertItemEx]]. * Added [[zeolite:functions:map_SetHorizScale|map_SetHorizScale]] * Added [[zeolite:functions:format_GetDefaultFormat|format_GetDefaultFormat]] * Added [[zeolite:functions:view_SetSelectedArea|view_SetSelectedArea]] * Changed [[zeolite:functions:format_GetActiveFormat|format_GetActiveFormat]] to be a core function (was ZEOFUNC wrapper) * Added 'VarID_mapid' variable type. * Added/changed (C++ wrapper classes) * Added [[zeolite:functions:czmap_SetHorizScale|CzMap::SetHorizScale]] * Added [[zeolite:functions:czformat_GetDefaultFormat|CzFormat::GetDefaultFormat]] * Added land type handling functions to CzClimate. * Added/changed (helper code) * Added/extended 'zCalcMap.cpp' and 'zCalcHF.cpp' helper function libraries. * Added 'zXML' helper code, for reading/writing L3DT XML files. * Added/changed (extension functions) * Changed all map filter functions to take args of VarID_hvar, instead of VarID_map -> Download link: [[http://www.bundysoft.com/L3DT/downloads/zeolite/zeolite_v2.7.4.zip|zeolite_v2.7.4.zip]] ===== v2.7.1 ===== * Released: 18th of February, 2009. * Added/changed (core API) * Added [[zeolite:functions:format_SetFlags2|format_SetFlags2]] * Added [[zeolite:functions:format_GetFlags|format_GetFlags]] * Added [[zeolite:functions:view_GetSelectedArea2|view_GetSelectedArea2]], and deprecated 'view_GetSelectedArea'. * Added MAP_RGBA map type. * Added 'VarID_varref' type (used in ZeoWrap/ZeoScript for script arguments; actually same as hvar) * Added 'VarID_varid' type (used in ZeoWrap/ZeoScript for script arguments; actually an integer) * Changed typedef of 'VarID_LPVOID' to 'VarID_voidptr' * Changed typedef of 'VarID_hVar' to 'VarID_hvar' * Added/changed (C++ wrapper classes) * Added [[zeolite:functions:czformat_setflags2|CzFormat::SetFlags2]] * Added [[zeolite:functions:czformat_getflags|CzFormat::GetFlags]] * Added [[zeolite:functions:czlist_itemexists|CzVar::ItemExists]] * Added [[zeolite:functions:czbuffer_initbytype|CzBuffer::InitByType]] * Added [[zeolite:functions:czbuffer_itemtype|CzBuffer::ItemType]] * Added [[zeolite:functions:czfunc_GetArgI|CzFunc::GetArgI]] * Added [[zeolite:functions:czfunc_GetArgA|CzFunc::GetArgA]] * Added [[zeolite:functions:czfunc_GetArgValueI|CzFunc::GetArgValueI]] * Added [[zeolite:functions:czfunc_GetArgValueA|CzFunc::GetArgValueA]] * Fixed [[zeolite:functions:czstr_comparenocase|CzStr::CompareNoCase]] --- poor implementation didn't compare non-alpha characters. -> Download link: [[http://www.bundysoft.com/L3DT/downloads/zeolite/zeolite_v2.7.1.zip|zeolite_v2.7.1.zip]] ===== v2.5.4 ===== * Released: 9th of June, 2008 * Added (core) * [[zeolite:functions:var_GetValueA]] * Added (wrappers) * [[zeolite:functions:czvar_getvaluea|CzVar::GetValueA]] * [[zeolite:functions:czlist_getitema|CzList::GetItemA]] * [[zeolite:functions:czlist_getitemi|CzList::GetItemI]] * [[zeolite:functions:czlist_getitemvaluea|CzList::GetItemValueA]] * [[zeolite:functions:czlist_getitemvaluei|CzList::GetItemValueI]] * [[zeolite:functions:czlist_setitemvaluea|CzList::SetItemValueA]] * [[zeolite:functions:czlist_setitemvaluei|CzList::SetItemValueI]] * [[zeolite:classes:CzClimate]] * Added (helper files) * zProject.cpp/.h * zCalcMan.cpp/.h * zCalcHF.cpp/.h * Added (data types) * VarID_variant. -> Download link: [[http://www.bundysoft.com/L3DT/downloads/zeolite/zeolite_v2.5.4.zip|zeolite_v2.5.4.zip]] ===== v2.5.3 ===== * Released: 15th of Marh, 2008. * Added (core) * [[zeolite:functions:var_SetValueA]] * [[zeolite:functions:var_EditUI2]] * [[zeolite:functions:combosel_InitCS]] * Added (wrappers) * [[zeolite:functions:czvar_setvaluea|CzVar::SetValueA]] * [[zeolite:functions:czvar_editUI2|CzVar::EditUI2]] * [[zeolite:functions:czstr_find|CzStr::Find]] * [[zeolite:classes:CzFileSel]] class. * Modified: * [[zeolite:functions:czcolour_setrgb_2|CzColour::SetRGB(COLORREF)]] bug fixed. * [[zeolite:functions:czstr_comparenocase|CzStr::CompareNoCase]] bug fixed. -> Download link: [[http://www.bundysoft.com/L3DT/downloads/zeolite/zeolite_v2.5.3.zip|zeolite_v2.5.3.zip]] ===== v2.5.2 ===== * Released: 4th of November, 2007. * Added (core) * [[zeolite:functions:map_LinInterp]] * [[zeolite:functions:project_CreateMap]] * [[zeolite:functions:project_GetOrCreateMap]] * [[zeolite:functions:map_GenMipmaps2]] (and deprecated [[zeolite:functions:map_GenMipmaps]]) * VarID_sbyte * VarID_ushort * VarID_uint * VarID_vector3c * VarID_vector3i * VarID_vector3d * Added (wrappers) * CzMap::LinInterp * Added (zeofunc) * view.EnableDraw * Modified: * CzVar::Delete behaviour changed; can be used to delete attached var. * CzMap::GenMipMaps modified to call [[zeolite:functions:map_GenMipMaps2]]. -> Download link: [[http://www.bundysoft.com/L3DT/downloads/zeolite/zeolite_v2.5.2.zip|zeolite_v2.5.2.zip]] ===== v2.4 ===== * Released: 27th of June, 2007. * Added (VarID) * VarID_FileSelector * VarID_DirSelector * Added (core) * [[zeolite:functions:WriteToLog]] * [[zeolite:functions:filesel_InitFS]] * [[zeolite:functions:filesel_GetFilename]] * [[zeolite:functions:map_GenMipmaps]] * [[zeolite:functions:map_ClearMipmaps]] * [[zeolite:functions:map_GetMipmapResStep]] * [[zeolite:functions:map_GetMipmapMaxLevel]] * [[zeolite:functions:map_GetMipmapLevel]] * Added (wrappers) * CzStr::IsStr * CzStr::Append * CzStr::AppendChar * CzMap::GenMipmaps * CzMap::ClearMipmaps * CzMap::GetMipmapResStep * CzMap::GetMipmapMaxLevel * CzMap::GetMipmapLevel -> Download link: [[http://www.bundysoft.com/L3DT/downloads/zeolite/zeolite_v2.4.zip|zeolite_v2.4.zip]] ===== v2.3.1 ===== * Released: 15th of April, 2007 (with L3DT v2.5 RC5). * Added (VarID) * VarID_hVar * Added (core) * [[zeolite:functions:var_ReInit]] * [[zeolite:functions:script_Execute]] * Added (zeofunc): * project.CreateMap * project.LoadProject * project.SaveProject * project.SaveProjectAs * project.SaveProjectAsUI * ExtAPI.var.EditUI * ExtAPI.map.SaveFile * ExtAPI.map.LoadFile * file.OpenDlg * file.SaveDlg -> Download link: [[http://www.bundysoft.com/L3DT/downloads/zeolite/zeolite_v2.3.1.zip|zeolite_v2.3.1.zip]] ===== v2.3 ===== * Released: 4th of March, 2007 (with L3DT v2.5 RC3). * Added: * [[zeolite:functions:zeofunc_Execute2]] (better thread safety; doesn't share rvals) * [[zeolite:functions:map_GetMosaicTile]] * [[zeolite:functions:tile_GetDataPtr]] * [[zeolite:functions:tile_SetLock]] * Fixed: * CzStr::CompareNoCase bug fixed. -> Download link: [[http://www.bundysoft.com/L3DT/downloads/zeolite/zeolite_v2.3.zip|zeolite_v2.3.zip]] ===== v2.2 ===== * Released: 2007/02/17 * Changes: * Removed usage of MFC types: * BYTE -> unsigned char * USHORT -> unsigned short * LPCSTR -> const char* * LPVOID -> void* * Fixed some overloaded operators in wrapper classes for VC8.0 compatibility. * Include instead of when _MFC_VER is not defined. -> Download link: [[http://www.bundysoft.com/L3DT/downloads/zeolite/zeolite_v2.2.zip|zeolite_v2.2.zip]] ===== v2.1 ===== * Released: 2007/02/10 (requires L3DT v2.5.0.9 or later) * Added (core): * [[zeolite:functions:format_GetActiveFormat]] * [[zeolite:functions:list_SortI]] * [[zeolite:functions:list_SortA]] * [[zeolite:functions:map_GetDataPtr]] * [[zeolite:functions:var_GetDataPtr]] * VarID_vector3f * CzStr member functions: * GetLength * Compare * CompareNoCase * GetAt and [] operator * CzList member functions: * Sort * Added (zeofunc): * calc.AM.GenMap * calc.TN.GenMap * calc.LM.GenMap * calc.TX.GenMap * calc.HF.ErodeChannel * calc.HF.ErodeChannelEx * calc.HF.ErodeThermal * calc.HF.ErodeThermalEx * calc.HF.CombineMaps * format.GetActiveFormat * application.GetTempDir * application.GetUID * project.IsInit * project.InitProject * project.FreeProject * project.GetProjectPath * project.GetMap * project.GetHeightfieldRange * Changed: * [[zeolite:functions:project_GetSettingsList]] (return type is now ZLIST) * Changed to zeofunc linkage for: * [[zeolite:functions:project_GetMap]] (via project.GetMap) * [[zeolite:functions:project_GetHeightfieldRange]] (via project.GetHeightfieldRange)-- needs testing :!: * [[zeolite:functions:project_GetSettingsList]] (via project.GetSettingsList) * [[zeolite:functions:project_GetProjectFilename]] (via project.GetProjectPath) -- needs testing :!: -> Download link: [[http://www.bundysoft.com/L3DT/downloads/zeolite/zeolite_v2.1.zip|zeolite_v2.1.zip]] ===== v2.0 ===== * Released 03-01-2007 (with L3DT 2.5 build 1.) * Added (core): * [[zeolite:functions:zeofunc_ExecuteThreaded]] * [[zeolite:functions:menu_InsertItemEx]] * CzFunc::ExecuteThreaded * CzColour and VarID_colour * CzVar autocast to ZVAR * CzStr autocast to char* * Added (zeofunc): * calc.HF.ScaleMap * calc.HF.ShiftMap * calc.HF.ClipMap * calc.HF.ClampMap * calc.HF.GradFilter * calc.HF.CurvFilter * calc.AM.GetFilterList * calc.AM.FilterPixel * calc.AM.GetClimate * calc.AM.GetLandType * calc.AM.GetPixelColour * calc.AM.GetIDfromColour * classes.landtype.GetNameByID * classes.landtype.GetBaseTextureNameByID * zeofunc.GetFuncList * project.GetSettingsList * Deprecated: * [[zeolite:functions:calc_AM_GetPixelColour]] (use zeofunc 'calc.AM.GetPixelColour' instead.) * [[zeolite:functions:calc_AM_GetIDfromColour]] (use zeofunc 'calc.AM.GetIDfromColour' instead.) -> Download link: [[http://www.bundysoft.com/L3DT/downloads/zeolite/zeolite_v2.0.zip|zeolite_v2.0.zip]] ===== v1.8 ===== * Released 09-Dec-2006 (with L3DT 2.4b build 20.) * Added: * [[zeolite:functions:project_GetProjectFilename]] * [[zeolite:functions:project_GetSettingsList]] * CzList::GetItemName -> Download link: [[http://www.bundysoft.com/L3DT/downloads/zeolite/zeolite_v1.8.zip|zeolite_v1.8.zip]] ===== v1.7 ===== * Released 30-Nov-2006 (with L3DT 2.4b build 17.) * Added: * [[zeolite:functions:map_SetWrapFlag]] * [[zeolite:functions:map_SetBusyFlag]] * [[zeolite:functions:map_GetBusyFlag]] * [[zeolite:functions:map_ExportMap]] * [[zeolite:functions:map_ExportMosaic]] (untested) * [[zeolite:functions:map_SaveMosaicAs]] (untested) * Updated: * CzList::SetItemValue -> Download link: [[http://www.bundysoft.com/L3DT/downloads/zeolite/zeolite_v1.7.zip|zeolite_v1.7.zip]] ===== v1.6 ===== * Released 17-Nov-2006 (with L3DT 2.4b build 13.) * Added: * [[zeolite:functions:project_GetMap]] * [[zeolite:functions:format_GetFormatByExt]] * [[zeolite:functions:format_GetFormatByExt2]] * [[zeolite:functions:format_GetFormatList]] * [[zeolite:functions:format_GetFormatList2]] * [[zeolite:functions:format_IsMosaic]] * [[zeolite:functions:format_IsNative]] * [[zeolite:functions:file_GetDir]] * [[zeolite:functions:file_GetFilenameNoDir]] * [[zeolite:functions:map_SetMinMaxAlt]] * [[zeolite:functions:map_GetNameInProject]] * [[zeolite:functions:map_InitMosaic]] * [[zeolite:functions:map_LoadMosaic]] (untested) * [[zeolite:functions:map_SaveMosaic]] * [[zeolite:functions:map_GetFilename]] * [[zeolite:functions:map_SetFormat]] (untested) * [[zeolite:functions:map_GetFormat]] (untested) * [[zeolite:functions:map_CombineMosaic]] (untested) * [[zeolite:functions:map_SplitToMosaic]] (untested) * [[zeolite:functions:view_GetSelectedArea]] * [[zeolite:functions:view_GetActiveMap]] * [[zeolite:classes:CzVar]] wrapper * [[zeolite:classes:CzStr]] wrapper * [[zeolite:classes:CzList]] wrapper * [[zeolite:classes:CzMap]] wrapper * [[zeolite:classes:CzFormat]] wrapper * [[zeolite:classes:CzBuffer]] wrapper * [[zeolite:classes:CzFunc]] wrapper * [[zeolite:classes:CzProgBox]] wrapper * [[zeolite:classes:CzComboSel]] wrapper * Deprecated: * [[zeolite:functions:map_GetMap]] (replaced by [[zeolite:functions:project_GetMap]].) -> Download link: [[http://www.bundysoft.com/L3DT/downloads/zeolite/zeolite_v1.6.zip|zeolite_v1.6.zip]] ===== v1.5 ===== * Released 07-Nov-2006 (with L3DT 2.4b build 10.) * Added: * [[zeolite:functions:file_GetFilenameNoExt]] * [[zeolite:functions:file_FileExists]] * [[zeolite:functions:tile_GetTileCoords]] * [[zeolite:functions:map_GetSettingsList]] * [[zeolite:functions:format_SetInfoStr]] * [[zeolite:functions:map_SaveFile]] * [[zeolite:functions:map_LoadFile]] * Changed: * [[zeolite:functions:file_GetExt]] (different args, return val.) -> Download link: [[http://www.bundysoft.com/L3DT/downloads/zeolite/zeolite_v1.5.zip|zeolite_v1.5.zip]] ===== v1.4 ===== * Released 24-Oct-2006. * Added: * [[zeolite:functions:map_SetFlag]] * [[zeolite:functions:map_GetFlag]] * [[zeolite:functions:var_SetVarRef]] -> Download link: [[http://www.bundysoft.com/L3DT/downloads/zeolite/zeolite_v1.4.zip|zeolite_v1.4.zip]] ===== v1.3 ===== * Released 21-Oct-2006. * Added: * [[zeolite:functions:view_ShowMap]] * [[zeolite:functions:menu_InsertItem]] * Enabled: * [[zeolite:functions:map_GetMap]] * Removed example plugins from package (now [[zeolite:downloads:examples|available separately]].) -> Download link: [[http://www.bundysoft.com/L3DT/downloads/zeolite/zeolite_v1.3.zip|zeolite_v1.3.zip]] ===== v1.2 ==== * Released 19-Oct-2006. * Added: * All zeofunc_ extension functions. -> Download link: [[http://www.bundysoft.com/L3DT/downloads/zeolite/zeolite_v1.2.zip|zeolite_v1.2.zip]] ===== v1.1 ===== * Released 10-Oct-2006. * Added: * [[zeolite:functions:file_GetExt]] * [[zeolite:functions:file_FileExists]] * [[zeolite:functions:calc_AM_GetPixelColour]] * [[zeolite:functions:calc_AM_GetIDfromColour]] * [[zeolite:functions:project_GetHeightfieldRange]] * [[zeolite:functions:format_CreateGeneric]] * All buffer_ functions * All combosel_ functions * All tile_ functions * All str_ functions * All type_ functions * All var_ functions. -> Download link: [[http://www.bundysoft.com/L3DT/downloads/zeolite/zeolite_v1.1.zip|zeolite_v1.1.zip]] ===== v1.0 ===== * Released 25-Sept-2006. -> Download link: [[http://www.bundysoft.com/L3DT/downloads/zeolite/zeolite_v1.0.zip|zeolite_v1.0.zip]]