Browse Source

use custom log database backend that is more portable (#519)

pull/520/head
Jason Dove 4 years ago committed by GitHub
parent
commit
89e24b2b78
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      .github/workflows/release.yml
  2. 3
      CHANGELOG.md
  3. 2
      ErsatzTV/ErsatzTV.csproj
  4. BIN
      lib/linux-arm/SQLite.Interop.dll
  5. BIN
      lib/linux-arm/libSQLite.Interop.so
  6. BIN
      lib/nuget/Serilog.Sinks.SQLite.6.0.0.nupkg
  7. 1
      nuget.config

3
.github/workflows/release.yml

@ -52,9 +52,6 @@ jobs:
# Pack files # Pack files
if [ "${{ matrix.target }}" == "win-x64" ]; then if [ "${{ matrix.target }}" == "win-x64" ]; then
7z a -tzip "${release_name}.zip" "./${release_name}/*" 7z a -tzip "${release_name}.zip" "./${release_name}/*"
elif [ "${{ matrix.target }}" == "linux-arm" ]; then
cp lib/linux-arm/* "$release_name/"
tar czvf "${release_name}.tar.gz" "$release_name"
else else
tar czvf "${release_name}.tar.gz" "$release_name" tar czvf "${release_name}.tar.gz" "$release_name"
fi fi

3
CHANGELOG.md

@ -7,6 +7,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
### Fixed ### Fixed
- Fix artwork upload on Windows - Fix artwork upload on Windows
### Changed
- Use custom log database backend which should be more portable (i.e. work in osx-arm64)
## [0.3.1-alpha] - 2021-11-30 ## [0.3.1-alpha] - 2021-11-30
### Fixed ### Fixed
- Fix song page links in UI - Fix song page links in UI

2
ErsatzTV/ErsatzTV.csproj

@ -37,7 +37,7 @@
<PackageReference Include="Serilog" Version="2.10.0" /> <PackageReference Include="Serilog" Version="2.10.0" />
<PackageReference Include="Serilog.AspNetCore" Version="4.1.0" /> <PackageReference Include="Serilog.AspNetCore" Version="4.1.0" />
<PackageReference Include="Serilog.Settings.Configuration" Version="3.3.0" /> <PackageReference Include="Serilog.Settings.Configuration" Version="3.3.0" />
<PackageReference Include="Serilog.Sinks.SQLite" Version="5.0.0" /> <PackageReference Include="Serilog.Sinks.SQLite" Version="6.0.0" />
<PackageReference Include="System.IO.FileSystem.Primitives" Version="4.3.0" /> <PackageReference Include="System.IO.FileSystem.Primitives" Version="4.3.0" />
<PackageReference Include="System.Text.Encoding.Extensions" Version="4.3.0" /> <PackageReference Include="System.Text.Encoding.Extensions" Version="4.3.0" />
<PackageReference Include="System.Runtime.Handles" Version="4.3.0" /> <PackageReference Include="System.Runtime.Handles" Version="4.3.0" />

BIN
lib/linux-arm/SQLite.Interop.dll

Binary file not shown.

BIN
lib/linux-arm/libSQLite.Interop.so

Binary file not shown.

BIN
lib/nuget/Serilog.Sinks.SQLite.6.0.0.nupkg

Binary file not shown.

1
nuget.config

@ -4,5 +4,6 @@
<!--To inherit the global NuGet package sources remove the <clear/> line below --> <!--To inherit the global NuGet package sources remove the <clear/> line below -->
<clear /> <clear />
<add key="nuget" value="https://api.nuget.org/v3/index.json" /> <add key="nuget" value="https://api.nuget.org/v3/index.json" />
<add key="local-packages" value="lib/nuget" />
</packageSources> </packageSources>
</configuration> </configuration>
Loading…
Cancel
Save