Skip to content

Commit

Permalink
version updates and small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
amiyasahu committed Sep 22, 2015
1 parent 68e0545 commit 1d39bcf
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 2 deletions.
13 changes: 13 additions & 0 deletions metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"name": "Q2A Social Sharing",
"uri": "https://github.com/amiyasahu/q2a-social-share/",
"description": "Adds Clickable Social Sharing Buttons Below Questions",
"version": "1.6.0",
"date": "2015-09-22",
"author": "Amiya Sahu",
"author_uri": "http://www.amiyasahu.com/",
"license": "GPLv3",
"update_uri": "https://raw.githubusercontent.com/amiyasahu/q2a-social-share/master/qa-plugin.php",
"min_q2a": "1.5",
"min_php": "5.1.6"
}
4 changes: 2 additions & 2 deletions qa-plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
Plugin Name: Q2A Social Sharing
Plugin URI: https://github.com/amiyasahu/q2a-social-share/
Plugin Description: Adds Clickable Social Sharing Buttons Below Questions
Plugin Version: 1.5.0
Plugin Date: 2015-09-21
Plugin Version: 1.6.0
Plugin Date: 2015-09-22
Plugin Author: Amiya Sahu
Plugin Author URI: http://amiyasahu.com
Plugin License: GPLv2
Expand Down
3 changes: 3 additions & 0 deletions qa-social-share-admin.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
<?php
if ( !defined( 'QA_VERSION' ) ) { // don't allow this page to be requested directly from browser
exit;
}

class qa_social_share_admin
{
Expand Down
3 changes: 3 additions & 0 deletions qa-social-share-layer.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
<?php
if ( !defined( 'QA_VERSION' ) ) { // don't allow this page to be requested directly from browser
exit;
}

class qa_html_theme_layer extends qa_html_theme_base
{
Expand Down
3 changes: 3 additions & 0 deletions qa-social-share-options.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
<?php
if ( !defined( 'QA_VERSION' ) ) { // don't allow this page to be requested directly from browser
exit;
}

class qa_sss_opt
{
Expand Down
3 changes: 3 additions & 0 deletions qa-social-share-utils.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
<?php
if ( !defined( 'QA_VERSION' ) ) { // don't allow this page to be requested directly from browser
exit;
}

function ami_social_icon( $icon )
{
Expand Down
3 changes: 3 additions & 0 deletions qa-social-share-widget.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
<?php
if ( !defined( 'QA_VERSION' ) ) { // don't allow this page to be requested directly from browser
exit;
}

class qa_social_share_widget
{
Expand Down

0 comments on commit 1d39bcf

Please sign in to comment.