-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
RSS refactor, nyaa rss, test bot nuke command.
- Loading branch information
1 parent
cf58bdd
commit 7764f0b
Showing
38 changed files
with
5,140 additions
and
540 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"schema": "schema.graphql", | ||
"documents": "**/*.graphql", | ||
"extensions": { | ||
"strawberryShake": { | ||
"name": "AnilistClient", | ||
"namespace": "Asahi", | ||
"url": "https://graphql.anilist.co", | ||
"records": { | ||
"inputs": false, | ||
"entities": false | ||
}, | ||
"transportProfiles": [ | ||
{ | ||
"default": "Http", | ||
"subscription": "WebSocket" | ||
} | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,67 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
<ApplicationIcon>Asahi.ico</ApplicationIcon> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="CodeHollow.FeedReader" Version="1.2.6" /> | ||
<PackageReference Include="Discord.Net" Version="3.16.0" /> | ||
<PackageReference Include="EntityFrameworkCore.Sqlite.NodaTime" Version="8.0.1" /> | ||
<PackageReference Include="Fergun.Interactive" Version="1.8.0" /> | ||
<PackageReference Include="Humanizer.Core" Version="2.14.1" /> | ||
<PackageReference Include="JsonApiSerializer" Version="2.0.1" /> | ||
<!-- Cannot wait for EFC to support 4.10.0 --> | ||
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.11.0" /> | ||
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.11.0" /> | ||
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting" Version="4.11.0" /> | ||
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.11.0" /> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.8" /> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.8" /> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.8"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0" /> | ||
<PackageReference Include="Npgsql" Version="8.0.4" /> | ||
<PackageReference Include="Refit" Version="7.2.1" /> | ||
<PackageReference Include="Refit.HttpClientFactory" Version="7.2.1" /> | ||
<PackageReference Include="Refit.Newtonsoft.Json" Version="7.2.1" /> | ||
<PackageReference Include="Scrutor" Version="4.2.2" /> | ||
<PackageReference Include="Serilog" Version="4.0.1" /> | ||
<PackageReference Include="Serilog.Enrichers.Thread" Version="4.0.0" /> | ||
<PackageReference Include="NodaTime" Version="3.1.12" /> | ||
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime" Version="8.0.4" /> | ||
<PackageReference Include="Serilog.Extensions.Logging" Version="8.0.0" /> | ||
<PackageReference Include="Serilog.Sinks.Console" Version="6.0.0" /> | ||
<PackageReference Include="Serilog.Sinks.Seq" Version="8.0.0" /> | ||
<PackageReference Include="YamlDotNet" Version="16.1.2" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\Asahi.Analyzers\Asahi.Analyzers.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Folder Include="Modules\Statistics\" /> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
<ApplicationIcon>Asahi.ico</ApplicationIcon> | ||
|
||
<Version>0.0.0</Version> | ||
|
||
<Copyright>enonibobble</Copyright> | ||
|
||
<!-- not necessary but --> | ||
<RepositoryUrl>https://github.com/SquirrelKiev/Asahi.git</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
|
||
<SourceControlInformationFeatureSupported>true</SourceControlInformationFeatureSupported> | ||
|
||
<PackageReadmeFile>../README.md</PackageReadmeFile> | ||
</PropertyGroup> | ||
|
||
<Target Name="SetSourceRevisionId" BeforeTargets="InitializeSourceControlInformation"> | ||
<Exec Command="git describe --long --always --dirty --exclude=* --abbrev=8" ConsoleToMSBuild="True" IgnoreExitCode="False"> | ||
<Output PropertyName="SourceRevisionId" TaskParameter="ConsoleOutput" /> | ||
</Exec> | ||
</Target> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="CodeHollow.FeedReader" Version="1.2.6" /> | ||
<PackageReference Include="Discord.Net" Version="3.16.0" /> | ||
<PackageReference Include="EntityFrameworkCore.Sqlite.NodaTime" Version="8.0.1" /> | ||
<PackageReference Include="Fergun.Interactive" Version="1.8.0" /> | ||
<PackageReference Include="Humanizer.Core" Version="2.14.1" /> | ||
<PackageReference Include="JsonApiSerializer" Version="2.0.1" /> | ||
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.11.0" /> | ||
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.11.0" /> | ||
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting" Version="4.11.0" /> | ||
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.11.0" /> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.10" /> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.10" /> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.10"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.1" /> | ||
<PackageReference Include="Npgsql" Version="8.0.5" /> | ||
<PackageReference Include="Refit" Version="7.2.1" /> | ||
<PackageReference Include="Refit.HttpClientFactory" Version="7.2.1" /> | ||
<PackageReference Include="Refit.Newtonsoft.Json" Version="7.2.1" /> | ||
<PackageReference Include="Scrutor" Version="5.0.1" /> | ||
<PackageReference Include="Serilog" Version="4.0.2" /> | ||
<PackageReference Include="Serilog.Enrichers.Thread" Version="4.0.0" /> | ||
<PackageReference Include="NodaTime" Version="3.2.0" /> | ||
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime" Version="8.0.10" /> | ||
<PackageReference Include="Serilog.Extensions.Logging" Version="8.0.0" /> | ||
<PackageReference Include="Serilog.Sinks.Console" Version="6.0.0" /> | ||
<PackageReference Include="Serilog.Sinks.Seq" Version="8.0.0" /> | ||
<PackageReference Include="StrawberryShake.Server" Version="14.0.0" /> | ||
<PackageReference Include="YamlDotNet" Version="16.1.3" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\Asahi.Analyzers\Asahi.Analyzers.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.