Skip to content

Commit abe1747

Browse files
committed
Version 2.0. Add LICENSE file.
1 parent 3d87fa0 commit abe1747

File tree

3 files changed

+33
-5
lines changed

3 files changed

+33
-5
lines changed

LICENSE

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
MIT License
2+
3+
Copyright (c) 2020 Nikolay Kostov
4+
Copyright (c) 2019 rist0
5+
6+
Permission is hereby granted, free of charge, to any person obtaining a copy
7+
of this software and associated documentation files (the "Software"), to deal
8+
in the Software without restriction, including without limitation the rights
9+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10+
copies of the Software, and to permit persons to whom the Software is
11+
furnished to do so, subject to the following conditions:
12+
13+
The above copyright notice and this permission notice shall be included in all
14+
copies or substantial portions of the Software.
15+
16+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22+
SOFTWARE.

OpenDota.NET/OpenDota.NET.csproj

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,23 @@
88

99
<PropertyGroup>
1010
<CodeAnalysisRuleSet>..\Rules.ruleset</CodeAnalysisRuleSet>
11-
<Copyright>rist0, NikolayIT</Copyright>
12-
<Authors>rist0, NikolayIT</Authors>
11+
<Copyright>NikolayIT, rist0</Copyright>
12+
<Authors>NikolayIT, rist0</Authors>
1313
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1414
<PackageProjectUrl>https://github.com/NikolayIT/OpenDota.NET</PackageProjectUrl>
1515
<RepositoryUrl>https://github.com/NikolayIT/OpenDota.NET</RepositoryUrl>
16-
<PackageReleaseNotes>First release</PackageReleaseNotes>
17-
<PackageTags>dota, api, opendota</PackageTags>
16+
<PackageReleaseNotes>- A lot of improvements and API changes.
17+
- Using System.Text.Json instead of Newtonsoft.Json.
18+
- Almost all functionality covered by unit tests.
19+
- Code quality improvements.</PackageReleaseNotes>
20+
<PackageTags>dota, dota2, api, opendota</PackageTags>
1821
<RepositoryType>GitHub</RepositoryType>
19-
<Description>NuGet package of https://github.com/rist0/OpenDota.NET</Description>
22+
<Description>.NET Standard wrapper for the OpenDota API. The OpenDota API provides Dota 2 related data including advanced match data extracted from match replays. Project URL: https://github.com/NikolayIT/OpenDota.NET</Description>
2023
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
2124
<PackageIcon>icon-144x144.png</PackageIcon>
2225
<PackageIconUrl />
26+
<Version>2.0.0</Version>
27+
<Company>Nikolay.IT</Company>
2328
</PropertyGroup>
2429
<ItemGroup>
2530
<AdditionalFiles Include="..\stylecop.json" />

OpenDota.NET/OpenDotaApi.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
// TODO: Implement PLAYERS BY RANK endpoint
88
// TODO: Implement PARSED MATCHES endpoint
99
// TODO: Implement EXPLORER endpoint
10+
// TODO: Implement CONSTANTS endpoint
1011

1112
/// <inheritdoc />
1213
public class OpenDotaApi : IOpenDotaApi

0 commit comments

Comments
 (0)