+Release v0.1.5
+-----------
+Not released
+
+Additions:
+
+Removals:
+
+Changes:
+
+Bugfixes:
+- Fixed bug in `json.encode` that caused arrays of structures to not be outputted correctly.
+- Fixed bug in `onyx pkg` that caused `onyx pkg new` to not work as intended.
+
+
+
Release v0.1.4
-----------
22nd June 2023
}
template_dir := Template_Directory();
- template_file := tprintf("{}{}.json", template_dir, template_name);
+ template_file := os.path_join(template_dir, tprintf("{}.json", template_name));
if !os.file_exists(template_file) {
error_print("Template '{}' not found in {}\n", template_name, template_dir);
return;