Skip to content

Commit

Permalink
Merge pull request #50 from codefoxes/dev
Browse files Browse the repository at this point in the history
Version 2.1.0
  • Loading branch information
karthikax authored Nov 11, 2020
2 parents 5c87fce + e1ea67c commit 8eed070
Show file tree
Hide file tree
Showing 70 changed files with 3,388 additions and 6,423 deletions.
33 changes: 33 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---
name: Bug report
about: Create a report to help us improve
title: "[BUG] ex: Something isn't working"
labels: ''
assignees: ''

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**System used:**
- Greenlet Version
- WordPress Version
- PHP Version
- Other environment details

**Additional context**
Add any other context about the problem here.
1 change: 0 additions & 1 deletion assets/images/icons/clock-icon.svg

This file was deleted.

1 change: 0 additions & 1 deletion assets/images/icons/comment-icon.svg

This file was deleted.

1 change: 0 additions & 1 deletion assets/images/icons/date-icon.svg

This file was deleted.

1 change: 0 additions & 1 deletion assets/images/icons/folder-icon.svg

This file was deleted.

9 changes: 9 additions & 0 deletions assets/images/icons/icon-defs.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion assets/images/icons/pin-icon.svg

This file was deleted.

1 change: 0 additions & 1 deletion assets/images/icons/tag-icon.svg

This file was deleted.

1 change: 0 additions & 1 deletion assets/images/icons/user-icon.svg

This file was deleted.

16 changes: 16 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
Version 2.1.0 / Release: 12-11-2020
===================
New: Post List Layouts
New: Back to Top button
New: Excerpt and full content display options for post list.
Improvement: Extra Post classes
Improvement: Remove redundant actions
Improvement: Editor Styles from custom CSS
Improvement: Remove redundant customizer options
Improvement: ColorWings update - Exposed Components
Improvement: Use ColorWings components in Customizer
Improvement: Arrange Blog settings to sections in customizer
Fix: Menu toggle bug with id
Fix: Extra styles length component bug
Fix: wp_set_script_translations compatibility

Version 2.0.1 / Release: 26-10-2020
===================
- Fix: Bug in Extra styles.
Expand Down
4 changes: 3 additions & 1 deletion content.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@

do_action( 'greenlet_before_entry' );

greenlet_markup( 'entry', greenlet_attr( 'entry entry-article ' . implode( ' ', get_post_class() ) ) );
$post_class = apply_filters( 'greenlet_post_class', '' );

greenlet_markup( 'entry', greenlet_attr( 'entry entry-article ' . implode( ' ', get_post_class( $post_class ) ) ) );

do_action( 'greenlet_entry_header' );

Expand Down
8 changes: 1 addition & 7 deletions footer.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,7 @@
* @package greenlet
*/

echo '</div>';
echo '</div>';
greenlet_markup_close();

do_action( 'greenlet_before_semifooter' );
do_action( 'greenlet_semifooter' );
do_action( 'greenlet_after_semifooter' );
greenlet_markup_close( 3 );

do_action( 'greenlet_before_footer' );
do_action( 'greenlet_footer' );
Expand Down
8 changes: 2 additions & 6 deletions header.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,10 @@
printf( '<body %s>', wp_kses( $body_attribute, null ) );
wp_body_open();

do_action( 'greenlet_before_topbar' );
do_action( 'greenlet_topbar' );
do_action( 'greenlet_after_topbar' );

do_action( 'greenlet_before_header' );
do_action( 'greenlet_header' );
do_action( 'greenlet_after_header' );

greenlet_markup( 'site-content', greenlet_attr( 'site-content' ) );
echo '<div class="container">';
echo '<div class="row">';
greenlet_markup( 'div', greenlet_attr( 'container' ) );
greenlet_markup( 'div', greenlet_attr( 'row' ) );
2 changes: 1 addition & 1 deletion library/addons/colorwings/class-control-colorwings.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public function enqueue() {
wp_enqueue_style( 'wp-color-picker' );
wp_enqueue_script( 'color-picker-alpha', COLORWINGS_URL . '/js/wp-color-picker-alpha.min' . $min . '.js', array( 'jquery', 'wp-color-picker' ), COLORWINGS_VERSION, true );
wp_enqueue_script( 'codemirror-format', COLORWINGS_URL . '/js/formatting' . $min . '.js', array( 'wp-codemirror' ), COLORWINGS_VERSION, true );
wp_enqueue_script( 'color-wings-controls', COLORWINGS_URL . '/js/color-wings' . $min . '.js', array( 'jquery', 'react-dom', 'wp-media-utils' ), COLORWINGS_VERSION, true );
wp_enqueue_script( 'color-wings-controls', COLORWINGS_URL . '/js/color-wings' . $min . '.js', array( 'jquery', 'react-dom', 'wp-media-utils', 'codemirror-format', 'color-picker-alpha' ), COLORWINGS_VERSION, true );

$color_wings_control = array(
'fonts' => array(
Expand Down
2 changes: 1 addition & 1 deletion library/addons/colorwings/js/color-wings-preview.js

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

2 changes: 1 addition & 1 deletion library/addons/colorwings/js/color-wings-preview.min.js

Large diffs are not rendered by default.

Loading

0 comments on commit 8eed070

Please sign in to comment.