Skip to content

Commit

Permalink
0.2.7 add explicit system.text.json dependency (#57)
Browse files Browse the repository at this point in the history
* add explicit system.text.json dependency

* update changelog
  • Loading branch information
dogboydog authored May 11, 2024
1 parent b9a8fc3 commit d6a2185
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 1 deletion.
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"

0 comments on commit d6a2185

Please sign in to comment.