Compare commits

...

2 Commits

Author SHA1 Message Date
Ben Bridle d14280c456 Bump version to 1.1.1 2022-08-28 15:16:35 +12:00
Ben Bridle 9f14f50650 Fix capitalisation on webpage
Changes "Ever-blowing" to "Ever-Blowing" to match the capitalisation
style of the rest of the page.
2022-08-28 15:14:52 +12:00
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "midnight"
version = "1.1.0"
version = "1.1.1"
authors = ["Ben Bridle <bridle.benjamin@gmail.com>"]
edition = "2021"

View File

@ -128,7 +128,7 @@ const HTML_HEAD: &str = r#"
<link href="https://fonts.googleapis.com/css2?family=Fira+Code:wght@600&family=Vollkorn:wght@600&family=PT+Serif&family=Merriweather&display=swap" rel="stylesheet">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>An Ode to the Ever-blowing Wind</title>
<title>An Ode to the Ever-Blowing Wind</title>
<style>
* {
color: #022;
@ -221,7 +221,7 @@ const HTML_HEAD: &str = r#"
<body>
<div class="container">
<h1 class="title">An Ode to the Ever-blowing Wind</h1>
<h1 class="title">An Ode to the Ever-Blowing Wind</h1>
<div class="content">
"#;