Skip to content

Commit b57d6c1

Browse files
committed
fixes release notes notification + adds github templates
1 parent 3f5524e commit b57d6c1

File tree

8 files changed

+35
-21
lines changed

8 files changed

+35
-21
lines changed

.github/CODEOWNERS

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @adrianoc

.github/pull_request_template.md

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Thank you for your contribution
2+
3+
First, thank you for taking the time to help improving Cecilifier; I really appreciate it.
4+
5+
That being said, in order to help improving Cecilifier codebase quality please consider the following check list:
6+
7+
- [ ] I have performed a self-review of my own code
8+
- [ ] I have commented my code, particularly in hard-to-understand areas
9+
- [ ] I have added tests that prove my fix is effective or that my feature works
10+
- [ ] My code is following the existing conventions. I understand that even the existing code some times does not follow the conventions but please, strive to follow whatever is the most common used convention used in the codebase.
11+
- [ ] I have double checked that my code is not adding duplications
12+
- [ ] Front-end (web site) related fixes/features were tested manually (as of today we don't have an automated test for that).
13+
- [ ] I have made corresponding changes to the documentation (README.md, website, etc) ?
14+
- [ ] I have verified that there is an issue open describing the actual problem/feature and have referenced it in the commit message that fixes/implement it.
15+
16+
## Description
17+
18+
Please, describe what your PR is adding/changing.

CHANGELOG.md

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
## unreleased
22

3+
- fixed release notes mechanism
4+
- bumped cecilifier version to 1.20.0 (I had messed up with versioning last time setting it to 1.2.0 instead of 1.20.0)
5+
- cleanup previously messed up merge conflicts markers in this file :)
6+
- added PR template
7+
- added CODEOWNERS file
8+
9+
## 29/Aug/2021
10+
311
## Changed
412

513
- bump cecilifier version to 1.2.0
@@ -20,10 +28,10 @@
2028
- fixed multiple issues with generic/inner type instantiation (issues #84 and #85)
2129
- fixed missing box instruction on some ValueType instantiation (#86)
2230
- improved handling of inner types of generic outer types (issue #76)
23-
- fixed code to emmit ldsfld opcode when accessing static fields (issue #83)
31+
- fixed code to emit ldsfld opcode when accessing static fields (issue #83)
2432
- fixed implicit private static field declaration
2533
- fixed crash upon static field assignment (issue #82)
26-
- fixed name formating not taking prefix/casing into account for some element kinds (#90)
34+
- fixed name formatting not taking prefix/casing into account for some element kinds (#90)
2735

2836
## 04/July/2021
2937

@@ -76,11 +84,7 @@
7684
## Added
7785

7886
- a lot of other stuff that has not been reported since March/2019 :(
79-
<<<<<<< HEAD
8087
- Support for for statements
81-
=======
82-
- Support for for statements
83-
>>>>>>> 70ebeb1 (updates Cecil & Microsoft.CodeAnalysis.CSharp versions)
8488

8589
## 24/March/2019
8690

@@ -103,8 +107,4 @@
103107

104108
### Added
105109

106-
<<<<<<< HEAD
107-
- Support access of generic static/instance methods.
108-
=======
109-
- Support access of generic static/instance methods.
110-
>>>>>>> 70ebeb1 (updates Cecil & Microsoft.CodeAnalysis.CSharp versions)
110+
- Support access of generic static/instance methods.

Cecilifier.Core/Cecilifier.Core.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<TargetFramework>net5.0</TargetFramework>
55
<LangVersion>9</LangVersion>
6-
<AssemblyVersion>1.2.0</AssemblyVersion>
6+
<AssemblyVersion>1.20.0</AssemblyVersion>
77
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
88
</PropertyGroup>
99

Cecilifier.Runtime/Cecilifier.Runtime.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<TargetFramework>net5.0</TargetFramework>
55
<LangVersion>9</LangVersion>
6-
<AssemblyVersion>1.2.0</AssemblyVersion>
6+
<AssemblyVersion>1.20.0</AssemblyVersion>
77
</PropertyGroup>
88

99
<ItemGroup>

Cecilifier.Web/Cecilifier.Web.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<TargetFramework>net5.0</TargetFramework>
55
<LangVersion>9</LangVersion>
6-
<AssemblyVersion>1.2.0</AssemblyVersion>
6+
<AssemblyVersion>1.20.0</AssemblyVersion>
77
</PropertyGroup>
88

99
<ItemGroup>

Cecilifier.Web/Pages/Index.cshtml

-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
@page
2-
@using Microsoft.JSInterop
3-
@using System.Security.Cryptography.X509Certificates
42
@model CecilifierApplication
53
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
64

Cecilifier.Web/wwwroot/js/release_notes.js

+1-4
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,7 @@ function showReleaseNotes() {
4343

4444
const latest = itemsToShow[0];
4545
const html = `New version <a href='${latest.html_url}' target="_blank">${latest.tag_name} ${latest.name}</a> has been released on ${new Date(latest.published_at).toLocaleString()}.<br /><br />${latest.body.replace(/\r\n/g, "<br/>")}`;
46-
47-
document.getElementById("releaseNotesText").innerHTML = html;
48-
document.getElementById("releaseNotesDiv").style.width = "100%";
49-
document.getElementById("mainContent").style.visibility = "hidden";
46+
setAlert("cecilifier_new_release", html);
5047
});
5148
}
5249

0 commit comments

Comments
 (0)