Skip to content

Commit ea10a7b

Browse files
Merge pull request #53 from SixLabors/js/apache
Update license, config and docs.
2 parents f0bd74a + 3cbb750 commit ea10a7b

224 files changed

Lines changed: 712 additions & 1136 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
---
2+
name: "Commercial License : Bug Report"
3+
about: |
4+
Create a report to help us improve the project. For Commercial License holders only.
5+
Please contact help@sixlabors.com for issues requiring private support.
6+
labels: commercial, needs triage
7+
8+
---
9+
10+
11+
### Prerequisites
12+
13+
- [ ] I have written a descriptive issue title
14+
- [ ] I have verified that I am running the latest version of ImageSharp.Drawing
15+
- [ ] I have verified if the problem exist in both `DEBUG` and `RELEASE` mode
16+
- [ ] I have searched [open](https://github.com/SixLabors/ImageSharp.Drawing/issues) and [closed](https://github.com/SixLabors/ImageSharp.Drawing/issues?q=is%3Aissue+is%3Aclosed) issues to ensure it has not already been reported
17+
18+
### Description
19+
<!-- A description of the bug or feature -->
20+
21+
### Steps to Reproduce
22+
<!-- List of steps, sample code, failing test or link to a project that reproduces the behavior -->
23+
24+
### System Configuration
25+
<!-- Tell us about the environment where you are experiencing the bug -->
26+
27+
- ImageSharp.Drawing version:
28+
- Other ImageSharp packages and versions:
29+
- Environment (Operating system, version and so on):
30+
- .NET Framework version:
31+
- Additional information:
32+
33+
<!-- Thanks for reporting the issue to ImageSharp.Drawing! -->
Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
---
2-
name: Bug Report
2+
name: "OSS : Bug Report"
33
about: Create a report to help us improve the project.
4+
labels: needs triage
45

56
---
67

78
### Prerequisites
89

910
- [ ] I have written a descriptive issue title
10-
- [ ] I have verified that I am running the latest version of ImageSharp
11+
- [ ] I have verified that I am running the latest version of ImageSharp.Drawing
1112
- [ ] I have verified if the problem exist in both `DEBUG` and `RELEASE` mode
1213
- [ ] I have searched [open](https://github.com/SixLabors/ImageSharp.Drawing/issues) and [closed](https://github.com/SixLabors/ImageSharp.Drawing/issues?q=is%3Aissue+is%3Aclosed) issues to ensure it has not already been reported
1314

@@ -26,4 +27,4 @@ about: Create a report to help us improve the project.
2627
- .NET Framework version:
2728
- Additional information:
2829

29-
<!-- Thanks for reporting the issue to ImageSharp.Dawing! -->
30+
<!-- Thanks for reporting the issue to ImageSharp.Drawing! -->

Directory.Build.props

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@
8282
<LangVersion>8.0</LangVersion>
8383
<NeutralLanguage>en</NeutralLanguage>
8484
<OverwriteReadOnlyFiles>true</OverwriteReadOnlyFiles>
85-
<PackageIcon>icon.png</PackageIcon>
86-
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
85+
<PackageIcon>sixlabors.imagesharp.drawing.128.png</PackageIcon>
86+
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
8787
<PackageProjectUrl>$(RepositoryUrl)</PackageProjectUrl>
8888
<ProduceReferenceAssembly>true</ProduceReferenceAssembly>
8989
<RepositoryType>git</RepositoryType>
@@ -104,8 +104,7 @@
104104
<!--<PackageReference Include="StyleCop.Analyzers" IsImplicitlyDefined="true" />-->
105105
<AdditionalFiles Include="$(MSBuildThisFileDirectory)shared-infrastructure\stylecop.json" />
106106
<!--NuGet package icon source-->
107-
<None Include="$(MSBuildThisFileDirectory)shared-infrastructure\branding\icons\imagesharp.drawing\sixlabors.imagesharp.drawing.128.png" Pack="true" PackagePath="\icon.png" />
108-
<None Include="$(MSBuildThisFileDirectory)shared-infrastructure\NUGETLICENSE.md" Pack="true" PackagePath="LICENSE.md" />
107+
<None Include="$(MSBuildThisFileDirectory)shared-infrastructure\branding\icons\imagesharp.drawing\sixlabors.imagesharp.drawing.128.png" Pack="true" PackagePath="" />
109108
</ItemGroup>
110109

111110
</Project>

Directory.Build.targets

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
<PackageReference Update="StyleCop.Analyzers" PrivateAssets="All" Version="1.1.118" />
2424

2525
<!--Src Dependencies-->
26-
<PackageReference Update="SixLabors.Fonts" Version="1.0.0-beta0011" />
27-
<PackageReference Update="SixLabors.ImageSharp" Version="1.0.0-rc0001" />
26+
<PackageReference Update="SixLabors.Fonts" Version="1.0.0-beta0012" />
27+
<PackageReference Update="SixLabors.ImageSharp" Version="1.0.0-rc0002" />
2828
</ItemGroup>
2929

3030
</Project>

ImageSharp.Drawing.sln

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".github", ".github", "{1799
2828
EndProject
2929
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ISSUE_TEMPLATE", "ISSUE_TEMPLATE", "{FBE8C1AD-5AEC-4514-9B64-091D8E145865}"
3030
ProjectSection(SolutionItems) = preProject
31-
.github\ISSUE_TEMPLATE\ask-question.md = .github\ISSUE_TEMPLATE\ask-question.md
32-
.github\ISSUE_TEMPLATE\bug-report.md = .github\ISSUE_TEMPLATE\bug-report.md
33-
.github\ISSUE_TEMPLATE\feature-request.md = .github\ISSUE_TEMPLATE\feature-request.md
31+
.github\ISSUE_TEMPLATE\commercial-bug-report.md = .github\ISSUE_TEMPLATE\commercial-bug-report.md
32+
.github\ISSUE_TEMPLATE\config.yml = .github\ISSUE_TEMPLATE\config.yml
33+
.github\ISSUE_TEMPLATE\oss-bug-report.md = .github\ISSUE_TEMPLATE\oss-bug-report.md
3434
EndProjectSection
3535
EndProject
3636
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{815C0625-CD3D-440F-9F80-2D83856AB7AE}"

0 commit comments

Comments
 (0)