-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreadme.txt
1125 lines (366 loc) · 16.2 KB
/
readme.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
=== Sociable ===
Author: sociable
Contributors: sociable
Tags: sociable, social bookmarking, social bookmarks, social icons, bookmarking, share, sharing, be sociable share, share and enjoy, digg, delicious, twitter, facebook, blinklist, stumbleupon, gmail, posterous, tumblr
Requires at least: 2.6
Tested up to: 3.3.1
Stable tag: 4.3.4.1
Congrats for joining the leader in the sharing space of WordPress plugins. "Sociable" is totally FREE, has over 1,7 million downloads and now you can enjoy Fueto and make your searches more Sociable.
== Description ==
As you know, Sociable continues being the fastest growing leader in the sharing space of WordPress plugins. We really appreciate your feedback, so, here you are lastest version including Pinterest icon, font changes you suggested and other terrific features you get totally Free.
After introducing Sociable Skyscraper, the ultimate advanced and feature-packed plugin for setting up a rating system on your WordPress blog, we've developed Sociable Slider. It is sort of banner that reminds your readers to spread the word. You can select and customize several features, such as text, color, and length in order to ensure your readers and their friends a great Sociable Experience. Sociable Skyscraper allows you to set up pages and comments with a great degree of customization.
Sociable Plug-in is totally free and continues leading digital arena with over 1.5 million downloads now. We're working hard making you happy and your feedback and suggestions allow us to keep growing, so, let's enjoy co-creation, collaboration and sharing. Be Sociable. Share!
= About Sociable Skyscraper =
Sociable Skyscraper is the ultimate advanced and feature-packed plugin for setting up a rating system on your WordPress blog. This plugin allows you to set up different rating systems for posts, pages and comments with a great degree of customization.
Sociable Skyscraper's list of features is smart, extensive and ever-growing:
You can get even more Sociable with Sociable Skyscraper and: Rating and Review of: posts, pages, comments, Facebook, G+, LinkedIN, and Twitter. Multiple ratings for posts and pages. Latest tweets, latest posts, follows, and mentions. Visitor counter, visitors from Facebook and Twitter. As an added bonus, you also get an easy way to get to the TOP of the page or back HOME from Sociable Skyscraper.
And now the over 1.5 million WordPress Blogs with the Sociable Plugin can also use the Inbound.org icon. Inbound.org is a for-fun partnership of Rand from Moz and Dharmesh from HubSpot which offers community-curated marketing news. We like their idea so much and we hope you enjoy discovering and sharing great stuff from the inbound marketing fields of blogging, SEO, Social media, content marketing, conversion rate optimization, web analytics and more.
We're constantly interacting with you via our Forum and/or emails, which means we're enhancing our free tool faster and more accurately thanks to your feedback. Please tell us your comments so we can make it better together.
= About Sociable Classic =
As you know, we've recently improved our visual interface. The default icons are now much more appealing, and a tad bit larger (you want your readers to share your posts, don't you?)
Enjoy it now!
Be Sociable, Share!
[vimeo http://vimeo.com/31023294]
[vimeo http://vimeo.com/31023684]
Have technical support issues? Please leave them in the forum: http://wordpress.org/tags/sociable?forum_id=10
Also use the forum for ideas, feedback, suggestions. We'll try to check the forum every day.
What happened to the old icons? You can still use them in the new version, but they're not the default style anymore.
Sociable finds its home outside of the WordPress environment on Blogplay.com-
*** Sociable 4.3.4.1 ***
= Recent Updates =
* Change links permissions
* Add Private Options
* Add Pinterest share icon
* Add inbound.org share icon
* Changed the old motto "share and enjoy" for "Be Sociable, Share" much more attractive. Of course you can customize it to whatever you want.
* Complete re-write to increase efficiency and speed of the plugin
* New Sociable Skyscraper version, the ultimate advanced packed plugin for setting up rating system on your WordPress blog. Sociable Skyscraper allows you to set up pages and comments with great degree of customization.
= Recently Added Sites =
* Pinterest
* Inbound.org
* Posterous
* Sphinn
* Tumblr
* G+
* LinkedIN
* Inbound
= Recently Deleted Sites =
* Mixx.com, recently acquired, doesn't support share functions anymore
* Netvibes stopped sharing
* Slashdot: New bookmark creation is no longer supported
* And we deleted a bunch of others that were really not used that much
= Special Thanks =
Sociable plugin wouldn't be what it is today if it weren't for these people that helped us along the way:
* Thanks to [WPzoom](http://http://www.wpzoom.com/wpzoom/500-free-icons-wpzoom-social-networking-icon-set/) for letting us to use their awesome icons
* Also special thanks to [Webtreats etc](http://http://webtreats.mysitemyway.com/) for allowing us to use their great icons
== Screenshots ==
1. The Sociable backend, easily select sites and drag & drop to change the order of appearance.
2. Sociable with its new default styling.
3. Pick the style you want
4. Or you can pick your own style
5. Select which plugin want to customize
== Installation ==
1. Upload the extracted archive to `wp-content/plugins/`
2. Activate the plugin through the 'Plugins' menu
3. Open the plugin settings page Settings -> Sociable
4. Adjust settings to your liking
4. Enjoy!
== Frequently Asked Questions ==
= What happened to the old icons? =
You can still use them. It's just they're not the default anymore.
= I want to reach you, but not for a technical question =
Please send us an email to sociableblogplay [ at ] gmail.com
== Changelog ==
= 4.3.4.1 =
* Fixed a problem with one site taking over all the links
= 4.3.4 =
* Bugs Fixed.
* Vuible.com added
= 4.3.3 =
* Forced update by WordPress.org Plugin Team - Remove admin advertising that now links to a malware site.
= 4.3.2 =
* shorcode line added
= 4.3.1 =
* Help us grow information
= 4.3.0 =
* Some fixes
= 4.2.9 =
* Sociable classic issue solved
= 4.2.8 =
* Change links permissions
= 4.2.7 =
* Some fixes
= 4.2.6 =
* Save issue
= 4.2.5 =
* Privacy options
= 4.2.4 =
* Privacy options
= 4.2.3 =
* Pinterest
* Tags
= 4.2.2 =
* Social Banner and settings
* Inbound icon
* FIXED: Some Fixes
= 4.2.1 =
* FIXED: Some Fixes
= 4.2.0 =
* FIXED: Some Fixes
= 4.1.9 =
* FIXED: Some Fixes
= 4.1.8 =
* FIXED: Some Fixes
= 4.1.7 =
* FIXED: Some Fixes
= 4.1.6 =
* FIXED: Some Fixes
= 4.1.5 =
* FIXED: Some Fixes
= 4.1.4 =
* FIXED: Some Fixes
= 4.1.3 =
* FIXED: Some Fixes
= 4.1.2 =
* FIXED: Google plus problem
= 4.1.1 =
* ADDED: Facebook Like Counter, Twitter Counter, Google Plus Counter, Linkedin Counter,StumbleUpon Counter and Digg Counter
* ADDED: Add Sociable at Top and Bottom of the post
= 4.0.6 =
* FIXED: Allow Sub Directory Blogs (http://domain.com/blog)
= 4.0.5 =
* FIXED: Other Upgrade issues
= 4.0.4 =
* FIXED: Upgrade issues
= 4.0.3 =
* Fix IIS 6.0 and PHP 5.3.x
= 4.0.1 =
* Changed the old motto "share and enjoy" for "Be Sociable, Share" much more attractive. Of cours you can customize it to whatever you want.
* Complete re-write to increase efficiency and speed of the plugin
* Updated it for up to Wordpress version 3.2.1
= 3.5.2 =
* Added new services MOB, ??, ????, QQ??, LaTafanera, SheToldMe, viadeo FR, Diggita, Design Float
* Removed ID properties from sociable anchor tags (share links)
* FIXED: Having a custom image directory now disables sprite usage, and the icons of services are displayed on sociable configuration page.
= 3.5.1 =
* Fixed the xhtml validation issues
* 'target=blank' (open link in new window) issue solved
* Sprites can now be disabled, allowing for custom icons
* Sprites have been disabled for RSS
* You can now deactivate the blogplay widget from your wordpress dashboard
= 3.5.0 =
* The icons now load in a CSS Sprites, allowing for faster download times.
* These services have been discontinued: BlogMeme FR, BlogMeme SP, co.mments, DesignFloat.com, PPNow.net, Symbaloo.com.
* You can now add links to your browser favorites.
* iFrames added for services that support them.
* You can know unselect the transparency effect on the sociable icons.
= 3.4.4 =
* Another fix for the sociableoff dilemma's, no backwards compatibility unfortunately, so disable sociable again on pages where you want to disable it.
= 3.4.3 =
* Fixed the bug mentioned [here](http://wordpress.org/support/topic/288487) and [here](http://wordpress.org/support/topic/290753) that made it impossible to disable Sociable on a per post/page basis (for real, now).
= 3.4.2 =
* Added a site specific id to each links anchor tag.
* Fixed the bug mentioned [here](http://wordpress.org/support/topic/288487) and [here](http://wordpress.org/support/topic/290753) that made it impossible to disable Sociable on a per post/page basis.
* "Reintroduced" TwitThis as Twitter.
= 3.4.1 =
* Fixed the Sphinn submit link.
= 3.4 =
* Added the option to add a site to Sociable through a filter, read [How to add a site to Sociable](http://yoast.com/add-sites-to-sociable/).
= 3.3.8 =
* Fixed the option to disable Sociable on a per post / page basis.
= 3.3.7 =
* More bugfixery.
= 3.3.6 =
* Reverted plugin URL fix because of too many people on old WordPress installations complaining. (Upgrade, people, upgrade!)
* Added PHPDoc throughout the plugins code.
= 3.3.5 =
* Added a Hyves button.
* Fixed MSN Reporter button.
= 3.3.4 =
* Fixed RSS.
= 3.3.3 =
* Brought back Tumblr
* Updated PDF link
* Added Posterous
* Smushed all images using [Smush.it](http://smush.it/), reducing the total image file size with 31.72 KB (42.03%)!
* Removed pre - 2.6 compatibility code
= 3.3.1 =
* Added new option to use pure text links, instead of image links.
* Fixed small issue with using target=blank links and the new awe.sm options.
* Allowed for usage without an awe.sm API key, as awe.sm falls back to "default" awe.sm shortlinks.
* Code cleanup for more efficiency in the backend on saving options.
* General code cleanup.
* Moved to the new default Changelog markup.
= 3.3 =
* Added awe.sm integration and some sites.
= 3.2.3 =
* Removed the last bit of non jQuery javascript.
* Improved styling and visual feedback when selecting a site.
= 3.2.2 =
* Moved style loading to admin_print_styles and scripts to admin_print_scripts.
= 3.2.1 =
* Fixed a bug with printing styles in 2.8 beta.
= 3.2 =
This is a MAJOR update to Sociable. Major Thanks to Jean-Paul of [iPhoneclub](http://www.iphoneclub.nl/) for all his work in looking up all the sites. The full list of changes:
* Restored sociable-admin.js, as it got accidentally removed.
* Added `class="sociablefirst"` to the first site in the list and `class="sociablelast"` to the last one.
* Added:
* An RSS button, which links to your sites RSS feed
* Printfriendly.com for both printing and creating a PDF, replacing the original "Print" function, which didn't work from RSS
* Current
* FriendFeed
* MSN Reporter.nl
* FS Daily
* Hello TXT
* Removed the following sites that were no longer working or active:
* BlinkBits
* Blogmemes.cn, .net, .jp
* Blogsvine
* Book.mark.hu
* Bumpzee
* Del.irio.us
* Feed Me Links
* Furl (replaced by Diigo)
* GeenRedactie
* Kick.ie
* Leonaut
* Magnolia
* Plug IM
* Pownce
* Salesmarks
* Scuttle
* Shadows
* Smarking
* Spurl
* Taggly
* Tailrank
* Tumblr (due to the change to a POST API, which we, unfortunately, can't support with Sociable)
* Updated the following sites to include the excerpt when submitting:
* Connotea
* Delicious
* Digg
* Ekudos
* Google Bookmarks
* NuJij
* Ping.fm
* Otherwise updated:
* Google Bookmarks (new icon)
* Fleck (New URL)
* Rec6 (new URL)
= 3.1.1 =
* Fixed bug with stylesheet introduced in 3.1.
= 3.1 =
* Converted all images to PNG.
* Cleaned up usage of javascript in the backend and switched to the jquery library that comes with WordPress.
* Allowed for usage of an external image directory.
* Removed pre 2.6 compatibility fixes.
= 3.0.6 =
* Fixed xhtml bug in Netvibes integration.
* Added Bitacoras.
= 3.0.5 =
* Added Identi.ca.
* Fixed a bug in Yoast Posts widget.
= 3.0.4 =
* Added Netvibes.
= 3.0.3 =
* Security enhancements, thx to Mark Jaquith.
= 3.0.2 =
* Fixed CSS bug introduced in 3.0.
= 3.0.1 =
* Removed some other, now obsolete, code, reducing the code size by another 4KB.
= 3.0 =
* Fixed IE bug in admin.
* Cleaned up Admin Area and changed support messages.
* Removed directory checking for all images (speeds up incredibly).
* Made display: inline !important to prevent vertical icon display.
* Updated Wykop icon.
= 2.9.15 =
* Added a fallback for strip_shortcodes to maintain backwards compatibility with WordPress 2.3 and below.
= 2.9.14 =
* Made sure there are no tags or shortcodes in the excerpt.
* Added ping.fm.
* Removed indiagram (shut down).
= 2.9.13 =
* Changed Facebook link from sharer.php (meant for a popup window) to share.php (which has the actual menu on it etc.).
= 2.9.12 =
* Added Tip'd.
= 2.9.11 =
* Added settings link and Ozh admin menu icon.
= 2.9.10 =
* Fixes issue with excerpt not being urlencoded.
= 2.9.9 =
* Fixes for custom fields issues.
= 2.9.8 =
* Fixes for WP 2.7.
= 2.9.6 =
* Added Symbaloo and Tumblr.
= 2.9.5 =
* Fixed Fark & Propeller links.
* Added missing i18n strings.
* Added Yahoo Buzz.
= 2.9.4 =
* Removed PopCurrent and Rawsugar as they no longer exist.
* Renamed BlueDot to Faves.
= 2.9.3 =
* Added Leonaut & MySpace.
* Fixed plugin description.
* Added option to disable Sociable on a per post basis.
* Added option to display sociable on tag pages.
* Added extra security to config page.
* Fixed print button.
* Fixed Twitter functionality.
= 2.9.2 =
* Added Swedish and Chinese localisations, thx to [Mikael Jorhult](http://www.mishkin.se/) and [Hugo Chen](http://take-ez.com/).
= 2.9.1 =
* Fixed bug where jQuery UI would be loaded twice.
= 2.9 =
* Removed Tool-Man in favor of jQuery, thx to Martin Joosse.
= 2.8.4 =
* General bugfixes.
= 2.8.3 =
* Added wikio.it, upnews.it, muti.co.za.
* Made LinkedIn work even better.
* Made opening in a new window optional.
= 2.8.2 =
* Now adds icons to feeds with excerpts too.