Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

0.2.7 add explicit system.text.json dependency #57

Merged
merged 2 commits into from
May 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [0.2.7] 2024-05-11
* Add an explicit dependency on System.Text.Json v8.0.1 to fix compiler warnings and incompatibility with DotNet SDK versions below 8. The symptom in 0.2.6 was failing to create a .yarnproject file from the editor.

## [0.2.6] 2024-05-08
* Fix #53 where the first OptionView in an OptionsListView could not be interacted with if fadeTime was zero
* Update YarnSpinner core DLL files to [version 2.4.2](https://github.com/YarnSpinnerTool/YarnSpinner/releases/tag/v2.4.2)
Expand Down
1 change: 1 addition & 0 deletions Samples/SQLiteVariableStorage/SQLVariableStorage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ public override bool TryGetValue<T>(string variableName, out T result)
}
else if (typeof(T) == typeof(float))
{

query = "SELECT * FROM YarnFloat WHERE key = ?";
results.AddRange(db.Query<YarnFloat>(query, variableName));
}
Expand Down
1 change: 1 addition & 0 deletions addons/YarnSpinner-Godot/YarnSpinner-Godot.props
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
<PackageReference Include="Antlr4.Runtime.Standard" Version="4.7.2"/>
<PackageReference Include="CsvHelper" Version="12.2.2" />
<PackageReference Include="Google.Protobuf" Version="3.25.2"/>
<PackageReference Include="System.Text.Json" Version="8.0.1" />
<Reference Include="YarnSpinner">
<HintPath>addons\YarnSpinner-Godot\Runtime\DLLs\YarnSpinner.dll</HintPath>
</Reference>
Expand Down
2 changes: 1 addition & 1 deletion addons/YarnSpinner-Godot/plugin.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
name="YarnSpinner-Godot"
description="Yarn language based dialogue system plugin for Godot"
author="dogboydog"
version="0.2.6"
version="0.2.7"
script="YarnSpinnerPlugin.cs"
Loading