Skip to content

Commit

Permalink
7.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
qwtel committed Nov 27, 2017
1 parent 98a0909 commit b1985c5
Show file tree
Hide file tree
Showing 36 changed files with 53 additions and 53 deletions.
10 changes: 5 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ That being said, you should be aware of these (small) breaking changes:
* Event names described in the scripting chapter have changed from `y-push-state-*` to `hy-push-state-*`,
except `y-push-state-animationend`, which has been removed. See the [docs][pstate] for more.

[pstate]: docs/7.4.0/scripts.md#registering-push-state-event-listeners
[pstate]: docs/7.4.1/scripts.md#registering-push-state-event-listeners

### Changes
* `image` has been renamed to `accent_image`, but `image` continues to work unless you add the `jekyll-seo-tag` plugin.
Expand Down Expand Up @@ -383,7 +383,7 @@ That being said, you should be aware of these (small) breaking changes:
* Reduced building time during development.
Roughly 50% of the time was spent rebuilding the inline CSS, which is now built once and included via `link` tag.
Production builds still inlines CSS, so the building speed remains unchanged.
For more on how to improve building speeds, [see here](docs/7.4.0/writing.md#a-word-on-building-speeds).
For more on how to improve building speeds, [see here](docs/7.4.1/writing.md#a-word-on-building-speeds).

### Design
* The default background image is no longer anti-selling the theme...
Expand Down Expand Up @@ -821,9 +821,9 @@ Oct 15 2013
{:.heading.post-date}

[tag]: http://www.minddust.com/post/tags-and-categories-on-github-pages/
[migration]: docs/7.4.0/migration.md
[writing]: docs/7.4.0/writing.md
[scripts]: docs/7.4.0/scripts.md
[migration]: docs/7.4.1/migration.md
[writing]: docs/7.4.1/writing.md
[scripts]: docs/7.4.1/scripts.md

[buy]: https://app.simplegoods.co/i/AQTTVBOE
[PRO-license]: licenses/PRO.md
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ This table details what is and isn't included in each respective version.
[resume]: https://qwtel.com/hydejack/resume/
[download]: https://qwtel.com/download/
[welcome]: https://qwtel.com/hydejack/
[forms]: https://qwtel.com/hydejack/docs/7.4.0/forms-by-example/
[forms]: https://qwtel.com/hydejack/docs/7.4.1/forms-by-example/

[feat]: https://qwtel.com/hydejack/#features
[news]: https://qwtel.com/hydejack/#newsletter-subscription-box
Expand All @@ -95,16 +95,16 @@ This table details what is and isn't included in each respective version.

[license]: LICENSE.md
[pro]: licenses/PRO.md
[docs]: docs/7.4.0/index.md
[docs]: docs/7.4.1/index.md

[kit]: https://github.com/qwtel/hydejack-starter-kit/archive/master.zip
[git]: https://github.com/qwtel/hydejack-starter-kit
[gem]: https://rubygems.org/gems/jekyll-theme-hydejack
[buy]: https://app.simplegoods.co/i/AQTTVBOE

[gpss]: https://developers.google.com/speed/pagespeed/insights/?url=https%3A%2F%2Fqwtel.com%2Fhydejack%2F
[wiki]: https://github.com/qwtel/hydejack/blob/master/docs/7.4.0/index.md
[pdf]: https://github.com/qwtel/hydejack/releases/download/v7.4.0/Documentation._.Hydejack.pdf
[wiki]: https://github.com/qwtel/hydejack/blob/master/docs/7.4.1/index.md
[pdf]: https://github.com/qwtel/hydejack/releases/download/v7.4.1/Documentation._.Hydejack.pdf
[hy-push-state]: https://qwtel.com/hy-push-state/
[hy-drawer]: https://qwtel.com/hy-drawer/
[rouge]: http://rouge.jneen.net
Expand Down
2 changes: 1 addition & 1 deletion _includes/body/scripts.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
{% endif %}

<!--[if gt IE 9]><!---->
{% capture js_url %}{% link assets/js/hydejack-7.4.0.js %}{% endcapture %}
{% capture js_url %}{% link assets/js/hydejack-7.4.1.js %}{% endcapture %}
<script>loadJSDeferred('{{ js_url | relative_url }}');</script>
{% include my-scripts.html %}
<!--<![endif]-->
Expand Down
2 changes: 1 addition & 1 deletion _includes/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
{% if site.copyright.size > 0 %}
<p><small class="copyright">{{ site.copyright | markdownify | replace:'<p>','' | replace:'</p>','' }}</small></p>
{% endif %}
<p><small>Powered by <a class="external" href="https://qwtel.com/hydejack/">Hydejack</a> v<span id="_version">7.4.0</span></small></p>
<p><small>Powered by <a class="external" href="https://qwtel.com/hydejack/">Hydejack</a> v<span id="_version">7.4.1</span></small></p>
<hr class="sr-only"/>
</footer>
2 changes: 1 addition & 1 deletion _includes/head/meta.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@
<meta name="theme-color" content="{{ page.theme_color | default:color | default:'#4fb1ba' }}">
{% endunless %}

<meta name="generator" content="Hydejack v7.4.0" />
<meta name="generator" content="Hydejack v7.4.1" />
2 changes: 1 addition & 1 deletion _includes/head/styles.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!--[if gt IE 8]><!---->
{% capture style_url %}{% link assets/css/hydejack-7.4.0.css %}{% endcapture %}
{% capture style_url %}{% link assets/css/hydejack-7.4.1.css %}{% endcapture %}

{% if site.hydejack.no_inline_css or jekyll.environment == 'development' %}
<link rel="stylesheet" href="{{ style_url | relative_url }}">
Expand Down
2 changes: 1 addition & 1 deletion _includes/header.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
* /\___/ \ \____/
* \/__/ \/___/
*
* Powered by Hydejack v7.4.0 <https://qwtel.com/hydejack/>
* Powered by Hydejack v7.4.1 <https://qwtel.com/hydejack/>
*/
2 changes: 1 addition & 1 deletion _js/lib/version.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion _layouts/compress.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
/\___/ \ \____/
\/__/ \/___/
Powered by Hydejack v7.4.0 <https://qwtel.com/hydejack/>
Powered by Hydejack v7.4.1 <https://qwtel.com/hydejack/>
-->{% capture _LINE_FEED %}
{% endcapture %}{% if site.compress_html.ignore.envs contains jekyll.environment %}{{ content }}{% else %}{% capture _content %}{{ content }}{% endcapture %}{% assign _profile = site.compress_html.profile %}{% if site.compress_html.endings == "all" %}{% assign _endings = "html head body li dt dd p rt rp optgroup option colgroup caption thead tbody tfoot tr td th" | split: " " %}{% else %}{% assign _endings = site.compress_html.endings %}{% endif %}{% for _element in _endings %}{% capture _end %}</{{ _element }}>{% endcapture %}{% assign _content = _content | remove: _end %}{% endfor %}{% if _profile and _endings %}{% assign _profile_endings = _content | size | plus: 1 %}{% endif %}{% for _element in site.compress_html.startings %}{% capture _start %}<{{ _element }}>{% endcapture %}{% assign _content = _content | remove: _start %}{% endfor %}{% if _profile and site.compress_html.startings %}{% assign _profile_startings = _content | size | plus: 1 %}{% endif %}{% if site.compress_html.comments == "all" %}{% assign _comments = "<!-- -->" | split: " " %}{% else %}{% assign _comments = site.compress_html.comments %}{% endif %}{% if _comments.size == 2 %}{% capture _comment_befores %}.{{ _content }}{% endcapture %}{% assign _comment_befores = _comment_befores | split: _comments.first %}{% for _comment_before in _comment_befores %}{% if forloop.first %}{% continue %}{% endif %}{% capture _comment_outside %}{% if _carry %}{{ _comments.first }}{% endif %}{{ _comment_before }}{% endcapture %}{% capture _comment %}{% unless _carry %}{{ _comments.first }}{% endunless %}{{ _comment_outside | split: _comments.last | first }}{% if _comment_outside contains _comments.last %}{{ _comments.last }}{% assign _carry = false %}{% else %}{% assign _carry = true %}{% endif %}{% endcapture %}{% assign _content = _content | remove_first: _comment %}{% endfor %}{% if _profile %}{% assign _profile_comments = _content | size | plus: 1 %}{% endif %}{% endif %}{% assign _pre_befores = _content | split: "<pre" %}{% assign _content = "" %}{% for _pre_before in _pre_befores %}{% assign _pres = _pre_before | split: "</pre>" %}{% assign _pres_after = "" %}{% if _pres.size != 0 %}{% if site.compress_html.blanklines %}{% assign _lines = _pres.last | split: _LINE_FEED %}{% capture _pres_after %}{% for _line in _lines %}{% assign _trimmed = _line | split: " " | join: " " %}{% if _trimmed != empty or forloop.last %}{% unless forloop.first %}{{ _LINE_FEED }}{% endunless %}{{ _line }}{% endif %}{% endfor %}{% endcapture %}{% else %}{% assign _pres_after = _pres.last | split: " " | join: " " %}{% endif %}{% endif %}{% capture _content %}{{ _content }}{% if _pre_before contains "</pre>" %}<pre{{ _pres.first }}</pre>{% endif %}{% unless _pre_before contains "</pre>" and _pres.size == 1 %}{{ _pres_after }}{% endunless %}{% endcapture %}{% endfor %}{% if _profile %}{% assign _profile_collapse = _content | size | plus: 1 %}{% endif %}{% if site.compress_html.clippings == "all" %}{% assign _clippings = "html head title base link meta style body article section nav aside h1 h2 h3 h4 h5 h6 hgroup header footer address p hr blockquote ol ul li dl dt dd figure figcaption main div table caption colgroup col tbody thead tfoot tr td th" | split: " " %}{% else %}{% assign _clippings = site.compress_html.clippings %}{% endif %}{% for _element in _clippings %}{% assign _edges = " <e;<e; </e>;</e>;</e> ;</e>" | replace: "e", _element | split: ";" %}{% assign _content = _content | replace: _edges[0], _edges[1] | replace: _edges[2], _edges[3] | replace: _edges[4], _edges[5] %}{% endfor %}{% if _profile and _clippings %}{% assign _profile_clippings = _content | size | plus: 1 %}{% endif %}{{ _content }}{% if _profile %} <table id="compress_html_profile_{{ site.time | date: "%Y%m%d" }}" class="compress_html_profile"> <thead> <tr> <td>Step <td>Bytes <tbody> <tr> <td>raw <td>{{ content | size }}{% if _profile_endings %} <tr> <td>endings <td>{{ _profile_endings }}{% endif %}{% if _profile_startings %} <tr> <td>startings <td>{{ _profile_startings }}{% endif %}{% if _profile_comments %} <tr> <td>comments <td>{{ _profile_comments }}{% endif %}{% if _profile_collapse %} <tr> <td>collapse <td>{{ _profile_collapse }}{% endif %}{% if _profile_clippings %} <tr> <td>clippings <td>{{ _profile_clippings }}{% endif %} </table>{% endif %}{% endif %}</html>
2 changes: 1 addition & 1 deletion _posts/2012-02-06-whats-jekyll.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ It's an immensely useful tool and one we encourage you to use here with Hyde.

Find out more by [visiting the project on GitHub](https://github.com/mojombo/jekyll).

[docs]: ../docs/7.4.0/index.md
[docs]: ../docs/7.4.1/index.md
2 changes: 1 addition & 1 deletion _posts/2013-12-28-introducing-hyde.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ Hyde is developed on and hosted with GitHub. Head to the [GitHub repository](htt

Thanks!

[docs]: ../docs/7.4.0/index.md
[docs]: ../docs/7.4.1/index.md
2 changes: 1 addition & 1 deletion _posts/2016-03-08-introducing-hydejack.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,5 +106,5 @@ as each tag requires some setup work. I tend to think of it as categories that c
~~~


[docs]: ../docs/7.4.0/index.md
[docs]: ../docs/7.4.1/index.md
[tag]: http://www.minddust.com/post/tags-and-categories-on-github-pages/
2 changes: 1 addition & 1 deletion _posts/2016-08-30-social-media-impocalypse.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,4 @@ See the [Documentation][docs]{:.heading.flip-title} for up-to-date instructions.
[Get *Social Media Impocalypse* on GitHub](https://github.com/qwtel/hydejack/releases)


[docs]: ../docs/7.4.0/index.md
[docs]: ../docs/7.4.1/index.md
2 changes: 1 addition & 1 deletion _posts/2016-09-17-the-fast-one.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ help with loading speed as well (burred images get compressed by JPG much better

[Get *The Fast One* on GitHub](https://github.com/qwtel/hydejack/releases)

[docs]: ../docs/7.4.0/index.md
[docs]: ../docs/7.4.1/index.md
[gpsi]: https://developers.google.com/speed/pagespeed/insights/?url=http%3A%2F%2Fqwtel.com%2Fhydejack%2F

*[FOUC]: Flash Of Unstyled Content
6 changes: 3 additions & 3 deletions _posts/2017-05-03-javascripten.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ See the [the migration guide][upgrade] for instructions on how to upgrade.

***

[Get *JavaScripten* on GitHub](https://github.com/qwtel/hydejack/releases/tag/v7.4.0)
[Get *JavaScripten* on GitHub](https://github.com/qwtel/hydejack/releases/tag/v7.4.1)

[upgrade]: ../docs/7.4.0/upgrade.md
[writing]: ../docs/7.4.0/writing.md
[upgrade]: ../docs/7.4.1/upgrade.md
[writing]: ../docs/7.4.1/writing.md

*[FOUC]: Flash of Unstyled Content
2 changes: 1 addition & 1 deletion _posts/2017-06-06-third-party-scripts.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,4 @@ Maybe you won't even notice the difference.
### Fixes
* Fix default color in gem-based theme

[scripts]: ../docs/7.4.0/scripts.md
[scripts]: ../docs/7.4.1/scripts.md
2 changes: 1 addition & 1 deletion _posts/2017-06-21-related-projects-and-data-tables.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,4 +90,4 @@ There's many more minor changes and fixes that you can read below.
* Fixed bug that caused the project animation to "jump" when using long project titles.
* No more empty attributes on `img` tags.

[writing]: ../docs/7.4.0/writing.md
[writing]: ../docs/7.4.1/writing.md
2 changes: 1 addition & 1 deletion _posts/2017-07-27-better-gem-support.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ For the full patch notes, read on.
social:
github: https://github.com/qwtel/hydejack
npm: https://www.npmjs.com/package/hydejack
download: https://github.com/qwtel/hydejack/archive/v7.4.0.zip
download: https://github.com/qwtel/hydejack/archive/v7.4.1.zip

data_social:
github:
Expand Down
8 changes: 4 additions & 4 deletions about.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ This table details what is and isn't included in each respective version.
| No Hydejack Branding | | &#x2714; |
| License | [GPL-3.0][license] | [PRO] |
| Price | Free | $29 |
| | [**Download**][kit] or [**Fork**][git] | [Buy Now][buy]{:.btn.btn-primary} [^3] |
| | [**Download**][kit] or [**Fork**][git] | [Buy Now][buy]{:.btn.btn-primary} [^1] |
{:.stretch-table}

## Features
Expand Down Expand Up @@ -126,16 +126,16 @@ built-in support for [Tinyletter], and from element styles so you can build arbi

[license]: LICENSE.md
[pro]: licenses/PRO.md
[docs]: docs/7.4.0/index.md
[docs]: docs/7.4.1/index.md

[kit]: https://github.com/qwtel/hydejack-starter-kit/archive/master.zip
[git]: https://github.com/qwtel/hydejack-starter-kit
[gem]: https://rubygems.org/gems/jekyll-theme-hydejack
[buy]: https://app.simplegoods.co/i/AQTTVBOE

[gpss]: https://developers.google.com/speed/pagespeed/insights/?url=https%3A%2F%2Fqwtel.com%2Fhydejack%2F
[wiki]: https://github.com/qwtel/hydejack/blob/master/docs/7.4.0/index.md
[pdf]: https://github.com/qwtel/hydejack/releases/download/v7.4.0/Documentation._.Hydejack.pdf
[wiki]: https://github.com/qwtel/hydejack/blob/master/docs/7.4.1/index.md
[pdf]: https://github.com/qwtel/hydejack/releases/download/v7.4.1/Documentation._.Hydejack.pdf
[hy-push-state]: https://qwtel.com/hy-push-state/
[hy-drawer]: https://qwtel.com/hy-drawer/
[rouge]: http://rouge.jneen.net
Expand Down
File renamed without changes.
14 changes: 0 additions & 14 deletions assets/js/hydejack-7.4.0.js

This file was deleted.

14 changes: 14 additions & 0 deletions assets/js/hydejack-7.4.1.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/version.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"version": "7.4.0"
"version": "7.4.1"
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion docs/7.4.0/config.md → docs/7.4.1/config.md
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ author:
social:
email: mailto:[email protected]
rss: {{ site.url }}{{ site.baseurl }}/feed.xml # make sure you provide an absolute URL
download: https://github.com/qwtel/hydejack/archive/v7.4.0.zip
download: https://github.com/qwtel/hydejack/archive/v7.4.1.zip
~~~

## Enabling comments
Expand Down
File renamed without changes.
File renamed without changes.
8 changes: 4 additions & 4 deletions docs/7.4.0/install.md → docs/7.4.1/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ If you bought the PRO version, you've received a zip archive with the following
├── PRO–hy-push-state License _ Hydejack.pdf
├── icon.psd
├── sidebar-bg.psd
├── *-to-v7.4.0.diff
├── *-to-v7.4.1.diff
└── .ssh
~~~

Expand Down Expand Up @@ -165,7 +165,7 @@ If you bought the PRO version, you've received a zip archive with the following
`sidebar-bg.psd`
: A Photoshop template for blurred sidebar backgrounds.

`*-to-v7.4.0.diff`
`*-to-v7.4.1.diff`
: There will be multiple fo these files, where `*` is a previous version.
They are git patches that you can apply to your repository via [git-apply](https://git-scm.com/docs/git-apply).
Use these if you are using git and you are worried about accidentally overwriting changes you've made to Hydejack PRO.
Expand All @@ -181,7 +181,7 @@ For new installations only the `install` folder is interesting.
Unzip the archive somewhere on your machine, then `cd` *into* the `install` folder, e.g.

~~~bash
$ cd ~/Downloads/hydejack-pro-7.4.0/install/
$ cd ~/Downloads/hydejack-pro-7.4.1/install/
~~~

You can now continue with [Running locally](#running-locally).
Expand All @@ -195,7 +195,7 @@ It is located at `<dowloaded zip>/.ssh/hydejack_pro_customers`.
You have to copy the key file to `~/.ssh` (or wherever your SSH keys are located), e.g.:

~~~bash
$ cp ~/Downloads/hydejack-pro-v7.4.0/.ssh/hydejack_pro_customers ~/.ssh/
$ cp ~/Downloads/hydejack-pro-v7.4.1/.ssh/hydejack_pro_customers ~/.ssh/
~~~

It is required that your private key files are NOT accessible by others, e.g.:
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hydejack",
"version": "7.4.0",
"version": "7.4.1",
"description": "Hydejack is a pretentious two-column [Jekyll](http://jekyllrb.com) theme, stolen by [`@qwtel`](https://twitter.com/qwtel) from [Hyde](http://hyde.getpoole.com). You could say it was.. [hydejacked](http://media3.giphy.com/media/makedRIckZBW8/giphy.gif).",
"scripts": {
"clean": "rm -f assets/js/hydejack-$npm_package_version.js & rm -f _sass/**/__*/* & wait",
Expand Down

0 comments on commit b1985c5

Please sign in to comment.