All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
The version is the result of resolving practical needs that arose from using Polymod with Friday Night Funkin' over the past year and a half!
- Added the config option
frameworkParams.coreAssetRedirectwhich lets you use another directory as your primaryassets/folder.- This is useful if you are hot reloading scripts or other data files!
- Added the
loadScriptsAsyncparameter toPolymod.init()to load scripted classes asynchronously. - Reworked
_appendand_mergefunctionality for JSON.
- Replaced several instances of the deprecated
@:enumsyntax (via @MAJigsaw77) - Improved image caching on HTML5 builds.
- Reimplement the
loadBytesfunction so that it properly loads the files's contents asynchronously.- Also reimplemented
loadImageandloadTextto be properly asynchronous.
- Also reimplemented
- Made improvements to error handling for script parsing.
- Greatly improved the speed of Lime's
Assets.list()function. - Added proper handling for calls to
throwin scripts. - Fixed an issue when using HScript 2.5.0.
- Improve parsing of scripted superclass types.
- Improve error handling when a function called by a script throws an uncaught exception.
- Fix an issue where variables may not resolve properly when assigned to
null. - Fixed an issue where scripts could not access or import enums.
- Fixed a build issue with the HashLink library.
- Fixed an issue where Polymod's Lime backend would destroy the underlying library's cached assets.
- Fixed an issue where invalid
coreAssetRedirectpaths would crash the game. - Fixed an issue where
coreAssetRedirectwouldn't allow accessing files from the default library. - Fixed an issue where Polymod would fail to build if HScript wasn't installed (via @MAJigsaw77)
- Fixed an issue with a null object reference in the script parser (via @AltronMaxX)
- Fixed an issue with loading custom fonts (via @gamerbross)
This version has been postposed a while, but adds several powerful features. A dependency system, support for zipped mods (on both desktop and HTML5!), reworks to versioning functions, and more.
- Added the
dependencieskey to the ModMetadata format.- Example:
{"modA": "1.0.0", "modB": "3.*", "modC": "1.9.0 - 2.3.0"}- Add an object of key/value pairs to your
_polymod_meta.jsonfile, where the key is the mod ID and the value is the version rule. - Version rules can match any of those seen in node-semver.
- Add an object of key/value pairs to your
- Mods provided in the dependency list must be loaded in order for this mod to be loaded.
- The provided mod list will be reordered to account for dependencies, as needed, and maintaining order otherwise.
- Missing dependencies, mismatched dependency versions, or cyclical dependencies will result in an error. See
skipDependencyErrorsfor more info.
- Example:
- Added the
optionalDependencieskey to the ModMetadata format.- Mods provided in the optional dependencies list will reorder the dependency list, but will not cause dependency errors if absent.
- Added the
skipDependencyChecksparameter toPolymod.init().- Defaults to
false. - Setting this option to
truewill skip checks for the presence of mandatory dependencies, and prevent reordering the mod load list. - Enabling this option is NOT recommended, since it may break mods which rely on their dependencies.
- Defaults to
- Added the new
ZipFileSystem.- Enable it with
Polymod.init({customFilesystem: polymod.fs.ZipFileSystem}). - On desktop platforms, ZipFileSystem automatically behaves like SysFileSystem with the additional capability of loading mods from ZIP files (compressed or uncompressed) as though they were folders instead.
- On HTML5 builds, ZipFileSystem will instead act like a MemoryFileSystem which can load a mod when provided the byte data of a ZIP file.
- After loading mods, you may need to wait a short time before reloading any images. This is because the browser must asynchronously preload the image data before it can be provided to Haxe.
- Enable it with
- Added a convenience functions to handle loading and unloading of mods at runtime.
loadOnlyMods()loads a given set of mods, by re-initializing the framework with the appropriate mods enabled.- This is as opposed to
loadMods(), which appends to the mod list rather than setting it.
- This is as opposed to
- Note you may need to call
clearCache()depending on your framework and your app's current state.
- Added import aliasing and blacklist system for scripted classes.
- Call
Polymod.addImportAlias('full.class.Path', TargetClass)to replace any instances of that import with the target class. - Call
Polymod.removeImportAlias('full.class.Path')to remove a previously assigned import alias. - Call
Polymod.blacklistImport('full.class.Path')to throw an error whenever a scripted class attempts to import the chosen module.
- Call
loadMod(),unloadMod(),loadMods(), andunloadMods()now return an array of ModMetadata for each of the mods that are loaded after the operation.- Added the
skipDependencyErrorsparameter toPolymod.init().- Defaults to
false. - While this option is
true, any dependency issues will cause a warning to be reported, and Polymod will skip the problematic mods and load the rest. - While this option is
false, any dependency issues (missing dependencies, mismatched versions, or cyclical dependencies) will cause an error to be reported, and Polymod will initialize with NO mods loaded.
- Defaults to
thx.semverhas been added as a mandatory dependency Haxelib, replacing the existing Semantic Version code.- This provides full support for the features of node-semver when specifying version rules.
- Updated
openflsample to showcase dependency features.mod2now has a mandatory dependency onmod1.- Added a button to showcase the difference when
skipDependencyErrorschanges.
Polymod.scan()has been refactored.scan()now has two modes; the first, used when a parameter object is provided, uses the modRoot and fileSystem given.- This will supercede the modRoot and fileSystem that was used for
Polymod.init().
- This will supercede the modRoot and fileSystem that was used for
- The second mode, used when a parameter object is not provided, utilizes the filesystem created in
Polymod.init().- If you want to scan the modlist before loading mods, you can initialize Polymod with an empty modlist before scanning, then use
loadMods()to reinitialize with additional mods. - If no parameters are provided but
init()has not been called yet, an error will be thrown.
- If you want to scan the modlist before loading mods, you can initialize Polymod with an empty modlist before scanning, then use
- Updated samples to use the
hmmdependency management tool.- Install
hmmvia Haxelib, then runhmm installin a sample project to install project-local copies of all necessary dependencies with the correct version.
- Install
IFileSystem.scanMods()has been refactored.scanModsnow takes an optionalapiVersionRuleparameter, and returnsArray<ModMetadata>.scanModswill now parse and return the mod metadata, rather than returning an array of mod IDs.scanModswill now optionally filter to only mods which match the providedapiVersionRule(passnullto skip this).
- Reworked error codes for script-related exceptions and warnings.
- Several deprecated and obsolete options and variables related to this update's changes have been removed.
- Removed the
SemanticVersionutility class. - Removed the
apiVersionMatchoption from PolymodConfig. - Removed the
POLYMOD_API_VERSION_MATCHdefine. - Removed the
modVersionparameter ofPolymod.init
- Removed the
- Fixed several compilation issues with
hscriptPosdisabled.
Not much in the way of new features for end users here, but some refactors resulted in breaking changes so this is labelled as a minor version rather than a bugfix version.
- Scripted classes now allow functions with up to 8 arguments, up from 4.
- Added the new
ErrorExandPolymodPrinterExclasses for more detailed and extensible error handling.- Added new error message when attempting to call a custom function on a scripted class improperly.
- Added new error message when attempting to retrieve a custom variable on a scripted class improperly.
- Added new error message when attempting to assign a custom variable on a scripted class improperly.
- New static function
Polymod.clearScripts()clears all scripted classes and scripted functions. Useful for cleaning up before a script reload.
- HScriptable has been split into two interfaces: HScriptable and HScriptedClass.
- HScriptable is now used only for
@:hscriptannotations on scripted functions, and HScriptedClass is used for@:hscriptClassannotations to generate scripted classes. - These two interfaces are considered mutually exclusive, and only one should be used on a given class.
- HScriptable is now used only for
- Moved internal HScript classes to an
_internalpackage.
- Refactored HScript-related macros for improved maintainability.
- Cached
Reflect.fields()queries on PolymodScriptedClass proxies to improve performance. - Fixed an issue where attempting to annotate
@:hscriptClasson a class which utilized variables whose type is a function.- This now allows for FlxUIState to be scripted.
- Fixed an issue where the right-hand side of a variable assignment was being executed twice.
- Cleanup extraneous compile-time logging.
This patch includes several major bug fixes and convenience improvements.
- Added a new error message which occurs when a script cannot locate a module you try to import.
- If you encounter this message, make sure you typed the package name correctly, and make sure the module is exempt from Haxe's Dead Code Elimination process.
- Fixed an issue where attempting to annotate
@:hscriptClasson a class which utilized nested type parameters would fail to compile.- This now allows for FlxState and FlxSubState to be scripted, among other things.
- Fixed an issue where, if a function in a scripted class calls another function within that class, the local variable scope is destroyed.
- Fixed a compilation issue which occurs when
hscriptPosis not enabled (hscript.Error has no field line)- Line numbers will now display as
#???by default. To enable line numbers on script errors (highly recommended), add<haxedef name="hscriptPos" value="true" />to yourproject.xmlfile.
- Line numbers will now display as
- A build error
hscript.Interp has no field setVarmay occur. If this happens, make sure you are using the latest version of HScript, version 2.5.0.
Lots of tiny bug fixes and several new utilities. Overall a better experience if you're debugging a tricky script.
- Added the following utility functions to scripted classes.
scriptCall(methodName, [...args]): Calls a given function from a scripted class with the given arguments.scriptGet(fieldName): Gets the value of a given field from a scripted class.scriptSet(fieldName, value): Sets the value of a given field in a scripted class.- Note that these functions are only necessary when the field is defined on the scripted class itself. Functions and fields defined on the superclass will be accessible automatically.
- Added the
Polymod.reload()function.- This function will reload Polymod, with the same modlist and parameters as the last time you initialized.
- Added the
iconPathattribute to the ModMetadata class.- This provides the full path of the mod's icon, if available.
- Added a stub backend for the Ceramic framework.
- Drastically improved error logging for scripted classes, with the new
SCRIPT_PARSE_ERRORandSCRIPT_EXCEPTIONerror codes. - Scripted functions now use the scripted class interpreter; this provides improved error logging in some cases.
- Improved error handling for certain scripts.
- Fixed a bug where Polymod would mutate the mod directory list (fixes a bug with
loadMod()andunloadMod()). - Improved compatibility with build macros, especially when building for HTML5.
- Fixed a compatibility issue with older versions of Haxe (syntax error in PolymodFileSystem).
- Passing a function of a scripted class as an argument (for example, when used as a sort function) clears all the variables in the local scope.
- As a workaround, define and use an anonymous function instead.
A small bug fix update.
- Fixed a bug where scripted classes would fail while attempting to import and use an enum.
- Standardized code style across several files.
A large number of bug fixes for scripted classes.
- The
dirsparameter of Polymod is now optional. This is useful if Polymod is only used for localization. - Reduced the amount of compile-time logging created by scripted classes.
- Removed an unused PolymodErrorCode.
- Fixed a bug where scripted classes would fail to build when encountering fields marked with
@:generic.- These fields are now skipped completely (and cannot be overridden by scripted classes).
- Fixed a bug where scripted classes would fail to build when encountering arguments or return types using a type parameter.
- Fixed a bug where scripted classes would override functions with the return type
Voidwith a function that attempts to returnnull. - Fixed a bug where scripted classes did not properly support overriding functions with optional arguments.
- Fixed a bug related to using macros while using the FlixelBackend.
- Fixed a bug where the library would not build without the
hscript-exlibrary installed (the library is no longer required).
- Added new functionality which allows for parsing and instantiation of classes defined in scripts.
- These scripted classes can extend existing classes or even other scripted classes.
- See Scripted Classes for more information.
- Incorporated the functionality of
hscript-exinto Polymod.
- The
POLYMOD_USE_HSCRIPTEXflag has been made redundant. A fork ofhscript-exis now bundled into Polymod.
- OpenFLBackend no longer breaks when you are using the main version of OpenFL.
Version 1.4.2 includes a large number of bug fixes and tweaks to improve reliability.
- Added the optional
assetsPrefixoption to theframeworkParams.- Use this if your project's
assets/folder uses a different name.
- Use this if your project's
- Added a new Flixel sample project which ensures cache clearing when reloading mods.
- Added several convenience functions to handle loading and unloading of mods at runtime.
- These convenience functions perform the proper steps to reload Polymod. Note you may need to call
clearCache()depending on your framework and your app's current state. loadMod()andloadMods()enables an individual (or multiple) mods, by re-initializing the framework with the appropriate mods enabled.unloadMod()andunloadMods()disables an individual (or multiple) mods, by re-initializing the framework with the appropriate mods disabled.unloadAllMods()disables all mods, by re-initializing the framework with no mods enabled.- Localized asset replacements will still work, but no user-defined mods will be loaded.
disable()fully disables Polymod, destroying the asset handler.- Neither user-defined mods nor localized asset replacements will work until you call
init()again.
- Neither user-defined mods nor localized asset replacements will work until you call
- These convenience functions perform the proper steps to reload Polymod. Note you may need to call
- Added additional testing to the
openfl_firetonguesample.mod5now loads a different image depending on the selected locale.
- Performed many internal code style improvements (please use template strings)
- Improvements to documentation
- Renamed and cleaned up the
Localizationpage (formerly known asTranslation) - Added a section to the
Localizationpage describing its partial support (only available in Lime/OpenFL/Flixel as of this update).
- Renamed and cleaned up the
- Fixed several issues that stopped the Flixel backend from working. It's finally actually working I swear check the sample.
- Fixed several bugs related to asset retrieval.
- Fixed a bug where debug printing would sometimes not enable.
- Fixed a bug where the project would not build if Firetongue was not installed.
- Fixed several issues with the HEAPS sample (seriously was it ever working?).
- Temporarily disabled the
HScript-EXfeature.- Additional work to implement the scripted class functionality is required.
- REMOVED the existing modpack functionality (based on the
_polymod_pack.txtfile).- This will be replaced with a revamped system for modpacks in the future.
- REMOVED the documentation associated with modpacks.
- The
openfl_firetonguesample mod which implements an additional language is currently broken.
- Added additional codedocs for each error code.
- Fixed a compile bug for Flixel backends.
- Fixed a bug where embedded default assets would not load properly.
This release marks the migration of the project documentation to polymod.io, a new website for the project hosted by Github Pages.
- Added a new Github Pages site for documentation.
- This page is automatically generated using the
masterbranch, with the Jekyll project located at/docs/.
- This page is automatically generated using the
- Added a new logo for the library.
- Added FireTongue integration for asset localization.
- This incredibly powerful feature allows you to pass a FireTongue instance to Polymod, which will allow loading assets from the locale folder. This allows for locales to override not just strings, but also data files and even audio/visual assets, just by using your framework's asset management system.
- For example, when the locale is set to
en-US,openfl.Assets.getImage("images/billboard.png")can return a default image, or a custom image when the locale ispt-BR. - This not only allows developers to translate audio or graphics with almost no effort, but also allows mods to translate audio and graphics of the base game, or EVEN OTHER MODS.
- With the existing features of Polymod, mods should also be able to reasonably append new locales to the manifest, without requiring the developers to modify the base game.
- Added a new compile definition:
POLYMOD_API_VERSION_MATCH- This allows you to define how strictly mods must match when loading.
NONEmatches any version,MATCH_MAJORrequires the major version to match,MATCH_MINORrequires the minor version to match, andMATCH_PATCHrequires the patch version to match.- This defaults to
MATCH_PATCHto prevent breaking changes, but you should probably update this to at leastMATCH_MINORto reduce strain on your mod developers.
- Added a new compile definition:
POLYMOD_USE_HSCRIPTEX- This EXPERIMENTAL option allows you to replace the default hscript parser with hscript-ex, which provides support for classes.
- Added the new
FlixelBackendbackend.- This backend provides additional HaxeFlixel-specific fixes to the OpenFLBackend.
- Added
FLIXELas a Framework value to manually select this backend. - Updated the framework detector to use the
FlixelBackendover theOpenFLBackendwhen HaxeFlixel is being used.
- Added a new function,
Polymod.clearCache(), which triggers the backend to clear any cached assets from memory.- This is useful if you want to ensure assets reload after a modlist or locale change.
- Improved the Mod Metadata format with new and useful attributes.
- These changes are backwards compatible; new fields are optional, and changed fields still support the existing format.
- Added the
homepageattribute to allow mods to provide a URL. - Added the
contributorsattribute to provide a list of contributors.- Each contributor is an object with the following keys:
name,role,email,url. - New applications are encouraged to use this attribute over the
authorattribute where possible.
- Each contributor is an object with the following keys:
- Added a new sample demonstrating usage with FireTongue.
- Deprecated the
authorattribute in favor of thecontributorsattribute.- The
authorattribute is still supported for backwards compatibility. - Retrieving
authorwhencontributorsis defined will return the name of the first contributor.
- The
- Improved compile-time error output for when
@:hscript({context})receives an invalid value. - Changed the
openfl_hscriptsample to demonstrate retrieving and calling one or more functions from a single script file. - Cleaned up samples by removing unnecessary project configuration.
- Fixed a crash bug which occured when LimeBackend was used without a
frameworkParamsargument. - Fixed a bug where
MOD_LOAD_PREPAREandMOD_LOAD_DONEwere showing as errors rather than notices.
- @Cheemsandfriends made their first contribution in #75
- All compile defines can now also be edited at runtime.
- For example, you can enable Debug logging in code by using
PolymodConfig.debug = true; - If you use these to set asset library locations, etc., be sure to set them before instantiating any classes which utilize script files.
- For example, you can enable Debug logging in code by using
- Added a config option to customize the mod append folder.
- Modify this option by adding
POLYMOD_APPEND_FOLDERas a compile define, or by settingPolymodConfig.appendFolderin your code. - Defaults to
_appendfor backwards compatibility.
- Modify this option by adding
- Added a config option to customize the mod merge folder.
- Modify this option by adding
POLYMOD_MERGE_FOLDERas a compile define, or by settingPolymodConfig.mergeFolderin your code. - Defaults to
_mergefor backwards compatibility.
- Modify this option by adding
- Added a config option to customize the mod metadata file.
- Modify this option by adding
POLYMOD_MOD_METADATA_FILEas a compile define, or by settingPolymodConfig.modMetadataFilein your code. - Defaults to
_polymod_meta.jsonfor backwards compatibility.
- Modify this option by adding
- Added a config option to customize the mod icon file.
- Modify this option by adding
POLYMOD_MOD_ICON_FILEas a compile define, or by settingPolymodConfig.modIconFilein your code. - Defaults to
_polymod_icon.pngfor backwards compatibility.
- Modify this option by adding
- Added a config option to customize the mod pack definition file.
- Modify this option by adding
POLYMOD_MOD_PACK_FILEas a compile define, or by settingPolymodConfig.modPackFilein your code. - Defaults to
_polymod_pack.txtfor backwards compatibility.
- Modify this option by adding
- Added a config option to customize the ignore list for Polymod mod files.
- Modify this option by adding
POLYMOD_MOD_IGNOREas a compile define (use a comma separated list), or by settingPolymodConfig.modIgnoreFilesin your code (use anArray<String>). - Defaults to
LICENSE.txt,ASSET_LICENSE.txt,CODE_LICENSE.txtfor backwards compatibility.
- Modify this option by adding
- Added
optionalas an@:hscriptparameter.- This suppresses the error thrown when a script file is missing.
- Missing scripts are now handled gracefully rather than throwing an unhandled missing asset exception.
- Added a debug print call when the script is missing but
optionalis set totrue.
- Added a debug print call when the script is missing but
- Fixed a bug where scripted function that define a
pathNamefunction fail to retrieve the script. - Fixed compilation errors when using the HEAPS backend.
- The HEAPS sample now compiles and runs without errors.
- Fixed a deprecation warning in the CSV.hx file.
This release marks the transition to Eric Myllyoja as the lead maintainer for the repository. This release is backwards compatible with 1.0.0 as no breaking changes have been made.
- Added the
NodeFileSystemclass andOpenFLWithNodeBackend, for use with projects built in HTML5 for use with Electron.- Provided by TamarCurry.
- The
@:hscriptannotation can now be defined on classes and interfaces.- Defining a
@:hscriptannotation on a class or interface will add the constants provided to them to the context of any script functions of any of that class's children.- For example,
@:hscript(Std, Math)on a class will allow any of that class's script functions to accessStdandMathfrom the context as though they had defined them, without having to manually define these values for each individual function.
- For example,
- These values are parsed recursively, so any superclass, supersuperclass, interfaces of those classes, etc. will also be added to the context.
- Updated the
openfl_hscriptsample to demonstrate this new syntax.
- Defining a
- The
@:hscriptannotation can now be defined as a parameter object.- This allows for additional types of configuration to be passed, aside from the script context.
- Parameter objects can now be passed when using
@:hscripton a class or interface.- Parameters are defined recursively, and values defined on a superclass or interface will be overridden by child classes.
- The exception is the
contextparameter, which merges the provided contexts together.
- If an identifier is provided in the annotation on a parent class or interface, the identifier need not necessarily be defined in the upper context.
- For example, an interface can require that the variable
scriptPathbe included in the context or used as the script path name, without defining that variable itself, as long as any implementing classes that include a script function define that variable.
- For example, an interface can require that the variable
- Updated the
openfl_hscriptsample to demonstrate this new syntax.
- Added
contextas an@:hscriptparameter.- This achieves the existing functionality of providing constants to the script context.
- Example:
@:hscript({context: [Std, Math]})
- Added
cancellableas an@:hscriptparameter.- This allows for a script to be cancelled by the user. Defaults to
false.- A new function
cancel()is added to the context, which can be used to cancel the execution of the rest of the provided script body. - For example, you can add
@:hscript({cancellable: true})to allow users to cancel an event before you perform an action.
- A new function
- Example:
@:hscript({context: [Std, Math], cancellable: true})
- This allows for a script to be cancelled by the user. Defaults to
- Added
pathNameas an@:hscriptparameter.- This allows for a script to specify the specific pathname to access.
- This ignores the
POLYMOD_ROOT_PATHandPOLYMOD_USE_NAMESPACEsettings. - The value of
POLYMOD_SCRIPT_EXTis still appended to the final path.
- This ignores the
- Example:
@:hscript({context: [Std, Math], pathName: "assets/scripts/initBee"})
- This allows for a script to specify the specific pathname to access.
- The
pathNameparameter can now use an identifier. This allows for the pathname to be defined dynamically by the object.- If a constant is provided, the value is used as the pathname.
- Example:
@:hscript({context: [Std, Math], pathName: "assets/scripts/initBee"})
- Example:
- If an identifier is provided, the value of that identifier is accessed at the time the function is called.
- Example:
@:hscript({context: [Std, Math], pathName: getScriptName}) - If the resulting value is a string constant, that value is used as the path.
- If the resulting value is a Function, it will be called and the return value will be used as the path.
- Example:
- If a constant is provided, the value is used as the pathname.
- Added
runBeforeas an@:hscriptparameter.- This allows for a script's function body to be called before the script, rather than after. Defaults to
false. - Incompatible with the
cancellableparameter. - Example:
@:hscript({context: [Std, Math], runBefore: true})
- This allows for a script's function body to be called before the script, rather than after. Defaults to
- Fixed a bug where defining
@:hscriptannotations on a parent class or interface would not pass the values down to the child function.
- Added several new compile defines to change the behavior of Polymod
POLYMOD_ROOT_PATH: Defines the base path from which scripts should be accessed.POLYMOD_USE_NAMESPACE: If true, scripts are located in a folder based on the classpath.- For example, the script
com.polymod.test#initwill be located at/data/com/polymod/test/init.txt.
- For example, the script
POLYMOD_SCRIPT_EXT: Defines the file extension used by all Polymod scripts.- This defaults to
.txtfor backwards compatibility, but should be changed to.hscriptto improve integration with IDEs.
- This defaults to
POLYMOD_SCRIPT_LIBRARY: Defines the asset library used by all Polymod scripts.- This defaults to
default, which should be fine for Lime projects which only utilize the default asset library.
- This defaults to
- Set these values using either of the following methods:
- For Haxe projects, add something like
-D POLYMOD_SCRIPT_EXT=.hscriptto your Haxe compiler arguments orhxml. - For Lime projects, add something like
<haxedef name="POLYMOD_SCRIPT_EXT" value=".hscript" />to yourproject.xml.
- For Haxe projects, add something like
- Added the new variable
script_variables, accessible after the execution of a scripted function.- Similar to
script_result, which provides the return value of the script, andscript_error, which outputs the error provided by the script,script_variablesprovides access to the named variables created by the script's local scope. - One use case for this is to allow a single script to define several named functions, which can be retrieved and stored to use later.
- Similar to
- @MasterEric made their first contribution in #34
- Added several new informational error codes to
onError:MOD_LOAD_PREPARE: Called when Polymod is about to load a given mod.MOD_LOAD_DONE: Called when Polymod has successfully finished loading a given mod. Useful for logging.MOD_LOAD_FAIL: Called when Polymod has failed to load a given mod.
- Fully abstracted the file system and made it a parameter, similar to
IBackend.- This allows users to implement and utilize their own custom file system class.
- Example:
Polymod.init({customFileSystem: CustomFileSystem})given a classCustomFileSystemwhich implementsIFileSystem.
- Added several video file types to the list of default file extensions.
- Added
.mov,.mp4,.avi,.mkv, and.webm.
- Added
- Performed HaxeFormatter cleanup on all source files.
- Fixed a crash when old projects which used multiple asset libraries were not specifying
frameworkParams.- This fix is required for users attempting to build Friday Night Funkin' or derivatives.
The repository as it existed on 2020-09-15.
- All basic functionality.
- Fixed support for Lime projects utilizing multiple asset libraries.
- A crash may occur when old projects (which do not specify
frameworkParams.assetLibraryPaths) are run in this version.