Skip to content

Commit

Permalink
[TASK] Bugfix 1.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
SamBrishes committed Sep 14, 2022
1 parent 7ec1b7d commit d00a071
Show file tree
Hide file tree
Showing 8 changed files with 32 additions and 25 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ Version 1.3.0 - in Progress
- Update: Use the grouped repeater widget for sidebar widgets.
- Update: Sidebar to Widget environment for Homepage, Page and Post.

Version 1.2.2 - Stable
----------------------
- Bugfix: Fix errors on production context (Page object).

Version 1.2.1 - Stable
----------------------
- Update: Meta Tags.
Expand Down
2 changes: 1 addition & 1 deletion DOCS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# NewsHub v1.2.1 - Documentation
# NewsHub v1.2.2 - Documentation
Welcome on the NewsHub documentation page.

## Need Support?
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "ratmd/newshub-theme",
"type": "october-theme",
"version": "1.2.1",
"version": "1.2.2",
"description": "A minimalistic and responsive blog and magazine template with page builder and dark mode, designed with Bootstrap 5.2.",
"keywords": [
"october",
"octobercms",
"october",
"octobercms",
"theme",
"template",
"responsive",
Expand Down
28 changes: 14 additions & 14 deletions 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": "@rat.md/newshub-theme",
"version": "1.2.1",
"version": "1.2.2",
"description": "A minimalistic and responsive blog and magazine template with page builder and dark mode, designed with Bootstrap 5.2.",
"keywords": [
"template",
Expand Down
8 changes: 4 additions & 4 deletions partials/page/meta.htm
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@
{# SEO Meta Tags #}
<meta name="title" content="{{ this.page.meta_title|default(this.page.title) }}" />
{% if this.page.meta_description %}<meta name="description" content="{{ this.page.meta_description }}" />{% endif %}
{% if this.page.meta_keywords or leaf.meta_keywords %}<meta name="keywords" content="{{ this.page.meta_keywords | default(leaf.meta_keywords) }}" />{% endif %}
{% if this.page.meta_author or leaf.meta_author %}<meta name="author" content="{{ this.page.meta_author | default(leaf.meta_author | default('OctoberCMS Leaf')) }}" />{% endif %}
{% if this.page.meta_robots %}<meta name="robots" value="{{ this.page.meta_robots }}" />{% endif %}
{% if this.page['meta_keywords'] or newshub.meta_keywords %}<meta name="keywords" content="{{ this.page['meta_keywords'] | default(newshub.meta_keywords) }}" />{% endif %}
{% if this.page['meta_author'] or newshub.meta_author %}<meta name="author" content="{{ this.page['meta_author'] | default(newshub.meta_author | default('OctoberCMS Leaf')) }}" />{% endif %}
{% if this.page['meta_robots'] %}<meta name="robots" value="{{ this.page['meta_robots'] }}" />{% endif %}
{% component 'alternateHrefLangElements' %}
{% placeholder meta_tags %}

{# Stylesheets #}
{% if this.theme.embed_extras %}<link rel="stylesheet" href="{{ ['@framework.extras'] | theme }}" />{% endif %}
<link rel="stylesheet" href="{{ 'assets/css/newshub.min.css?ver=1.2.1' | theme }}" />
<link rel="stylesheet" href="{{ 'assets/css/newshub.min.css?ver=1.2.2' | theme }}" />
<style type="text/css">
:root {
--bs-primary: {{ this.theme.color_primary }};
Expand Down
2 changes: 1 addition & 1 deletion partials/page/scripts.htm
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
<script src="{{ 'assets/js/vendors/bootstrap.min.js?ver=5.2.1' | theme }}"></script>
<script src="{{ 'assets/js/vendors/bootstrap-lightbox.min.js?ver=1.8.0' | theme }}"></script>
<script src="{{ 'assets/js/vendors/keen-slider.min.js?ver=6.8.0' | theme }}"></script>
<script src="{{ 'assets/js/newshub.min.js?ver=1.2.1' | theme }}"></script>
<script src="{{ 'assets/js/newshub.min.js?ver=1.2.2' | theme }}"></script>
{% scripts %}
5 changes: 4 additions & 1 deletion version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,7 @@ v1.2.1:
- "Update: Bootstrap package to v5.2.1."
- "Update: Keen Slider package to v6.8.0."
- "Update: @rollup/plugin-bode-resolve dev-pacakge to v14.1.0."
- "Update: sass dev-pacakge to v1.54.9."
- "Update: sass dev-pacakge to v1.54.9."
v1.2.2:
- "Minor Bugfix on Production version"
- "Bugfix: Fix errors on production context (Page object)."

0 comments on commit d00a071

Please sign in to comment.