All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
- Changelogs are for humans, not machines.
- There should be an entry for every single version.
- The same types of changes should be grouped.
- Versions and sections should be linkable.
- The latest version comes first.
- The release date of each version is displayed.
- Mention whether you follow Semantic Versioning.
- Added for new features.
- Changed for changes in existing functionality.
- Deprecated for soon-to-be removed features.
- Removed for now removed features.
- Fixed for any bug fixes.
- Security in case of vulnerabilities.
- Fontpair: Work Sans / Bitter
- Favicon
- Sitemap
- Analytics
- Portfolio List
- Google fonts causing problems?!
-
// "gatsby-plugin-prefetch-google-fonts": "^1.0.11",
{ resolve:
gatsby-plugin-prefetch-google-fonts
, options: { fonts: [ { family:Work Sans
, }, { family:Bitter
, }, ], }, },
-
query portfolio {
allFile(sort: {order: DESC, fields: [name]}, filter: {internal: {mediaType: {eq: "text/markdown"}}, sourceInstanceName: {eq: "portfolio"}}) {
edges {
node {
sourceInstanceName
childMarkdownRemark {
excerpt(pruneLength: 250)
frontmatter {
title
date(formatString: "MMMM DD, YYYY")
}
}
}
}
}
}
- Portfolio Single
- Blog List
query blogQuery {
allMarkdownRemark(sort: {order: DESC, fields: [frontmatter___date]}, filter: {fileAbsolutePath: {regex: "/(/content/blog)/.*\\.md$/"}}) {
edges {
node {
frontmatter {
date
tags
title
}
}
}
}
}
- Blog Single
- About
- CV
- This CHANGELOG file to hopefully serve as an evolving example of a standardized open source project CHANGELOG.
gatsby-plugin-styled-jsx
+styled-jsx
gatsby-plugin-prefetch-google-fonts
- Work Sans and Bitter font families
gatsby-plugin-react-helmet react-helmet
gatsby-plugin-react-svg
gatsby-transformer-remark gatsby-remark-prismjs prismjs
gatsby-plugin-sitemap
gatsby-plugin-prismjs
gatsby-remark-emojis
gatsby-source-filesystem