Skip to content

Commit

Permalink
[licenses] Fix crash in release mode export
Browse files Browse the repository at this point in the history
  • Loading branch information
zibetnu committed Oct 23, 2024
1 parent 505dee0 commit 2f55288
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion addons/licenses/component.gd
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ func _get_property_list() -> Array:
{
"name": "licenses",
"type": TYPE_ARRAY,
"constructor": License.new,
"constructor": func() -> License: return License.new(),
},
]

Expand Down
2 changes: 1 addition & 1 deletion addons/licenses/plugin.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
name="License Manager"
description="Manage license and copyright for third party graphics, software or libraries."
author="Iceflower S"
version="1.8.0"
version="1.8.1"
script="plugin.gd"
license="MIT"
repository="https://github.com/kenyoni-software/godot-addons"
Expand Down
4 changes: 4 additions & 0 deletions doc/docs/addons/licenses.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,10 @@ License class.

## Changelog

### 1.8.1

- Fix crash when running a project exported in release mode

### 1.8.0

- Require Godot 4.3
Expand Down

0 comments on commit 2f55288

Please sign in to comment.