Skip to content
This repository was archived by the owner on Sep 28, 2025. It is now read-only.

Commit 7c7b9dd

Browse files
1.0.3
1 parent f8829c6 commit 7c7b9dd

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [1.0.3] - Unreleased
8+
## [1.0.3] - 7/22/25
99

1010
### Added
1111
- Added the ability for mods to create their own options through an `options.json` file

Project.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
file="LeatherEngine"
1212
packageName="com.leather128.funkin"
1313
package="com.leather128.funkin"
14-
version="1.0.2"
14+
version="1.0.3"
1515
company="leather128"
1616
/>
1717

mods/Default Icons/_polymod_meta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"title": "Default Icons",
33
"description": "Base game icons. That's it.",
44
"author": "Leather128",
5-
"api_version": "1.0.2",
5+
"api_version": "1.0.3",
66
"mod_version": "1.0.1",
77
"license": "GPL-3.0",
88
"metadata": {

mods/Friday Night Funkin'/_polymod_meta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"title": "Friday Night Funkin'",
33
"description": "Base Game",
44
"author": "Ninjamuffin99, PhantomArcade, KawaiiSprite, EvilSk8r",
5-
"api_version": "1.0.2",
5+
"api_version": "1.0.3",
66
"mod_version": "0.5.3",
77
"license": "Apache 2.0"
88
}

source/utilities/CoolUtil.hx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ class CoolUtil {
268268
@author Leather128
269269
**/
270270
public static function coolError(message:String, title:String, ?pos:PosInfos):Void {
271-
if (errors.exists(title + "\n\n" + message) || Lambda.count(errors) >= 10) {
271+
if (errors.exists(title + "\n\n" + message) || #if haxe5 errors.size() #else Lambda.count(errors) #end >= 10) {
272272
return;
273273
}
274274

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.2
1+
1.0.3

0 commit comments

Comments
 (0)