forked from Automattic/jetpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
readme.txt
1244 lines (1078 loc) · 78.5 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
=== Jetpack by WordPress.com ===
Contributors: automattic, alternatekev, andy, apeatling, azaozz, barry, beaulebens, blobaugh, cfinke, chellycat, danielbachhuber, daniloercoli, designsimply, dsmart, eoigal, ethitter, gibrown, georgestephanis, hew, hugobaeta, iammattthomas, jblz, jeherve, jkudish, Joen, johnjamesjacoby, jshreve, kraftbj, lancewillett, martinremy, matt, matveb, maverick3x6, mcsf, mdawaffe, migueluy, nickmomrik, obenland, pento, professor44, richardmtl, roccotripaldi, sdquirk, stephdau, tmoorewp, Viper007Bond, westi, yoavf
Tags: WordPress.com, statistics, stats, views, tweets, twitter, widget, gravatar, hovercards, profile, equations, latex, math, maths, youtube, shortcode, archives, audio, blip, bliptv, dailymotion, digg, flickr, googlevideo, google, googlemaps, kyte, kytetv, livevideo, redlasso, rockyou, rss, scribd, slide, slideshare, soundcloud, vimeo, shortlinks, wp.me, subscriptions, notifications, notes, json, api, rest, mosaic, gallery, slideshow, videopress, monitor, search, omnisearch, sso, jet pack
Stable tag: 3.3
Requires at least: 4.0
Tested up to: 4.1
Your WordPress, Streamlined.
== Description ==
[Jetpack](http://jetpack.me/) adds powerful features previously only available to WordPress.com users including customization, traffic, mobile, content, and performance tools.
**Features include:**
* **Customization.** Make your WordPress site uniquely yours with *Custom CSS*, *Carousels*, spam-free *Contact Forms*, *Sidebar Widgets*, *Infinite Scroll*, and *Tiled Galleries*.
* **Mobile theme.** Instant and customizable lightweight responsive theme designed for phones and tablets.
* **Content tools.** Create and publish richer content with *Post by Email*, *Shortcode Embeds*, *Markdown*, *Beautiful Math*, *Spelling*, and *VideoPress*.
* **Visitor engagement.** Increase your traffic and keep visitors coming back with *Enhanced Distribution*, spam-free *Comments*, *Shortlinks*, *Likes*, *Notifications*, *Related Posts*, *Publicize*, *Social Sharing*, *Subscriptions*, and *Site Verification Tools*.
* **Site performance.** Speed up image delivery with the *Photon CDN* and access to visitor *Stats*.
* **Security.** Keep your WordPress site up, safe, and protected with *Single Sign On*, *Jetpack Monitor*, and *Akismet* anti-spam.
**Our users love:**
* Simple, concise stats with no additional load on your server.
* Email subscriptions for your blog's posts and your post's comments.
* Social networking enabled comment system.
* Likes, allowing your readers to show their appreciation of your posts.
* Monitor and manage your site's activity with Notifications.
* Simple, Akismet-backed contact forms.
* The WP.me URL shortener.
* Hovercard popups for your commenters via Gravatar.
* Easily embedded media from popular sites like YouTube, Digg, and Vimeo.
* The ability to post to your blog from any email client.
* Integration with social networks including Twitter, Facebook, Tumblr, Path, and LinkedIn.
* For the Math geeks, a simple way to include beautiful mathematical expressions.
* A widget for displaying recent tweets.
* Your readers can easily share your posts via email or their favorite social networks.
* Improved writing thanks to an AI-based spell, style, and grammar checker.
* Turn WordPress galleries into a gorgeous full-screen photo browsing experience.
* A CSS editor that lets you customize your site design without modifying your theme.
* A mobile theme that automatically streamlines your site for visitors on mobile devices.
* Mobile push notifications for new comments via WordPress mobile apps.
* Allowing applications to securely authenticate and access your site with your permission.
* Creative formats for your image galleries: mosaic, circles, squares, and a slideshow view.
* Add post sliders and other highlights to your theme with Featured Content.
* Omnisearch: Search posts, pages, comments, media, and plugins from one search box.
* Configure widgets to appear only on certain pages.
* Upload and insert videos into your posts thanks to VideoPress.
* Link WordPress and your Google+ Profile to add multiple Google features to your site.
* Sign in to your self-hosted WordPress site using your WordPress.com account.
* Receive alerts the moment that site downtime is detected.
**New features**
We're always improving Jetpack based on your feedback and WordPress development. [Subscribe to our mailing list](http://jetpack.me/coming-soon/) to get notified of new developments.
== Installation ==
1. Install Jetpack either via the WordPress.org plugin directory, or by uploading the files to your server.
2. After activating Jetpack, connect to WordPress.com to enable the Jetpack features.
3. Click the Connect button and log in to a WordPress.com account to authorize the Jetpack connection.
4. If you don't yet have a WordPress.com account, you can quickly create one after clicking the Connect button.
5. That's it. You're ready to go!
If you need additional help [read our detailed instructions, including a video walkthrough](http://jetpack.me/support/installing-jetpack/).
== Frequently Asked Questions ==
= I already have a WordPress account, but it's not working, what's going on? =
Jetpack requires a connection to [WordPress.com](http://wordpress.com/) to enable all features. This is a different account than the one you use to log into your self-hosted WordPress. If you can log into http://wordpress.com, then you already have a WordPress.com account. If you can't, then you can easily create one as part of the installation of Jetpack.
= How do I view my stats? =
Once you've installed Jetpack, your stats will be available via the "Site Stats" menu which appears in the new Jetpack menu (under your Dashboard menu within WordPress).
= How do I contribute to Jetpack? =
Easy! There are opportunities for developers at all levels to contribute:
* Join our Beta Test group.
* Give us a hand answering questions in our [support forum](http://wordpress.org/support/plugin/jetpack).
* Report bugs, with reproduction steps, or post patches on [GitHub](https://github.com/Automattic/Jetpack).
Learn more (and get detailed instructions) in our [contribute guide](http://jetpack.me/contribute/).
== Screenshots ==
1. Stats chart.
2. Sharing buttons.
3. Subscriptions widget.
4. Gravatar Hovercards settings.
5. Spelling and Grammar demo.
6. Gallery Carousel.
7. CSS Editor
8. Mobile Theme
== Changelog ==
= 3.4 =
Release Date: February 9th, 2014
Enhancement : Custom Content Types code cleanup
Bug Fix : Open sharing in same window
Bug Fix : Stats language
Enhancement : Sharing: Add custom service name as a class
Enhancement : Add/whitelist endpoints via JSON API for Jetpack Protect
Enhancement : Shortlinks: use HTTPS when possible
Enhancement : Contact Form: Use the predefined $title variable in the anchor tag in the button on admin
Enhancement : Add/security reporting
Enhancement : Subscriptions: Added settings field for comment sub text
Enhancement : Stats: Make loading of stats async
Enhancement : JSON API Manage: Added Mock Jetpack Option to Sync options that don't have to live in the Database
Enhancement : JSON API: Add/empty trash days option to sync
Enhancement : Subscriptions: Hide Form After Submit
Enhancement : Custom Content Types: bring consistency between the portfolio and testimonial shared codebase
Enhancement : Add option to add Testimonial Custom Content Type in admin
Enhancement : Subscriptions: remove label from widget title
Enhancement : Custom Content Types testimonial shortcode enhancement
Enhancement : Publicize: update connection confirmation message
Enhancement : GlotPress:Update GP_Locales and GP_Locale classes
Enhancement : Subscriptions: Update subscriptions.php
Enhancement : Portfolio Custom Content Type: register namespaced 'jetpack_portfolio' shortcode/use a prefix for shortcode
Enhancement : Portfolio Custom Content Type: set shortcode image size to 'large' and add jetpack_portfolio_thumbnail_size filter to allow themes to set their own size.
Enhancement : Add all Custom Post Types to Omnisearch
Enhancement : Config Settings: provide a notification for users that update features settings
Enhancement : Infinite Scroll: Check for response.html before using indexOf
Enhancement : Add filter for choosing mobile theme menu
Enhancement : Fix/update jetpack version
Enhancement : Sharing: use Jetpack version number when enqueing sharing.js
Enhancement : Config Settings: provide a notification for users that update features settings
Enhancement : Shortcodes Team Partnerships: Backport fixes from SoundCloud 2.3.1 through 3.0.2
Enhancement : Infinite Scroll: Adds a `button` wrapper for the infinity handle.
Enhancement : Sharing: display name of custom service in link title
Enhancement : Add a filter so that user can add thier own bots
Enhancement : Minor fixes to Facebook widget plugin for SSL
Enhancement : Add DNS Prefetching
Enhancement : Notifications: Changes to load the new notifications client.
Enhancement : Improved control over Nova Theme Menu output markup
Enhancement : trigger plugins_loaded hooks on the frontend
Enhancement : Add "modified_before" and "modified_after" parameters to /sites/%s/posts/ via JSON API
Enhancement : Use the predefined $title variable in the anchor tag in grunion contact form button
Enhancement : Add subscription widget wildcard
Enhancement : Sharing: Remove default post types for showing share links
Enhancement : Extra Sidebar Widgets: Likes and Sharing Shortcodes
Bug Fix : Testimonial Custom Content Type: use core `WP_Customize_Image_Control` instead of custom...
Bug Fix : Widget Visibility: add missing & to if statement
Bug Fix : Fix bug that was preventing modules from displaying properly
Bug Fix : Gallery Widget - Upload images from the customizer/Extra Sidebar Widgets Tiled Galleries
Bug Fix : Subscritpions: fix invalid field when no email address
Bug Fix : Mobile Theme: Minileven; Start after DOM ready
Bug Fix : Extra Sidebar Widgets: Don't require height/width values in the Twitter Timeline widget
Bug Fix : Increase CSS specificity for Contact Forms in widgets
Bug Fix : When calling /sites/%s/posts/ include all attachments not just the first five via JSON API
= 3.3 =
Release Date: December 15th, 2014
* Enhancement: Adds responsive video support to BuddyPress.
* Enhancement: Custom Content Types: Added 'order' and 'orderby' options to portfolio shortcode.
* Enhancement: Display notice when Jetpack Development Mode is on.
* Enhancement: General: Update compatibility with Twenty Fifteen.
* Enhancement: Image URL can now be overwritten with the `jetpack_images_fit_image_url_override` filter after dimensions are set by Photon.
* Enhancement: JSON API: Add Endpoint for trigger Plugin Autoupdates.
* Enhancement: JSON API: General Improvements. Documentation on http://developer.wordpress.com/
* Enhancement: Likes: Updated the code to accept arbitrary CPTs.
* Enhancement: Related Posts: Allow filter by `post_format`.
* Enhancement: Sharing: add new `jetpack_sharing_counts` filter for option to turn off sharing counts.
* Enhancement: Sharing: Use the Site Logo Theme Tool and the Site Icon as fallbacks for image tags.
* Enhancement: Shortcodes: Made the code more readable by using output buffers instead of string concatenation.
* Enhancement: Site Logo: Add alias functions to provide backward compatibility for themes expecting the old function calls.
* Enhancement: Slideshow: Add title and alt text to images.
* Enhancement: Subscription Form: Do not display the logged in user's email address by default.
* Enhancement: Top Posts Widget: Refactor to allow conditional loading of the css.
* Enhancement: Top Posts: Add `jetpack_top_posts_widget_count` filter to control number of displayed posts.
* Bug Fix: Change subscribe_text from `p` to `div` so that it can contain block-level elements.
* Bug Fix: Fonts: Change path to look for the svg in the right directory.
* Bug Fix: Increase CSS specificity for Contact Forms in widgets.
* Bug Fix: JSON API: Plugins Update: Make sure the plugin doesn't get deactivated.
* Bug Fix: Likes: Fixes issues where likes don't load, load master iframe after scripts are loaded.
* Bug Fix: Notes Module: Avoid a PHP Notice in cli scripts when the request doesn't contain a User-Agent header.
* Bug Fix: Nova Menu CPT: fix notice when we have no taxonomies.
* Bug Fix: Nova Menus: Use current instance to maintain object context.
* Bug Fix: Related Posts: Add filter for `_enabled_for_request()`.
* Bug Fix: Sharing: Prevent duplicate @ in shared Tweets.
* Bug Fix: Site Logo: `get_site_logo()` now properly returns the site logo ID when provided in the `$show` argument.
* Bug Fix: Site Logo: Correct evaluation of the Display Header Text in Customizer preview.
= 3.2.1 =
Release Date: November 14th, 2014
* Enhancement: Updated translation files.
* Enhancement: JSON API: More object vars passed back to some queries. Documentation on http://developer.wordpress.com/
* Bug Fix: JSON API: Pass back correct author in `me/posts` data.
* Bug Fix: JSON API: Don't check if a post is freshly pressed on remote Jetpack sites where the function doesn't exist.
* Bug Fix: Site Logo: Add backward-compatible template tags to match the standalone release.
* Bug Fix: Don't use __DIR__ -- it's 5.3+ only, and WordPress supports back to 5.2.
* Bug Fix: Retool how we remove the source styles when using the concatenated version.
* Bug Fix: Shortcodes: TED: Correct default language code from `eng` to `en`.
* Bug Fix: Gallery Widget: Add a default background color.
* Bug Fix: Subscription Notifications: Remove the label.
* Bug Fix: Sharing: enqueue Genericons on static front page as well if selected.
= 3.2 =
Release Date: October 29, 2014
* Enhancement: Speed Improvements (woohoo!).
* Enhancement: Add site icons: an avatar for your blog.
* Enhancement: Improvements to API endpoints.
* Enhancement: Add oEmbed sources (Twitter, SoundCloud, Instagram, DailyMotion, Vine).
* Enhancement: Add indicators to make it easier to see which modules are active.
* Enhancement: Improve debug tool.
* Enhancement: Add new 'Site Logos' code to theme tools, for themes that opt in to support it.
* Enhancement: Improved caching for related posts.
* Enhancement: Added "Remember Me" functionality to Single Sign On.
* Enhancement: Improved accessibility.
* Enhancement: Added additional filters to Widget Visibility.
* Bug Fix: Fixed PHP Notice errors for Likes, Widget Visibility.
* Bug Fix: Improvements to the testimonials CPT.
* Bug Fix: Improved RTL on VideoPress admin.
* Bug Fix: Removed Google+ Authorship module (discontinued by Google).
* Bug Fix: Fixed use of deprecated function in mobile theme.
* Bug Fix: Various fixes to Tiled Galleries.
* Bug Fix: Various fixes to Contact Form.
* Bug Fix: Various fixes to oEmbed.
* Bug Fix: Various fixes to Single Sign On.
* Bug Fix: Fixed styles in ShareDaddy.
* Bug Fix: Better match protocols (http/https) to the site.
= 3.1.1 =
Release Date: August 7, 2014
* Enhancement: Update translation files for strings that had been submitted/approved since release.
* Bug Fix: Social Links: Add a function check to better degrade if Publicize isn't around.
* Bug Fix: Open Graph: Add WordPress SEO back to the blacklist, until they update how they opt us out.
* Bug Fix: Asset Minification: Add another caveat ( empty $plugin ) to short out on.
* Bug Fix: Deprecated Hooks: Fixing our expectations where something that should be an array occasionally wasn't.
* Bug Fix: Custom CSS: Add extra whitelist rule for -o-keyframe rules.
= 3.1 =
Release Date: July 31, 2014
* Enhancement: New Custom Content Types module.
* Enhancement: New Jetpack Logo.
* Enhancement: New optional JSON API endpoints for viewing updates and managing plugins and themes.
* Enhancement: New Custom Post Type: Portfolio!
* Enhancement: Rearranged buttons on the modules modals for easier management.
* Enhancement: Jetpack Settings have improved keyboard accessibility.
* Enhancement: Improved RTL support for After the Deadline, Carousel, Contact Form, Comics CPT, Custom CSS, Omnisearch, Publicize, Related Posts, Slideshow short code, Tiled Gallery, Widget-Visibility and Widgets Gallery.
* Enhancement: Contact Form: Add an "Empty Spam" option.
* Enhancement: i18n: Change the priority of where plugin_textdomain is hooked so that the plugins can better translate Jetpack.
* Enhancement: Monitor: Displays how often the site is checked for downtime.
* Enhancement: Shortcode: Added Mixcloud shortcode and oEmbed support.
* Enhancement: Social Links: Improved handling of customizer hooks in non-admin context.
* Enhancement: Stats: The smiley image is gone by default.
* Enhancement: Stats: Added link to the configure page for stats so that the stats settings page is easier to find.
* Enhancement: Theme Tools: Added the responsive videos to theme tools so that themes can support responsive videos more easily.
* Update: Updated Genericons to version 3.1, new icons for website, ellipsis, foursquare, x-post, sitemap, hierarchy and paintbrush.
* Bug Fix: Contact Form: Prefix function to avoid conflicts with other plugins.
* Bug Fix: Custom CSS: Admin UI has a responsive layout.
* Bug Fix: Custom CSS: Custom $content_width value doesn't overwrite theme's $content_width.
* Bug Fix: Contact Form: Feedback link takes you to the form page.
* Bug Fix: Carousel: Confirms an avatar is returned by get_avatar before displaying.
* Bug Fix: Featured Content: Don't remove setting validation.
* Bug Fix: Infinite Scroll: Google Universal Analytics support added.
* Bug Fix: Multisite: Add message when updating multisite settings.
* Bug Fix: Photon: Photon will no longer upscale images larger than the original size.
* Bug Fix: Photon: Check that the image exists before rewriting the image URL to utilize Photon.
* Bug Fix: Sharing: Pinterest adds attribute to display share count.
* Bug Fix: Sharing: Respect an empty sharing title.
* Bug Fix: Sharing: Share buttons now appear in the bbPress forms.
* Bug Fix: Sharing: Support for multiple meta html tag og:image values.
* Bug Fix: Single Sign On: Logout allows override of forcing Single Sign On.
* Bug Fix: Single Sign On: Remove the lost password link on auto-forward logout.
* Bug Fix: Social Links: Do not use anonymous function for compatibility with PHP 5.2.
* Bug Fix: Tiled Galleries: Update jQuery mouseover caption effect to reduce flickering.
* Bug Fix: Widgets Visibility: Works better in the customizer admin view.
= 3.0.2 =
Release Date: June 17, 2014
* Enhancement: General: Make module categories filter more visible when active.
* Enhancement: General: Updated translation files with more strings added since the last release.
* Enhancement: General: Allow deep-linking to the Contact Support form.
* Bug Fix: General: RTL Jetpack Admin UI looks better.
* Bug Fix: General: Fixed PHP warning when bulk deactivating modules.
* Bug Fix: General: Removed an unnecessary description.
* Bug Fix: General: Resolved an SSL error on Jetpack Admin UI.
* Bug Fix: General: Fix error comparing signatures when the WordPress installation is using site_url filters (applied mostly to WPEngine sites).
* Bug Fix: General: Resolved PHP strict error on the mobile menu.
* Bug Fix: General: Fix timing of conditional checks, so that calling developer mode via a plugin works again.
* Bug Fix: General: Main page categories tab now properly translates module names.
* Bug Fix: Related Posts: Fix a typo, the "more info" link now works.
* Bug Fix: Likes: Improve button styling.
* Bug Fix: Likes: Remove unused UI for Reblog settings on social settings page.
* Bug Fix: Contact Form: Updated to no longer use a deprecated Akismet function.
* Bug Fix: Contact Form: Sends email to the administrator that is not marked as spam again.
* Bug Fix: Open Graph: Resolved PHP warning on open graph gallery pages when the gallery is empty.
= 3.0.1 =
Release Date: May 22, 2014
* Bug Fix: AtD: A wpcom-only function got synced by mistake and caused a few errors. Fixed.
* Bug Fix: Post By Email: Add static keyword to a function.
* Bug Fix: ShareDaddy: In the admin-side configuration of sharing links, we used a Path icon instead of Pinterest. Oops!
* Bug Fix: ShareDaddy: We inadvertently appended `via @jetpack` to some twitter shares. This is no longer the case.
* Bug Fix: Related Posts: Tidying up and relocation of the `resync` button formerly on the more info modal.
* Bug Fix: Infinite Scroll: Work better with core's MediaElement.js
* Bug Fix: Heartbeat: Undeclared variable fixed.
= 3.0 =
Release Date: May 20, 2014
* New User Interface for managing modules and settings
* New Module: Verfication Tools
* Enhancement: New look for the Sharing module
* Enhancement: Multiple improvements on which Twitter handle a Twitter card will display
* Enhancement: Add option to hide Google+ Authorship banner while still receiving the benefits
* Enhancement: Many Infinite Scroll enhancements to improve performance
* Enhancement: Infinite Scroll will use your CPT's display name instead of "Older Posts"
* Enhancement: JSON API added /media/new endpoint
* Enhancement: Added filter to assign new default image for Open Graph tags
* Enhancement: New [jetpack-related-posts] shortcode to add Related Posts to page instead of default placement
* Enhancement: Added SSO option to turn off login form completely, to use WordPress.com login exclusively
* Enhancement: The [googlemaps] shortcode allows for Google Maps Engine
* Enhancement: YouTube shortcode allows HD playback
* Enhancement: Smoother, Faster Tiled Galleries!
* Enhancement: New languages! Use Jetpack in Irish, Fulah, and Tigrinya
* Bug Fix: Use your browser's Back and Forward buttons when naviagating a Carousel
* Bug Fix: Various Related Posts fixes and improvements for added flexibility
* Bug Fix: WordPress 3.9: Restores ability to edit Contact Forms
* Bug Fix: WordPress 3.9: Restores Gallery Widget compatability
* Bug Fix: Ensure Markdown is kept when Bulk Editing posts
* Bug Fix: Improved Jetpack's Multisite Network Admin page for networks with a large number of sites
* Bug Fix: Ensure Sharing settings persist when Bulk Editing a post
* Bug Fix: Various other shortcode improvements
= 2.9.3 =
Release Date: April 10, 2014
* Important security update. CVE-2014-0173
= 2.9.2 =
Release Date: March 17, 2014
* Bug Fix: Publicize: When publishing from a mobile app or third-party client, Publicize now works again.
= 2.9.1 =
Release Date: March 6, 2014
* Bug Fix: After the Deadline: Fix a Javascript glitch that could prevent publishing of posts.
* Bug Fix: SSO: Disable the implementation of an option that had been removed before release. This would have only been an issue if a site administrator had enabled the module during an early beta of 2.9.
= 2.9 =
Release Date: February 26, 2014
* Added Multisite network functionality
* New Module: Related Posts
* Enhancement: Single Sign On
* Enhancement: Mixcloud shortcode and oEmbed
* Enhancement: Gist shortcode and oEmbed
* Enhancement: Modify Facebook Like Box widget to support new Facebook parameters
* Enhancement: Rolled the Push Notifications module into the Notes module
* Enhancement: Update kses with Markdown
* Enhancement: Adding keyboard accessibility to sharing buttons config page
* Enhancement: Pull WordPress testing bits from the new official git mirror at WordPress.org
* Bug Fix: Widget Visibility
* Bug Fix: Revisions box in Custom CSS
* Bug Fix: Fix several bugs in the WordPress Posts Widget so that it correctly updates
* Bug Fix: Limit Login Attempts no longer generates false positives from xmlrpc.
* Bug Fix: Clear max_posts transient on theme switch.
* Bug Fix: Lower priority of sync to allow all CPTs to be registered.
* Bug Fix: Contact form fields emailed in correct order.
* Other bugfixes and enhancements at https://github.com/Automattic/jetpack/commits/2.9
= 2.8 =
Release Date: January 31, 2014
* New Module: Markdown
* Module Update: Jetpack Monitor
* Enhancement: Infinite Scroll: Keep track of $current_day between requests so the_date() works well.
* Enhancement: Embeds: New filter to turn off embeds in comments.
* Enhancement: Contact Form: Add placeholder support.
* Enhancement: Widget: Gravatar Profile: Added filters to allow users to customize headings and fixed output of personal links.
* Enhancement: Facebook OG Tags: Add `published_time`, `modified_time`, and `author` if the post type supports it.
* Enhancement: Sharing: Display buttons on CPT archive pages.
* Enhancement: Sharing: Add `get_share_title` function and filter.
* Enhancement: Sharing: Add filter `sharing_display_link`.
* Enhancement: Twitter Timeline: Flesh out tweet limit option.
* Enhancement: Social Links: Add Google+ to the list of supported services.
* Enhancement: Stats: Improve dashboard styles in 3.8.
* Enhancement: Stats: No longer use Quantcast.
* Enhancement: Top Posts: Add `jetpack_top_posts_days` filter.
* Enhancement: AtD: Add TinyMCE 4 compatibility for its pending arrival in WordPress 3.9
* Enhancement: Genericons: Update to v3.0.3
* Enhancement: Tiled Galleries: Add alt attributes to images.
* Enhancement: Shortcode: YouTube: Accept protocol-relative URLs.
* Enhancement: Shortcode: Slideshow: Add white background option.
* Enhancement: Shortcode: YouTube: Add support for the two closed-caption arguments.
* Enhancement: Shortcode: Vimeo: Update the regex to support the new embed code.
* Enhancement: Shortcode: Google Maps: Update the regex to handle new format for embeds.
* Enhancement: Likes: Avoid a PHP Notice when $_POST['post_type'] is not set in meta_box_save.
* Enhancement: Smush images to save on file size.
* Enhancement: Publicize: Enable opt-in publicizing of custom post types.
* Bug Fix: Random Redirect: Further namespace to avoid conflicts.
* Bug Fix: Twitter Timeline: Resolve undefined index notice.
* Bug Fix: Featured Content: Add extra class_exists() check to be extra careful.
* Bug Fix: Facebook OG Tags: Change OG type of Home and Front Page to 'website'
* Bug Fix: Widget Visibility: Add support for old-style single use widgets.
* Bug Fix: Google Authorship: Support apostrophe in author names.
* Bug Fix: Media Extractor: Assorted graceful failure caveats.
* Bug Fix: Carousel: 'Link to None' bug fixed.
* Bug Fix: Embeds: Bandcamp: Switch escaping function for album and track IDs to handle (int)s greater than PHP_INT_MAX
* Bug Fix: Some plugins trying to catch brute-force attacks mistakenly flagged the Jetpack connection as one.
= 2.7 =
Release Date: December 11, 2013
* Enhancement: Google+ Publicize
* Enhancement: Add Cloudup as an oEmbed provider
* Enhancement: Subscriptions: Add subscribe_field_id filter to allow updated ids when using multiple widgets
* Enhancement: Infinite Scroll: TwentyFourteen Support
* Bug Fix: Contact Form: Fix warning when form is called outside the loop
* Bug Fix: Featured Content: Moving Settings to Customizer, provide option to set default tag as fallback, specify all supported post-types rather than just additional ones. Description Updates
* Bug Fix: Featured Content: Compat with 'additional_post_types' theme support argument. Comment updates
* Bug Fix: Featured Content: Make sure $term is an object before we treat it as one
* Bug Fix: GlotPress: Merge with latest GlotPress
* Bug Fix: Infinite Scroll: prevent Undefined index notice that can cause IS to fail when user has WP_DEBUG set to true
* Bug Fix: Infinite Scroll: Improved compatibility with Carousel, Tiled Galleries, VideoPress, and the `[audio]` and `[video]` shortcodes
* Bug Fix: Likes: Stop manually including version.php and trust the global. Some whitespace fixes, and if it's an attachment, follow the post_status of the parent post
* Bug Fix: Mobile Theme: Display password field for Gallery format protected posts
* Bug Fix: Sharing: Add new translation width for share button, and Google Plus icons
* Bug Fix: Shortcodes: Support Ineternational Google domains for maps
* Bug Fix: Shortcodes: Facebook Embeds: Register alternate permalink.php URL for posts
* Bug Fix: Subscriptions: Moved inline styles from widget email input to separate css file
* Bug Fix: Theme Tools: Fix glitch where random-redirect.php also showed as a plugin being deleted if you were deleting Jetpack
* Bug Fix: Misc: Internationalization & RTL updates
* Bug Fix: Misc: Prevent collisions with 'Facebook Featured Image & OG Meta Tags' plugin
= 2.6.1 =
Release Date: December 3, 2013
* Bug Fix: minor styling fix in pre- and post-MP6/3.8 UI changes.
* Bug Fix: Stats: spinner gif url fix when the user is viewing it over https.
* Bug Fix: Stats: Switch to esc_html from htmlspecialchars in error message -- better to be native
* Bug Fix: Media Extractor: some hosts don't compile unicode for preg_match_all, so we temporarily removed the block that depended on it.
* Bug Fix: Media Extractor: Add in some error handling for malformed URLs.
* Bug Fix: Twitter Cards: treat single-image galleries as a photo-type.
* Bug Fix: Update conflicting plugins for OG tags and Twitter Cards.
* Bug Fix: Correct max supported version number -- had been 3.6, update to 3.7.1
= 2.6 =
Release Date: November 28, 2013
* Enhancement: WPCC / now called [SSO](http://jetpack.me/support/sso/): refactored.
* Enhancement: Monitor: new module which will notify you if your site goes down(http://jetpack.me/support/monitor/).
* Enhancement: Custom CSS: replace Ace editor with Codemirror.
* Enhancement: Widgets: new “Display Posts” widget.
* Enhancement: WP-CLI: add commands to disconnect a site and manage modules.
* Enhancement: Contact Form: new filters, `grunion_contact_form_field_html` and `grunion_should_send_email`.
* Enhancement: Custom Post Types: new restaurant post type.
* Enhancement: Genericons: update to version 3.0.2.
* Enhancement: Infinite Scroll: many improvements and fixes.
* Enhancement: Likes: performance improvements.
* Enhancement: MP6: Jetpack icons are now compatible with WordPress 3.8.
* Enhancement: Open Graph: better descriptions, fallback images, and media extraction from video posts.
* Enhancement: Publicize: new background token tests for connected publicize services and display problems on settings sharing and add new post.
* Enhancement: Shortcodes: updated Bandcamp shortcode to support the `tracklist` and `minimal` attributes, as well as more `artwork` attribute values.
* Enhancement: Shortlinks: add Custom Post Type support.
* Enhancement: Subscriptions: add more ways to customize the subscriptions widget.
* Enhancement: Twitter Cards: better media management and card type detection, and better handling of conflicts with other Twitter Cards plugins.
* Enhancement: better handling of conflicts with other plugins.
* Bug Fix: After the Deadline: add a typeof check for `tinyMCEPreInit.mceInit` to prevent js errors.
* Bug Fix: Carousel: speed improvements and several bugfixes.
* Bug Fix: Contact Form: remove nonce creating issues with caching plugins.
* Bug Fix: Custom Post Types: Testimonials: return if featured image is empty so it can be removed after it’s been set.
* Bug Fix: Featured Content: add additional post type support through the `additional_post_types` argument.
* Bug Fix: Google Authorship: support apostrophes in Google+ profiles.
* Bug Fix: Google Authorship: use a regexp Instead of using `mb_convert_encoding`, which doesn’t enjoy universal support.
* Bug Fix: Heartbeat: ensure that it never triggers more than once per week.
* Bug Fix: JSON API: add new `?meta=` parameter that allows you to expand the data found in the `meta->links` responses.
* Bug Fix: JSON API: add new `is_private` response to the sites endpoint and `global_ID` response to the reader and post endpoints.
* Bug Fix: Mobile Theme: allow small images to display inline.
* Bug Fix: Mobile Theme: fix fatal errors for missing `minileven_header` function.
* Bug Fix: Photon: fix errors when an image is not uploaded properly.
* Bug Fix: Shortcodes: improvements to Archives, Google+, Presentations, Vine and Youtube.
* Bug Fix: Tiled Galleries: improve display of panoramic images and fix errors when an image is not uploaded properly.
= 2.5 =
Release Date: September 19, 2013
* Enhancement: Connect your Google+ profile and WordPress site to prove authorship of posts.
* Enhancement: Improved sharing buttons display.
* Enhancement: Comment on your posts using Google+ to signin.
* Enhancement: Embed Google+ posts into your posts.
* Enhancement: Added event logging capabilities for debugging
* Enhancement: LaTeX is now available in dev mode
* Enhancement: Introduced gallery widget
* Enhancement: Added new module: VideoPress
* Enhancement: Updated identity crisis checker
* Enhancement: Tiled Gallery widget added
* Enhancement: Google +1 button changed to Google+ Share button, to avoid confusion
* Enhancement: Added check to ensure Google+ authorship accounts have disconnected properly
* Enhancement: Updated identity crisis checker
* Enhancement: Tiled Gallery widget added
* Enhancement: Google +1 button changed to Google+ Share button, to avoid confusion
* Enhancement: Added the ability to embed Facebook posts
* Bug Fix: Redirect issue with G+ authorship when WordPress is not in the root directory
* Enhancement: Better security if carousel to prevent self-XSS
* Enhancement: Better handling of cookies for subsites on multisite installs
* Bug Fix: Check for post in G+ authorship before accessing it
= 2.4.2 =
Release Date: September 5, 2013
* Enhancement: Converted to module headers to detect Auto-Activating modules.
* Enhancement: WPCC: Added 'Close' link to deactivate WPCC in the admin nag.
* Enhancement: JSON API: Add User Nicename to the user data.
* Bug Fix: Contact Form: Stopped using a short tag.
* Bug Fix: Changed CSS selector to catch MP6 stylings.
* Bug Fix: Dropped __FILE__ references in class.jetpack.php in favor of JETPACK__PLUGIN_DIR constant, now code that deactivates the plugin from the connect nag works again.
* Bug Fix: Random Redirect: Add random-redirect to the plugins overriden list, in case someone is using Matt's Random Redirect plugin.
* Bug Fix: Tiled Gallery: Revert r757178 relating to tiled gallery defaults.
* Bug Fix: Return false, not zero, if $GLOBALS['content_width'] isn't defined.
* Bug Fix: WPCC: Don't call wp_login_url() in the constructor -- if someone is running a custom login page, that can break things if their plugin runs get_permalink as a filter before init.
* Bug Fix: Tiled Gallery: Add fallback if post_parent == 0 due to infinite_scroll_load_other_plugins_scripts.
* Bug Fix: Custom CSS: Set the ACE gutter z-index to 1.
* Bug Fix: Custom Post Types: Switch from wp_redirect() to wp_safe_redirect().
* Bug Fix: Likes: Set overflow:hidden; on the likes adminbar item.
* Bug Fix: Mobile Theme: Migrate where/when the custom header stuff is included.
* Bug Fix: Slideshow Shortcode: Add a height of 410px.
= 2.4.1 =
Release Date: September 4, 2013
* Enhancement: Don't auto-activate WPCC.
= 2.4 =
Release Date: August 30, 2013
* Enhancement: WordPress.com Connect (WPCC): New Module.
* Enhancement: Widget Visibility: New Module.
* Enhancement: Shortcode: Addition of new Twitter Timeline shortcode.
* Enhancement: Shortcode: Addition of new Presentation shortcode.
* Enhancement: Shortcode: Addition of new Vine shortcode.
* Enhancement: Custom Post Types: CPTs are available.
* Enhancement: Subscriptions: Add 'jetpack_is_post_mailable' filter.
* Enhancement: OpenGraph: Add Twitter Cards meta tags as well.
* Enhancement: Custom CSS: Update lessc and scssc preprocessors to 0.4.0 and 0.0.7 respectively.
* Enhancement: Omnisearch: Add Media results.
* Enhancement: Likes: Use a protocol-agnostic iframe, instead of forced HTTPS.
* Enhancement: Top Posts: Increase post limit.
* Enhancement: Publicize: Updated JS and UI.
* Enhancement: Photon: New filter to let site admins/owners enable photon for HTTPS urls.
* Enhancement: New jetpack_get_available_modules filter.
* Enhancement: Subscriptions: Antispam measures.
* Bug Fix: Add inline style to keep plugins/themes from inadvertently hiding the Connect box.
* Bug Fix: Custom CSS: Respect the new wp_revisions_to_keep filter.
* Bug Fix: Photon: Only hook jetpack_photon_url into the filter if the user has Photon active.
* Bug Fix: Heartbeat: Used wrong object, occasinally fatal-erroring out for the cron.
* Bug Fix: Add an empty debug.php file to the /modules/ folder, to solve some update issues where it never got deleted.
= 2.3.5 =
Release Date: August 12, 2013
* Enhancement: Added Path support to Publicize.
= 2.3.4 =
Release Date: August 6, 2013
* Bug Fix: Correct when output occurs with CSV export for feedback.
* Bug Fix: Tidy up the Heartbeat API.
* Enhancement: User Agent: Improve detecting of bots.
* Enhancement: Genericons: Make sure we're pulling the freshest version from genericons.com on each release.
* Enhancement: JSON API: Open up replies/new endpoints so that users can comment on blogs that are not in their access token.
* Enhancement: Photon: Apply to `get_post_gallery()` function as well.
* Enhancement: Tiled Galleries: Add a default bottom margin to be more robust out of the box.
* Translations: Adding in fresher translation files.
* Deprecation: Removing the retinization code for 3.4, as it was included in WordPress trunk from 3.5 onwards.
= 2.3.3 =
Release Date: July 26, 2013
* Bug Fix: We were inadvertently overwriting cron schedules with our Jetpack heartbeat. This should now be fixed.
* Enhancement: New Facebook Sharing icons.
* Enhancement: Minor update to the Minileven stylesheet.
= 2.3.2 =
Release Date: July 25, 2013
* Bug Fix: Fixed an issue where Facebook Pages were not available when connecting a Publicize account.
* Bug Fix: For some web hosts, fixed an issue where 'Jetpack ID' error would occur consistently on connecting to WordPress.com.
* Enhancement: Adding some new stats and heartbeat checking to Jetpack.
= 2.3.1 =
Release Date: July 2, 2013
* Enhancement: Social Links: Retooling the class for better consistency and performance behind the scenes.
* Enhancement: Omnisearch: Make it easier to search Custom Post Types. No longer need to extend the class, if all you want is a basic display. Just call `new Jetpack_Omnisearch_Posts( 'cpt' );`
* Enhancement: Sharing Buttons: LinkedIn: Use the official button's sharing link on the Jetpack implementation for a more consistent sharing experience and produce better results on LinkedIn's end.
* Enhancement: Debug / Connection: Better logic in determining whether the server can use SSL to connect to WPCOM servers.
* Enhancement: Sharing: Twitter: Calculate the size of the Tweet based on the short URL rather than the full URL size.
* Enhancement: Debug: More readable and understandable messages.
* Enhancement: Likes: Including some MP6 styles.
* Enhancement: Comments: Add new core classes to comment form. See http://core.trac.wordpress.org/changeset/24525
* Bug Fix: Omnisearch: Don't load everything initially, run the providers off admin_init, and then issue an action for folks to hook into.
* Bug Fix: Omnisearch: Modify some child class functions to match the parent's parameters and avoid strict notices in newer versions of PHP.
* Bug Fix: Omnisearch: Hide the search form in the module description if the current user can't use it.
* Bug Fix: Comment Form: Use edit_pages, not edit_page (fixes glitch in previous beta, never publicly released).
* Bug Fix: Twitter Timeline Widget: Additional testing of values and casting to default if they are nonconforming.
* Bug Fix: Sharing: Pinterest: Make the button wider if there's a count to avoid overlapping with others.
* Bug Fix: Post By Email: Change configuration_redirect to static.
* Bug Fix: Likes: Don't call configuration_redirect as a static, do it as a method.
* Bug Fix: Add some further security measures to module activation.
= 2.3 =
Release Date: June 19, 2013
* Enhancement: Omnisearch: Search once, get results from everything! Omnisearch is a single search box that lets you search many different things
* Enhancement: Debugger: this module helps you debug connection issues right from your dashboard, and contact the Jetpack support team if needed
* Enhancement: Social Links: this module is a canonical source, based on Publicize, that themes can use to let users specify where social icons should link to
* Enhancement: It’s now easier to find out if a module is active or note, thanks to the new Jetpack::is_module_active()
* Enhancement: Contact Form: You are now able to customize the submit button text thanks to the submit_button_text parameter
* Enhancement: Comments: We've added a filter to let users customize the Comment Reply label, and users can now also customize the prompt on the comment form again.
* Enhancement: Mobile Theme: Add genericons.css and registering it so it’s easily accessible to other modules that may want it
* Enhancement: Tiled Galleries: You can now customize the captions, thanks to the jetpack_slideshow_slide_caption filter
* Enhancement: Widgets: Twitter Timeline: Add the noscrollbar option
* Enhancement: Widgets: Facebook Like Box Widget: add a show_border attribute
* Enhancement: Widgets: FB Like Box: let Jetpack users override the iframe background color set in an inline style attribute by using the jetpack_fb_likebox_bg filter
* Bug Fix: Carousel: Fix a bug where double-clicking a gallery thumbnail broke the carousel functionality
* Bug Fix: Comments: Change “must-log-in” to class from ID
* Bug Fix: Contact Form: Make the Add Contact Form link a button, ala Add Media in core
* Bug Fix: Contact Form: Fix encoding of field labels
* Bug Fix: Contact Form: Remove references to missing images
* Bug Fix: Fix 2 XSS vulnerabilities
* Bug Fix: JSON API: Minor fixes for bbPress compatibility
* Bug Fix: JSON API: Fix metadata bugs
* Bug Fix: JSON API: Add a new hook that is fired when a post is posted using the API
* Bug Fix: JSON API: Prefork/REST: update path normalizer to accept versions other than 1
* Bug Fix: JSON API: Remove extra parenthesis in CSS
* Bug Fix: Custom CSS: Move content width filters higher up so that they’re active for all users, not just logged-in admins.
* Bug Fix: Custom CSS: All CSS properties that accept images as values need to be allowed to be declared multiple times so that cross-browser gradients work
* Bug Fix: Infinite Scroll: Allow themes to define a custom function to render the IS footer
* Bug Fix: Infinite Scroll: Fix up Twenty Thirteen styles for RTL and small viewports.
* Bug Fix: Likes: Fix ‘Call to undefined function’
* Bug Fix: Likes: Add scrolling no to iframe to make sure that like button in admin bar does not show scrollbars
* Bug Fix: Likes: Remove setInterval( JetpackLikesWidgetQueueHandler, 250 ) call that was causing heavy CPU load
* Bug Fix: Mobile Theme: Remove unused variable & function call
* Bug Fix: Publicize: Fix LinkedIn profile URL generation
* Bug Fix: Publicize: Better refresh handling for services such as LinkedIn and Facebook
* Bug Fix: Shortcodes: Audio shortcode: Treat src as element 0. Fixes audio shortcodes created by wp_embed_register_handler when an audio url is on a line by itself
* Bug Fix: Bandcamp: Updates to the Bandcamp shortcode
* Bug Fix: Stats: Fix missing function get_editable_roles on non-admin page loads
* Bug Fix: Widgets: Twitter Timeline: Fix HTML links in admin; set default values for width/height; change some of the sanitization functions
* Bug Fix: Widgets: Top Posts Widget: Exclude attachments
* Bug Fix: Widgets: Top Posts Widget: fix data validation for number of posts
* Bug Fix: Fix PHP warnings non-static method called dynamically
* Bug Fix: Fixed an issue in image extraction from HTML content
* Bug Fix: Open Graph: Change default minimum size for og:image too 200×200
* Note: The old Twitter widget was removed in favour of Twitter Timeline widget
* Note: Add is_module_active() to make it easier to detect what is and what isn’t
* Note: Compressing images via lossless methods
* Note: Tidying up jetpack’s CSS
* Note: Set the max DB version for our retina overrides that were meant to stop for WordPress 3.5
* Note: Updating spin.js to the current version, and shifting to the canonical jquery.spin.js library
* Note: Adding Jetpack_Options class, and abstracting out options functions to it
= 2.2.5 =
Release Date: May 1, 2013
* Enhancement: Stats: Counting of registered users' views can now be enabled for specific roles
* Bug Fix: Security tightening for metadata support in the REST API
* Bug Fix: Update the method for checking Twitter Timeline widget_id and update coding standards
* Bug Fix: Custom CSS: Allow the content width setting to be larger than the theme's content width
* Bug Fix: Custom CSS: Fix possible missing argument warning.
= 2.2.4 =
Release Date: April 26, 2013
* Bug Fix: JSON API compat file include was not assigning a variable correctly, thus throwing errors. This has been resolved.
= 2.2.3 =
Release Date: April 26, 2013
* Enhancement: Comments - Add the reply-title H3 to the comment form so that themes or user CSS can style it
* Enhancement: Custom CSS - Support for the CSS @viewport
* Enhancement: JSON API - Support for i_like, is_following, and is_reblogged
* Enhancement: JSON API: Custom Post Type Support
* Enhancement: JSON API: Meta Data Support
* Enhancement: JSON API: Bundled Support for bbPress
* Enhancement: JSON API: Additions of following, reblog, and like status for post endpoints.
* Enhancement: Shortcodes - Add Bandcamp shortcode
* Enhancement: Tiled Galleries - Add code to get blog_id
* Bug Fix: Carousel - Support relative image paths incase a plugin is filtering attachment URLs to be relative instead of absolute
* Bug Fix: Carousel - Add likes widget to images / Respect comment settings for name/email
* Bug Fix: Carousel - Make name and email optional if the setting in the admin area says they are
* Bug Fix: Contact Form - Bug fixes, including a fix for WP-CLI
* Bug Fix: Contact Form - Remove deprecated .live calls, delegate lazily to jQuery(document) since it's all in an iframe modal
* Bug Fix: Contact Form - RTL styles
* Bug Fix: Contact Form - Better handle MP6 icons
* Bug Fix: Custom CSS - array_shift() took a variable by reference, so avoid passing it the result of a function
* Bug Fix: Custom CSS - Allow case-insensitive CSS properties (<a href="http://wordpress.org/support/topic/two-issues-with-jetpack-css-module?replies=9">ref</a>)
* Bug Fix: Infinite Scroll - Maintain main query's `post__not_in` values when querying posts for IS
* Bug Fix: Infinite Scroll - Ensure that IS's `pre_get_posts` method isn't applied in the admin. Also fixes an incorrect use of `add_filter()` where `add_action()` was meant. Fixes #1696-plugins
* Bug Fix: Infinite Scroll - CSS update - IS footer was too large in Firefox
* Bug Fix: Infinite Scroll - Add bundled support for Twenty Thirteen default theme
* Bug Fix: Infinite Scroll - Include posts table's prefix when modifying the SQL WordPress generates to retrieve posts for Infinite Scroll
* Bug Fix: JSON API - Use wp_set_comment_status to change the comment status, to make sure actions are run where needed
* Bug Fix: Likes - Update style and logic for matching id's
* Bug Fix: Mobile Theme - Ensure that <code>minileven_actual_current_theme()</code> is child-theme compatible + other updates
* Bug Fix: Mobile Theme - Update method for finding currently active theme.
* Bug Fix: Notifications - Remove the postmessage.js enqueue since this feature solely supports native postMessage
* Bug Fix: Notifications - Clean up script enqueues and use core versions of underscore and backbone on wpcom as fallbacks
* Bug Fix: Notifications - Enqueue v2 scripts and style
* Bug Fix: Notifications - Prefix module-specific scripts and style to prevent collision
* Bug Fix: Notifications - Include lang and dir attributes on #wpnt-notes-panel so the notifications iframe can use these to display correctly
* Bug Fix: Open Graph: Use the profile OG type instead of author. Add tags for first/last names
* Bug Fix: Publicize - Remove the Yahoo! service because they stopped supporting that API entirely
* Bug Fix: Publicize - fix fatal errors caused by using a method on a non-object. Props @ipstenu
* Bug Fix: Sharing - Adding 2x graphics for Pocket sharing service
* Bug Fix: Sharing - Bug fixes, and a new filter
* Bug Fix: Shortcodes - Audio: make sure that the Jetpack audion shortcode does not override the 3.6 core audio shortcode. Also, we need to filter the old Jetpack-style shortcode to properly set the params for the Core audio shortcode.
* Bug Fix: Shortcodes - Audio: Re-enable the flash player
* Bug Fix: Shortcodes - Slideshow: RTL styling update
* Bug Fix: Tiled Galleries - Fix IE8 display bug where it doesn't honor inline CSS for width on images
* Bug Fix: Tiled Galleries - Remove depreacted hover call, use mouseenter mouseleave instead
* Enhancement: Twitter Timeline Widget: New JavaScript based widget. Old one will discontinue May 7th.
= 2.2.2 =
Release Date: April 5, 2013
* Enhancement: Mobile Theme: Add controls for custom CSS.
* Enhancement: Sharing: Add Pocket to the available services.
* Bug Fix: Custom CSS: Update the method for generating content width setting.
* Bug Fix: JSON API: Security updates.
* Bug Fix: Likes: Add settings for email notifications and misc style updates.
* Bug Fix: Notifications: Add the post types to sync after init.
* Bug Fix: Publicize: RTL styling.
* Bug Fix: Shortcodes: security fixes and function prefixing.
* Bug Fix: Widgets: Update wording on the Top Posts widget for clarity.
* Bug Fix: Jetpack Post Images security fixes.
= 2.2.1 =
Release Date: March 28, 2013
* Enhancement: Development Mode: Define the `JETPACK_DEV_DEBUG` constant to `true` to enable an offline mode for localhost development. Only modules that don't require a WordPress.com connection can be enabled in this mode.
* Enhancement: Likes: Added the number of likes to the wp-admin/edit.php screens.
* Enhancement: Mobile Theme - design refresh
* Enhancement: Shortcodes - Add a filter to the shortcode loading section so that a plugin can override what Jetpack loads for shortcodes
* Enhancement: Widgets - Filter Jetpack's widgets so that a plugin can control which widgets get loaded
* Bug Fix: Comments - Add in a wrapper div with id='commentform'
* Bug Fix: Contact Form - Added date field with datepicker
* Bug Fix: Contact Form - Allowed non-text widgets to use contact forms by running their output through the widget_text filter
* Bug Fix: Custom CSS - Allowing color values to be defined multiple times
* Bug Fix: Custom CSS - Dynamically loading the correct CSS/LESS/SCSS mode for the CSS editor if the user changes the preprocessor
* Bug Fix: Custom CSS - Using the unminified worker CSS
* Bug Fix: Custom CSS - Added rule: reminder about using .custom-background on body selector
* Bug Fix: Custom CSS - Modified rule: Removed portion of overqualification rule that deems 'a.foo' overqualified if there are no other 'a' rules
* Bug Fix: Custom CSS - Ensuring that the editor and the textarea behind it are using the same font so that the cursor appears in the correct location
* Bug Fix: Custom CSS - Fix a bug that caused some sites to always ignore the base theme's CSS when in preview mode
* Bug Fix: Custom CSS - Run stripslashes() before passing CSS to save()
* Bug Fix: Custom CSS - Moving inline CSS and JavaScript into external files
* Bug Fix: Infinite Scroll - Use the `is_main_query()` function and query method
* Bug Fix: Infinite Scroll - Remove unused styles and an unnecessary margin setting
* Bug Fix: Infinite Scroll - Allow the query used with IS to be filtered, so IS can be applied to a new query within a page template
* Bug Fix: JSON API - Catch the 'User cannot view password protected post' error from can_view_post and bypass it for likes actions if the user has the password entered
* Bug Fix: Likes - Bump cache buster, Don't show likes for password protected posts
* Bug Fix: Notifications - Remove a redundant span closing tag
* Bug Fix: Photon - If an image is already served from Photon but the anchor tag that surrounds it hasn't had its `href` value rewritten to use Photon, do so. Accounts for WP galleries whose individual items are linked to the original image files
* Bug Fix: Publicize - Allows GLOBAL_CAP to be filtered, Adds an AYS to connection deletion, UI improvement for MP6 (and in general)
* Bug Fix: Sharedaddy - Fire the sharing redirect earlier for increased plugin compatibility
* Bug Fix: Stats - Move the display:none CSS output to wp_head so it gets written inside the HEAD tag if the option to hide the stats smilie is active
* Bug Fix: Tiled Galleries - A more descriptive name for the default gallery type
* Bug Fix: Tiled Galleries - Hide the Columns setting for gallery types that don't support it
* Bug Fix: Run the admin_menu action late so that plugins hooking into it get a chance to run
* Bug Fix: Prophylactic strict equality check
= 2.2 =
Release Date: February 26, 2013
* Enhancement: Likes: Allow your readers to show their appreciation of your posts.
* Enhancement: Shortcodes: SoundCloud: Update to version 2.3 of the SoundCloud plugin (HTML5 default player, various fixes).
* Enhancement: Shortcodes: Subscriptions: Add a shortcode to enable placement of a subscription signup form in a post or page.
* Enhancement: Sharedaddy: Allow selecting multiple images from a post using the Pinterest share button.
* Enhancement: Contact Form: Allow feedbacks to be marked spam in bulk.
* Enhancement: Widgets: Readmill Widget: Give your visitors a link to send your book to their Readmill library.
* Note: Notifications: Discontinue support for Internet Explorer 7 and below.
* Bug Fix: JSON API: Fix authorization problems that some users were experiencing.
* Bug Fix: JSON API: Sticky posts were not being sorted correctly in /posts requests.
* Bug Fix: Stats: sync stats_options so server has roles array needed for view_stats cap check.
* Bug Fix: Infinite Scroll: Display improvements.
* Bug Fix: Infinite Scroll: WordPress compatibility fixes.
* Bug Fix: Photon: Only rewrite iamge urls if the URL is compatible with Photon.
* Bug Fix: Photon: Account for registered image sizes with one or more dimesions set to zero.
* Bug Fix: Subscriptions: Make HTML markup more valid.
* Bug Fix: Subscriptions: Fixed notices displayed in debug mode.
* Bug Fix: Custom CSS: CSS warnings and errors should now work in environments where JavaScript is concatenated or otherwise modified before being served.
* Bug Fix: Hovercards: WordPress compatibility fixes.
* Bug Fix: Improved image handling for the Sharing and Publicize modules.
* Bug Fix: Carousel: Display and Scrollbar fixes.
* Bug Fix: Tiled Galleries: Restrict images in tiled galleries from being set larger than their containers.
* Bug Fix: Widgets: Gravatar Profile: CSS fixes.
* Bug Fix: Publicize: Strip HTML comments from the data we send to the third party services.
* Bug Fix: Notifications: Dropped support for IE7 and below in the notifications menu.
* Bug Fix: Custom CSS Editor: Allow custom themes to save CSS more easily.
* Bug Fix: Infinite Scroll: Waits until the DOM is ready before loading the scrolling code.
* Bug Fix: Mobile Theme: If the user has disabled the custom header text color, show the default black header text color.
* Bug Fix: Mobile Theme: Fix for the "View Full Site" link.
* Bug Fix: Mobile Theme: Use a filter to modify the output of wp_title().
* Bug Fix: Publicize: Twitter: Re-enable character count turning red when more than 140 characters are typed.
= 2.1.2 =
Release Date: February 5, 2013
* Enhancement: Infinite Scroll: Introduce filters for Infinite Scroll.
* Enhancement: Shortcodes: TED shortcode.
* Bug Fix: Carousel: Make sure to use large image sizes.
* Bug Fix: Carousel: Clicking the back button in your browser after exiting a carousel gallery brings you back to the gallery.
* Bug Fix: Carousel: Fix a scrollbar issue.
* Bug Fix: Comments: Move the get_avatar() function out of the base class.
* Bug Fix: Contact Form: Prevent the form from displaying i18n characters.
* Bug Fix: Contact Form: Remove the !important CSS rule.
* Bug Fix: Infinite Scroll: Main query arguments are not respected when using default permalink.
* Bug Fix: JSON API: Trap 'wp_die' for new comments and image uploads.
* Bug Fix: JSON API: Use a better array key for the user_ID.
* Bug Fix: JSON API: Make the class instantiable only once, but multi-use.
* Bug Fix: JSON API: Fix lookup of pages by page slug.
* Bug Fix: JSON API: Updates for post likes.
* Bug Fix: Mobile Theme: Remove Android download link for BB10 and Playbook.
* Bug Fix: Open Graph: Stop using Loop functions to get post data for meta tags.
* Bug Fix: Photon: Suppress and check for warnings when pasing_url and using it.
* Bug Fix: Photon: Ensure full image size can be used.
* Bug Fix: Photon: Resolve Photon / YouTube embed conflict.
* Bug Fix: Photon: Fix dimension parsing from URLs.
* Bug Fix: Photon: Make sure that width/height atts are greater than zero.
* Bug Fix: Sharedaddy: Layout fixes for share buttons.
* Bug Fix: Sharedaddy: Always send Facebook a language locale.
* Bug Fix: Sharedaddy: Don't look up share counts for empty URLs.
* Bug Fix: Shortcodes: Ensure that images don't overflow their containers in the slideshow shortcode.
* Bug Fix: Shortcodes: only enqueue jquery if archive supports Infinite Scroll in the Audio Shortcode.
* Bug Fix: Tiled Galleries: Use a more specific class for gallery item size to avoid conflicts.
* Bug Fix: Tiled Galleries: Fixing scrolling issue when tapping on a Tiled Gallery on Android.
* Bug Fix: Widgets: Gravatar profile widget typo.
* Bug Fix: Widgets: Add (Jetpack) to widget titles.
* Bug Fix: Widgets: Twitter wasn't wrapping links in the t.co shortener.
* Bug Fix: Widgets: Facebook Likebox updates to handling the language locale.
* Bug Fix: Widgets: Top Posts: Fixed a WP_DEBUG notice.
* Bug Fix: Widgets: Gravatar Profile Widget: transient names must be less than 45 characters long.
* Bug Fix: typo in delete_post_action function.
* Bug Fix: Load rendered LaTeX image on same protocol as its page.
= 2.1.1 =
Release Date: January 5, 2013
* Bug Fix: Fix for an error appearing for blogs updating from Jetpack 1.9.2 or earlier to 2.1.
= 2.1 =
Release Date: January 4, 2013
* Enhancement: Tiled Galleries: Show off your photos with cool mosaic galleries.
* Enhancement: Slideshow gallery type: Display any gallery as a slideshow.
* Enhancement: Custom CSS: Allow zoom property.
* Enhancement: Stats: Show WordPress.com subscribers in stats.
* Bug Fix: Fix errors shown after connecting Jetpack to WordPress.com.
* Bug Fix: Photon: Fix bug causing errors to be shown in some posts.
* Bug Fix: Photon: Convert all images in posts when Photon is active.
* Bug Fix: Infinite Scroll: Improved compatibility with the other modules.
* Bug Fix: Custom CSS: Updated editor to fix missing file errors.
* Bug Fix: Publicize: Don't show the Facebook profile option if this is a Page-only account.
* Bug Fix: Photon: A fix for photos appearing shrunken if they didn't load quickly enough.
* Bug Fix: Sharing: A compatibility fix for posts that only have partial featured image data.
* Bug Fix: Publicize/Sharing: For sites without a static homepage, don't set the OpenGraph url value to the first post permalink.
* Bug Fix: Mobile Theme: Better compatibility with the customizer on mobile devices.
* Bug Fix: Sharing: Don't show sharing options on front page if that option is turned off.
* Bug Fix: Contact Form: Fix PHP warning shown when adding a Contact Form in WordPress 3.5.
* Bug Fix: Photon: Handle images with relative paths.
* Bug Fix: Contact Form: Fix compatibility with the Shortcode Embeds module.
= 2.0.4 =
Release Date: December 14, 2012
* Bug Fix: Open Graph: Correct a bug that prevents Jetpack from being activated if the SharePress plugin isn't installed.
= 2.0.3 =
Release Date: December 14, 2012
* Enhancement: Infinite Scroll: support [VideoPress](http://wordpress.org/extend/plugins/video/) plugin.
* Enhancement: Photon: Apply to all images retrieved from the Media Library.
* Enhancement: Photon: Retina image support.
* Enhancement: Custom CSS: Refined editor interface.
* Enhancement: Custom CSS: Support [Sass](http://sass-lang.com/) and [LESS](http://lesscss.org/) with built-in preprocessors.
* Enhancement: Open Graph: Better checks for other plugins that may be loading Open Graph tags to prevent Jetpack from doubling meta tag output.
* Bug Fix: Infinite Scroll: Respect relative image dimensions.
* Bug Fix: Photon: Detect custom-cropped images and use those with Photon, rather than trying to use the original.
* Bug Fix: Custom CSS: Fix for bug preventing @import from working with url()-style URLs.
= 2.0.2 =
Release Date: November 21, 2012
* Bug Fix: Remove an erroneous PHP short open tag with the full tag to correct fatal errors under certain PHP configurations.
= 2.0.1 =
Release Date: November 21, 2012
* Enhancement: Photon: Support for the [Lazy Load](http://wordpress.org/extend/plugins/lazy-load/) plugin.
* Bug Fix: Photon: Fix warped images with un- or under-specified dimensions.
* Bug Fix: Photon: Fix warped images with pre-photonized URLs; don't try to photonize them twice.
* Bug Fix: Infinite Scroll: Check a child theme's parent theme for infinite scroll support.
* Bug Fix: Infinite Scroll: Correct a bug with archives that resulted in posts appearing on archives that they didn't belong on.
* Bug Fix: Publicize: Send the correct shortlink to Twitter (et al.) if your site uses a shortener other than wp.me.
* Bug Fix: Sharing: Improved theme compatibility for the Google+ button.
* Bug Fix: Notifications: Use locally-installed Javascript libraries if available.
= 2.0 =
Release Date: November 8, 2012
* Enhancement: Publicize: Connect your site to popular social networks and automatically share new posts with your friends.
* Enhancement: Post By Email: Publish posts to your blog directly from your personal email account.
* Enhancement: Photon: Images served through the global WordPress.com cloud.
* Enhancement: Infinite Scroll: Better/faster browsing by pulling the next set of posts into view automatically when the reader approaches the bottom of the page.
* Enhancement: Open Graph: Provides more detailed information about your posts to social networks.
* Enhancement: JSON API: New parameters for creating and viewing posts.
* Enhancement: Improved compatibility for the upcoming WordPress 3.5.
* Bug Fix: Sharing: When you set your sharing buttons to use icon, text, or icon + text mode, the Google+ button will display accordingly.
* Bug Fix: Gravatar Profile Widget: Allow basic HTML to be displayed.
* Bug Fix: Twitter Widget: Error handling fixes.
* Bug Fix: Sharing: Improved theme compatibility
* Bug Fix: JSON API: Fixed error when creating some posts in some versions of PHP.
= 1.9.2 =
Release Date: October 29, 2012
* Bug Fix: Only sync options on upgrade once.
= 1.9.1 =
* Enhancement: Notifications feature is enabled for logged-out users when the module is active & the toolbar is shown by another plugin.
* Bug Fix: Use proper CDN addresses to avoid SSL cert issues.
* Bug Fix: Prioritize syncing comments over deleting comments on WordPress.com. Fixes comment notifications marked as spam appearing to be trashed.
= 1.9 =
Release Date: October 26, 2012
* Enhancement: Notifications: Display Notifications in the toolbar and support reply/moderation of comment notifications.
* Enhancement: Mobile Push Notifications: Added support for mobile push notifications of new comments for users that linked their accounts to WordPress.com accounts.
* Enhancement: JSON API: Allows applications to send API requests via WordPress.com (see [the docs](http://developer.wordpress.com/docs/api/) )
* Enhancement: Sync: Modules (that require the data) sync full Post/Comment to ensure consistent data on WP.com (eg Stats)
* Enhancement: Sync: Improve syncing of site options to WP.com
* Enhancement: Sync: Sync attachment parents to WP.com
* Enhancement: Sync: Add signing of WP.com user ids for Jetpack Comments
* Enhancement: Sync: Mark and obfuscate private posts.
* Enhancement: Privacy: Default disable enhanced-distribution and json-api modules if site appears to be private.
* Enhancement: Custom CSS: allow applying Custom CSS to mobile theme.
* Enhancement: Sharing: On HTTPS pageloads, load as much of the sharing embeds as possible from HTTPS URLs.
* Enhancement: Contact Form: Overhaul of the contact form code to fix incompatibilites with other plugins.
* Bug Fix: Only allow users with manage_options permission to enable/disable modules
* Bug Fix: Custom CSS: allow '/' in media query units; e.g. (-o-min-device-pixel-ratio: 3/2)
* Bug Fix: Custom CSS: leave comments alone in CSS when editing but minify on the frontend
* Bug Fix: Sharing: Keep "more" pane open so Google+ Button isn't obscured
* Bug Fix: Carousel: Make sure the original size is used, even when it is exceedingly large.
* Bug Fix: Exclude iPad from Twitter on iPhone mobile browsing
* Bug Fix: Sync: On .org user role changes synchronize the change to .com
* Bug Fix: Contact Form: Fix a bug where some web hosts would reject mail from the contact form due to email address spoofing.
= 1.8.3 =
Release Date: October 23, 2012
* Bug Fix: Subscriptions: Fix a bug where subscriptions were not being sent from the blog.
* Bug Fix: Twitter: Fix a bug where the Twitter username was being saved as blank.
* Bug Fix: Fix a bug where Contact Form notification emails were not being sent.
= 1.8.2 =
Release Date: October 4, 2012
* Bug Fix: Subscriptions: Fix a bug where subscriptions were not sent for posts and comments written by some authors.
* Bug Fix: Widgets: Fix CSS that was uglifying some themes (like P2).
* Bug Fix: Widgets: Improve Top Posts and Pages styling.
* Bug Fix: Custom CSS: Make the default "Welcome" message translatable.
* Bug Fix: Fix Lithuanian translation.
= 1.8.1 =
Release Date: September 28, 2012
* Bug Fix: Stats: Fixed a bug preventing some users from viewing stats.
* Bug Fix: Mobile Theme: Fixed some disabled toolbar buttons.
* Bug Fix: Top Posts widget: Fixed a bug preventing the usage of the Top Posts widget.
* Bug Fix: Mobile Theme: Fixed a bug that broke some sites when the Subscriptions module was not enabled and the Mobile Theme module was enabled.
* Bug Fix: Mobile Theme: Made mobile app promos in the Mobile Theme footer opt-in.
* Bug Fix: Twitter Widget: A fix to prevent malware warnings.
* Bug Fix: Mobile Theme: Fixed a bug that caused errors for some users with custom header images.
= 1.8 =
Release Date: September 27, 2012