Social Media Feather | social media sharing - Version 2.0.4

Version Description

  • Test with WordPress 5.9.
  • Update media assets.
Download this release

Release Info

Developer socialmediafeather
Plugin Icon 128x128 Social Media Feather | social media sharing
Version 2.0.4
Comparing to
See all releases

Code changes from version 2.0.3 to 2.0.4

Files changed (4) hide show
  1. CONTRIBUTING.md +10 -0
  2. README.md +31 -0
  3. readme.txt +7 -3
  4. social-media-feather.php +2 -2
CONTRIBUTING.md ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ # Contributing
2
+
3
+ 1. `main` is a protected branch (no one can commit or push to it). To contribute changes, branch off of main and make a pull request back to it.
4
+ 1. To create a branch, always `git checkout main` and then `git checkout -b [your-branch-name]`. Typically branch names will include the ticket number they're aiming to resolve (e.g. `PP-9999-fix-header-nav`).
5
+ 1. Commits should be prefixed with the ticket number like so: `PP-9999: Fix header nav.`
6
+ 1. Once you're happy with your branch and think it's ready for code review, commit your changes, push them up and create a PR (pull request).
7
+ 1. Make sure the PR title is well written, includes the ticket number, but is concise (short and to the point).
8
+ 1. Make sure the PR description describes the problem, the resolution and links to the Jira ticket.
9
+ 1. Request code review.
10
+ 1. Once the code review is approved, your branch will be merged by the repo maintainer and included in release candidates and releases.
README.md ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Social Media Feather WordPress Plugin
2
+
3
+ WordPress Social Media Feather is a lightweight free social media WordPress plugin that allows you to quickly and painlessly add social sharing and following features to all your posts, pages and custom post types.
4
+
5
+ The plugin supports adding of social buttons for sharing or following (that is, social buttons that link to your social network profiles pages). The social media buttons can easily and automatically be added to all your posts, pages or any other custom post types.
6
+
7
+ ## How to Install
8
+
9
+ ### From the WordPress Plugin Directory
10
+
11
+ The official plugin can be found here: https://wordpress.org/plugins/social-media-feather/
12
+
13
+ ### From this repository
14
+
15
+ Go to the [releases](https://github.com/sharethis-github/social-media-feather/releases) section of the repository and download the most recent release.
16
+
17
+ Then, from your WordPress administration panel, go to `Plugins > Add New` and click the `Upload Plugin` button at the top of the page.
18
+
19
+ ### From source
20
+
21
+ You will need Git installed to build from source. To complete the following steps, you will need to open a command line terminal.
22
+
23
+ Clone the GitHub repository into your plugins folder:
24
+
25
+ `git clone git@github.com:sharethis-github/social-media-feather.git`
26
+
27
+ ## How to Use
28
+
29
+ From your WordPress administration panel, go to `Plugins > Installed Plugins` and scroll down until you find `ShareThis Reviews`. You will first need to activate the plugin by clicking the `Activate` link. Then you will need to accept the terms presented in the notice at the top of the page by clicking the `click here to accept the terms` link. You will be taken to the Social Media Feather settings page where you can configure the plugin.
30
+
31
+ ## [Contributing](CONTRIBUTING.md)
readme.txt CHANGED
@@ -2,9 +2,9 @@
2
  Contributors: socialmediafeather, scottstorebloom, scottmweaver
3
  Tags: social media, social sharing, social buttons, Facebook, Share, Like, twitter, google, Reddit, youtube, instagram, pinterest, social media buttons, button, shortcode, sidebar, sharing buttons, follow buttons
4
  Requires at least: 3.1
5
- Tested up to: 5.8
6
- Stable tag: 2.0.3
7
- Version: 2.0.3
8
  License: GPLv2
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -192,6 +192,10 @@ margin-left: 10px;
192
 
193
  == Changelog ==
194
 
 
 
 
 
195
  = 2.0.3 =
196
  * Test with WordPress 5.8.
197
 
2
  Contributors: socialmediafeather, scottstorebloom, scottmweaver
3
  Tags: social media, social sharing, social buttons, Facebook, Share, Like, twitter, google, Reddit, youtube, instagram, pinterest, social media buttons, button, shortcode, sidebar, sharing buttons, follow buttons
4
  Requires at least: 3.1
5
+ Tested up to: 5.9
6
+ Stable tag: 2.0.4
7
+ Version: 2.0.4
8
  License: GPLv2
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
192
 
193
  == Changelog ==
194
 
195
+ = 2.0.4 =
196
+ * Test with WordPress 5.9.
197
+ * Update media assets.
198
+
199
  = 2.0.3 =
200
  * Test with WordPress 5.8.
201
 
social-media-feather.php CHANGED
@@ -4,11 +4,11 @@ Plugin Name: Social Media Feather
4
  Plugin URI: http://socialmediafeather.com/
5
  Description: Super lightweight social media plugin to add nice and effective social media sharing and following buttons and icons anywhere on your site quickly and easily
6
  Author: socialmediafeather
7
- Version: 2.0.3
8
  Author URI: http://socialmediafeather.com/
9
  */
10
 
11
- define('SYNVED_VERSION', '2.0.3');
12
 
13
  if (!function_exists('synved_wp_social_load'))
14
  {
4
  Plugin URI: http://socialmediafeather.com/
5
  Description: Super lightweight social media plugin to add nice and effective social media sharing and following buttons and icons anywhere on your site quickly and easily
6
  Author: socialmediafeather
7
+ Version: 2.0.4
8
  Author URI: http://socialmediafeather.com/
9
  */
10
 
11
+ define('SYNVED_VERSION', '2.0.4');
12
 
13
  if (!function_exists('synved_wp_social_load'))
14
  {