Skip to content

Commit

Permalink
chore: add change log section
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoscaceres committed Oct 26, 2020
1 parent 00dbb41 commit 7e60981
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 6 deletions.
35 changes: 29 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -111,12 +111,12 @@
<body data-cite="ENCODING SCREEN-ORIENTATION MEDIAQUERIES-5">
<section id='abstract'>
<p>
This specification defines a JSON-based file format that provides
developers with a centralized place to put metadata associated with a
web application. This metadata includes, but is not limited to, the web
application's name, links to icons, as well as the preferred URL to
open when a user launches the web application. The manifest also allows
developers to declare a default screen orientation for their web
[[SMIL3]] This specification defines a JSON-based file format that
provides developers with a centralized place to put metadata associated
with a web application. This metadata includes, but is not limited to,
the web application's name, links to icons, as well as the preferred
URL to open when a user launches the web application. The manifest also
allows developers to declare a default screen orientation for their web
application, as well as providing the ability to set the display mode
for the application (e.g., in fullscreen). Additionally, the manifest
allows a developer to "scope" a web application to a URL. This
Expand Down Expand Up @@ -3071,6 +3071,29 @@ <h2>
</li>
</ul>
</section>
<section class="informative">
<h2>
Change log
</h2>
<p>
The following are normative changes since last publication.
</p>
<script class="remove">
const ignoredHashes = [
"c0e3654ec18d04452c079c9839909c9a7295f2f7"
];
function removeCommits(entry) {
const { message, hash } = entry;
for (const ignoredHash of ignoredHashes) {
if (ignoredHash.startsWith(hash)) {
return false;
};
}
return !/^editorial|^chore|^\[chore|^fix|^refactor|^tests?|^docs|^typo|^nit/i.test(message);
}
</script> <rs-changelog from="fef12b3e313bb61d9434da73dc565132d8f4c483"
filter="removeCommits"></rs-changelog>
</section>
<section id="index"></section>
</body>
</html>
1 change: 1 addition & 0 deletions tidyconfig.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ indent: yes
indent-spaces: 2
wrap: 80
tidy-mark: no
custom-tags: yes

0 comments on commit 7e60981

Please sign in to comment.