Skip to content

Commit

Permalink
Merge branch 'v3' into v3
Browse files Browse the repository at this point in the history
  • Loading branch information
YauheniKapliarchuk authored Apr 18, 2021
2 parents 7f65779 + d6099af commit 32775ad
Show file tree
Hide file tree
Showing 123 changed files with 11,498 additions and 17 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ yarn-error.log
.package-lock.json
.yarn.lock
.idea
app/local/alps
54 changes: 54 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,60 @@ A record of the changes made to `ALPS for Wordpress`.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## [3.7.8]
### Fixed
- HOTFIX: Adding annother fix for CSS `auto` properties for height and width of images.


## [3.7.7]
### Fixed
- HOTFIX: Adding css `auto` properties for height and width of images.


## [3.7.6]
### Fixed
- Fix: ALPS Related Pages block was only at 3 columns when the sidebar was hidden. [#546](https://github.com/adventistchurch/alps-wordpress/issues/546)
- Fix: A bug with related stories now showing for certain categories that had different slugs. [#536](https://github.com/adventistchurch/alps-wordpress/issues/536)


## [3.7.5]
### Fixed
- Fix: Switch related posts sidebar and menu drawer from using h3's to using divs. [#558](https://github.com/adventistchurch/alps-wordpress/issues/558)


## [3.7.4]
### Fixed
- Fix: Pulling in the images along with the JS and CSS to the local cache. [#551](https://github.com/adventistchurch/alps-wordpress/issues/551)


## [3.7.3]
### Fixed
- Fix: Fixing a bug that didn't allow the local cached version of the ALPS CSS/JS to be used on subthemes. [#551](https://github.com/adventistchurch/alps-wordpress/issues/551)


## [3.7.2]
### Fixed
- HOTFIX: Bug with homepage 3-up grid displays shifting to the right to overlap the Sabbath column.


## [3.7.1]
### Fixed
- Fixed a bug that didn't pull the latest version of the code. [#555](https://github.com/adventistchurch/alps-wordpress/pull/555)


## [3.7.0]
### Added
- Added local caching of ALPS CDN CSS and Javascript files. It will pull the most recent version into the theme for added performance. [#551](https://github.com/adventistchurch/alps-wordpress/issues/551)
### Fixed
- Fixed a bug where the related post grid at 3up widths (with hidden sidebar) is shifted wrong on the page.


## [3.6.6]
### Fixed
- Removed the second version of jQuery (2.2.4) since Wordpress now includes jQuery 3.5.1 [#550](https://github.com/adventistchurch/alps-wordpress/issues/550)


## [3.6.5]
### Fixed
- Fixed the styling for footnotes, and Footnotes Made Easy. [#507](https://github.com/adventistchurch/alps-wordpress/issues/507)
Expand Down
4 changes: 2 additions & 2 deletions app/setup.php
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@
$config = [
'before_widget' => '<section class="c-widget c-%1$s c-%2$s o-link-wrapper--underline u-spacing u-background-color--gray--light u-padding u-theme--border-color--darker u-border--left can-be--dark-dark">',
'after_widget' => '</section>',
'before_title' => '<h3 class="c-block__heading-title u-theme--color--darker">',
'after_title' => '</h3>'
'before_title' => '<div class="c-block__heading-title u-theme--color--darker">',
'after_title' => '</div>'
];
register_sidebar([
'name' => __('Page Top', 'alps'),
Expand Down
5 changes: 5 additions & 0 deletions assets/styles/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,11 @@ body.admin-bar {
text-align: center;
}

img {
width: auto;
height: auto;
}

// Misc
.search-submit {
margin-top: 10px;
Expand Down
30 changes: 30 additions & 0 deletions changelog.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,34 @@
{
"3.7.8" : {
"description" : "HOTFIX: Adding annother fix for CSS `auto` properties for height and width of images."
},
"3.7.7" : {
"description" : "HOTFIX: Adding CSS `auto` properties for height and width of images."
},
"3.7.6" : {
"description" : "Fix: ALPS Related Pages block was only at 3 columns when the sidebar was hidden. A bug with related stories now showing for certain categories that had different slugs."
},
"3.7.5" : {
"description" : "Fix: Switch related posts sidebar, menu drawer, and widget from using h3's to using divs."
},
"3.7.4" : {
"description" : "Fix: Pulling in the images along with the JS and CSS to the local cache."
},
"3.7.3" : {
"description" : "Fix: Fixing a bug that didn't allow the local cached version of the ALPS CSS/JS to be used on subthemes."
},
"3.7.2" : {
"description" : "HOTFIX: Bug with homepage 3-up grid displays shifting to the right to overlap the Sabbath column."
},
"3.7.1" : {
"description" : "Fixed a bug that didn't pull the latest version of the code."
},
"3.7.0" : {
"description" : "Added local caching of ALPS CDN CSS and Javascript files for performance. Fixed a bug where the related post grid at 3up widths (with hidden sidebar) is shifted wrong on the page."
},
"3.6.6" : {
"description" : "Removing the second copy of jQuery, (2.2.4). This REQUIRES Wordpress 5.6 or higher."
},
"3.6.5" : {
"description" : "Fixed the styling for footnotes, and Footnotes Made Easy. Removed support for Guidepost and replaced it with SimpleTOC."
},
Expand Down
2 changes: 1 addition & 1 deletion dist/scripts/customizer.js.map

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

Loading

0 comments on commit 32775ad

Please sign in to comment.