Skip to content

Commit

Permalink
update dependencies to recent stable version
Browse files Browse the repository at this point in the history
  • Loading branch information
cathei committed Jan 10, 2023
1 parent f5cae9c commit 7419352
Show file tree
Hide file tree
Showing 13 changed files with 17 additions and 22 deletions.
4 changes: 2 additions & 2 deletions BakingSheet.Converters.Csv/BakingSheet.Converters.Csv.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="NReco.Csv" Version="1.0.0" />
<PackageReference Include="NReco.Csv" Version="1.0.1" />

<!-- Assemblies already referenced by BakingSheet -->
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="3.1.8">
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="3.1.32" >
<IncludeAssets>compile</IncludeAssets>
</PackageReference>
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<PackageReference Include="ExcelDataReader.DataSet" Version="3.6.0" />

<!-- Assemblies already referenced by BakingSheet -->
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="3.1.8">
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="3.1.32" >
<IncludeAssets>compile</IncludeAssets>
</PackageReference>
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Google.Apis.Drive.v3" Version="1.57.0.2746" />
<PackageReference Include="Google.Apis.Sheets.v4" Version="1.57.0.2727" />
<PackageReference Include="Google.Apis.Drive.v3" Version="1.57.0.2859" />
<PackageReference Include="Google.Apis.Sheets.v4" Version="1.57.0.2826" />

<!-- Assemblies already referenced by BakingSheet -->
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="3.1.8">
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="3.1.32" >
<IncludeAssets>compile</IncludeAssets>
</PackageReference>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />

<!-- Assemblies already referenced by BakingSheet -->
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="3.1.8">
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="3.1.32" >
<IncludeAssets>compile</IncludeAssets>
</PackageReference>
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion BakingSheet/BakingSheet.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="3.1.8" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="3.1.32" />
</ItemGroup>

</Project>
9 changes: 3 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,6 @@
# BakingSheet 🍞
Easy datasheet management for C# and Unity. Supports Excel, Google Sheet, JSON and CSV format. It has been used for several mobile games that released on Google Play and AppStore.

## BakingSheet 4.0 is here!
With BakingSheet 4.0, you can [export and import with Unity's ScriptableObject](docs/scriptable-object.md).
Also, major support for [AssetPath](docs/asset-path.md) and customizable [ValueConverter](docs/value-converter.md) has been added!
Note that .unitypackage will not be provided anymore. Please [add git package from Package manager, or install via OpenUPM](#install).

## Table of Contents
* [Concept](#concept)
* [Features](#features)
Expand Down Expand Up @@ -70,14 +65,16 @@ For C# projects or server, download with [NuGet](https://www.nuget.org/packages?

For Unity projects, add git package from Package Manager.
```
https://github.com/cathei/BakingSheet.git?path=UnityProject/Packages/com.cathei.bakingsheet#v4.1.0
https://github.com/cathei/BakingSheet.git?path=UnityProject/Packages/com.cathei.bakingsheet#v4.1.1
```

Or install it via [OpenUPM](https://openupm.com/packages/com.cathei.bakingsheet/).
```
openupm add com.cathei.bakingsheet
```

Sample `.unitypackage` is available in [releases](https://github.com/cathei/BakingSheet/releases). (Main package should be installed first.)

If you are planning to use StreamingAssets folder on Android, install [BetterStreamingAssets](docs/streaming-assets.md) as well.

### Need help?
Expand Down
9 changes: 3 additions & 6 deletions UnityProject/Packages/com.cathei.bakingsheet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,6 @@
# BakingSheet 🍞
Easy datasheet management for C# and Unity. Supports Excel, Google Sheet, JSON and CSV format. It has been used for several mobile games that released on Google Play and AppStore.

## BakingSheet 4.0 is here!
With BakingSheet 4.0, you can [export and import with Unity's ScriptableObject](docs/scriptable-object.md).
Also, major support for [AssetPath](docs/asset-path.md) and customizable [ValueConverter](docs/value-converter.md) has been added!
Note that .unitypackage will not be provided anymore. Please [add git package from Package manager, or install via OpenUPM](#install).

## Table of Contents
* [Concept](#concept)
* [Features](#features)
Expand Down Expand Up @@ -70,14 +65,16 @@ For C# projects or server, download with [NuGet](https://www.nuget.org/packages?

For Unity projects, add git package from Package Manager.
```
https://github.com/cathei/BakingSheet.git?path=UnityProject/Packages/com.cathei.bakingsheet#v4.1.0
https://github.com/cathei/BakingSheet.git?path=UnityProject/Packages/com.cathei.bakingsheet#v4.1.1
```

Or install it via [OpenUPM](https://openupm.com/packages/com.cathei.bakingsheet/).
```
openupm add com.cathei.bakingsheet
```

Sample `.unitypackage` is available in [releases](https://github.com/cathei/BakingSheet/releases). (Main package should be installed first.)

If you are planning to use StreamingAssets folder on Android, install [BetterStreamingAssets](docs/streaming-assets.md) as well.

### Need help?
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion UnityProject/Packages/com.cathei.bakingsheet/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"author": {
"name": "Maxwell Keonwoo Kang"
},
"version": "4.1.0",
"version": "4.1.1",
"unity": "2019.4",
"description": "Easy datasheet management for C# and Unity.\nSupports Excel, Google Sheet, JSON and CSV format.",
"license": "MIT",
Expand Down
3 changes: 2 additions & 1 deletion UnityProject/ProjectSettings/ProjectSettings.asset
Original file line number Diff line number Diff line change
Expand Up @@ -673,7 +673,8 @@ PlayerSettings:
webGLLinkerTarget: 1
webGLThreadsSupport: 0
webGLDecompressionFallback: 0
scriptingDefineSymbols: {}
scriptingDefineSymbols:
1:
additionalCompilerArguments: {}
platformArchitecture: {}
scriptingBackend: {}
Expand Down

0 comments on commit 7419352

Please sign in to comment.