Skip to content

Commit

Permalink
Releasing 0.7.9
Browse files Browse the repository at this point in the history
  • Loading branch information
ciubotaru committed Apr 23, 2021
2 parents 8bbaddf + d7ae7f3 commit 332e198
Show file tree
Hide file tree
Showing 17 changed files with 26 additions and 8 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,15 @@ Alternatively, you can install an auxiliary plugin called
that automatically retrieves a fresh list of active pods.

# Changelog
## 0.7.9
* Bug-fix: a missing 'static' qualifier

## 0.7.8
* Bug-fix: class function and class property visibility

## 0.7.7
* Bug-fix: removed static functions

## 0.7.6
* Bugfix: a missing $ sign

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion tags/0.7.8/class.php → tags/0.7.9/class.php
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ public static function generate_button($preview, $use_own_image, $is_feed) {
return $button;
}

public function diaspora_button_display($content) {
public static function diaspora_button_display($content) {
if ( get_post_type() == 'post' && ( ! in_array( 'get_the_excerpt', $GLOBALS['wp_current_filter'] )) ) {
$options_array = get_option( 'share-on-diaspora-settings' );
if ( is_feed() ) {
Expand Down
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
8 changes: 7 additions & 1 deletion tags/0.7.8/readme.txt → tags/0.7.9/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: Vitalie Ciubotaru
Tags: diaspora, share, button
Requires at least: 3.2.1
Tested up to: 5.2
Stable tag: 0.7.8
Stable tag: 0.7.9
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -96,9 +96,15 @@ page, 'Pod list options' tab.


== Changelog ==
= 0.7.9 =
* Bug-fix: a missing 'static' qualifier

= 0.7.8 =
* Bug-fix: class function and class property visibility

= 0.7.7 =
* Bug-fix: removed static functions

= 0.7.6 =
* Bug-fix: a missing $ sign

Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Plugin Name: Share on Diaspora
Plugin URI: https://github.com/ciubotaru/share-on-diaspora
Description: This plugin adds a "Share on D*" button at the bottom of your posts.
Version: 0.7.8
Version: 0.7.9
Author: Vitalie Ciubotaru
Author URI: https://github.com/ciubotaru
Text Domain: share-on-diaspora
Expand All @@ -26,7 +26,7 @@
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/

define( 'SHARE_ON_DIASPORA_VERSION', '0.7.8' );
define( 'SHARE_ON_DIASPORA_VERSION', '0.7.9' );
define( 'SHARE_ON_DIASPORA_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
define( 'SHARE_ON_DIASPORA_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion trunk/class.php
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ public static function generate_button($preview, $use_own_image, $is_feed) {
return $button;
}

public function diaspora_button_display($content) {
public static function diaspora_button_display($content) {
if ( get_post_type() == 'post' && ( ! in_array( 'get_the_excerpt', $GLOBALS['wp_current_filter'] )) ) {
$options_array = get_option( 'share-on-diaspora-settings' );
if ( is_feed() ) {
Expand Down
8 changes: 7 additions & 1 deletion trunk/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: Vitalie Ciubotaru
Tags: diaspora, share, button
Requires at least: 3.2.1
Tested up to: 5.2
Stable tag: 0.7.8
Stable tag: 0.7.9
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -96,9 +96,15 @@ page, 'Pod list options' tab.


== Changelog ==
= 0.7.9 =
* Bug-fix: a missing 'static' qualifier

= 0.7.8 =
* Bug-fix: class function and class property visibility

= 0.7.7 =
* Bug-fix: removed static functions

= 0.7.6 =
* Bug-fix: a missing $ sign

Expand Down
4 changes: 2 additions & 2 deletions trunk/share-on-diaspora.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Plugin Name: Share on Diaspora
Plugin URI: https://github.com/ciubotaru/share-on-diaspora
Description: This plugin adds a "Share on D*" button at the bottom of your posts.
Version: 0.7.8
Version: 0.7.9
Author: Vitalie Ciubotaru
Author URI: https://github.com/ciubotaru
Text Domain: share-on-diaspora
Expand All @@ -26,7 +26,7 @@
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/

define( 'SHARE_ON_DIASPORA_VERSION', '0.7.8' );
define( 'SHARE_ON_DIASPORA_VERSION', '0.7.9' );
define( 'SHARE_ON_DIASPORA_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
define( 'SHARE_ON_DIASPORA_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );

Expand Down

0 comments on commit 332e198

Please sign in to comment.