-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3e6ed23
commit f687d4c
Showing
13 changed files
with
103 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
layout: post | ||
title: "v1.6.0 Now Available" | ||
date: 2022-11-13 | ||
categories: [Announcements] | ||
tags: [development, news] | ||
link: https://github.com/victorwynne/quattle/releases/tag/v1.6.0-RC | ||
--- | ||
|
||
<p class="notice"> | ||
<small> | ||
This release ensures compatibility with Jekyll <a href="https://github.com/jekyll/jekyll/releases/tag/v4.3.1">v4.3.1</a> | ||
</small> | ||
</p> | ||
|
||
## <small>Download</small> | ||
[GitHub](https://github.com/victorwynne/quattle/releases) or [RubyGems](https://rubygems.org/gems/quattle)<br> | ||
|
||
## <small>Changelog</small> | ||
|
||
**New:** SCSS for styling social media posts. See an example in the [style guide](https://quattle.victorwynne.com/styles). | ||
|
||
**New:** Support for [TZInfo](https://github.com/tzinfo/tzinfo) - Ruby Timezone Library. It is no longer necessary to add time zone offsets to the date front matter. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
.tweet { | ||
display: inline-block; | ||
vertical-align: middle; | ||
font-weight: 300; | ||
margin-bottom: 15px; | ||
padding: 20px 40px; | ||
color: $text; | ||
background-color: #242424; | ||
border: .1rem solid #626162; | ||
border-radius: 40px; | ||
|
||
@media (prefers-color-scheme: light) { | ||
color: $light-scheme-text; | ||
background-color: #f9f9f9; | ||
border: .1rem solid #acabaa; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
Gem::Specification.new do |spec| | ||
spec.name = "quattle" | ||
spec.version = "1.5.5" | ||
spec.version = "1.6.0" | ||
spec.authors = ["Victor Wynne"] | ||
spec.email = ["[email protected]"] | ||
|
||
|
@@ -13,7 +13,7 @@ Gem::Specification.new do |spec| | |
spec.files = `git ls-files -z`.split("\x0").select do |f| f.match(%r{^(_(assets|includes|layouts|sass)/|(LICENSE|README)((\.(yml|xml|json|html|scss|txt|md|markdown)|$)))}i) end | ||
|
||
spec.required_ruby_version = '>= 2.7.0' | ||
spec.add_runtime_dependency "jekyll", "~> 4.2" | ||
spec.add_runtime_dependency "jekyll", "~> 4.3" | ||
spec.add_development_dependency "bundler", "~> 2.3" | ||
spec.add_development_dependency "rake", "~> 13.0" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,3 +14,4 @@ | |
@import "pagination"; | ||
@import "message"; | ||
@import "buttons"; | ||
@import "tweet" |