Adds DFs
This commit is contained in:
889
spec/fixtures/db/dynamic_finders.yml
vendored
889
spec/fixtures/db/dynamic_finders.yml
vendored
File diff suppressed because it is too large
Load Diff
1038
spec/fixtures/dynamic_finders/expected.yml
vendored
1038
spec/fixtures/dynamic_finders/expected.yml
vendored
File diff suppressed because it is too large
Load Diff
302
spec/fixtures/dynamic_finders/plugin_version/a-z-listing/change_log/changelog.md
vendored
Normal file
302
spec/fixtures/dynamic_finders/plugin_version/a-z-listing/change_log/changelog.md
vendored
Normal file
@@ -0,0 +1,302 @@
|
||||
# Full Changelog #
|
||||
|
||||
## 2.2.0 ##
|
||||
|
||||
* Add `get_the_item_post_count` and `the_item_post_count` template methods to get or display the number of posts associated with a term.
|
||||
* Add support for `get-all-children` when specifying a `parent-term`.
|
||||
* Add extra filename for template matching: `a-z-listing-$slug.php` where `$slug` is the slug of the post containing the shortcode.
|
||||
* Deprecate PHP 5.3-5.5. Please ensure you are running at least PHP 5.6. The plugin may work on older PHP versions, but compatibility is not guaranteed.
|
||||
* Bugfix for incorrect behaviour of `exclude-terms` in the shortcode. Thanks go to Chris Skrzypchak for finding this.
|
||||
|
||||
## 2.1.4 ##
|
||||
|
||||
### Bug Fix ###
|
||||
|
||||
* Fixed a spurious `NOTICE` message (shown below) when error logging is output to the browser. Thanks to the discovery by @npiper.
|
||||
* If your site is not showing the message below then you do not need to upgrade with any urgency.
|
||||
|
||||
`Notice: Trying to get property of non-object in [Path-to-WordPress]/wp-content/plugins/a-z-listing/classes/class-a-z-listing.php on line 215`
|
||||
|
||||
## 2.1.3 ##
|
||||
|
||||
### Bug Fix ###
|
||||
|
||||
* Fixed the bug reported by @ighosts22 where the letter for non-alphabetic items was not pointing at the list of items.
|
||||
* Fixed incorrect behaviour discovered after adding tests to the automated testing to verify that I correctly fixed the above bug.
|
||||
|
||||
## 2.1.2 ##
|
||||
|
||||
### Bug Fix ###
|
||||
|
||||
* Post links in 2.1.0 and 2.1.1 included a series of `%09` which caused visitors' clicks to return a 404 Not Found error. Thanks to @forestpump for their effort in finding the problem and highlighting the fix.
|
||||
|
||||
## 2.1.1 ##
|
||||
|
||||
### Bug Fix ###
|
||||
|
||||
* Replace hardcoded path to `admin-ajax.php` in widget administration javascript.
|
||||
* This release fixes the widget administration form for sites running in a path similar to [https://example.com/wp/](https://example.com/wp/). You should install this fix if your site is a configured in a subfolder to be able to successfully configure the widget.
|
||||
* Sites running in the top-level, e.g. [https://example.com/](https://example.com/), already work correctly and their behaviour is unchanged by this fix. You do not need to hurry to update if your site is configured at the top-level without a subfolder.
|
||||
|
||||
## 2.1.0 ##
|
||||
|
||||
### Bug Fixes ###
|
||||
|
||||
* Fix widget configuration autocomplete fields for target post and parent post in the theme customizer
|
||||
* Fix taxonomy-term-filtered listings displaying all posts (e.g. shortcodes of the form `[a-z-listing taxonomy="category" terms="term"])
|
||||
* Fix `get_the_item_object()` to work with old-style overridden indices
|
||||
* Fix `get_the_item_object()` to correctly extract the item ID and load the correct item
|
||||
* Improve javascript on the widget configuration
|
||||
* Clarified the examples with explanations about "post types", "taxonomies", and "terms" to explain what each of these mean.
|
||||
|
||||
### New Features ###
|
||||
|
||||
* Add parent-page attribute to the shortcode
|
||||
* Add simpler and safer filter for overriding the index letter for an item
|
||||
* Add simpler and safer filter for overriding the title for an item
|
||||
* Add new function for fetching meta data in a template: `$a_z_listing->get_item_meta()`
|
||||
* Allow exclude-terms to be used with display="posts"
|
||||
* Moved template loading function outside of the `A_Z_Query` class to prevent accidental access to the plugin internal structure
|
||||
|
||||
## 2.0.6 ##
|
||||
|
||||
* *Personal Note:* Sorry to everyone who upgraded to 2.0.0 thru to 2.0.5 about yet another update. I have failed you all by shipping faulty versions to you, and I'm sorry, especially so that you've had to endure so many updates the past few days.
|
||||
* Fix widget target post support
|
||||
|
||||
## 2.0.5 ##
|
||||
|
||||
* Fix filtering posts by multiple taxonomy terms
|
||||
|
||||
## 2.0.4 ##
|
||||
|
||||
* Fix styling error causing two or more posts to sometimes appear on the same line
|
||||
|
||||
## 2.0.3 ##
|
||||
|
||||
* Minor style tweak to fix short listings, and long titles
|
||||
|
||||
## 2.0.2 ##
|
||||
|
||||
* Fix broken styling in 2.0.0
|
||||
|
||||
## 2.0.1 ##
|
||||
|
||||
* Fix javascript error on widgets screen
|
||||
|
||||
## 2.0.0 ##
|
||||
|
||||
* Improved widget configuration.
|
||||
* New attribute added to the shortcode when `display="posts"`:
|
||||
* `exclude-posts`: remove specific posts from the list
|
||||
* New attributes added to the shortcode when `display="terms"`:
|
||||
* `exclude-terms`: sets the terms to exclude from display
|
||||
* `parent-term`: set the parent that all displayed terms must be organised under
|
||||
* `hide-empty-terms`: hide terms that have no posts associated
|
||||
* Fix the stylesheet to better cope with variances in font-size and text length in the alphabet links list and widget.
|
||||
* Introduce PHP classes for adding numbers and grouping to the alphabet. Allows unhooking from the filters to undo the changes, where previously you could not unhook these modifications once they'd been applied.
|
||||
|
||||
### BREAKING CHANGES ###
|
||||
|
||||
* Multi column example:
|
||||
If you have copied the multi-column example in previous releases to your theme folder then you will need to perform some manual steps.
|
||||
If you have not edited the file, just delete it and the new template from the plugin will take control and perform the same functionality.
|
||||
If you have modified the example template then you will need to compare with the file in the plugin at `templates/a-z-listing.php` and merge any changes into your template.
|
||||
* Template customisations:
|
||||
If you have customised the in-built templates or written your own then you may experience breakage due to the post object not being loaded automatically.
|
||||
If you require the template to access more than the post title and URL then you will need to add an additional call after `the_item()` to load the full `WP_Post` object into memory.
|
||||
To load the post object you need to call `$a_z_query->get_the_item_object( 'I understand the issues!' );`.
|
||||
**The argument must read exactly as written here to confirm that you understand that this might cause slowness or memory usage problems.**
|
||||
*This step is purposely omitted to save memory and try to improve performance.*
|
||||
|
||||
## 1.9.1 ##
|
||||
|
||||
Add CSS classes to letters indicating presence of posts or not:
|
||||
|
||||
* `has-posts` allows styling of letters that have posts visible in the listing
|
||||
* `no-posts` allows styling of letters that do not have any posts visible in the listing
|
||||
|
||||
You can use these classes to hide letters that have no posts by including the following CSS rule:
|
||||
|
||||
```css
|
||||
.az-letters ul.az-links li.no-posts {
|
||||
display: none;
|
||||
}
|
||||
```
|
||||
|
||||
## 1.9.0 ##
|
||||
|
||||
* Fix multi-column example template
|
||||
* Update multi-column styles to include display:grid support
|
||||
* Add back-to-top link
|
||||
* Add server system requirements to readme
|
||||
* Add PHP section to readme including link to API Reference
|
||||
|
||||
## 1.8.0 ##
|
||||
|
||||
* Add extra shortcode attributes:
|
||||
* `numbers`: appends or prepends numerals to the alphabet
|
||||
* Default value: unset
|
||||
* Can be set to either `before` or `after`.
|
||||
* Any value other than unset, `before` or `after` will default to **appending** numerals to the alphabet
|
||||
* `grouping`: tells the plugin if and how to group the alphabet
|
||||
* Default value: unset
|
||||
* Can be set to any positive number higher than `1` or the value `numbers`
|
||||
* Any value other than a positive number or the value `numbers` will default to disabling all grouping functionality
|
||||
* When set to a number higher than `1` the listing will group letters together into ranges
|
||||
* For example, if you chose `3` then a latin alphabet will group together `A`, `B`, and `C` into `A-C`. Likewise for `D-F`, `G-I` and so-on
|
||||
* When using this setting, if numbers are also shown via the `numbers="before"` or `numbers="after"` attribute then they will be shown as a single separate group `0-9`
|
||||
* When set to the value `numbers` it will group numerals into a single group `0-9`
|
||||
* This requires the numbers to be displayed via the `numbers="before"` or `numbers="after"` attributes
|
||||
* `alphabet`: allows you to override the alphabet that the plugin uses
|
||||
* Default value: unset.
|
||||
* When this attribute is unset, the plugin will either use the untranslated default, or if [glotpress](https://translate.wordpress.org/projects/wp-plugins/a-z-listing) includes a translation for your site's language as set in `Admin -> Settings -> Site Language` it will use that translation.
|
||||
* The current untranslated default is: `AÁÀÄÂaáàäâ,Bb,Cc,Dd,EÉÈËÊeéèëê,Ff,Gg,Hh,IÍÌÏÎiíìïî,Jj,Kk,Ll,Mm,Nn,OÓÒÖÔoóòöô,Pp,Qq,Rr,Ssß,Tt,UÚÙÜÛuúùüû,Vv,Ww,Xx,Yy,Zz`
|
||||
* Accepts a single line of letters/symbols, which need to be separated via the comma character `,`
|
||||
* Including more than one letter/symbol in each group will display posts starting with any of those under the same section
|
||||
* The first letter/symbol in each group is used as the group's heading when displayed on your site
|
||||
* Bugfix: Shortcode to display taxonomy terms wouldn't also display numbers groups. Hat-tip to @sotos for the report.
|
||||
|
||||
## 1.7.2 ##
|
||||
|
||||
* Bugfix: Previous release broke the shortcode
|
||||
|
||||
## 1.7.1 ##
|
||||
|
||||
* Add additional filters allowing for hyphens or underscores to be used when defining. The readme.txt incorrectly used then-unsupported names with hyphens in examples so now we support both.
|
||||
* Add numbers="before" and numbers="after" in shortcode
|
||||
|
||||
## 1.7.0 ##
|
||||
|
||||
* Add support for taxonomy term listings to the shortcode
|
||||
* Add support for filtering by taxonomy terms to the shortcode
|
||||
|
||||
## 1.6.5 ##
|
||||
|
||||
* Regression fix for widget accessing WP_Post object as array
|
||||
|
||||
## 1.6.4 ##
|
||||
|
||||
* Bugfix for accessing array as object PHP Warning. Reported by @babraham76
|
||||
|
||||
## 1.6.2 ##
|
||||
|
||||
* Bugfix for more complex templates - accessing post thumbnails failed.
|
||||
|
||||
## 1.6.1 ##
|
||||
|
||||
* Regression fix: Notice was emitted by PHP about invalid variable. This was cosmetic only, and had no impact on functionality.
|
||||
|
||||
## 1.6.0 ##
|
||||
|
||||
* Fix bug of case sensitity in listings order
|
||||
* Better warning of deprecated functions when called by other plugins or themes
|
||||
|
||||
## 1.5.4 ##
|
||||
|
||||
* Fix post links when using an alternative titles taxonomy (discovered by [bugnumber9](https://profiles.wordpress.org/bugnumber9))
|
||||
* Ensure that we don't access rogue objects. Warnings and errors in 1.5.3 are squashed now.
|
||||
* Verified that [tests](https://travis-ci.org/bowlhat/wp-a-z-listing) pass correctly before releasing this version.
|
||||
|
||||
## 1.5.3 ##
|
||||
|
||||
* Regression in 1.5.2 causing empty listing is fixed
|
||||
|
||||
## 1.5.2 ##
|
||||
|
||||
* Regression fix for styling loading - seems the widget code was still causing issues
|
||||
* Add inline PHPdoc to all functions and custom filters
|
||||
|
||||
## 1.5.1 ##
|
||||
|
||||
* Fix multiple post-types support for shortcode
|
||||
* Update documentation to explain how to show multiple post-types with the shortcode
|
||||
|
||||
## 1.5.0 ##
|
||||
|
||||
* Ensure styling is loaded correctly
|
||||
* Ensure styling works correctly when using the multi-column template
|
||||
|
||||
## 1.4.1 ##
|
||||
|
||||
* Fix warning introduced by 1.4.0 about implicit coercion between WP_Post and string
|
||||
|
||||
## 1.4.0 ##
|
||||
|
||||
* Add support for passing a WP_Post object instead of an ID to the widget function
|
||||
* Fix widget config not saving post-type parameter
|
||||
* Fix warning of incorrect usage of `has_shortcode()` function
|
||||
* Fix section-targeting to work as described
|
||||
|
||||
## 1.3.1 ##
|
||||
|
||||
* Fix broken admin pages caused by 1.3.0
|
||||
|
||||
## 1.3.0 ##
|
||||
|
||||
* Added targeted stylesheet loading to enqueue only on pages where the short-code is active
|
||||
* Further improved default stylesheet loading
|
||||
|
||||
## 1.2.0 ##
|
||||
|
||||
* Changed default to apply the in-built styles, unless overridden
|
||||
|
||||
## 1.1.0 ##
|
||||
|
||||
* Minor refactoring to remove unused variables
|
||||
* Fix some Code-Smell (phpcs)
|
||||
|
||||
## 1.0.1 ##
|
||||
|
||||
* BUGFIX: lower-case titles missing
|
||||
|
||||
## 1.0.0 ##
|
||||
|
||||
* BREAKING CHANGE: Refactored several function names. If you have written your own template/loop you will need to adapt your code. See the readme's Theming section for details.
|
||||
* Added `post-type` attribute into the shortcode to display for post-types other than pages.
|
||||
* Minor code cleanup.
|
||||
|
||||
## 0.8.0 ##
|
||||
|
||||
* Standardised on naming convention of `*_a_z_*` in function names, e.g. `get_the_a_z_listing()`, rather than the former `*_az_*` names, e.g. `get_the_az_listing()`.
|
||||
* Converted version numbering to semver style.
|
||||
* Fixed the in-built styling.
|
||||
* Added filter to determine whether to apply in-built styles in addition to hidden setting: `set_option( a-z-listing-add-styling', true );`.
|
||||
* Added taxonomy terms list support.
|
||||
|
||||
## 0.7.1 ##
|
||||
|
||||
* Fix potential XSS vector.
|
||||
|
||||
## 0.7 ##
|
||||
|
||||
* rebuilt most of the logic in preparation for more functionality.
|
||||
* added template/theming capability (BIG change!)
|
||||
* Added option to choose to apply default styling of the widget.
|
||||
|
||||
## 0.6 ##
|
||||
|
||||
* STYLING BREAKING change: the widget's CSS class is changed from `bh_az_widget` to `a-z-listing-widget`. Please update your CSS accordingly.
|
||||
* Conformed to WordPress coding style guidelines.
|
||||
* Updated widget class to call php5-style constructor.
|
||||
* Applied internationalisation (i18n).
|
||||
* Added testsuite.
|
||||
|
||||
## 0.5 ##
|
||||
|
||||
* Added new shortcode to display the index page.
|
||||
|
||||
## 0.4 ##
|
||||
|
||||
* fixed file locations causing failure to load.
|
||||
|
||||
## 0.3 ##
|
||||
|
||||
* fixed failure to activate as reported by [ml413](https://profiles.wordpress.org/ml413) and verified by [creativejuiz](https://wordpress.org/support/users/creativejuiz/); [reference](https://wordpress.org/support/topic/fatal-error-when-trying-to-install-1).
|
||||
|
||||
## 0.2 ##
|
||||
|
||||
* renamed the plugin file and packaged for release
|
||||
|
||||
## 0.1 ##
|
||||
|
||||
* first release
|
||||
167
spec/fixtures/dynamic_finders/plugin_version/a-z-listing/translation_file/languages/a-z-listing.pot
vendored
Normal file
167
spec/fixtures/dynamic_finders/plugin_version/a-z-listing/translation_file/languages/a-z-listing.pot
vendored
Normal file
@@ -0,0 +1,167 @@
|
||||
# Copyright (C) 2019 Daniel Llewellyn
|
||||
# This file is distributed under the same license as the A-Z Listing package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: A-Z Listing 2.2.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/a-z-listing\n"
|
||||
"POT-Creation-Date: 2019-03-13 10:21:53+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2019-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: en\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-Country: United States\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: "
|
||||
"__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
|
||||
"attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
|
||||
"X-Poedit-Basepath: ../\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-Bookmarks: \n"
|
||||
"X-Textdomain-Support: yes\n"
|
||||
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||
|
||||
#: classes/class-a-z-listing.php:330
|
||||
#. translators: List the aphabet of your language in the order that your
|
||||
#. language prefers. list as groups of identical meanings but different
|
||||
#. characters together, e.g. in English we group A with a because they are both
|
||||
#. the same letter but different character-code. Each character group should be
|
||||
#. followed by a comma separating it from the next group. Any amount of
|
||||
#. characters per group are acceptible, and there is no requirement for all the
|
||||
#. groups to contain the same amount of characters as all the others. Be
|
||||
#. careful with the character you place first in each group as that will be
|
||||
#. used as the identifier for the group which gets displayed on the page, e.g.
|
||||
#. in English a group definition of "Aa" will indicate that we display all the
|
||||
#. posts in the group, i.e. whose titles begin with either "A" or "a", listed
|
||||
#. under a heading of "A" (the first character in the definition).
|
||||
msgid ""
|
||||
"AÁÀÄÂaáàäâ,Bb,CÇcç,Dd,EÉÈËÊeéèëê,Ff,Gg,Hh,IÍÌÏÎiíìïî,Jj,Kk,Ll,Mm,Nn,"
|
||||
"OÓÒÖÔoóòöô,Pp,Qq,Rr,Ssß,Tt,UÚÙÜÛuúùüû,Vv,Ww,Xx,Yy,Zz"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-a-z-listing.php:332
|
||||
#. translators: This should be a single character to denote "all entries that
|
||||
#. didn't fit under one of the alphabet character groups defined". This is used
|
||||
#. in English to categorise posts whose title begins with a numeric (0 through
|
||||
#. to 9), or some other character that is not a standard English alphabet
|
||||
#. letter.
|
||||
msgid "#"
|
||||
msgstr ""
|
||||
|
||||
#: templates/a-z-listing.example.php:45 templates/a-z-listing.php:65
|
||||
msgid "Back to top"
|
||||
msgstr ""
|
||||
|
||||
#: templates/a-z-listing.example.php:53 templates/a-z-listing.php:79
|
||||
msgid "There are no posts included in this index."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/class-a-z-listing-widget.php:26
|
||||
msgid "A-Z Site Map"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/class-a-z-listing-widget.php:29
|
||||
msgid "Alphabetised links to the A-Z site map"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/class-a-z-listing-widget.php:119
|
||||
#: widgets/class-a-z-listing-widget.php:124
|
||||
msgid "Widget Title"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/class-a-z-listing-widget.php:128
|
||||
msgid ""
|
||||
"Leave the title field blank, above, to use the title from the page set in "
|
||||
"the next field"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/class-a-z-listing-widget.php:135
|
||||
msgid "Sitemap A-Z page"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/class-a-z-listing-widget.php:147
|
||||
msgid ""
|
||||
"Type some or all of the title of the page you want links to point at. "
|
||||
"Ensure this input field is not selected when you save the settings."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/class-a-z-listing-widget.php:148
|
||||
#: widgets/class-a-z-listing-widget.php:208
|
||||
msgid ""
|
||||
"Matching posts will be shown as you type. Click on the correct post from "
|
||||
"the matches to update the setting."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/class-a-z-listing-widget.php:155
|
||||
msgid "Display posts or terms?"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/class-a-z-listing-widget.php:162
|
||||
msgid "Posts"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/class-a-z-listing-widget.php:166
|
||||
msgid "Taxonomy terms"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/class-a-z-listing-widget.php:175
|
||||
msgid "Post-type to display"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/class-a-z-listing-widget.php:194
|
||||
msgid "Show only children of this post (ID)"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/class-a-z-listing-widget.php:207
|
||||
msgid ""
|
||||
"Type some or all of the title of the post to limit the listing to only the "
|
||||
"children of that post. Ensure this input field is not selected when you "
|
||||
"save the settings."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/class-a-z-listing-widget.php:212
|
||||
msgid "Include grand-children?"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/class-a-z-listing-widget.php:224
|
||||
msgid "Taxonomy to display"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/class-a-z-listing-widget.php:243
|
||||
msgid "Parent term to display children of"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/class-a-z-listing-widget.php:255
|
||||
msgid "Terms to include (IDs)"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/class-a-z-listing-widget.php:267
|
||||
msgid "Terms to exclude (IDs)"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/class-a-z-listing-widget.php:279
|
||||
msgid "Hide empty terms"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "A-Z Listing"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://a-z-listing.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Display an A to Z listing of posts"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Daniel Llewellyn"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://bowlhat.net/"
|
||||
msgstr ""
|
||||
2068
spec/fixtures/dynamic_finders/plugin_version/accelerated-mobile-pages/change_log/changelog.txt
vendored
Normal file
2068
spec/fixtures/dynamic_finders/plugin_version/accelerated-mobile-pages/change_log/changelog.txt
vendored
Normal file
File diff suppressed because it is too large
Load Diff
20
spec/fixtures/dynamic_finders/plugin_version/actus-animated-tags/change_log/CHANGELOG.md
vendored
Normal file
20
spec/fixtures/dynamic_finders/plugin_version/actus-animated-tags/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
# Changelog
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [1.2.0] - 2019-03-09
|
||||
### Added
|
||||
* (09 March 2019).
|
||||
* Clickable tags.
|
||||
* Upload your own image as a background.
|
||||
|
||||
|
||||
## [1.1.0] - 2017-06-23
|
||||
### Added
|
||||
* (23 June 2017). Settings Button for plugins page.
|
||||
|
||||
## [1.0.0] - 2017-06-20
|
||||
* (19 June 2017). Revived ID system.
|
||||
* (19 June 2017). Added Widget.
|
||||
* (18 June 2017). Change documentation and coding standards.
|
||||
|
||||
1325
spec/fixtures/dynamic_finders/plugin_version/acumulus/change_log/lib/siel/acumulus/changelog.txt
vendored
Normal file
1325
spec/fixtures/dynamic_finders/plugin_version/acumulus/change_log/lib/siel/acumulus/changelog.txt
vendored
Normal file
File diff suppressed because it is too large
Load Diff
107
spec/fixtures/dynamic_finders/plugin_version/add-from-server/change_log/changelog.txt
vendored
Normal file
107
spec/fixtures/dynamic_finders/plugin_version/add-from-server/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,107 @@
|
||||
= 3.3.3 =
|
||||
* Fixes some scenario's where the translation warning sticks around for translated (and other english locales)
|
||||
* Fixes a PHP Warning
|
||||
* Support per-user locales
|
||||
* Bumps required version of WordPress to 4.5+
|
||||
|
||||
= 3.3.2 =
|
||||
* Security Fix: Fixes a CSRF vulnerability which could be used to trick a user into importing a large file to their site. Props to Edwin Molenaar (https://www.linkedin.com/in/edwinmolenaar)
|
||||
* Fix a typo that caused subsequent plugin activations to fail if the server doesn't meet the Add From Server requirements
|
||||
* Fix a path mismatch on certain windows configurations (No longer need to specify uppercase disk markers)
|
||||
* Import Audio metadata and store image/audio metadata in the same manner as core.
|
||||
|
||||
= 3.3.1 =
|
||||
* Fix plugin activation
|
||||
|
||||
= 3.3 =
|
||||
* The plugin now requires WordPress 4.0 and PHP 5.4 as a minumum requirement.
|
||||
* Updated to use WordPress.org translation system, please submit translations through https://translate.wordpress.org/projects/wp-plugins/add-from-server/stable
|
||||
* Updated to WordPress 4.3 styles
|
||||
|
||||
= 3.2.0.4 =
|
||||
* Fix for a PHP Warning shown under certain hosting configurations, "headers already sent by (output started at .../add-from-server/class.add-from-server.php:1357)"
|
||||
* WordPress.org Translation compatibility
|
||||
|
||||
= 3.2.0.3 =
|
||||
* PHP 5.4 compatibility
|
||||
* Special characters in URL fixes
|
||||
* Japanese Translations from Naoko Takano ( http://en.naoko.cc/ )
|
||||
|
||||
= 3.2.0.2 =
|
||||
* Fix: Translations not loaded early enough for menu items.
|
||||
|
||||
= 3.2.0.1 =
|
||||
* Fix: Incorrect GUID on imported items in subdir of uploads folder
|
||||
* Fix: Not all items would correctly trigger the already-imported error
|
||||
|
||||
= 3.2.0 =
|
||||
* For Pre-3.2 changelog, Please see http://plugins.svn.wordpress.org/add-from-server/tags/2.3/readme.txt
|
||||
* Cleanup, Now requires WordPress 3.2+
|
||||
* Now has an options panel to control who is allowed to import files
|
||||
* Now has the option to specify what the base directory is for file imports (ie. allows you to prevent users access to non-public directories)
|
||||
* Versioning changes - This plugin will from now use the earliest version of WordPress it supports. 3.2 requires 3.2, 3.2.0.1 is a point release which requires 3.2. 3.3.4 will require WP 3.3.4 etc. May seem a little weird, but you'll get used to it, bigger numbers are still better :)
|
||||
|
||||
= 2.3 =
|
||||
* Quick 3.0 compatibility release
|
||||
* Removed Deprecated notices, Fixed a few other warnings occasionally
|
||||
* GUID now a valid url when % is included in the filename
|
||||
* Requires WordPress 3.0 now.
|
||||
|
||||
= 2.x =
|
||||
* French update from Denis Rebaud
|
||||
|
||||
= 2.2.1 =
|
||||
* Remove svn:externals, The WordPress .zip packager does NOT like making peoples life easier when you've got multiple plugins.
|
||||
|
||||
= 2.2 =
|
||||
* Slight error warning changes
|
||||
* WARNING: 2.8.5/2.9 compatibility: ALL users who can upload files will now have access to the Add From Server functionality, This is due to security changes in wordpress removing the unfiltered uploads functionality. This has the side effect that you cannot upload ALL types of files too, See the FAQ for some more info.
|
||||
* Re-ordered changelog for 2.8 changelog compatibility.
|
||||
|
||||
= 2.1 =
|
||||
* Introduce QuickJump
|
||||
* Fix bugs related to the Admin navigation disapearing
|
||||
* Fix bugs related to hints showing up linking to the wrong page
|
||||
* Do not show the Inline uploaders tabs in the normal uploader :)
|
||||
* Fix 2.8.1's plugin security mashes..
|
||||
|
||||
= 2.0.1 =
|
||||
* Russian Translation from Lecactus
|
||||
|
||||
= 2.0 =
|
||||
* Requires WordPress 2.7+ (From now on, My Plugins will only be supported for the current stable branch)
|
||||
* WP2.7 SSL Support
|
||||
* WP2.7 checkbox support
|
||||
* WP2.7 upload modifications
|
||||
* WP2.7 Styling
|
||||
* Files/folders are sorted by name
|
||||
* Update Notification changelogs (On the plugins page)
|
||||
* Completely rewritten, Hopefully this'll fix some long-time bugs which have affected some.
|
||||
* Persion translation from sourena
|
||||
* Italian translation from Stafano
|
||||
|
||||
= 1.4 =
|
||||
* German Translation
|
||||
* More stuffing around with the checkbox that doesnt work for anyone, yet works on every test system i've tried
|
||||
* Set the date on imported files to that of their uploads folder
|
||||
|
||||
= 1.3.2 =
|
||||
* French translation changes from Ozh & Olivier
|
||||
* Fixed the checkbox list for certain unknown browsers.
|
||||
|
||||
= 1.3 =
|
||||
* Internationalisation; French translation
|
||||
* Internationalisation; Spanish translation
|
||||
* Checkbox select all
|
||||
* Import into non-post attachment
|
||||
|
||||
= 1.2 =
|
||||
* Fixed filename oddness including old directory names
|
||||
* Added a check to see if the file exists in the Media library allready
|
||||
* Added a check to see if the file is allready in the uploads folder before importing, and if so, simply add it to the database, do not mash the filesystem
|
||||
|
||||
= 1.1 =
|
||||
* Fixed a bug which causes the original import file to be deleted upon removing from the media library, The file in /uploads/2008/03/ remains however. Will now delete the file in the uploads folder instead of the original imported file, However, Be warned, files previously imported WILL remain as they are, and the original import file will be deleted(if you delete from the media library)
|
||||
|
||||
= 1.0 =
|
||||
* Initial Release
|
||||
@@ -0,0 +1,23 @@
|
||||
# NZ Address Autocomplete for WooCommerce 2.1.2 #
|
||||
|
||||
* Call update events when an address is auto-completed
|
||||
|
||||
# NZ Address Autocomplete for WooCommerce 2.1.1 #
|
||||
|
||||
* Added additional filters and configuration options
|
||||
|
||||
# NZ Address Autocomplete for WooCommerce 2.1.0.2 #
|
||||
|
||||
* Use Mailtown instead of City by default
|
||||
|
||||
# NZ Address Autocomplete for WooCommerce 2.1.0.2 #
|
||||
|
||||
* Fixed start-up bug
|
||||
|
||||
# NZ Address Autocomplete for WooCommerce 2.1.0 #
|
||||
|
||||
* Added the ability to filter PO Boxes addresses
|
||||
|
||||
# NZ Address Autocomplete for WooCommerce 2.0.0 #
|
||||
|
||||
* Addy, proudly made out of Auckland, New Zealand
|
||||
21
spec/fixtures/dynamic_finders/plugin_version/admin-dashboard-last-edits/change_log/CHANGELOG.md
vendored
Normal file
21
spec/fixtures/dynamic_finders/plugin_version/admin-dashboard-last-edits/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
# Admin Dashboard Last Edits
|
||||
## Changelog
|
||||
### 1.1.3
|
||||
* Minor readme corrections
|
||||
|
||||
### 1.1.2
|
||||
* Minor readme enhancements
|
||||
|
||||
### 1.1.1
|
||||
* Deleted german translation for opening the plugin to the GlotPress community
|
||||
|
||||
### 1.1
|
||||
* Added edit icon in front of the page or post title
|
||||
* Added date of the editing
|
||||
* Minor fixes in the readme
|
||||
* Updated german translation
|
||||
* Added new screenshots
|
||||
|
||||
### 1.0
|
||||
* Initial version
|
||||
* German translation
|
||||
14
spec/fixtures/dynamic_finders/plugin_version/affiliates-buddypress/change_log/changelog.txt
vendored
Normal file
14
spec/fixtures/dynamic_finders/plugin_version/affiliates-buddypress/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
== Affiliates BuddyPress - Changelog ==
|
||||
|
||||
= 1.1.0 =
|
||||
* WordPress 5.1 compatible.
|
||||
* Added a CSS rule to for the Profile item in the affiliates dashboard.
|
||||
|
||||
= 1.0.2 =
|
||||
* WordPress 4.9 compatible.
|
||||
|
||||
= 1.0.1 =
|
||||
* Fixed stylesheet URL.
|
||||
|
||||
= 1.0.0 =
|
||||
* Initial release.
|
||||
20
spec/fixtures/dynamic_finders/plugin_version/affiliates-formidable/change_log/changelog.txt
vendored
Normal file
20
spec/fixtures/dynamic_finders/plugin_version/affiliates-formidable/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
Affiliates Formidable Changelog www.itthinx.com
|
||||
|
||||
= 3.0.0 =
|
||||
* WordPress 5.x compatible.
|
||||
* Added support for rate formulas (requires Affiliates Pro >= 4.x or Affiliates Enterprise >= 4.x).
|
||||
|
||||
= 2.0.0 =
|
||||
* Affiliates, Affiliates Pro and Affiliates Enterprise 2.x and 3.x compatible.
|
||||
* Wordpress 4.9 compatible.
|
||||
* Now you can configure custom values per forms.
|
||||
* Added the option to register affiliates throw forms.
|
||||
* Fixed get_entry_meta_info() deprecated notice.
|
||||
* Replaced the affiliates_formidable_currencies filter with the affiliates_formidable_supported_currencies filter and added the ZAR and INR entries.
|
||||
|
||||
= 1.1.0 =
|
||||
* Fixed a PHP Notice. This was produced by an unused variable,
|
||||
* initialized with the a deprecated get_entry_metas() method.
|
||||
|
||||
= 1.0.0 =
|
||||
* Initial release.
|
||||
546
spec/fixtures/dynamic_finders/plugin_version/affiliates/change_log/changelog.txt
vendored
Normal file
546
spec/fixtures/dynamic_finders/plugin_version/affiliates/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,546 @@
|
||||
== Affiliates - Changelog ==
|
||||
|
||||
= 4.0.4 =
|
||||
* Minor security improvements related to escaping output.
|
||||
* Fixed various PHP code validation issues.
|
||||
* Fixed various Javascript code validation issues.
|
||||
* Fixed several code documentation issues.
|
||||
|
||||
= 4.0.3 =
|
||||
* Code and documentation revision and improvements.
|
||||
* Updated Spanish translation.
|
||||
* Simplified Add-ons section.
|
||||
|
||||
= 4.0.2 =
|
||||
* Updated the Indonesian translation.
|
||||
* Updated the German translation.
|
||||
* Updated the Spanish translation.
|
||||
* Added improvements for responsiveness.
|
||||
* Updated description in the registration admin section.
|
||||
* Added a missing call to prepare().
|
||||
* Improved handling of field/attribute usage related to payment emails.
|
||||
* Fixed an issue with validating encoded affiliate id after affiliates_parse_request_affiliate_id filter applied.
|
||||
|
||||
= 4.0.1 =
|
||||
* Added improvements for responsiveness on small screen sizes.
|
||||
|
||||
= 4.0.0 =
|
||||
* This is a major new release with exciting new features.
|
||||
Following usual good practice, make sure to BACK UP your site and database before upgrading!
|
||||
* Introduces the new Affiliates Dashboard and new Dashboard Sections.
|
||||
* Added support for new customizable dashboard templates.
|
||||
* Added new dashboard and dashboard section blocks.
|
||||
* Added new dashboard and dashboard section shortcodes.
|
||||
* Added several performance and usability improvements.
|
||||
* Cleaned up code and made many internal improvements.
|
||||
* Updated and added missing code documentation.
|
||||
* Updated the translation template.
|
||||
* Updated the German translation.
|
||||
* Added options to the [affiliates_earnings] shortcode.
|
||||
* Updated the affiliate area generation to use the new dashboard.
|
||||
* Added additional currency codes and fixed an issue with the filter being called to early to affect the list.
|
||||
* Fixed untranslated button labels used in registration settings.
|
||||
* Fixed the dashboard widget to use appropriate decimals for amounts displayed.
|
||||
* Improved the usability and styling of filter sections in admin areas.
|
||||
* Improved and simplified the overview admin section to provide relevant stats within context.
|
||||
* Improved the performance on large datasets, improved queries and removed redundant queries.
|
||||
* Removed unnecessary indexes on the hits table.
|
||||
* Revised the traffic admin section to provide more detailed information on hits and enhanced its filter section.
|
||||
* Added a warning displayed in the Plugins section when the plugin is configured to delete its data.
|
||||
* Fixed an issue where a request for an invalid affiliate link would record a hit.
|
||||
* Added the filter affiliates_record_robot_hits and allowing the constant AFFILIATES_RECORD_ROBOT_HITS to determine whether hits from robots should be recorded.
|
||||
* Added the debugging constants AFFILIATES_DEBUG and AFFILIATES_DEBUG_ROBOTS which can be defined as true in wp-config.php to enable specific debugging.
|
||||
* Added a tool for significant storage savings that cleans database entries from robot hits under Affiliates > Settings > General > Robots.
|
||||
* WordPress 5.1 compatibility checked.
|
||||
* Using log instead of admin message to alert about potential issues during updates.
|
||||
* Fixed referral amount decimals used for display of amounts in totals section and generated files.
|
||||
* Added an option to set the affiliate terms page under Affiliates > Registration.
|
||||
|
||||
= 3.1.0 =
|
||||
* WordPress 5.0 compatibility checked.
|
||||
* Setting COOKIEPATH and SITECOOKIEPATH when needed to solve issues with subfolder installs.
|
||||
* Fixed some internal documentation and added missing type info.
|
||||
|
||||
= 3.0.1 =
|
||||
* WordPress 4.9.4 compatibility checked.
|
||||
* Minimum PHP version required is now 5.6.0.
|
||||
|
||||
= 3.0.0 =
|
||||
* This is a major new release of the plugin, please make sure to back up your site and database
|
||||
before your upgrade and make sure to review the changelog to be aware of the implications of
|
||||
upgrading to this version.
|
||||
* Enhances the data model to allow for fine-grained referrals.
|
||||
* Fixed PHP Notice due to undefined variable $charset_collate.
|
||||
* Fixed use of deprecated properties with WC 3.x
|
||||
* Added formatting options to the affiliate selectize renderer.
|
||||
* Updated the review notice appearance.
|
||||
* Fixed several PHP notices produces due to wrong number of parameters passed to prepare() on the Affiliates Overview admin screen.
|
||||
* Wordpress 4.9 compatible.
|
||||
* Removed deprecated and unmaintained entries from the Integrations section in the Settings.
|
||||
* Added new entries to the Integrations section for Events Manager, Formidable Forms, Ninja Forms.
|
||||
* Updated the Add-Ons section with Affiliates Import and other free add-ons.
|
||||
* Fixed the WooCommerce customer registration integration option is independent from the the user registration integration option.
|
||||
|
||||
= 2.18.3 =
|
||||
* WordPress 4.9 compatibility tested.
|
||||
|
||||
= 2.18.2 =
|
||||
* WordPress 4.8 compatibility tested.
|
||||
|
||||
= 2.18.1 =
|
||||
* Added some adjustments for compatibility with WooCommerce 3.0.0.
|
||||
|
||||
= 2.18.0 =
|
||||
* Enhanced the precision with which referral values are stored.
|
||||
* Added the affiliates_get_referral_amount_decimals() and affiliates_format_referral_amount() functions.
|
||||
* Fixed the affiliates_referral_amount_decimals filter.
|
||||
* We now allow to define the constant AFFILIATES_REFERRAL_AMOUNT_DECIMALS in wp-config.php.
|
||||
* Added the AFFILIATES_REFERRAL_AMOUNT_DECIMALS_DISPLAY constant which can also be overridden in wp-config.php.
|
||||
* Added the notice class.
|
||||
|
||||
= 2.17.1 =
|
||||
* Fixed user_agents table is not deleted on cleanup.
|
||||
* Fixed an issue related to showing earnings for certain dates.
|
||||
* Improved the traffic queries which solves performance issues with large data sets.
|
||||
|
||||
= 2.17.0 =
|
||||
* Added a new Traffic section with URI stats.
|
||||
* Source URIs and landing URIs are stored for hits on affiliate links.
|
||||
* User agents are stored for hits on affiliate links.
|
||||
* Hit stats now show user agents in the Visits & Referrals section.
|
||||
* Hit stats now show source and landing URIs in the Visits & Referrals section.
|
||||
* Hit stats now show user agents in the Affiliates & Referrals section.
|
||||
* Hit stats now show source and landing URIs in the Affiliates & Referrals section.
|
||||
* Added hit references for referrals.
|
||||
* Improved request handling to exclude during AJAX.
|
||||
|
||||
= 2.16.7 =
|
||||
* Changing the username related to an affiliate if the username doesn't exist shows an error.
|
||||
* Added notifications when add/edit/remove affiliates from the dashboard.
|
||||
|
||||
= 2.16.6 =
|
||||
* Totals : allow to filter by affiliate status.
|
||||
* WordPress 4.7 compatibility tested.
|
||||
|
||||
= 2.16.5 =
|
||||
* Rendering amounts more consistently in dashboard widget.
|
||||
* Updated some Italian translations.
|
||||
|
||||
= 2.16.4 =
|
||||
* Fixed an issue with the WooCommerce customer registration option.
|
||||
|
||||
= 2.16.3 =
|
||||
* Updated the French translation.
|
||||
|
||||
= 2.16.2 =
|
||||
* Updated the German translation.
|
||||
* Updated the Spanish translation.
|
||||
* Fixed wording in notifications.
|
||||
|
||||
= 2.16.1 =
|
||||
* Updated pot and translation files.
|
||||
* Updated the Spanish translation.
|
||||
|
||||
= 2.16.0 =
|
||||
* Added the possibility to approve new affiliates with a status option.
|
||||
* Added a Notifications section where you can enable to notify administrator and affiliates on registration.
|
||||
|
||||
= 2.15.12 =
|
||||
* Updated the flot library to version 0.8.3.
|
||||
* Improved the graph tooltip position to be displayed within bounds.
|
||||
* Updated Settings tabs according to the WordPress appearance.
|
||||
|
||||
= 2.15.11 =
|
||||
* Fixed the affiliates_is_not_referred shortcode. Now when Direct referrals is enabled, the content is not displayed.
|
||||
|
||||
= 2.15.10 =
|
||||
* Altered the hits table definition for MySQL 5.7.3 compatibility, see https://dev.mysql.com/doc/relnotes/mysql/5.7/en/news-5-7-3.html
|
||||
|
||||
= 2.15.9 =
|
||||
* Added filters: 'affiliates_thanks_sign_up_text' and 'affiliates_check_confirmation_text' on registration form.
|
||||
* Added button class to buttons on registration form settings.
|
||||
|
||||
= 2.15.8 =
|
||||
* Updated pot and translation files.
|
||||
* Updated the German translation.
|
||||
* Updated the Spanish translation.
|
||||
|
||||
= 2.15.7 =
|
||||
* Added the [affiliates_user_meta] shortcode which allows to render user meta data.
|
||||
* Updated the Spanish translation.
|
||||
|
||||
= 2.15.6 =
|
||||
* Added the [affiliates_bloginfo] shortcode.
|
||||
* Extended the functionality provided by the [affiliates_url] shortcode adding the 'url' attribute.
|
||||
|
||||
= 2.15.5 =
|
||||
* Added affiliates delete bulk option.
|
||||
* For WordPress translation : Added Text Domain and Domain Path header tags.
|
||||
|
||||
= 2.15.4 =
|
||||
* For WordPress translation : Substituted constants with string literals as language domain indicators.
|
||||
* Moved the complete changelog to changelog.txt.
|
||||
|
||||
= 2.15.3 =
|
||||
* Updated the admin buttons translation.
|
||||
* Updated the German translation.
|
||||
* Updated the Spanish translation.
|
||||
* Updated the translation template file.
|
||||
|
||||
= 2.15.2 =
|
||||
* Fixed an unescaped underscore in the SQL query for the test to find pages containing Affiliates shortcodes.
|
||||
|
||||
= 2.15.1 =
|
||||
* WordPress 4.5 compatibility tested.
|
||||
* Fixed an issue with affiliate fields not showing updated value on first load.
|
||||
|
||||
= 2.15.0 =
|
||||
* Added the $affiliates_request_encoded_id global which provides the referring affiliate's ID if
|
||||
recognized during a request.
|
||||
* Added the [referrer] shortcode which allows to render information about the referring affiliate.
|
||||
* Added the [affiliates_is_referred] shortcode which allows to display content conditionally for referred visitors.
|
||||
* Added the [affiliates_is_not_referred] shortcode which allows to display content conditionally for referred visitors.
|
||||
|
||||
= 2.14.1 =
|
||||
* Added a parameter set to the filter invoked when the new affiliate notification is sent to the
|
||||
site administrator.
|
||||
* Added the affiliates_new_affiliate_registration_headers filter.
|
||||
|
||||
= 2.14.0 =
|
||||
* Added the $create_affiliate_userdata global which provides affiliate registration data in
|
||||
the process after calling wp_insert_user() and before it is added as user meta data.
|
||||
|
||||
= 2.13.3 =
|
||||
* WordPress 4.4 compatible.
|
||||
* Fixed pagination not taken into account when using the input field on several admin screens.
|
||||
|
||||
= 2.13.2 =
|
||||
* Fixed potential XSS vulnerabilities related to the unescaped use of $_SERVER['REQUEST_URI'].
|
||||
|
||||
= 2.13.1 =
|
||||
* Reverted a change introduced in 2.13.0 related to trailing slashes.
|
||||
|
||||
= 2.13.0 =
|
||||
* Fixed an issue where trailing slashes would be left before the query part of an affiliate URL.
|
||||
* Add-ons section revised.
|
||||
|
||||
= 2.12.1 =
|
||||
* Fixed PHP notice thrown when a replacement captcha instead of the built-in captcha field is used.
|
||||
|
||||
= 2.12.0 =
|
||||
* Fixed compatibility with WordPress 4.3 (widget constructor).
|
||||
* Fixed potential issues when upgrading from earlier versions.
|
||||
* Fixed a PHP Warning related to password changes through the affiliate fields.
|
||||
* Added a guard against multiple invocations of the affiliate user update procedure in the same request.
|
||||
|
||||
= 2.11.0 =
|
||||
* Added a cookie timeout filter.
|
||||
* Removed menu title translation to circumvent effects of core bug 18857.
|
||||
* Fixed a bug related to retrieving a user option where the null comparison needed to be strict.
|
||||
* Added an AJAX handler to allow setting user options on the fly.
|
||||
* Added the option to hide or show filters on the affiliates overview.
|
||||
* Added the affiliates_admin_referrals_secondary_actions filter.
|
||||
* Fixed a minor bug related to data representation in case of string data in referrals.
|
||||
* Improved PHP compatibility avoiding use of boolval.
|
||||
|
||||
= 2.10.0 =
|
||||
* Updated the German translation with more suitable translations in context.
|
||||
* Updated the Spanish translation.
|
||||
* Updated the French translation.
|
||||
* Updated the Affiliates menu position.
|
||||
* Updated the translation template.
|
||||
|
||||
= 2.9.2 =
|
||||
* Fixes the issue with the Appearance menu disappearing.
|
||||
|
||||
= 2.9.1 =
|
||||
* Updated the menu position.
|
||||
* Added the affiliates_registration_login_redirect_url filter to allow customized redirects for login.
|
||||
* Updated the Spanish translation.
|
||||
|
||||
= 2.9.0 =
|
||||
* German translation added.
|
||||
|
||||
= 2.8.6 =
|
||||
* Fixed custom registration fields not taken into account when existing users register as affiliates.
|
||||
* Fixed slashes are not stripped on custom fields and labels when editing an affiliate.
|
||||
|
||||
= 2.8.5 =
|
||||
* Added a filter for the help tab footer.
|
||||
* Updated the translation template.
|
||||
* Fixed missing spacing on filters in Totals section.
|
||||
* Removed deprecated information about links from Manage Affiliates help.
|
||||
* Added a filter for the help tab title.
|
||||
* Corrected the menu permission for the Totals section.
|
||||
* Fixed missing right margin in Totals section.
|
||||
* Corrected user profile output when showing affiliate fields (needed slashes stripped).
|
||||
|
||||
= 2.8.4 =
|
||||
* Added the translation template.
|
||||
* Removed a couple of translations for empty strings.
|
||||
|
||||
= 2.8.3 =
|
||||
* Fixed affilite URLs with missing path element.
|
||||
* Added API function to obtain affiliate URLs.
|
||||
* Improved the affiliates_url shortcode to avoid URLs being messed up by
|
||||
default filters applied to the content it receives.
|
||||
|
||||
= 2.8.2 =
|
||||
* Fixes an issue with the registration form not being rendered when page
|
||||
content is evaluated previously.
|
||||
* Fixes user URL not saved due to usage of inexistent variable.
|
||||
* Removed Ready from integrations index.
|
||||
|
||||
= 2.8.1 =
|
||||
* Fixed a PHP Warning when saving a user profile.
|
||||
|
||||
= 2.8.0 =
|
||||
* Added a setup notice with links to the page generation and integration sections.
|
||||
* Improved the configuration section and replaced the Options menu item with Settings.
|
||||
* Direct referrals are now disabled by default.
|
||||
* Changed the default cookie timeout to 30 days.
|
||||
* Security improvement, added additional ABSPATH checks.
|
||||
* Improved UI appearance and fixed some structural issues.
|
||||
* Added the option to enable user registration referrals for new WooCommerce customers.
|
||||
* Improved the date displayed for earnings for i18n.
|
||||
* Added customization options for the affiliate registration form.
|
||||
* Added User profile displays additional affiliate registration fields.
|
||||
* Added the [affiliates_fields] shortcode and included it in the affiliate area page generator.
|
||||
* Ukranian translation added.
|
||||
|
||||
= 2.7.3 =
|
||||
* WordPress 4.1 compatible.
|
||||
|
||||
= 2.7.2 =
|
||||
* WordPress 4.0 compatible.
|
||||
|
||||
= 2.7.1 =
|
||||
* Improved style loading.
|
||||
* Fixed missing pagination class resource used in totals.
|
||||
* Improved registration form so that first name and last name can be indicated directly instead of diverting to profile.
|
||||
* Fixed a warning due to missing post when user is added on admin.
|
||||
* Added the affiliates_user_registration_on_admin filter and now not recording user registration referrals unless it returns true when users are added on the admin back end.
|
||||
|
||||
= 2.7.0 =
|
||||
* Built-in User Registration Integration added, allows to record referrals when new users are referred by affiliates.
|
||||
* Added filter affiliates_referral_amount_decimals.
|
||||
* Added totals section.
|
||||
* Added filter affiliates_referrals_display_currency.
|
||||
* Added filter affiliates_referrals_display_total.
|
||||
* Added filter affiliates_referrals_display_total_none.
|
||||
* Improved and cleaned up the referrals screen by removing the Set buttons and reducing the status column footprint.
|
||||
|
||||
= 2.6.2 =
|
||||
* Registration form now allows optional or hidden first name and last name fields.
|
||||
|
||||
= 2.6.1 =
|
||||
* Affiliate user notification filters added.
|
||||
|
||||
= 2.6.0 =
|
||||
* WordPress 3.9 compatibility checked
|
||||
* Fixed the affiliate filter on the Referrals screen.
|
||||
* Changed filter logic on Referrals screen for 3.9's prepare() nags.
|
||||
* Changed filter logic on Visits & Referrals screen for 3.9's prepare() nags.
|
||||
* Changed filter logic on Affiliates & Referrals screen for 3.9's prepare() nags.
|
||||
* Fixed the affiliates_get_affiliates() function invoking prepare() when no parameters are needed.
|
||||
* Added status filter on Affiliates & Referrals screen.
|
||||
* Pretty affiliate links have been deprecated and won't be supported anymore.
|
||||
* Removed/substituted old PHP4 constructors.
|
||||
* Fixed day chart on affiliates overview screen when from date is given only.
|
||||
|
||||
= 2.5.1 =
|
||||
* Added the French translation.
|
||||
* Improved UI elements for filter sections.
|
||||
* Improved UI for add/edit affiliate.
|
||||
|
||||
= 2.5.0 =
|
||||
* New affiliates dashboard widget added.
|
||||
* New shortcode [affiliates_earnings] showing affiliate earnings per month.
|
||||
|
||||
= 2.4.4 =
|
||||
* WordPress 3.8 compatibility checked
|
||||
* Improved the Links column displayed in the Manage Affiliates section.
|
||||
* Added option to display accumulated referral totals in the Manage Affiliates section (enabled by default).
|
||||
* Fixed filter nonce checks in Manage Affiliates section.
|
||||
* Improved filter labels in Manage Affiliates section.
|
||||
|
||||
= 2.4.3 =
|
||||
* Fixed missing translation domain on label in registration form.
|
||||
* Fixed translation of submit button not taken into account.
|
||||
* Added the affiliates_registration_profile_url filter.
|
||||
* Added the affiliates_redirect_status_code filter.
|
||||
|
||||
= 2.4.2 =
|
||||
* Added captcha filters affiliates_captcha_get and affiliates_captcha_validate.
|
||||
* Replaced use of deprecated ereg_replace with preg_replace.
|
||||
* Added filters before and after registration form and error filter for validation.
|
||||
* Added new affiliate registration email filters: affiliates_admin_email, affiliates_new_affiliate_registration_subject, affiliates_new_affiliate_registration_message.
|
||||
|
||||
= 2.4.1 =
|
||||
* Improved URL parameter handling: filter acts late to add query var; parameter is unset in $wp->query_vars to avoid ending up on the blog page.
|
||||
|
||||
= 2.4.0.1 =
|
||||
* WordPress 3.6 compatibility checked
|
||||
|
||||
= 2.4.0 =
|
||||
* addded missing text domains on labels
|
||||
* fixed some options not being saved under certain conditions
|
||||
* fixed cookie expiration for 0 days
|
||||
* GUI improvements (labels/checkboxes)
|
||||
* GUI improvements (highlight active filters)
|
||||
* Example contact form now produces a reference for referrals
|
||||
* added affiliate email search filter
|
||||
* improved hit recording (not querying robots when unused)
|
||||
|
||||
= 2.3.0 =
|
||||
* WordPress 3.5.2 compatibility tests passed
|
||||
|
||||
= 2.2.1 =
|
||||
* added revised Italian translation by Roberto Castaldo
|
||||
* added Polish translation
|
||||
* added missing language domain on some labels
|
||||
* fixed using correct path for load_plugin_textdomain()
|
||||
* added the if_empty attribute to the [affiliates_referrals] shortcode
|
||||
* added new hook affiliates_updated_referral and referral update function
|
||||
* added option to redirect after affiliate hit, now disabled by default
|
||||
|
||||
= 2.2.0 =
|
||||
* added [referrer_user] shortcode
|
||||
* added Italian translation
|
||||
* added features to manually add, edit and remove referrals
|
||||
* added option to search in referral descriptions too
|
||||
* fixed sticky filter application in referral screens (Visits & Referrals, Affiliates & Referrals, Referrals)
|
||||
|
||||
= 2.1.9 =
|
||||
* added Indonesian translation
|
||||
* WP 3.5 compatible
|
||||
* fixed bug deleting search filter on referrals admin screen
|
||||
|
||||
= 2.1.8 =
|
||||
* added Spanish translation
|
||||
* improved referrals view
|
||||
* fixed wrong type of hook used for parse_request (was filter)
|
||||
|
||||
= 2.1.7 =
|
||||
* added additional data to affiliates_referral hook
|
||||
|
||||
= 2.1.6 =
|
||||
* fixed character encoding issue for affiliate link when rendering code
|
||||
* added filter to service
|
||||
* added affiliates_record_referral filter
|
||||
* added affiliates_add_referral function
|
||||
* added affiliates_get_user_affiliate function
|
||||
|
||||
= 2.1.5 =
|
||||
* Added Javascript redirect for registraton form when headers were already sent and the redirect / redirect_to attributes are specified
|
||||
* Fixed rewrite rule handling
|
||||
|
||||
= 2.1.4 =
|
||||
* Improved usability of click-toggles on admin screens
|
||||
* GUI appearance improvements
|
||||
* Reduced footnote
|
||||
* Added affiliates_referral action
|
||||
* Added Portuguese translation.
|
||||
|
||||
= 2.1.3 =
|
||||
* Added Slovak translation.
|
||||
|
||||
= 2.1.2 =
|
||||
* Dropped use of visualize for stats graphs, using flot instead.
|
||||
|
||||
= 2.1.1 =
|
||||
* Added shortcode to render the referrer's id.
|
||||
|
||||
= 2.1.0 =
|
||||
* Added Lithuanian translation.
|
||||
* Added Hebrew translation.
|
||||
|
||||
= 2.0.1 =
|
||||
* WordPress 3.4 compatibility checked
|
||||
* fixed MD5-encoded affiliate links
|
||||
|
||||
= 2.0.0 =
|
||||
* Made affiliate registration independent of user registration based on general settings
|
||||
* Adjusted for usage on multisite subsites
|
||||
* Added network management options
|
||||
* Fixed default update flow for new installation
|
||||
|
||||
= 1.3.9 =
|
||||
* added [affiliates_id] shortcode that prints the affiliate's id
|
||||
|
||||
= 1.3.8.1 =
|
||||
* using alternative method to record IP on hits and referrals on system with PHP_INT_SIZE < 8
|
||||
|
||||
= 1.3.8 =
|
||||
* fixed affiliate registration bug
|
||||
* added filter to search in referral data
|
||||
|
||||
= 1.3.7 =
|
||||
* added [affiliates_hits] and [affiliates_visits] shortcodes
|
||||
* fixed bug when affiliate is selected on Visits & Referrals screen when affiliate is given in filters
|
||||
* fixed bug in Affiliates & Referrals screen when date and affiliate is given in filters
|
||||
|
||||
= 1.3.6 =
|
||||
* added the option to change the default Affiliates URL parameter name from 'affiliates' to something else
|
||||
* added Affiliates URL parameter name option to options page
|
||||
* loading admin area scripts only when in admin
|
||||
* fixed options page behavior: when pressing return in a field, a new page was generated
|
||||
|
||||
= 1.3.5 =
|
||||
* Fixed too restrictive date filters in charts.
|
||||
|
||||
= 1.3.4 =
|
||||
* Added date filter section to charts to provide a more flexible means of displaying charts for desired date ranges.
|
||||
|
||||
= 1.3.3 =
|
||||
* Fixed empty filter fields are now handled correctly.
|
||||
|
||||
= 1.3.2 =
|
||||
* 14 Day Charts added in overview showing referrals, visits and hits for the last 14 days.
|
||||
|
||||
= 1.3.1 =
|
||||
* Added Affiliate Area page generation button in Affiliates > Options.
|
||||
* Added more shortcodes: [affiliates_login_redirect], [affiliates_logout].
|
||||
* Improved shortcodes to support nesting.
|
||||
|
||||
= 1.3.0 =
|
||||
* Added new shortcodes: [affiliates_is_affiliate], [affiliates_is_not_affiliate], [affiliates_url], [affiliates_referrals]
|
||||
|
||||
= 1.2.2 =
|
||||
* No changes but a note on new integrations available.
|
||||
|
||||
= 1.2.1 =
|
||||
* added detailed referral info on summary screen: shows number of referrals by status - accepted, closed, pending and rejected
|
||||
* affiliates_added_affiliate action provided after a new affiliate has been added
|
||||
* affiliates_updated_affiliate action provided after an affiliate has been edited
|
||||
* Note that affiliates_deleted_affiliate action already existed
|
||||
* Prepared language section for translations (but no translations added yet)
|
||||
|
||||
= 1.2.0 =
|
||||
* Changed primary key of referrals table.
|
||||
* Added reference column and index.
|
||||
|
||||
= 1.1.2 =
|
||||
* Added type to referrals
|
||||
|
||||
= 1.1.1 =
|
||||
* Added status parameter to referral suggestion
|
||||
|
||||
= 1.1.0 =
|
||||
* Automated affiliate registration, providing affiliate registration widget, registration form shortcode and API
|
||||
* Important bug fixes
|
||||
|
||||
= 1.0.4 =
|
||||
* This release fixes the issue of md5-encoded links not showing up
|
||||
|
||||
= 1.0.3 =
|
||||
* Fixed bug in Affiliates Overview : number of referrals shown was wrong
|
||||
|
||||
= 1.0.2 =
|
||||
* Fixed remnant hard-coded table names. Thanks to Gernot Brandstötter who spotted these!
|
||||
|
||||
= 1.0.1 =
|
||||
* Fixed errors showing up for PHP < 5.3
|
||||
|
||||
= 1.0.0 =
|
||||
* Initial release (tested & working on production sites).
|
||||
9
spec/fixtures/dynamic_finders/plugin_version/ag-twitter/change_log/changelog.txt
vendored
Normal file
9
spec/fixtures/dynamic_finders/plugin_version/ag-twitter/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
Version 1.1.1
|
||||
- Fix the issue that store to many "_transient_rss_" into wp_options database table
|
||||
- Fix the user link to avoid link a part of a e-mail address
|
||||
|
||||
Version 1.1
|
||||
- Implementation of <?php ag_twitter_show($username, $qtylinks=3); ?> function
|
||||
|
||||
Version 1.0
|
||||
- Initial release
|
||||
24
spec/fixtures/dynamic_finders/plugin_version/analytics-for-cloudflare/change_log/CHANGELOG.md
vendored
Normal file
24
spec/fixtures/dynamic_finders/plugin_version/analytics-for-cloudflare/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
# Analytics For Cloudflare
|
||||
|
||||
## 1.1 - 2017-02-09
|
||||
### Fixed
|
||||
- Match Wordpress-Extra coding standards.
|
||||
- Fix text domain in i18n (make static instead of variable).
|
||||
- Fix domains not appearing properly if you have more than 20
|
||||
|
||||
## 1.0.2 - 2015-11-26
|
||||
### Added
|
||||
- Developer hooks to filter api values
|
||||
|
||||
### Fixed
|
||||
- Update to WordPress coding standards
|
||||
|
||||
## 1.0.1 - 2015-11-23
|
||||
### Added
|
||||
- Link to settings from the plugin page
|
||||
|
||||
### Fixed
|
||||
- Internationalization not enabled.
|
||||
|
||||
## 1.0.0 - 2015-11-09
|
||||
- The initial release of this plugin
|
||||
798
spec/fixtures/dynamic_finders/plugin_version/anycomment/change_log/CHANGELOG.md
vendored
Normal file
798
spec/fixtures/dynamic_finders/plugin_version/anycomment/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,798 @@
|
||||
# Changelog
|
||||
|
||||
## 0.0.87 – 18.03.2019
|
||||
|
||||
**Fixes:**
|
||||
|
||||
* Fixed issue when settings were not saving in admin
|
||||
|
||||
|
||||
## 0.0.86 – 18.03.2019
|
||||
|
||||
**Enhancements:**
|
||||
|
||||
* Added `target_url` property to `[anycomment_socials]` shortcode which allows to specify URL where to redirect user after authorization
|
||||
|
||||
**Fixes:**
|
||||
|
||||
* Fixed issue `ERR_TOO_MANY_REDIRECTS` error when logging in via social on admin login form
|
||||
* Fixed issue when successful submission alert was shown twice in admin
|
||||
* Email notifications now responsive and have crossbrowser support
|
||||
* Changed no avatar from SVG to PNG so it can be displayed normally in email clients
|
||||
|
||||
|
||||
## 0.0.85 – 19.02.2019
|
||||
|
||||
**Enhancements:**
|
||||
|
||||
* Improved Email notifications UI, no more template, it is is now unified: has avatar, author name, reply comment data, etc
|
||||
* \#353, Added new option to hold only first comment and any further can pass without pre moderation
|
||||
* \#326, Added ability to import comments from HyperComments inside "Tools" tab by specifying URL to XML file
|
||||
* \#343, Migrated Google+ to Google People API
|
||||
* Cache directory was moved from plugin to wp-content/cache/anycomment
|
||||
* \#378, Added iThemes Security to the conflict list
|
||||
|
||||
**Fixes:**
|
||||
|
||||
* \#382, Fixed broken layout in screens < 1400 inside admin dashboard
|
||||
* \#384, Fixed issued when nested comments were not sorted properly
|
||||
* \#385, Fixed issue when shortcode was inserted on non-WordPress page, e.g. HTML caused notice error on comment count
|
||||
* \#383, Fixed issue when ArgumentCountError fatal was given on execution of delete_comment hook by Akismet
|
||||
|
||||
|
||||
## 0.0.84 – 14.02.2019
|
||||
|
||||
**Enhancements:**
|
||||
|
||||
* Payment integration with Freemius to buy add-on directly from plugin
|
||||
* Cache basting mechanism on successful user authentication, #380
|
||||
|
||||
|
||||
**Fixes:**
|
||||
|
||||
* Fixed issue with Akismet when some websites did not have notifications and some had error when adding new comment
|
||||
|
||||
## 0.0.83 – 12.02.2019
|
||||
|
||||
**Enhancements:**
|
||||
|
||||
* Added ability to specify number of words before "..." in the recent comments widget, #374
|
||||
* Reverted close comments behaviour. Now when "Close discussion" is unchecked, comment box would be hidden completely and not styles and scripts would be loaded, #371
|
||||
* Added ability to hide whether comment was edited or not, #364
|
||||
|
||||
**Fixes:**
|
||||
|
||||
* Fixed IE error on "Object doesn't support property or method 'isNaN'"
|
||||
* Fixed "Notice: Trying to get property of non-object" in "Emails" page, #373
|
||||
* Fixed issue when WordPress native login did not redirect back to comments
|
||||
* Fixed issue with thousand separator being instead of as space, #370
|
||||
* Fixed issue when Akismet filtering was not working properly
|
||||
|
||||
## 0.0.82 – 25.01.2019
|
||||
|
||||
**Fixes:**
|
||||
|
||||
* Removed Freemius integration left by mistake, it should come a bit later
|
||||
|
||||
|
||||
## 0.0.81 – 25.01.2019
|
||||
|
||||
**Enhancements:**
|
||||
|
||||
* New hook `anycomment/admin/options/update` with two arguments fired after some set of options being updated
|
||||
* Added support for Internet Explorer 9+ (need more testing)
|
||||
|
||||
|
||||
**Fixes:**
|
||||
|
||||
* Fixed issue when user avatar did not change when settings were updated, #361
|
||||
* Fixed issue when moderators did not see admin bar while hide admin bar options was enabled, #359
|
||||
* Fixed issue when users/admins were notified about about new comment even thought it was not process by Akismet yet, #358
|
||||
* Fixed issue when authorized users did not see alert about comment being moderated, #365
|
||||
* Fixed issue when alert message on the top right was not see as some themes have floating header
|
||||
* Fixed 200 when comments template did not exist on the page, #362
|
||||
* Fixed issue when stars were showing incorrect half of the rating, #355
|
||||
|
||||
|
||||
## 0.0.80 – 08.01.2019
|
||||
|
||||
**Fixes:**
|
||||
|
||||
* Fixed issue when main js asset was loading in `<head>` instead of before `</body>`
|
||||
|
||||
|
||||
## 0.0.79 – 07.01.2019
|
||||
|
||||
**Enhancements:**
|
||||
|
||||
* Sidebar news is now showing proper date format
|
||||
* Introducing new REST API filter `anycomment/rest/comments/item_for_response` to control single comment output data
|
||||
* Steam is now showing proper username, avatar & profile URL, #346
|
||||
* Facebook username is now clickable, #344
|
||||
* Improved mobile layouts, #351
|
||||
* Now when comments are closed instead of comment form, it says "Comments closed.", replies and edits are not allowed, #347
|
||||
* Now possible to choose comment date between relative (e.g. 1 minute ago) and absolute (defined in WordPress's settings), #350
|
||||
* Added ability to add custom CSS via "Editor" tab in "Settings", #341
|
||||
|
||||
**Fixes:**
|
||||
|
||||
* Possible fix of issue when error toast was shown about invalid nonce, #342
|
||||
* Fixed memory exhaustion caused by integration with WP Users Avatar, #348
|
||||
* Fixed issue when some of the websites had styles for bullet points and they were shown in the attachment list
|
||||
* Fixed issue when core CSS style was loaded before `</body>` instead of `<head>`
|
||||
* Fixed issue when reCAPTCHA position did not cache no matter what was set in admin settings
|
||||
* Fixed issue when comments failed to load due to missing site key for reCAPTCHA
|
||||
* Fixed issue when link from YouTube was not attached as video below the comment, #244
|
||||
* Fixed issue when background color was ignored in comment list for widget
|
||||
|
||||
## 0.0.78 – 22.12.2018
|
||||
|
||||
**Fixes:**
|
||||
|
||||
* Fixed issue when sending comment did not clear the field, but comment was actually added
|
||||
* Fixed issue when real-time update did not work properly
|
||||
* Fixed issue with anchors in specific comment, e.g. domain.com/page.html/#comment-1
|
||||
|
||||
## 0.0.77 – 21.12.2018
|
||||
|
||||
**Enhancements:**
|
||||
|
||||
* Warn users about missing API keys when reCAPTCHA enabled, #333
|
||||
* Removed .map.css & .map.js files, package is not lighter, #336
|
||||
* Chart data in Console tab is now display months data in native language + it is now cached
|
||||
|
||||
**Fixes:**
|
||||
|
||||
* Fixed issue when user avatars did not display in the admin, #331
|
||||
* Fixed issue when new comment alert was shown when comment was deleted or on moderation, #335
|
||||
* Fixed issue when comment notification was sent for non-comment (related to WooCommerce)
|
||||
|
||||
|
||||
## 0.0.76 – 09.12.2018
|
||||
|
||||
**Enhancements:**
|
||||
|
||||
* Speed improvements, comments should load even faster now
|
||||
* "Add comment" placeholder is the comment field is not users semi hidden color from design settings, #329
|
||||
* Added new hook `anycomment/user/logged_in` fires after user is successfully logged in
|
||||
* Added 304 code notice for WP Super Cache users, #296
|
||||
|
||||
**Fixes:**
|
||||
|
||||
* Fixed design issue when social tab was not displaying proper form styles
|
||||
* Fixed issue when Mail.Ru did not show as active when enabled
|
||||
* Fixed issue when some websites had problem with loading comments or widget in sidebar, #327
|
||||
* Fixed issue when user was not notified about new reply when sent from admin panel, #330
|
||||
* Possible fix of invalid nonce error when dealing with cache plugins (implemented for: WP Super Cache, WP Rocket, WP Fastest Cache and W3 Total Cache)
|
||||
|
||||
## 0.0.75 – 05.12.2018
|
||||
|
||||
**Enhancements:**
|
||||
|
||||
* Added Yandex & Mail.Ru to authorization options, #282
|
||||
* Integration settings are not split into tabs for easier navigation
|
||||
* Admin settings are now saved without page reload
|
||||
|
||||
**Fixes:**
|
||||
|
||||
* Fixed issue when error was shown in Tools tab
|
||||
* Fixed issue when WP User Avatar settings were not taking affect
|
||||
|
||||
## 0.0.74 – 27.11.2018
|
||||
|
||||
**Enhancements:**
|
||||
|
||||
* Added ability guest users to like/dislike, #179
|
||||
* Added Steam as authorization option, #311
|
||||
* Added likes/dislikes, #322
|
||||
* Added new option to control type of likes to display: just likes or likes/dislikes, #322
|
||||
* JS main dependency is not much lighter ~600kb
|
||||
|
||||
**Fixes:**
|
||||
|
||||
* Fixed issue when "New comment was added" alert was not showing when real-time updates option was on, #297
|
||||
* Fixed possible authentication problem
|
||||
* Fixed issue when guest users could subscribe multiple times for same post
|
||||
* Fixed issue when admin bar setting was not taken affect
|
||||
* GDPR checkbox is unchecked by default
|
||||
|
||||
## 0.0.73 – 21.11.2018
|
||||
|
||||
**Enhancements:**
|
||||
|
||||
* Added pretty like animation, #316
|
||||
* New widget to display list of comment in the sidebar, #319
|
||||
|
||||
**Fixes:**
|
||||
|
||||
* Fixed issue when sender name was not set from the admin panel, #317
|
||||
* Fixed issue when it was not possible to copy long text as it was folding/unfolding on this action, #320
|
||||
* Fixed issue when newlines and some of the other issue when user was posing comment as non-admin user
|
||||
* Fixed issue when global border radius was not changing based on the settings value
|
||||
* Fixed issue when repeating error messages could have been shown in case user tried to use admin's email to login via social, #312
|
||||
* Possible fix to the issue when some of the users experienced problems with real time notification about new comments, #310
|
||||
|
||||
**Other:**
|
||||
|
||||
* Social icons are now on the right of the avatar, #318
|
||||
|
||||
## 0.0.72 – 15.11.2018
|
||||
|
||||
**Fixes:**
|
||||
|
||||
* Fixed issue when alert error message about Instagram was showing on every social tab
|
||||
* Fixed issue with dropdown when items were aligned to the opposite side of it, #307
|
||||
* Fixed WooCommerce compatibility (#302) + added compatibility when WooCommerce reviews are not used within tabs (#308)
|
||||
* Fixed issue when copyright was not possible to uncheck, #301
|
||||
* Possible fix for Internet Explorer 11
|
||||
* Fixed issue when native notification from WordPress was inheriting styles from plugin, #300
|
||||
* Fixed issue when emails were not sending
|
||||
* Fixed issue when some of the themes were cut or had broken templates because of plugin
|
||||
|
||||
**Other:**
|
||||
|
||||
* Added missing translation for subscription form
|
||||
|
||||
|
||||
## 0.0.71 – 13.11.2018
|
||||
|
||||
|
||||
**Fixes:**
|
||||
|
||||
* Fixed 500 error on latest version
|
||||
|
||||
|
||||
## 0.0.70 – 13.11.2018
|
||||
|
||||
**Enhancements:**
|
||||
|
||||
* Added ability to see list of ratings in "Rating" submenu
|
||||
* Added ability to see list of subscribers in "Subscribers" submenu
|
||||
* Added ability to see list of emails in "Emails" submenu
|
||||
* Added transliteration for username, now instead of having `{socialname}_{username}`, it would be prettier, e.g. john_doe. Current usernames would be converted accordingly, #298
|
||||
* Added "All In One WP Security" to the list of possible problems as it may cause failure to load comments, #284
|
||||
* Subscription form: Better visual design for subscription form, #294
|
||||
* Subscription form: guest users can now subscribe but need to confirm it by provided email, #294
|
||||
* Subscription form: users can unsubscribe anytime by following the link provided in the bottom of the email, #294
|
||||
* Subscription form: added email template for confirmation email, #294
|
||||
* Plugin is now following PSR-4 and most of the plugin comply with WordPress Coding Standards
|
||||
|
||||
**Fixes:**
|
||||
|
||||
* Fixed issue when on mobile devices attachments icon was too small to click on
|
||||
* Fixed issue when it was not possible to load or add comments for custom post types, #292
|
||||
* Fixed issue when email notifications were not send when reply option was disabled
|
||||
* Fixed issue when some hooks related to rest in functions.php were causing incorrect notification in console
|
||||
* Fixed issue when it was not possible to turn off some of the default options in admin
|
||||
* Fixed a few typos in translations
|
||||
|
||||
## 0.0.69 – 06.11.2018
|
||||
|
||||
**Fixes:**
|
||||
|
||||
* Fixed issue when incorrect option was used to grab admins email on some websites
|
||||
* Fixed issue when recent addition of shortcode could break WP native API
|
||||
|
||||
## 0.0.68 – 05.11.2018
|
||||
|
||||
**Enhancements:**
|
||||
|
||||
* WooCommerce support, #280 (credits to @artikus11)
|
||||
* Added new option to show/hide list of available social networks under WordPress' native login form, #150
|
||||
* Added new shortcode `[anycomment_socials]` to "Shortcodes" tab to display list of available social to login in custom place
|
||||
* Added new option to show/hide admin bar for regular users and those who used social network, #290, #233
|
||||
* Added moderation icon besides comment owner name to point to the admin that this comment is waiting to be moderated, #291
|
||||
* Added edited icon besides comment owner name to show users that comment was edited, #243 (credits @mihdan)
|
||||
* Subscription: Added ability to subscribe by email to comments for specific post, #71
|
||||
* Subscription: Added ability customize email template, #71
|
||||
* Added new option to to specify sender name
|
||||
|
||||
**Fixes:**
|
||||
|
||||
* Fixed issue with social icon conflict with existing Fontawesome library, #288
|
||||
* Fixed issue when user agreement checkbox was misaligned on some of the websites
|
||||
* Fixed issue when dropdown was too narrow and some options were not seen well, #289
|
||||
* Fixed issue when links and other tags were missing attributes (e.g. `<a>` was missing href)
|
||||
|
||||
|
||||
## 0.0.67 – 01.11.2018
|
||||
|
||||
**Enhancements:**
|
||||
|
||||
* Added original comments wrapper. Should help themes align comments properly, #283
|
||||
* Added "WordPress only" as a form type in "Elements" tab
|
||||
* Added new option under "Generic" tab to define comment update time in minutes
|
||||
* Added helper to "Possible problems" which detects problematic hooks which deactivate WP REST API
|
||||
|
||||
**Fixes:**
|
||||
|
||||
* Fixed translations in "Integration" tab regarding reCAPTCHA, #269
|
||||
* Fixed issue when comments were not displaying in Internet Explorer, #272
|
||||
* Fixed issue when comments were not shown in short page, #275
|
||||
* Fixed issue when plugin was conflicting with jQuery which caused problems for sticky headers, sliders, etc, #274
|
||||
* Fixed issue when facebook URL was longer then 100 chars. Now such URLs will be added to user meta, #285
|
||||
* Minor fixes to CSS for proper alignment of elements
|
||||
* Fixed issue when some websites had problems that they saved the post and some of the tags or attributes were not saved (kses issue)
|
||||
* Fixed issue when comments were not put on hold when matched stop words
|
||||
|
||||
|
||||
## 0.0.66 – 26.10.2018
|
||||
|
||||
**Enhancements:**
|
||||
|
||||
* Same style for name when user does not have website or social available
|
||||
* JavaScript bundle is now having async to speed-up loading of comments, #256 (credits @mihdan)
|
||||
* Added ability to define comments background color, border radius, outside (margin) and inside (padding) space, #249
|
||||
* nofollow for link in plugin copyright, #249 (credits @artikus11)
|
||||
* User is not alerted when comment was added in case when "Moderate first" option is enabled, as not users thought that comment was not send and sent duplicates, #249 (credits @artikus11)
|
||||
* Added ability to add admin links to all moderated comments or to single one, #246
|
||||
|
||||
**Fixes:**
|
||||
|
||||
* Fixed issue when on update of the comment, previous text was recovered, #249
|
||||
* Fixed issue with comments which are not wrapped with `<p>` tag causing them to have different line height then other comments, #249
|
||||
* Fixed issue when button border radius was also changing it for "Author" label, #249
|
||||
* Fixed AnyComment logo design in the footer of comments, #249 (credits @artikus11)
|
||||
* Fixed issue when social icons could be not well aligned when custom designed is used and global font size is bigger then usual, #250 (credits @artikus11)
|
||||
* Corrected description for reCAPTCHA integration about "Invisible" type, #264 (credits @LDSgent)
|
||||
* Fixed issue when email queue table was having incorrect structure which caused issue with email notifications, #266
|
||||
* Fixed issue when send/save comment button was disabled on error and user could submit form again, #260 (credits @mihdan)
|
||||
* Fixed issue when "or as guest" part was showing even when "Only social" option was chosen, #253
|
||||
|
||||
## 0.0.65 – 22.10.2018
|
||||
|
||||
**Enhancements:**
|
||||
|
||||
* New design
|
||||
* Optimized main JavaScript file, removed some dependencies and now it lighter
|
||||
* Other little cosmetic changes and improvements
|
||||
|
||||
**Fixes:**
|
||||
|
||||
* Fixes various visual bugs related to CSS on frontend
|
||||
* Fixed issue when some of the users received too many repeating emails cause by incorrect table structure, #240
|
||||
* Fixed issue when clicking on checkbox from reply could uncheck checkbox from other form
|
||||
* Fixed issue when guest user could rate page many times
|
||||
* Fixed issue when users had username instead of first and last name in the comment, #232
|
||||
* Fixed possible issue when user social avatar was not uploaded causing him to have default avatar
|
||||
* Fixed issue when button border radius from design settings was ignored, #231
|
||||
* Fixed issue with quotes on some of the website, #230
|
||||
* Possible fix for Safari problem when users were unable to save admin form, #159 (credits @mihdan)
|
||||
* Fixed issue when admin comments with links were marked to be moderated (credits @artikus11), #236
|
||||
|
||||
## 0.0.64 – 18.10.2018
|
||||
|
||||
**Fixes:**
|
||||
|
||||
* Fixed issue with rating, some of the users said that they could not rate posts more then once, #235
|
||||
|
||||
|
||||
## 0.0.63 – 17.10.2018
|
||||
|
||||
**Fixes:**
|
||||
|
||||
* Fixed issue when users were unable to place rating as migration failed to create rating table from 0.0.61, #217
|
||||
|
||||
## 0.0.62 – 17.10.2018
|
||||
|
||||
**Enhancements:**
|
||||
|
||||
* Cosmetic changes to paragraphs as now it is more visible when new one started, #225
|
||||
|
||||
**Fixes:**
|
||||
|
||||
* Fixed issue when comment moderation was on, but they were still showing to the end user, #223
|
||||
* Changed Product to Article for rating as provides clearer idea about the content inside, #220
|
||||
* Fixed issue when scrolling to comments section or to specific comment was not working and was throwing console error, #219
|
||||
* Fixed issue when users were unable to place rating as migration failed to create rating table from 0.0.61, #217
|
||||
* Fixed issue when user was able to send empty comment before even typing anything, #226
|
||||
* Fixed issue when user could click two times on send comment button and duplicate comment would be sent, #218
|
||||
* Fixed issue when on some websites REST API requests were cached, #216, #224
|
||||
|
||||
|
||||
## 0.0.61 – 15.10.2018
|
||||
|
||||
**Enhancements:**
|
||||
|
||||
* Added ability to rate page in comments as guest or logged in user (possible to disable from admin), #156
|
||||
* Added ability to edit comment or reply to a comment right below it, #164
|
||||
* Added new option to enable/disable "Read more" for long comment, #169
|
||||
|
||||
**Fixes:**
|
||||
|
||||
* Fixed bad layout problem in admin after 0.0.60 update
|
||||
* Fixed issue with comment dates when they were displaying e.g. "2 hours ago" even though comment was just posted, #208
|
||||
* Fixed issue when non-admin user was unable to send some of the custom formatting from editor, #210
|
||||
* Fixed issue when some clients have new MySQL version and `utf8mb4_unicode_520_ci` is no longer support, #211
|
||||
* Fixed issue when close button of the gallery was not seen because of admin bar being over it (when user is logged in), #209
|
||||
* Added missing set-up instructions per social network, #215
|
||||
* Fixed issue when non-owner of the comment could see edit and delete actions (they did not work anyways), #203
|
||||
* Fixed issue when comment was liked and after refresh it was still showing no likes, #152
|
||||
|
||||
## 0.0.60 – 10.10.2018
|
||||
|
||||
**Enhancements:**
|
||||
|
||||
* Cosmetics CSS changes to the list of socials on user side
|
||||
* New fresh look of admin interface (new look for form fields, fixed font sizes, etc)
|
||||
* Added better color picker in admin, #168
|
||||
|
||||
|
||||
**Fixes:**
|
||||
|
||||
* Fixed issue when update comment and then reply action still was on the update action when sending comment, #205
|
||||
* Fixed issue with news description having "?" in Russian language
|
||||
|
||||
## 0.0.59 – 06.10.2018
|
||||
|
||||
**Enhancements:**
|
||||
|
||||
* Now when option "show alert on new comment" is on, new comment will be show automatically, without a need to click on the alert message
|
||||
* Added "Tools" tab for having different helpers from plugin. Ability to drop cache, open comments for all posts, pages, any post type, WooCommerce and see debug information
|
||||
|
||||
**Fixes:**
|
||||
|
||||
* Fixed issue when "Read more" was overflowing text
|
||||
* Fixed issue when logged in user did not see his avatar in editor, #189
|
||||
* Fixed issue when comment count header was not showing after recent update, #199
|
||||
* Fixed issue when table for managing notification emails was not created, #196
|
||||
* All tables which come from plugin now prefixed as defined by config, #200
|
||||
* Now editor styles also adapt to custom styles defined in "Design" tag (e.g. font family, font size, etc), #195
|
||||
* Fixed issue when some themes have special styles for `<p>` or `<ul>` tag which caused comment text to be weirdly formatted, #202
|
||||
* Fixed issue when user was not moved to the editor on reply/edit/update comment action, #191
|
||||
* Fixed issue when option "show alert on new comment" was shown to the user who sent the comment, #193
|
||||
* Fixed issue when user was able to send empty comment text because editor leaves some underlying `<p>` tag which is visually invisible and therefore looks like empty comment, #197
|
||||
* Fixed issue when remembered comment did not recover after page refresh, #201
|
||||
* Fixed issue when admin did not receive email notification about new comment from guest users, #194
|
||||
|
||||
**Other:**
|
||||
|
||||
* Corrected Russian translation for option to clean editor formatting, #192
|
||||
|
||||
|
||||
## 0.0.58 – 04.10.2018
|
||||
|
||||
**Enhancements:**
|
||||
|
||||
* Added left side highlight of a comment when clicked on "replied to" link and when user comes from email, #170
|
||||
* [Comment editor] Enhanced editor, now possible to use: bold, italics, underline, quote, order/unordered list and link, #47
|
||||
* [Comment editor] Ability to choose what editor options are available or disable toolbar completely, #47
|
||||
* Comment read more now considers content height instead of length as it includes HTML and website can be wide, which breaks logic of content length, #105
|
||||
* Added "*" for name and email fields to point that they are important to enter
|
||||
* Send comment button is toggled as disabled when agreement is not accepted (for guest and authorized users)
|
||||
* Added Russian translation for lightbox, #187
|
||||
|
||||
|
||||
**Fixes:**
|
||||
|
||||
* Fixed issue with translations on number of comments in the header in Russian language, #178
|
||||
* Fixed issue when some websites had broken CSS styles after activating plugin, #177
|
||||
* Fixed issue when guest users were not able to submit uploaded documents, #175
|
||||
* Fixed issue when "Login with:" was displayed even thought none of the socials were enabled, #166
|
||||
* Now when comments is deleted, trashed/untrashed, marked as spam, status changed, its cache will be dropped and it will display on frontend accordingly, #162
|
||||
* Fixed broken header notice on installation (sorry guys, I know it sucks)
|
||||
* Fixed issue when comment attachment was not really deleted when comment was permanently deleted
|
||||
|
||||
## 0.0.57 – 25.09.2018
|
||||
|
||||
**Enhancements:**
|
||||
|
||||
* Added ability to disable WordPress from login options in "Socials" -> "WordPress", #154
|
||||
|
||||
* [Gallery] Ability to preview image in the gallery (can use LEFT-RIGHT arrow keys to iterate through images, ESC to close gallery), #147
|
||||
* [Gallery] After image or file is uploaded, they will be added as small block below the comment box, #147
|
||||
* [Gallery] Images are now handled smarter: original source is kept as it is and small thumbnail is cropped from original source as a preview, #147
|
||||
* [Gallery] Ability to delete file when adding/updating comment (file will be erased from DB and filesystem), #147
|
||||
|
||||
* Removed ability to choose predefined themes and no more support for dark theme in favor of customizer. However, white theme is kept as the default one, #155
|
||||
|
||||
> The support of dark theme was a bit pain in the ass. So we sat and thought it would be better if give control over the theme to you.
|
||||
> Give ability to drag & drop some of the elements, change colors, sized, etc. However it will come a bit further, for now a few new design options will be added.
|
||||
|
||||
* Added option to premoderate comments with links, #84
|
||||
* Improved comments caching, they should be working even faster now, #151
|
||||
|
||||
**Fixes:**
|
||||
|
||||
* Added missing Russian translation for "Sorting"
|
||||
* Fixed situation when one user with two social networks and same email address was always logged in with the first recorded social
|
||||
|
||||
|
||||
## 0.0.56 – 17.09.2018
|
||||
|
||||
**Enhancements:**
|
||||
|
||||
* Comments are now nested up to 3 levels, any further replies will be added without further nesting. Two benefits: easier to maintain mobile view + easier to follow conversation
|
||||
* Child comments are now having "reply to {name}" where {name} is the name of the person to whom reply is made
|
||||
* Comments are now cached. This will help to limit number of requests to the database, load comments faster & help people who have limited resource environments
|
||||
* From now on, plugin will crop original avatar from social into smaller version, which will increase loading speed of comment and take less disc space (existing avatar will be enhanced automatically for you), #149
|
||||
* Converted sorting dropdown to multi dropdown. Now it has sorting option & logout link. When user is guest, it only has sorting options, #145
|
||||
* When user registered via default WordPress form, and the same user is trying to authenticate using via social (using same email), he will see error message that he needs to use regular login form in this case, #143
|
||||
* Integration tab now has option to add reCAPTCHA to comment form (for all, guests or authenticated users only, choose theme, etc), #146
|
||||
* Added guides in Russian & English on how to set-up reCAPTCHA, #146
|
||||
* Added ability to change border radius of avatars, #148
|
||||
* Added WordPress icon as authorization option in social list, #131
|
||||
* Added ability to choose default avatar (when user does not have any avatar). Currently possible to choose default from AnyComment or ones available from [Gravatar](https://en.gravatar.com/site/implement/images/), #138
|
||||
* Small cosmetic style changes
|
||||
|
||||
**Fixes:**
|
||||
|
||||
* Added Russian translations for default sorting function
|
||||
* Fixed list-style issue on some websites
|
||||
* Logout link does not ask extra confirmation
|
||||
* Sorting dropdown will close when clicked outside the element. Previously it was always open
|
||||
|
||||
## 0.0.55 – 10.09.2018
|
||||
|
||||
**Enhancements:**
|
||||
|
||||
* Added a Jetpack, Disqus, Disable Comments and a few other plugin to the list of possible problems, #134
|
||||
* Improved mobile layout, #106
|
||||
* Improved speed of theming, now x1.5 faster to generate custom styles
|
||||
* Added logout link to logged in client, #133
|
||||
* Added ability to customize generated notification email (only for admin and reply for now), #97
|
||||
* Added "Shortcodes" tab. It will have list of available shortcodes, #139
|
||||
* Added a helper notice to admins & moderators about closed comments per post, globally or if post is password protected (comments did not show in this case), #142
|
||||
* Added ability to rearrange guest form fields or remove unwanted, #125
|
||||
* Added ability to define default sorting (ascending or descending order), #85
|
||||
|
||||
**Fixes:**
|
||||
|
||||
* Fixed notice message in admin, #132
|
||||
* Fixed issue when "load on scroll" option was active and comments did not load on short pages because it was not possible to scroll, #135
|
||||
* Fixed issue when custom styles were ignored as dark theme was selected
|
||||
* JavaScript & Css assets are not loaded on the page, when comments are disabled or post is password protected
|
||||
* Fixed issue when user was trying to login using the social network with same email as one of the existing account. It caused no problem, but redirect to page and user was not logged in, #29
|
||||
|
||||
|
||||
## 0.0.54 – 06.09.2018
|
||||
|
||||
**Enhancements:**
|
||||
|
||||
* Small improvements in the documentation on how to set-up certain social network
|
||||
|
||||
**Fixes:**
|
||||
|
||||
* Small fixed for cached sidebar news. Added dependency on the website locale
|
||||
* Fixed issue when some users were unable to authorize using Google caused 500 error, #127
|
||||
* Fixed issue on comment delete, no more need to add DELETE option in Apache or Nginx
|
||||
* Fixed typo in Russian translation message when trying to delete a comment
|
||||
* Fixed issue when comments displayed on the single page could go over the page content as invisible element, #129
|
||||
* Fixed issue with file input icon (was displaying as black square instead), #128
|
||||
* Fixed issue when send comment button was too close to the "accept privacy policy" checkbox
|
||||
|
||||
## 0.0.53 – 04.09.2018
|
||||
|
||||
**Fixes:**
|
||||
|
||||
* Small fixes to translations regarding options to show/hide user URL
|
||||
* Fix for main plugin shortcode, now use `[anycomment include="true"]` to include comments on custom place (reported by Ivan)
|
||||
|
||||
## 0.0.52 – 03.09.2018
|
||||
|
||||
**Enhancements:**
|
||||
|
||||
* Ability to customize styles of the plugin in the frontend (e.g. color of button, text size, color, avatar sizes, etc). Check out "Settings" -> "Design" tab , #113
|
||||
* Files: attach files by dragging into the comment area, #68
|
||||
* Files: attach files via by clicking on small photo icon in the top right of the comment text field, #68
|
||||
* Files: ability to allow/disallow file upload by guest users, #68
|
||||
* Files: plugin will add URL of the uploaded file to the comment field (when there is already some comment text, URL will be appended), #68
|
||||
* Files: option to define comma-separated list of allowed MIME types (e.g. .jpg, .png) or even as image/* for all images and audio/* for audios, #68
|
||||
* Files: added list of uploaded files in the admin (possible to delete, paginate, etc), #68
|
||||
* When user logs out from admin top bar or somewhere else, he is going to be redirected back to post comment section instead of a login page, #122
|
||||
* Added some text above list social icons as some of the users were confused and thought these were sharing buttons, #123
|
||||
* Added "Possible Problems" to dashboard to help admin to figure out about possible problems or conflicts with other plugins, #117
|
||||
* When some comment is remembered the comment field will expand automatically after the page has loaded
|
||||
* Now "Read more", "Show less" link below long comment as some users were a bit confused that it is possible to expand comment by clicking on its text, #118
|
||||
* Ability to attach Tweets from Twitter directly in the comment by adding link to it, #96
|
||||
|
||||
**Fixes:**
|
||||
|
||||
* Fixed issue when white theme had white links
|
||||
* Fixed default options overwrite, before default values were not applied
|
||||
* Fixed missing Russian translation when user is guest and only has option to authorize using social
|
||||
* Some themes have hash navigation to comments as "#respond", so it was added, #124
|
||||
* Removed hash from "Callback URL" as Google does not allow it, #119
|
||||
|
||||
## 0.0.51 – 28.08.2018
|
||||
|
||||
**Enhancements:**
|
||||
|
||||
**Fixes:**
|
||||
|
||||
* Fixed issue when reply user dialog was in dark color in dark theme (invisible), #114
|
||||
* Fixed issue when guest inputs (name, email, website) were white in dark theme
|
||||
|
||||
## 0.0.50 – 27.08.2018
|
||||
|
||||
**Enhancements**
|
||||
|
||||
* News of plugin in the right sidebar inside console are display per your blog language. For now English and Russian supported
|
||||
* Likes are now shown to guest users, however they do not have ability to like. When liked by guest, plugin will show alert about requirement to login, #108
|
||||
* Removed submenu from main menu in admin. Now all of the submenus can be found as tabs inside the dashboard
|
||||
* "Settings" tab in admin is now split into specific configuration tabs: General, Design, Moderation & Notifications
|
||||
* Now possible to specify #comments, #to-comments or #load-comments (e.g. https://yourwebsite.com/cool-post/#comments) to move users screen to comment section
|
||||
* Added proper subject to each type of email (e.g. sent to admin and to user as reply)
|
||||
* Added option to make video or image link as attachment, #87
|
||||
* Added option to make links in comment clickable or not, #83
|
||||
|
||||
**Fixes:**
|
||||
|
||||
* Added [Facebook guide](https://anycomment.io/en/api-facebook/) details regarding "Status" & HTTPs requirement & fixed other guides, also added instruction on how and where to find "Callback URI", #102
|
||||
* Cosmetic style corrections (fixed height/alignment/decoration of button, make inline guest inputs 100%), #104
|
||||
* Fixed issue when link in news sidebar lead to 404 page, #109
|
||||
* Plugin was not showing comment box until option to show comment was enabled and at least one social was configured. Now this logic is a bit different (plugin allows guest users), so now only required to enable option to show comment box, #112
|
||||
* Some users were confused with dropdowns in the admin, as they did not have any visuals, such as triangle to see that there is a list of options
|
||||
* When load on scroll is enabled and user comes from email his screen was not moved directly to the comment, #103
|
||||
* When user was logged in via social network, he was redirected back to the top of the post. Now he is being moved to comment section
|
||||
* Fixed issue with `trim()` warning (only some users experienced such problem) near avatars in Dashboard & Comments page in admin
|
||||
* Fixed issue when emails about comment reply were not send to guest users (as it was not planned to have guest form). Now we have, so should support it
|
||||
* Fixed dark theme CSS styles as after recent update of styles they got broken
|
||||
|
||||
**Other:**
|
||||
|
||||
* Added new entry to FAQ about Facebook forcing websites to have HTTPs in order to use API
|
||||
|
||||
## 0.0.49 – 24.08.2018
|
||||
|
||||
* Cosmetic fixes of form: avatar was not shown for logged in user & button was not properly aligned
|
||||
|
||||
|
||||
## 0.0.48 – 23.08.2018
|
||||
|
||||
> I will try to deliver more fixes and features over next release. Thanks for using AnyComment <3.
|
||||
> Please give us short review if you like it.
|
||||
|
||||
**Fixes:**
|
||||
|
||||
* Fixed division by 0 issue, which caused comments not to load, #101
|
||||
* Fixed some style conflict issues
|
||||
* Other small fixes & improvements
|
||||
|
||||
## 0.0.47 – 23.08.2018
|
||||
|
||||
**Fixes:**
|
||||
|
||||
* Fixed issue when selecting both types did not allow guests to leave a comment
|
||||
|
||||
## 0.0.46 – 23.08.2018
|
||||
|
||||
**Enhancements:**
|
||||
|
||||
* Major elements, such as textarea, buttons are now more unified, #90
|
||||
* Leave comment as guest, via social or both. Ability to define this from admin, #94
|
||||
* New comment form layout for guest users, social icons, #94
|
||||
* When guest user entered name, email and/or website, it will be remembered - no need to type every time
|
||||
* Added warning about [Clearfy](https://wordpress.org/plugins/clearfy/) (only when activated) in the dashboard as some users reported to have problems with it, #95
|
||||
|
||||
|
||||
**Fixes:**
|
||||
|
||||
* Fix for missing Gravatar images in the comment section by guest users & now a bit faster on repeating gravatars, #92
|
||||
* Added FAQ entry about how to fix problem when unable to delete comment (lack of `DELETE` as request option)
|
||||
* Comment text is now stored safely even when you close tab or switch tabs, so you can continue typing it
|
||||
* Added user's website to the comment when submitted as guest, #93
|
||||
|
||||
## 0.0.45 – 21.08.2018
|
||||
|
||||
> *IMPORTANT NOTE 1:* Please if you find any bugs report on the [support forum](https://wordpress.org/support/plugin/anycomment) or the [issue tracker](https://github.com/bologer/anycomment.io/issues)
|
||||
|
||||
|
||||
> *IMPORTANT NOTE 2:* this plugin update includes email sending features, which might require SMTP configuration.
|
||||
> We recommend to install [WP Mail SMTP](https://wordpress.org/plugins/wp-mail-smtp/) and follow on the instruction below:
|
||||
> [English guide on SendPulse example](https://anycomment.io/en/smtp-sendpulse/)
|
||||
> [Инструкция на русском на примере SendPulse](https://anycomment.io/smtp-sendpulse/)
|
||||
|
||||
**Enhancements:**
|
||||
|
||||
* Added Instagram, Dribble and Twitch as authorization option, #72
|
||||
* Alert shown when new comment was added. Comment list will be automatically refreshed once clicked on alert, #63
|
||||
* Added option to enabled/disable alert notification about new comment, #63
|
||||
* Now social media avatar shown globally in admin (e.g. in `dashboard`, `user.php`, `comment.php`, etc), #61
|
||||
* Better layout for plugin news in admin, `New` label is shown for articles which are not older then 2 weeks, #62
|
||||
* Added caching for news in dashboard (no need to load them every time) and limited to 3
|
||||
* New design for setting up social networks, now tabbed, #64
|
||||
* Added guides English & Russian guides for Vkontakte, Facebook, Twitter, Google, GitHub, Odnoklassniki, Instagram, Twitch, Dribbble to help you with configurations, #66
|
||||
* Added base plugin shortcode - `[anycomment]` to displays comment box, #67
|
||||
* Now links, images or videos (e.g. YouTube, Rutube) displayed as attachments under comment text, #69
|
||||
* Long comment text will be limited in height, by clicking on text will allow to expand it, #73
|
||||
* Adding new comment is now 2x faster, ~500ms
|
||||
* Loading comments is now 2x faster and there is no more iframe, therefore comments loaded directly
|
||||
* Plugin is now sending email notification about new reply to the comment, #71
|
||||
* Clicking on the "Reply" button in the email, will redirect user directly to the reply in the comments section, #81
|
||||
* Removed iframe, now comments rendered directly on the page = comments can be searched by crawlers = better SEO, #80
|
||||
* Option to define interval to check for new comments, #82
|
||||
* Option to define list of comma-separated words. If one of them match comment text, it will be marked for moderation, #86
|
||||
* Comment text field is now expanding automatically when you start typing new comment/edit existing/replying to someone
|
||||
* Option to notify administrator by email about new comment, #77
|
||||
|
||||
**Fixes:**
|
||||
|
||||
* When user did not have social profile URL it lead to clickable name but incorrect URL, #60
|
||||
* Do not load styles & scrips globally, only in plugin pages
|
||||
* Plugin icon in admin sidebar was not displaying correctly and was overflowing when menu was opened
|
||||
* Newlines in comment are now displaying correctly. Previously everything was as a single line
|
||||
* Fixed issue when limit of number of comments per page was ignored and maximum number of comments displayed
|
||||
* Fixed overlapping sidebar news in admin on screens smaller then 1000px
|
||||
|
||||
## 0.0.41 – 29.07.2018
|
||||
|
||||
* Fix issue when User Agreement checkbox was not shown
|
||||
|
||||
## 0.0.40 – 29.07.2018
|
||||
|
||||
**Enhancements:**
|
||||
|
||||
* Comment send button is now changing text based on action (edit/reply/send)
|
||||
* Ability to specify User Agreement URL (used to collect consents from users to moderate personal information), text & URL is shown to guest users below list of available authorization options, #56
|
||||
* Ability to delete personal or any comment if user has moderate permission, #59
|
||||
* Moved social URL to the name of the user, better user experience (when enabled to show URLs)
|
||||
|
||||
**Fixes:**
|
||||
|
||||
* Uninstall hook was not properly cleaning-up data after plugin, #42
|
||||
* Social authorization icon was shown even though it was disabled in admin, #57
|
||||
* Guest user is not redirected back to post as redirect param is missing in social authentication URL, #58
|
||||
* Options to enable/disabled show user social profile URL was ignored
|
||||
|
||||
## 0.0.35 – 20.07.2018
|
||||
> **Important note:**
|
||||
> Plugin was completely rewritten to React. It was required as on the very early stage it had a lot of JavaScript, partly merged with HTML).
|
||||
> Logic behind plugin stays the same, we even added a few improvements and fixes, hope you like the change.
|
||||
|
||||
**Enhancements:**
|
||||
|
||||
* Comments rewritten to React!
|
||||
* Post author now has "Author" badge in comments section, #45
|
||||
* All assets are now minified (css, js) = faster load time
|
||||
* Now possible to see number of likes per comment (`/wp-admin/edit-comments.php`) & user (`/wp-admin/users.php`), #43
|
||||
* All settings moved to dashboard tabs (pages are still available, no worries), #38
|
||||
* Mark new comment to be moderated first or be approved immediately, #50
|
||||
* Ability to choose whether to show social profile URL in comments (when show is chosen, mini social icon in the bottom right corner will be clickable), #51
|
||||
* Added new column "Social URL" in `users.php` which displays user's social profile URL
|
||||
|
||||
**Fixes:**
|
||||
|
||||
* Fixed issue when long texts were overflowing maximum with of the comment
|
||||
* Fixed issue when it was not possible to disabled footer copyright ("Thanks" option in admin), #46
|
||||
* Fixed issue when first & last name was not recorded in user profile
|
||||
|
||||
## 0.0.33 – 16.07.2018
|
||||
* Fixed problem with array syntax support on PHP version 5.5, #49
|
||||
* Fixed possible XSS in the comment
|
||||
|
||||
## 0.0.32 – 10.07.2018
|
||||
* introducing comment likes, #35
|
||||
* minified CSS, to save some loading time
|
||||
* ability to define default user role on creation (registration via plugin), #37
|
||||
* when user has non-default Gravatar, use it, otherwise use default from plugin, #10
|
||||
* proper integration with WP User Avatar & Akismet
|
||||
* load commnets on scroll (new options to load comments when user scroll to it), #36
|
||||
* and other small bug fixes & improvements
|
||||
|
||||
## 0.0.2 – 01.07.2018
|
||||
* admin OR moderator was unable to edit comment as it was too old
|
||||
* ability to specify number of default comments to load. The same settings applies to number of comment loaded per page, when there are more comments on post/page then specified in settings
|
||||
* plugin is not enabled until you specify at least one social network, even thought you set plugin to be ON in general settings, #11
|
||||
* refactoring of comments logic towards native WordPress REST
|
||||
* ability to update any comment if user has `moderate_comments` or `edit_comment` capability (no time limit)
|
||||
* ability to update personal comment within 5 minutes
|
||||
* guest user cannot see comment actions (reply/edit)
|
||||
* added two new authorization methods: GitHub & Odnoklassniki
|
||||
* comment text box was overflowing on long texts, #22
|
||||
* better responsiveness of dashboard layout, #32
|
||||
* avatars uploaded locally to escape problem when some social medias were blocking access to avatar after token expiration, #14
|
||||
* display most recent news from plugin, #31
|
||||
* other small bug fixes and improvements
|
||||
* moved completely towards REST architecture
|
||||
|
||||
## 0.0.1 - 24.06.2018
|
||||
* First Release
|
||||
* Options to specify API details (secrets, etc) for social authorization: Vk, Twitter, Facebook, Google
|
||||
* Integrated with [WP User Avatar](https://wordpress.org/plugins/wp-user-avatar/)
|
||||
* Authorize via VK, Twitter, Facebook, Google
|
||||
* date when comment is left is based on website's language. List of supported languages can be seen [here](https://github.com/hustcc/timeago.js/tree/master/src/lang)
|
||||
* comment count at the top updated automatically when new comment added
|
||||
* add comments with AJAX, no need to refresh the page
|
||||
* ability to reply to nested comments up to 2 levels
|
||||
* when all socials disabled, libraries not loaded and they are not shown to end user
|
||||
23
spec/fixtures/dynamic_finders/plugin_version/apiki-wp-care/composer_file/package.json
vendored
Normal file
23
spec/fixtures/dynamic_finders/plugin_version/apiki-wp-care/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"name": "apiki-wp-care",
|
||||
"version": "0.3.3",
|
||||
"description": "Apiki WP Care Plugin",
|
||||
"main": "apiki-wp-care.php",
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"grunt": "^1.0.1",
|
||||
"grunt-concurrent": "^2.3.1",
|
||||
"grunt-contrib-concat": "^1.0.1",
|
||||
"grunt-contrib-imagemin": "^1.0.1",
|
||||
"grunt-contrib-sass": "^1.0.0",
|
||||
"grunt-contrib-uglify": "^2.0.0",
|
||||
"grunt-contrib-watch": "^1.0.0",
|
||||
"grunt-wp-i18n": "^0.5.4",
|
||||
"load-grunt-config": "^0.19.2",
|
||||
"load-grunt-tasks": "^3.5.2",
|
||||
"time-grunt": "^1.4.0"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
}
|
||||
}
|
||||
63
spec/fixtures/dynamic_finders/plugin_version/blank-footnotes/change_log/changelog.txt
vendored
Normal file
63
spec/fixtures/dynamic_finders/plugin_version/blank-footnotes/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,63 @@
|
||||
*** Blank Footnotes ***
|
||||
|
||||
2019-02-11 version 1.6.3
|
||||
|
||||
* Fixed plugin name
|
||||
|
||||
2018-11-10 version 1.6.2
|
||||
|
||||
* Added note for Gutenberg
|
||||
* Tested with Wordpress 5.0.1
|
||||
|
||||
2018-11-10 version 1.6.1
|
||||
|
||||
* Added note for Gutenberg.
|
||||
* Fixed style according to WordPress Coding Standards for
|
||||
PHP_CodeSniffer.
|
||||
* Tested with Wordpress 5.0 classic editor
|
||||
|
||||
2017-04.05 version 1.6
|
||||
|
||||
* Add domain path
|
||||
|
||||
2016-04-30 version 1.5
|
||||
|
||||
* Fix typo
|
||||
|
||||
2016-04-20 version 1.4
|
||||
|
||||
* Fix translation
|
||||
|
||||
2016-02-18 version 1.3
|
||||
|
||||
* Fix jetpack detection
|
||||
|
||||
2016-02-08 version 1.1
|
||||
|
||||
* Fix translated string
|
||||
* Fix button string
|
||||
* Fix syntax for Wordpress coding standard
|
||||
|
||||
2016-02-01 version 1.0
|
||||
|
||||
* First version in Wordpress plugins directory
|
||||
|
||||
2016-01-27 version 0.4
|
||||
|
||||
* Added Documentation in PHPDoc format.
|
||||
* Renamed some function with bfn_ preposition
|
||||
|
||||
2016-01-26 version 0.3
|
||||
|
||||
* Added localization (in langs)
|
||||
* Added italian language
|
||||
|
||||
2016-01-22 version 0.2
|
||||
|
||||
* Added button for text editor
|
||||
* Added button for TinyMCE
|
||||
|
||||
2016-16-01 version 0.1
|
||||
|
||||
* Initial release
|
||||
* Regex to convert Markdown footnotes to HTML
|
||||
@@ -0,0 +1,5 @@
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.0 - 2018-12-23 =
|
||||
* Initial release
|
||||
|
||||
65
spec/fixtures/dynamic_finders/plugin_version/buddy-bbpress-support-topic/change_log/CHANGELOG.md
vendored
Normal file
65
spec/fixtures/dynamic_finders/plugin_version/buddy-bbpress-support-topic/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,65 @@
|
||||
Versions
|
||||
========
|
||||
|
||||
2.1.4
|
||||
---
|
||||
|
||||
+ Change the support status in topic, now live update the prefix title.
|
||||
+ Use wp.a11y.speak in AJAX events.
|
||||
+ Improvement (back-office): Add support status "Not resolved" to a new topic when parent forum is a dedicated forum support.
|
||||
+ Bump Tested Up version to 4.7.3
|
||||
+ Update readme.txt
|
||||
|
||||
2.1.3
|
||||
---
|
||||
|
||||
+ Bump Tested Up version to 4.7.2
|
||||
+ Update donate link
|
||||
|
||||
2.1.2
|
||||
---
|
||||
+ Prevent users not having the rights to mark the topic as resolved
|
||||
|
||||
2.1.1
|
||||
---
|
||||
|
||||
+ Solves a bug with WP 4.7
|
||||
|
||||
2.1
|
||||
---
|
||||
|
||||
+ Guidelines & support topic templates for support only forums
|
||||
+ A new checkbox to mark topic as resolved directly when replying to a topic of a support only forum
|
||||
+ minor bug fixes
|
||||
|
||||
2.0
|
||||
---
|
||||
|
||||
+ No more support for bbPress 1.x
|
||||
+ More control on the support feature which can now be managed from the parent forum
|
||||
+ Email notifications for moderators in case of a new support topic
|
||||
+ New BuddyPress manage group tab (requires BuddyPress 2.0+) to manage the support feature for the group forum (bbPress 2.5+)
|
||||
+ Topics support status bulk edit
|
||||
+ a WordPress filter to add new support status
|
||||
+ Now available for each blog of the network
|
||||
|
||||
|
||||
1.1
|
||||
---
|
||||
|
||||
+ Stats in a new section of bbPress Right Now Dashboard Widget
|
||||
+ Sidebar Widget to display the stats on front end
|
||||
+ Topics can be filtered by support status on front and in back end
|
||||
+ Solves a bug in BuddyPress forums (bbPress 1.2) when used as sitewide one (ajax filter)
|
||||
|
||||
|
||||
1.0
|
||||
---
|
||||
|
||||
+ Support topics for bbPress 2.2.3
|
||||
|
||||
|
||||
0.1
|
||||
---
|
||||
|
||||
+ Support topics for BuddyPress group forums (bbPress 1.x)
|
||||
37
spec/fixtures/dynamic_finders/plugin_version/business-website-helper/change_log/changelog.txt
vendored
Normal file
37
spec/fixtures/dynamic_finders/plugin_version/business-website-helper/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,37 @@
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.8 =
|
||||
|
||||
Version update, tested for 4.6. Removed Google Libraries plugin from recommendation list because it hasn’t been updated for the recent versions of WordPress.
|
||||
|
||||
= 1.0.7 =
|
||||
|
||||
Version update, tested for 4.5.
|
||||
|
||||
= 1.0.6 =
|
||||
|
||||
Version update. Updated links.
|
||||
|
||||
= 1.0.5 =
|
||||
|
||||
Version update.
|
||||
|
||||
= 1.0.4 =
|
||||
|
||||
Version update.
|
||||
|
||||
= 1.0.3 =
|
||||
|
||||
Version update.
|
||||
|
||||
= 1.0.2 =
|
||||
|
||||
Minor update, changed links to https.
|
||||
|
||||
= 1.0.1 =
|
||||
|
||||
Minor update including style, additional help, and link back to website for more info.
|
||||
|
||||
= 1.0 =
|
||||
|
||||
Initial release.
|
||||
120
spec/fixtures/dynamic_finders/plugin_version/cache-control-by-cacholong/change_log/changelog.txt
vendored
Normal file
120
spec/fixtures/dynamic_finders/plugin_version/cache-control-by-cacholong/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,120 @@
|
||||
== Changelog ==
|
||||
All notable changes to this plugin will be documented in this file. Copy of all changes for last MAJOR version can also be found in readme.txt.
|
||||
|
||||
= 4.1.1 - 2019-02-22 =
|
||||
|
||||
* Added - When Wordpress cronjobs are disabled (DISABLE_WP_CRON = true), text with link to FAQ is shown underneath setting to activate cronjob purging
|
||||
* Added - Current timezone underneath setting for cronjob time of day
|
||||
|
||||
= 4.1.0 - 2019-02-21 =
|
||||
* Added - Plugin is capable to purge with Wordpress cronjobs
|
||||
* Added - Plugin is tested for usage with Wordpress 5.0.3
|
||||
* Added - Icon for 'Purge all caches' on adminbar
|
||||
* Fixed - Errors caused by empty 'File with hosts (JSON)' setting
|
||||
* Changed - 'Purge all caches' also available on frontend adminbar
|
||||
* Changed - Corrected a few spellerrors (cachalong -> cacholong)
|
||||
* Changed - Updated copyright from 2015-2018 to 2015-2019
|
||||
|
||||
|
||||
= 4.0.2 - 2018-11-15 =
|
||||
* Added - Plugin is tested for usage with Wordpress 5.0.
|
||||
* Fixed - Hook wp_unique_post_slug recieves 6 arguments instead of 4.
|
||||
* Changed - Retrieval of Wordpress default post types for flushing. Only public post types are used & flushable.
|
||||
* Changed - 'Itemlist to sentence' function also handles associative array's.
|
||||
|
||||
= 4.0.1 - 2018-03-14 =
|
||||
* Changed - Small improvement to readme.txt.
|
||||
|
||||
= 4.0.0 - 2018-02-26 =
|
||||
* Added - license.txt file
|
||||
* Added - Fingerprinting for assets
|
||||
* Changed - Plugin name change from Cache helper by Cacholong -> Cache control by Cacholong
|
||||
* Changed - Small changes in author / copyright
|
||||
* Changed - Language files updated
|
||||
* Changed - All php / phtml / js files a copyright / license block
|
||||
* Changed - Namespaced all classes
|
||||
* Changed - Improved prefix on all global functions cc_ -> cacholong_cc_
|
||||
* Changed - All namespaces to fully qualified names
|
||||
* Changed - Javascipt prefixes from cc_ -> cacholong_cc
|
||||
* Changed - Wordpress HTTP API is used instead of (custom) curl (wrapper).
|
||||
* Deprecated - Curl class.
|
||||
|
||||
= 3.2.1 - 2018-01-25 =
|
||||
* Fixed - Small fix for showing 'delay text'.
|
||||
|
||||
= 3.2.0 - 2018-01-24 =
|
||||
* Changed - Only show 'delay text' for pagespeed when purge was succesfull, instead of always.
|
||||
|
||||
= 3.1.1 - 2016-09-14 =
|
||||
* Fixed - Removed a few purge hooks from is_admin() to work again.
|
||||
|
||||
= 3.1.0 - 2017-12-22 =
|
||||
* Added - Delay text message for all purges.
|
||||
* Fixed - Handle non-array admin messages.
|
||||
* Changed - userOptions table is now used to handle session flash data, session handling is removed.
|
||||
* Changed - is_admin() to optimize performance frontend.
|
||||
* Changed - Removed log message for missing hosts json file, not needed anymore.
|
||||
* Changed - Language files updated.
|
||||
* Changed - Improvements in messages, phpDoc and debugging.
|
||||
* Deprecated - Sessions class.
|
||||
|
||||
= 3.0.0 - 2017-12-15 =
|
||||
* Added - Setting to enable or disable removing id attribute from stylesheet link tag. Nginx pagespeed needs css id removed to combine stylsheets.
|
||||
|
||||
= 2.0.2 - 2016-09-14 =
|
||||
* Added - Purges are triggered at trash and untrash.
|
||||
|
||||
= 2.0.1 - 2016-09-11 =
|
||||
* Added - Debug options added (triggered by WP_DEBUG).
|
||||
|
||||
* Changed - Changes in admin notice classes.
|
||||
* Fixed - Fixed message 'are you sure you want to activate' on activation hook. Removed nonce check.
|
||||
|
||||
= 2.0.0 - 2016-09-09 =
|
||||
* Changed - Setting fields for default and custom post types to trigger other purges.
|
||||
|
||||
= 1.4.0 - 2016-08-30 =
|
||||
* Changed - Properly handle purge for scheduled post.
|
||||
|
||||
= 1.3.0 - 2016-03-28 =
|
||||
* Changed - Purge messages are simplified. They are no longer saved directly to a session, but processed to one message per message type (error, notice, info ...). Detailed information about every purge is no longer given, to prevent a long list of purge messages.
|
||||
* Changed - Small improvement in handling https requests.
|
||||
* Changed - Small changes in handling non-existing hosts file.
|
||||
|
||||
= 1.2.7 - 2016-02-16 =
|
||||
* Fixed - session_destroy() gives warning when no session is available. Check for session_id before destroying implemented.
|
||||
|
||||
= 1.2.6 - 2016-02-16 =
|
||||
* Fixed - Al users can now use the 'purge all' button in the admin bar.
|
||||
|
||||
= 1.2.5 - 2016-02-16 =
|
||||
* Fixed - Curl timeout from 1 to 5 seconds, because some purge-requests take more then 1 second.
|
||||
|
||||
= 1.2.4 - 2016-01-04 =
|
||||
* Fixed - Function empty() can't handle temporary value from function to check if it is empty. Needs variable by reference. Only applies to < php 5.5.
|
||||
|
||||
= 1.2.3 - 2015-12-21 =
|
||||
* Fixed - Disable SSL verification in curl request to avoid issues.
|
||||
|
||||
= 1.2.2 - 2015-12-18 =
|
||||
* Fixed - Redirects happen when a https requests a purge. Let http(s) protocol determin the curl request protocol. So if https is used, the purge also uses https.
|
||||
|
||||
= 1.2.1 - 2015-11-27 =
|
||||
* Fixed - Navmenu update needs total cache flush.
|
||||
* Fixed - New shutdown method hanles all delayed purges at once.
|
||||
|
||||
= 1.2.0 - 2015-11-26 =
|
||||
* Added - Use default settings for hosts.json, when not available.
|
||||
* Added - Handle admin messages with ajax.
|
||||
* Added - Merge admin messages to converve space.
|
||||
* Changed - Check on post type to only allow certain post types to trigger purge. Works with a blacklist.
|
||||
|
||||
= 1.1.1 - 2015-11-17 =
|
||||
* Fixed - Activation and uninstall hooks are fixed.
|
||||
|
||||
= 1.1.0 - 2015-11-17 =
|
||||
* Added - Handle purge for post or page crud, slug changes & ajax change.
|
||||
* Fixed - Errors are saved in session, because inline ajax edit seems to break the inline edit (although it did not). To not the confuse the user, errors are saved in a session and retrieved in the next request.
|
||||
|
||||
= 1.0.0 - 2015-11-10 =
|
||||
* Added - First release.
|
||||
@@ -0,0 +1,69 @@
|
||||
== Changelog ==
|
||||
= 2.2.6 =
|
||||
* List, day and week views added to the events calendar shortcode
|
||||
|
||||
= 2.2.5 =
|
||||
* Updated the Full Calendar version
|
||||
|
||||
= 2.2.4 =
|
||||
* Fixed bug that prevented business directory style sheets from loading
|
||||
|
||||
= 2.2.3 =
|
||||
* Fixed some styling issues with the event calendar shortcode
|
||||
|
||||
= 2.2.2 =
|
||||
* Added Return to Calendar link on single events page
|
||||
* Added event details popup for the calendar
|
||||
|
||||
= 2.2.1 =
|
||||
* Updated the list view to show only the days with events
|
||||
|
||||
= 2.2 =
|
||||
* Fixed the maps not displaying and updating when event locations are updated
|
||||
|
||||
= 2.1 =
|
||||
* Removed Freemius integration
|
||||
* Fixed the issue of map not showing up on single event pages
|
||||
* Added a place to enter the name for the ticket purchase url
|
||||
|
||||
= 2.0.1 =
|
||||
* fixed bug in event list widget that caused events to display outside of widget
|
||||
* Freemius integration
|
||||
|
||||
= 2.0 =
|
||||
* changes to language files to facilitate translations
|
||||
* totally revamped how recurring events work
|
||||
* updated fullcalendar libraries
|
||||
* calendar now has an option for list view
|
||||
* iCal support: links on calendar and single event
|
||||
* calendar widget obeys first day of week option
|
||||
|
||||
= 1.3 =
|
||||
* Added category parameter to events_calendar shortcode
|
||||
* Fixed bug where recurring events were duplicated on first day
|
||||
|
||||
= 1.2 =
|
||||
* Events Calendar now requires Chamber Dashboard Business Directory
|
||||
* moved currency settings to Business Directory settings page
|
||||
|
||||
= 1.0.4 =
|
||||
* Fixed category colors not saving
|
||||
|
||||
= 1.0.2 =
|
||||
* Fixed capabilities bug
|
||||
|
||||
= 1.0.1 =
|
||||
* Fixed bug that hid "add new event"
|
||||
|
||||
= 1.0.3 =
|
||||
* Fixed time entries
|
||||
* other minor fixes
|
||||
|
||||
= 1.0.2 =
|
||||
* Fixed capabilities bug
|
||||
|
||||
= 1.0.1 =
|
||||
* Fixed bug that hid "add new event"
|
||||
|
||||
= 1.0 =
|
||||
* Initial release
|
||||
@@ -0,0 +1,42 @@
|
||||
*** Click & Pledge Changelog ***
|
||||
2019.03.12 - version 3.0.3
|
||||
* https://forums.clickandpledge.com/forum/platform-product-forums/3rd-party-integrations/paid-memberships-pro/40091-release-notes
|
||||
|
||||
2019.01.25 - version 3.0.2
|
||||
* https://forums.clickandpledge.com/forum/platform-product-forums/3rd-party-integrations/paid-memberships-pro/40091-release-notes
|
||||
|
||||
2018.06.29 - version 3.0.1
|
||||
* https://forums.clickandpledge.com/forum/platform-product-forums/3rd-party-integrations/paid-memberships-pro/40091-release-notes
|
||||
|
||||
2018.06.28 - version 3.0.0
|
||||
* https://forums.clickandpledge.com/forum/platform-product-forums/3rd-party-integrations/paid-memberships-pro/40091-release-notes
|
||||
|
||||
2017.02.01 - version 2.0.0
|
||||
* Addition of Connect Campaign URL Alias allowing for updating of the set campaign as well as sending the selected campaign customized receipt.
|
||||
* Compatibility with the latest PMP release v1.8.13.5.
|
||||
|
||||
2015.10.19 - version 1.0.7
|
||||
* Fixed tax handling issue when initial amount is zero
|
||||
|
||||
2015.10.15 - version 1.0.6
|
||||
* Fixed The total number of recurring billing cycles for this level, including
|
||||
the trial period (if applicable) but not including the initial payment
|
||||
|
||||
2015.10.09 - version 1.0.5
|
||||
* Fixed recurring issue
|
||||
|
||||
2015.10.09 - version 1.0.4
|
||||
* Added SKU for Memberships levels
|
||||
|
||||
2015.8.21 - version 1.0.3
|
||||
* Fixed forums URL issues
|
||||
|
||||
2015.07.29 - version 1.0.2
|
||||
* Fixed issues to display billing fields and payment fields
|
||||
* Make Compatible with PMP version 1.8.4.5
|
||||
|
||||
2015.07.27 - version 1.0.1
|
||||
* Released as a separate plugin
|
||||
|
||||
2014.06.25 - version 1.0.0
|
||||
* Code Released to public
|
||||
33
spec/fixtures/dynamic_finders/plugin_version/code-to-widget/change_log/CHANGELOG.txt
vendored
Normal file
33
spec/fixtures/dynamic_finders/plugin_version/code-to-widget/change_log/CHANGELOG.txt
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
# Code to Widget Changelog
|
||||
|
||||
## 1.2
|
||||
|
||||
- NOTE: Maintenance update
|
||||
- General Code improvements
|
||||
- Cleanup of some code
|
||||
- Extracting as much code into views as possible
|
||||
|
||||
## 1.1.4
|
||||
|
||||
- Fixing an issue with the Folder check and the smiley face
|
||||
|
||||
## 1.1.3
|
||||
|
||||
- Fixing a bug in a constant
|
||||
|
||||
## 1.1.2
|
||||
|
||||
- Updating compatibility version
|
||||
|
||||
## 1.1.1
|
||||
|
||||
- Fixing the version number
|
||||
|
||||
## 1.1
|
||||
|
||||
- Added some directory information so it is easier to find the absolute path to the folder to get widgets from
|
||||
- Added a "Test Directory" button to check and see if the directory entered is usable for the plugin
|
||||
|
||||
## 1.0
|
||||
|
||||
- Initial Release
|
||||
@@ -357,6 +357,7 @@ If above timestamp is not current time, this page is cached.</p> -->
|
||||
|
||||
|
||||
<!-- dropdown-menu-widget -->
|
||||
<!-- Dropdown Menu Widget Styles by shailan (https://metinsaylan.com) v1.9.7 on wp4.9.1 -->
|
||||
<!-- Dropdown Menu Widget Styles by shailan (http://metinsaylan.com) v1.9.6 on wp4.9.1 -->
|
||||
|
||||
|
||||
@@ -984,3 +985,7 @@ If above timestamp is not current time, this page is cached.</p> -->
|
||||
<!--ng-include="configuration.defaultWordLiftPath + 'templates/wordlift-widget-be/wordlift-classification-box.html?ver=3.20.0'">-->
|
||||
|
||||
|
||||
<!-- wp-statistics -->
|
||||
<!-- Analytics by WP-Statistics v12.6.2 - https://wp-statistics.com/ -->
|
||||
|
||||
|
||||
|
||||
100
spec/fixtures/dynamic_finders/plugin_version/comments-link-optimization/change_log/CHANGELOG.md
vendored
Normal file
100
spec/fixtures/dynamic_finders/plugin_version/comments-link-optimization/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,100 @@
|
||||
## Change Log ##
|
||||
|
||||
### [1.10.5][1.10.5] ###
|
||||
|
||||
* Change author to litefeel
|
||||
|
||||
### [1.10.3][1.10.3] ###
|
||||
|
||||
* Fixed: Incorrect redirect url with query string
|
||||
|
||||
### [1.10.2][1.10.2] ###
|
||||
|
||||
* Fixed: Notice: Undefined offset: 2 in
|
||||
|
||||
### [1.10][1.10] ###
|
||||
|
||||
* Fixed: Cannot modify Comments text link.
|
||||
|
||||
### [1.9.2][1.9.2] ###
|
||||
|
||||
* Fixed: Missing translation.
|
||||
|
||||
### [1.9.1][1.9.1] ###
|
||||
|
||||
* Changed: The readme.txt file.
|
||||
|
||||
### [1.9][1.9] ###
|
||||
|
||||
* Added: Join translate.wordpress.org
|
||||
* Removed: Now, Don't modify robots.txt
|
||||
|
||||
### [1.8.4.1][1.8.4.1] ###
|
||||
|
||||
* Fixed: Notice: Use of undefined constant len - assumed 'len' in
|
||||
* Fixed: Notice: Undefined index: HTTP_REFERER in
|
||||
|
||||
### [1.8.3.2][1.8.3.2] ###
|
||||
|
||||
* Tested up to: 4.4
|
||||
|
||||
### 1.8.3.1 ###
|
||||
|
||||
* Tested up to: 4.0
|
||||
|
||||
### [1.8.3][1.8.3] ###
|
||||
|
||||
* Tested up to: 3.9.1
|
||||
|
||||
### 1.8.2 ###
|
||||
|
||||
* Compatibility check for 3.6, nothing new, just bump version to tell everyone this plugin still works.
|
||||
|
||||
### 1.8 ###
|
||||
|
||||
* Modify: At the redirect page, 3 seconds after automatically jump to the target address.
|
||||
|
||||
### 1.7 ###
|
||||
|
||||
* Added: Add redirect page.
|
||||
|
||||
### 1.6 ###
|
||||
|
||||
* Fixed: The file 'robots.txt' does not exist will display a warning.
|
||||
|
||||
### 1.5 ###
|
||||
|
||||
* Fixed: Self site link has been modified.
|
||||
|
||||
### 1.4 ###
|
||||
|
||||
* Fixed: Comment author links in the Administration Panel has been modified.
|
||||
|
||||
### 1.3 ###
|
||||
|
||||
* Fixed: Some themes not modify comment author link.
|
||||
|
||||
### 1.2 ###
|
||||
|
||||
* Fixed: Redirect bug.
|
||||
|
||||
### 1.1 ###
|
||||
|
||||
* Changed: The readme.txt file.
|
||||
|
||||
### 1.0 ###
|
||||
|
||||
* Initial public release.
|
||||
|
||||
|
||||
|
||||
|
||||
[1.10.5]: https://github.com/lite3/comments-link-optimization/releases/tag/1.10.5
|
||||
[1.10.3]: https://github.com/lite3/comments-link-optimization/releases/tag/1.10.3
|
||||
[1.10.2]: https://github.com/lite3/comments-link-optimization/releases/tag/1.10.2
|
||||
[1.10]: https://github.com/lite3/comments-link-optimization/releases/tag/1.10
|
||||
[1.9.1]: https://github.com/lite3/comments-link-optimization/releases/tag/1.9.1
|
||||
[1.9]: https://github.com/lite3/comments-link-optimization/releases/tag/1.9
|
||||
[1.8.4.1]: https://github.com/lite3/comments-link-optimization/releases/tag/1.8.4.1
|
||||
[1.8.3.2]: https://github.com/lite3/comments-link-optimization/releases/tag/1.8.3.2
|
||||
[1.8.3]: https://github.com/lite3/comments-link-optimization/releases/tag/1.8.3
|
||||
@@ -0,0 +1,22 @@
|
||||
== Changelog ==
|
||||
|
||||
= 1.3 08/01/2018 =
|
||||
* FEATURE: Add support for the Gravity Forms Connector.
|
||||
* I18N: Update Dutch (Netherlands) translation files. Props Age!
|
||||
|
||||
= 1.2 08/01/2018 =
|
||||
* FEATURE: Add support for CSV export.
|
||||
* BUG: Correct fatal bug. Calling nonexistent method.
|
||||
|
||||
= 1.1 07/19/2018 =
|
||||
* FEATURE: Add support for the CSV Import extension so certifications can now be imported and attached to entries.
|
||||
* TWEAK: Utilize `cnText_Domain` to load translations.
|
||||
* I18N: Add POT file.
|
||||
* I18N: Add Dutch (Netherlands) translation. props Age
|
||||
* OTHER: Update readme.txt.
|
||||
* OTHER: Update plugin header copyright year.
|
||||
* OTHER: Update plugin tags.
|
||||
* OTHER: Bump requires WP version to 4.5.3 to match requirements of core Connections plugin.
|
||||
|
||||
= 1.0 03/09/2018 =
|
||||
* Initial commit.
|
||||
22
spec/fixtures/dynamic_finders/plugin_version/cpo-content-types/change_log/changelog.txt
vendored
Normal file
22
spec/fixtures/dynamic_finders/plugin_version/cpo-content-types/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
= 1.1.0 =
|
||||
* Rewrite rules are now flushed on plugin activation and settings save.
|
||||
|
||||
= 1.0.5 =
|
||||
* Capabilities adjusted to be in line with pages, not posts.
|
||||
|
||||
= 1.0.4 =
|
||||
* Content types will now be displayed only if the current theme supports it.
|
||||
* Added options to control the display of unsupported content types.
|
||||
|
||||
= 1.0.3 =
|
||||
* Added comments support to portfolios
|
||||
* Added settings to control the slug of team groups.
|
||||
|
||||
= 1.0.2 =
|
||||
* Added support for testimonials, services, clients and team members
|
||||
|
||||
= 1.0.1 =
|
||||
* Added a settings page to control the slug of the portfolio.
|
||||
|
||||
= 1.0.0 =
|
||||
* Plugin release, yay!
|
||||
19
spec/fixtures/dynamic_finders/plugin_version/crazy-call-to-action-box/change_log/changelog.txt
vendored
Normal file
19
spec/fixtures/dynamic_finders/plugin_version/crazy-call-to-action-box/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
== Changelog ==
|
||||
|
||||
= 1.05 =
|
||||
Fix wordpres dashboard error
|
||||
|
||||
|
||||
= 1.04 =
|
||||
|
||||
* Release date: December 2016
|
||||
|
||||
**CSS Fixed**
|
||||
I have fixed some css issue
|
||||
|
||||
|
||||
= 1.0 =
|
||||
Release Date: March 9, 2011
|
||||
Release post: http://wp.me/p1moTy-7R
|
||||
|
||||
* Initial release
|
||||
16
spec/fixtures/dynamic_finders/plugin_version/custom-classes/change_log/changelog.md
vendored
Normal file
16
spec/fixtures/dynamic_finders/plugin_version/custom-classes/change_log/changelog.md
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
# Change Log
|
||||
|
||||
## [1.0.0] - 2017-09-27
|
||||
|
||||
### Added
|
||||
|
||||
* The add new and edit term (category, tag, etc.) screens now have an input box for changing the body class.
|
||||
|
||||
### Changed
|
||||
|
||||
* PHP 5.3.0+ is now required.
|
||||
* Overhauled the entire plugin from the ground up.
|
||||
|
||||
## [0.1.0]
|
||||
|
||||
* Plugin launch. Everything's new!
|
||||
@@ -0,0 +1,45 @@
|
||||
# Copyright (C) 2017 Custom Classes
|
||||
# This file is distributed under the same license as the Custom Classes package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Custom Classes 1.0.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/custom-classes\n"
|
||||
"POT-Creation-Date: 2017-08-22 19:53:14+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2017-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: admin/class-post-edit.php:71
|
||||
msgid "Classes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-post-edit.php:89 admin/class-term-edit.php:79
|
||||
#: admin/class-term-edit.php:98
|
||||
msgid "Body Class"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-post-edit.php:96
|
||||
msgid "Post Class"
|
||||
msgstr ""
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Custom Classes"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://themehybrid.com/plugins/custom-classes"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Allows users to add custom post and body classes from the admin."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Justin Tadlock"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "http://justintadlock.com"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,7 @@
|
||||
*** Custom CSS WordPress Plugin Changelog ***
|
||||
|
||||
2014.03.14 - version 1.1
|
||||
* [Improved] - Serbian and Spanish translations by [firstsiteguide.com](firstsiteguide.com)
|
||||
|
||||
2013.12.02 - version 1.0
|
||||
* Initial release
|
||||
@@ -0,0 +1,32 @@
|
||||
== 1.0.6 ==
|
||||
* Release date: July 13, 2017
|
||||
* Fixed: Conflicts with the global variable $current_user
|
||||
* Fixed: FLBuilder class check condition
|
||||
|
||||
== 1.0.5 ==
|
||||
* Release date: April 17, 2017
|
||||
* Multisite: Fixed template not showing on dashboard for some user roles in sub-sites
|
||||
|
||||
== 1.0.4 ==
|
||||
* Release date: February 23, 2017
|
||||
* Fixed: template showing on all of the admin pages for user roles excluding administrator
|
||||
* Fixed: PHP notice on displaying settings for a new user role
|
||||
|
||||
== 1.0.3 ==
|
||||
* Release date: February 18, 2017
|
||||
* Multisite: Fixed duplicate template bug in main site settings
|
||||
* Multisite: Added an option to hide settings from sub-sites
|
||||
* Multisite: Activating template from main site will work on all sub-sites
|
||||
|
||||
== 1.0.2 ==
|
||||
* Release date: February 17, 2017
|
||||
* Added multisite support
|
||||
* Added support for saved "row" templates
|
||||
|
||||
== 1.0.1 ==
|
||||
* Release date: January 5, 2017
|
||||
* Added a toggle to show or hide "Dismiss" control
|
||||
|
||||
== 1.0.0 ==
|
||||
* Release date: December 1, 2016
|
||||
* Initial Release
|
||||
@@ -0,0 +1,9 @@
|
||||
= 1.6 =
|
||||
* Minor icon image changes.
|
||||
|
||||
= 1.5 =
|
||||
* Textual changes.
|
||||
|
||||
= 1.4 =
|
||||
|
||||
* Initial release.
|
||||
12
spec/fixtures/dynamic_finders/plugin_version/dessky-security/change_log/changelog.txt
vendored
Normal file
12
spec/fixtures/dynamic_finders/plugin_version/dessky-security/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
= 1.2 =
|
||||
* Added compatibility for WordPress 4.9.
|
||||
* Even more performance improvements.
|
||||
* Various bug fixes.
|
||||
|
||||
= 1.1 =
|
||||
|
||||
* Minor icon image change.
|
||||
|
||||
= 1.0 =
|
||||
|
||||
* Initial release.
|
||||
72
spec/fixtures/dynamic_finders/plugin_version/documentation/change_log/changelog.txt
vendored
Normal file
72
spec/fixtures/dynamic_finders/plugin_version/documentation/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,72 @@
|
||||
== Documentation plugin by itthinx - changelog.txt ==
|
||||
|
||||
= 1.5.1 =
|
||||
* Added some additional post type labels.
|
||||
* Customized the post updated messages for the document post type.
|
||||
* Fixed the output of Documentation_Renderer::list_children() to surround the items with corresponding ul tags.
|
||||
This also fixes the output of the [documentation_list_children] shortcode and the Documentation Children widget
|
||||
who use this method.
|
||||
* Added the documentation_list_children_prefix and documentation_list_children_suffix filters.
|
||||
* Security improvement, added ABSPATH checks.
|
||||
|
||||
= 1.5.0 =
|
||||
* Replaced deprecated widget constructor in Documentation_Documents_Widget.
|
||||
* Fixed use of undefined constant.
|
||||
* Replaced use of the DOCUMENTATION_PLUGIN_DOMAIN constant with the string literal 'documentation'.
|
||||
* Added the Add-Ons section.
|
||||
* Added the Notice class.
|
||||
* Added links to the documenation pages.
|
||||
* Added the Document Categories widget.
|
||||
|
||||
= 1.4.1 =
|
||||
* WordPress 4.8 compatibility tested.
|
||||
|
||||
= 1.4.0 =
|
||||
* WordPress 4.7.2 compatibility tested.
|
||||
* Improved handling of number of documents shown for Documents widget.
|
||||
* Added the [documentation_categories] shortcode.
|
||||
|
||||
= 1.3.6 =
|
||||
* Fixed an issue where providing a widget title would be erroneously used to filter documents shown.
|
||||
|
||||
= 1.3.5 =
|
||||
* Tested for WordPress 4.4.
|
||||
|
||||
= 1.3.3 =
|
||||
* Tested for WordPress 4.2.
|
||||
* Fixed separators in Settings affecting the admin sidebar's separators.
|
||||
* Added an info section in Settings.
|
||||
|
||||
= 1.3.2 =
|
||||
* Fixed missing ul tags in the document hierarchy renderer.
|
||||
* Added a content filter to recognize escaped shortcodes in documents, so that
|
||||
these can appear and be rendered without the double [[ ]]. WordPress will
|
||||
render them with double brackets if the shortcode doesn't exist.
|
||||
|
||||
= 1.3.1 =
|
||||
* Fixed static call to class method.
|
||||
|
||||
= 1.3.0 =
|
||||
* Adjusted for WordPress 4.0 compatibility.
|
||||
* Added [documentation_documents] shortcode.
|
||||
|
||||
= 1.2.0 =
|
||||
* Added support for search options to the [documentation_search_form] shortcode.
|
||||
|
||||
= 1.1.0 =
|
||||
* Added the [documentation_search_form] shortcode which provides a dynamic document search form.
|
||||
|
||||
= 1.0.3 =
|
||||
* WordPress 3.9 compatibility checked
|
||||
* Translation template added
|
||||
|
||||
= 1.0.2 =
|
||||
* Improvement: Documents are available under Appearance > Menus so that documents can be added directly to menus.
|
||||
* Improvement: Changed the basic labels of document categories to distinguish them from post categories, especially for the Menus.
|
||||
* Improvement: Added the Document Categories column on the Documents overview screen Document > All Documents.
|
||||
|
||||
= 1.0.1 =
|
||||
* WordPress 3.8 compatibility checked.
|
||||
|
||||
= 1.0.0 =
|
||||
* This is the first public release.
|
||||
69
spec/fixtures/dynamic_finders/plugin_version/dragon-video/change_log/CHANGELOG.md
vendored
Normal file
69
spec/fixtures/dynamic_finders/plugin_version/dragon-video/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,69 @@
|
||||
|
||||
1.0.1 / 2013-07-09
|
||||
==================
|
||||
|
||||
* Include videojs files
|
||||
|
||||
1.0.0 / 2013-07-08
|
||||
==================
|
||||
|
||||
* Add WordPress plugin readme
|
||||
* Hopefully fix travis config
|
||||
* More badges
|
||||
* Set coveralls json_path
|
||||
* Merge branch 'refactor'
|
||||
* Allow build failures on WordPress master
|
||||
* Reorganize tests
|
||||
* Add namespace
|
||||
* PSR Styling
|
||||
* Remove assign by reference
|
||||
* Split is dericated, use explode instead
|
||||
* Clean up some code
|
||||
* Fix plugin activiation after refactor changes
|
||||
* Drop WP 3.4/3.3 support
|
||||
* Upgrade video.js to 4.0
|
||||
* Fix paths in test
|
||||
* Test coverage for ZencoderEncoder::_handle_incoming_video
|
||||
* Update composer.lock
|
||||
* Upgrade to v2 of Zencoder API
|
||||
* Add coveralls.io config
|
||||
* Move tests to test
|
||||
* Cleanup tests
|
||||
* Reorganize files
|
||||
* Add tests for ZencoderEncoder
|
||||
* Add tests for VideoJsPlayer
|
||||
* Fix test for multisite
|
||||
* Install ffmpeg on travis
|
||||
* Add build status image
|
||||
* Add travis-ci config file
|
||||
* Add tests for DragonVideo
|
||||
|
||||
0.9.0 / 2013-04-25
|
||||
==================
|
||||
|
||||
* Update for WordPress 3.5 galleries
|
||||
|
||||
0.5.0 / 2012-01-16
|
||||
==================
|
||||
|
||||
* Allow shortcode to specify size
|
||||
* Fix delete attachment bugs
|
||||
* Move encoder/player plugins out of subfolders
|
||||
* Pass post id instead of object
|
||||
* Move add_option to activate
|
||||
* Change all instances of ogg to ogv, fix unset var notices
|
||||
* Refactor zencoder code, add option page
|
||||
* Cleanup code, add options page
|
||||
|
||||
0.4.0 / 2010-12-25
|
||||
==================
|
||||
|
||||
* Upgrade video.js
|
||||
* Fix video gallery
|
||||
* Add default loader plugins
|
||||
* All videojs stuff
|
||||
* only run delete if its a video
|
||||
* Setup player to display mp4, webm, and ogg
|
||||
* Use medium as size
|
||||
* Add class to video attachment link
|
||||
* Streamline size storage and retrieval
|
||||
30
spec/fixtures/dynamic_finders/plugin_version/easymega/change_log/changelog.txt
vendored
Normal file
30
spec/fixtures/dynamic_finders/plugin_version/easymega/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
== Changelog ==
|
||||
= 1.0.8 =
|
||||
* FIXED: The link is not clickable with Coupon theme.
|
||||
|
||||
= 1.0.7 =
|
||||
* Support Astra theme.
|
||||
* Support OceanWP theme.
|
||||
* Support GeneratePress theme.
|
||||
* Add theme dashboard.
|
||||
|
||||
= 1.0.6 =
|
||||
* WP 4.9 compatible.
|
||||
|
||||
= 1.0.5 =
|
||||
* Fix bugs and improve functions.
|
||||
|
||||
= 1.0.4 =
|
||||
* Fix bugs and improve functions.
|
||||
|
||||
|
||||
= 1.0.3 =
|
||||
* Fix bugs and improve functions.
|
||||
|
||||
|
||||
= 1.0.2 =
|
||||
* Fix bugs and improve functions.
|
||||
|
||||
|
||||
= 1.0.1 =
|
||||
* Release.
|
||||
29
spec/fixtures/dynamic_finders/plugin_version/enhanced-publishing/change_log/changelog.txt
vendored
Normal file
29
spec/fixtures/dynamic_finders/plugin_version/enhanced-publishing/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
== Changelog ==
|
||||
|
||||
= 3.0.0: Nov 13, 2016 =
|
||||
* New: Choose Color of Links to Posts/Pages
|
||||
* New: See ID, Slug and Parent Name of any Post
|
||||
* New: Provide feedback on features directly from the Settings page
|
||||
* New: Add Welcome screen listing what is new and how to get started
|
||||
* Tweak: Simplify Publishing Menu
|
||||
* Tweak: Move plugin settings into the WordPress Settings menu
|
||||
* Tweak: Update plugin settings layout and information available
|
||||
|
||||
= 2.0.0: Sept 9, 2016 =
|
||||
* New: Added new 'All' lookup that shows posts/pages/CPTs regardless of their status
|
||||
* New: Show top five recently modified posts/pages/CPTs in new 'Recently Modified' submenu
|
||||
* New: Load an alphabetical list of all posts/pages/CPTs dynamically on demand in new 'Alphabetical List' submenu
|
||||
* New: In Settings, choose which Custom Post Types will appear in the CPT drop down lookup.
|
||||
* Tweak: Removed settings to control the maximum number of posts/pages (not needed any more)
|
||||
|
||||
= 1.1.0: Aug 16, 2016 =
|
||||
* New: Added new settings to control maximum number of posts/pages to show in Posts/Pages lookup
|
||||
* New: Pre-load only small set and dynamically load the rest of posts/pages when user accesses the Posts/Pages Lookup menu
|
||||
* New: Indicate if no posts/page exist by showing '(None)'
|
||||
* New: Indicate more records found by showing '(To Show More, Adjust Settings)'
|
||||
* Tweak: Add new utility functions
|
||||
* Fix: Do not show CPT revisions
|
||||
* Fix: Do not try to include empty CSS
|
||||
|
||||
= 1.0.0: Aug 14, 2016 =
|
||||
* Initial release
|
||||
@@ -0,0 +1,4 @@
|
||||
# Epitome Featured Category Changelog
|
||||
|
||||
## 1.0
|
||||
* Initial release.
|
||||
@@ -0,0 +1,4 @@
|
||||
# Epitome Featured Content Changelog
|
||||
|
||||
## 1.0
|
||||
* Initial release.
|
||||
7
spec/fixtures/dynamic_finders/plugin_version/ere-recently-viewed/change_log/CHANGELOG.md
vendored
Normal file
7
spec/fixtures/dynamic_finders/plugin_version/ere-recently-viewed/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
Changelog
|
||||
=========
|
||||
#### 1.1 - August 24, 2018
|
||||
**Remove Warning**
|
||||
|
||||
#### 1.0 - August 02, 2018
|
||||
**Inital Version**
|
||||
317
spec/fixtures/dynamic_finders/plugin_version/essential-real-estate/change_log/CHANGELOG.md
vendored
Normal file
317
spec/fixtures/dynamic_finders/plugin_version/essential-real-estate/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,317 @@
|
||||
Changelog
|
||||
=========
|
||||
#### 1.6.9 - March 16, 2019
|
||||
** Fix: Compare properties with Property Feature field
|
||||
** Fix: Filter Country, States, City, Neighborhood on Submit property page
|
||||
|
||||
#### 1.6.8 - March 07, 2019
|
||||
** New: Display the total number of views of property via Backend
|
||||
** New: Widget: ERE Recent Properties, ERE Featured Properties: Allow to Filter by agent if current page is Single Agent page
|
||||
** Fix: Total number properties of agency
|
||||
|
||||
#### 1.6.7 - February 11, 2019
|
||||
** Fix: Filter provinces, cities to only show the provinces, cities linked to a selected country, selected state when create city, neighborhood
|
||||
|
||||
#### 1.6.6 - January 25, 2019
|
||||
** New: Allow to change the image size for all property layout styles (grid, list, carousel, ziczac)
|
||||
** New: When not logged in, to perform the Saved Search feature, the Login window must appear first
|
||||
** Fix: Remove PHP notices
|
||||
|
||||
#### 1.6.5 - January 22, 2019
|
||||
** New: Allow to Show/Hide the empty features on single property page
|
||||
|
||||
#### 1.6.4 - December 22, 2018
|
||||
** Fix: Support WPML for send email
|
||||
** Fix: Allow to enter the Arabic characters for first name, last name on the Update profile form
|
||||
** New: Allow to validate phone number on the Update profile form
|
||||
|
||||
#### 1.6.3 - December 11, 2018
|
||||
** New: Allow to override templates: All templates on single property, single agent, archive property, archive agent page
|
||||
|
||||
#### 1.6.2 - December 04, 2018
|
||||
** New: Allow to show/hide Create Date, View Count on single property page
|
||||
** Fix: Multiple select agency doesn't work on Real Estate Options page (backend)
|
||||
|
||||
#### 1.6.1 - November 19, 2018
|
||||
** Fix: Broke Widgets page
|
||||
|
||||
#### 1.6.0 - November 16, 2018
|
||||
** New: Allow to filter country, filter city, filter neighborhood on submit property page (backend, frontend) and on search forms
|
||||
** Fix: Category Filter by Isotope on Property Shortcode
|
||||
** Fix: Allow back to set "none" value for Property Label, Property Type on submit property page (frontend)
|
||||
** Fix: Remove unused function: Choose parent Property Status, Type, Label, Feature
|
||||
|
||||
#### 1.5.9 - October 10, 2018
|
||||
** New: Allow to choose a list of countries (submit property, search form, input province/state, input city, input neighborhood)
|
||||
** New: Allow to filter by country, by province/state, by city on input city and neighborhood (backend)
|
||||
|
||||
#### 1.5.8 - September 20, 2018
|
||||
** New: Change the html structure for easy customization and optimize SEO
|
||||
|
||||
#### 1.5.7 - August 15, 2018
|
||||
** New: Optimize code, Update print layout, target blank on download file attachments
|
||||
** New: New Add-on: ERE Recently Viewed, ERE Similar Properties
|
||||
|
||||
#### 1.5.6 - July 26, 2018
|
||||
** Fix: "For development purposes only" problem of property map on admin dashboard
|
||||
** New: Allow to update all user information via admin dashboard
|
||||
|
||||
#### 1.5.5 - July 13, 2018
|
||||
** Fix: Duplicate email sent to admin when registering new user
|
||||
|
||||
#### 1.5.4 - June 29, 2018
|
||||
** New: Allow to change the measurement units for Land Area
|
||||
|
||||
#### 1.5.3 - June 27, 2018
|
||||
** New: Allow to change the order display of agent, property by set the order attribute on admin dashboard
|
||||
** New: On/Off: Show featured properties at the top of the list
|
||||
** New: Improve: Filter and sort properties on archive page
|
||||
** Fix: Problems: Only display the featured listing on the archive page (If submit property via frontend)
|
||||
|
||||
#### 1.5.2 - June 25, 2018
|
||||
** Fix: Ajax paging, contact agent, contact agency
|
||||
** New: Allow to compare with Additional Fields
|
||||
** New: Improve Home Map
|
||||
|
||||
#### 1.5.1 - June 15, 2018
|
||||
** New: Improve system performance: add autoloader, push sending mail process to queue and send by background
|
||||
** New: Allow to enqueue resources by CDN: Bootstrap Script, Bootstrap Stylesheet, Font Awesome
|
||||
** New: Make Featured Properties always on the top list
|
||||
|
||||
#### 1.5.0 - May 28, 2018
|
||||
** New: Responsive: tabs to accordion on mobile
|
||||
** Fix: Shortcode Property Featured: Wrong Property Identity
|
||||
|
||||
#### 1.4.9 - May 07, 2018
|
||||
** New: Add the Agency link on single agent page
|
||||
** Fix: Search with Land Area field problem
|
||||
** Fix: RTL style
|
||||
|
||||
#### 1.4.8 - March 30, 2018
|
||||
** Fix: Some words can not translate
|
||||
** Fix: Remove html tag on Compare page
|
||||
** New: Format number for Property Land, Property Size
|
||||
|
||||
#### 1.4.7 - March 21, 2018
|
||||
** Fix: Google Map Zoom
|
||||
|
||||
#### 1.4.6 - February 28, 2018
|
||||
** Fix: Nearby Place problems
|
||||
|
||||
#### 1.4.5 - January 10, 2018
|
||||
** New: Add button allows to view Photo gallery in the list of properties
|
||||
** New: Remove the Social Share button in the list of properties, only show in each single property
|
||||
** New: Allow to change the Image Size for ShortCode Property Featured
|
||||
|
||||
#### 1.4.4 - December 28, 2017
|
||||
** New: Allow to Show/Hide User Information Fields in My Profile page
|
||||
|
||||
#### 1.4.3 - December 21, 2017
|
||||
** New Feature: Ratings & Reviews for Property and Agent
|
||||
|
||||
#### 1.4.2 - December 13, 2017
|
||||
** New: Allow to upload file documents (Config file size, file type, maximum number of files in Real Estate Option)
|
||||
** Fix: Google Map partially grey on load Edit Property page via frontend
|
||||
|
||||
#### 1.4.1 - December 07, 2017
|
||||
** New: Validation input data by jquery in Login, Register and Update Profile form.
|
||||
** Fix: Upload image from iphone safari & Geocoding and Places Autocomplete problems
|
||||
|
||||
#### 1.4.0 - December 06, 2017
|
||||
** New: Submit Property by Steps
|
||||
** New: Change the layout of User Dashboard
|
||||
** New: Allow to delete unwanted Invoices, Transaction Logs, User Packages
|
||||
|
||||
#### 1.3.9 - November 20, 2017
|
||||
** Fix: Hide The Color Picker on Wordpress 4.9
|
||||
|
||||
#### 1.3.8 - October 29, 2017
|
||||
** Fix: Fix paging problem on property shortcode when filter with the Label field
|
||||
** New: Allow to required fields with Property Type, Property Label
|
||||
|
||||
#### 1.3.7 - October 11, 2017
|
||||
** Fix: Allow to show all categories that don't have any posts attached to them for all dropdown list
|
||||
** Fix: Problem of Search Agency
|
||||
|
||||
#### 1.3.6 - October 6, 2017
|
||||
** New: Allow to display sidebar for Archive, Single page
|
||||
|
||||
#### 1.3.5 - October 4, 2017
|
||||
** New: Allow add custom field for property: Text, Textarea, Dropdown, CheckboxList, RadioList
|
||||
|
||||
#### 1.3.4 - October 2, 2017
|
||||
** Fix: Prevent form resubmission when page is refreshed after submit or edit property via frontend
|
||||
** New: Allow search agents by ajax on submit property form in backend
|
||||
** New: Add number of Property, Invoice, Favorite, Saved Search for Login menu widget
|
||||
|
||||
#### 1.3.3 - September 27, 2017
|
||||
** New: Allow to view the property author detail
|
||||
** New: Allow display Property Features as category (Submit Property page, Single Property page, Search form)
|
||||
** New: Add Widget: Featured Properties
|
||||
** Fix: Sort column in backend
|
||||
|
||||
#### 1.3.2 - September 15, 2017
|
||||
** New: Allow to search for Agency
|
||||
** Fix: Reset paging after filter Property, Agent, My Properties, My Invoices
|
||||
|
||||
#### 1.3.1 - September 12, 2017
|
||||
** New: Make link between country, state, city, neighborhood via backend
|
||||
** Fix: Fixed problems with submit Property via frontend on version 1.3
|
||||
|
||||
#### 1.3 - September 11, 2017
|
||||
** New: Enable/Disable features: "Price Number in Short Scale"
|
||||
** New: Add field "Price On Call" on Property submit form
|
||||
|
||||
#### 1.2.9 - September 06, 2017
|
||||
** New: Allow to input, search, display property price with Price Number in Short Scale (ex: $5 million)
|
||||
** New: Allow to config Enable/Disable Comments Property, Comments Agent
|
||||
|
||||
#### 1.2.8 - August 30, 2017
|
||||
** New: Add new Property Field: Before Price Label, Number Of Rooms, Private Note
|
||||
** New: Allow to Submit Property as free with the option "Pay Per listing" at "Price Per Listing Submission" = 0
|
||||
** New: Allow to Make Listing Featured as free with the option "Pay Per listing" at "Price To Make Listing Featured" = 0
|
||||
** New: Change Print layout
|
||||
** New: Remove the garage icon and number from the most important place of properties list layout
|
||||
|
||||
#### 1.2.7 - August 25, 2017
|
||||
** New: Change input layout in backend: Type, status, features, labels, City, State, Neighborhood
|
||||
** New: Allow to config Enable/Disable Agent Rating, Property Rating
|
||||
** New: Allow to config Enable/Disable Social Login
|
||||
|
||||
#### 1.2.6 - August 21, 2017
|
||||
** New: Allow to config all users can submit property or only agent
|
||||
** New: Allow to config submit property via frontend or only via backend
|
||||
** New: Enable/Disable: Automatically publish the edited property
|
||||
** New: Enable/Disable: Automatically approve Reactivating property request
|
||||
|
||||
#### 1.2.5 - August 15, 2017
|
||||
** New: Allow to sending mail as html form created by the editor tool
|
||||
** New: Moved the description tab and address tab out of the tabs in property detail page
|
||||
** New: Add new Shortcode Property Search Map to allow create home map
|
||||
** New: Allow to set "No Image" for property in My Properties Page
|
||||
** Fix: Remove auto search by ID after delete a property
|
||||
** Fix: Update RTL css, responsive search box, ...
|
||||
|
||||
#### 1.2.4 - August 7, 2017
|
||||
** New: Allow to Arrange value of Property Status field
|
||||
** New: Allow to choose "No Image" for property image and for User/Agent avatar
|
||||
** New: After Register goto Login page / Tab Login (Popup)
|
||||
** New: Optimization layout style of Property listing, Contact agent/author
|
||||
** New: Allow to config Image size on Archive Property Page and shortcode Property Gallery
|
||||
** New: Allow to hide "My Invoices" menu if paid submission type as free submit
|
||||
** Fix: Problems with paging ajax
|
||||
|
||||
#### 1.2.3 - July 31, 2017
|
||||
** New: Enable/Disable Google Captcha
|
||||
** New: Allow to config Marker icon, MapStyle with google map on New Property page
|
||||
|
||||
#### 1.2.2 - July 25, 2017
|
||||
** New: Allow to custom Measurement units
|
||||
** Fix: Problem with WPML plugin
|
||||
** New: Change style
|
||||
|
||||
#### 1.2.1 - July 22, 2017
|
||||
** New: Show/Hide/Arrange Search Fields
|
||||
** New: Support Slider/Dropdown layout for Price, Size, Land Area Search Field
|
||||
** New: Add new Shortcode Property Advanced Search
|
||||
** New: Allow to config Bedrooms List, Bathrooms List, Garage List on Search Field
|
||||
** New: Allow to Show/Hide Search Form in Advanced Search page and Archive Property page
|
||||
|
||||
#### 1.2 - July 06, 2017
|
||||
** Fix: Problems with upload image via backend and Optimize crop image function
|
||||
** New: Add-ons ERE Colors
|
||||
** New: Allow to disable/enable Add Shortcode tool for editor
|
||||
|
||||
#### 1.1.9 - July 03, 2017
|
||||
** New: Allow to search by Property Status, Property ID via "My Properties" (user dashboard)
|
||||
** New: Allow to click image to view detail; Show Property Status, Price, ID, via "My Properties" (user dashboard)
|
||||
** New: Move Video URL field from Property Details group to Property Images and Video group via "Add New Property"
|
||||
** Fix: Missing some text domain for translate language
|
||||
|
||||
#### 1.1.8 - June 24, 2017
|
||||
** New: Allow to Enable/Disable Favorite Property
|
||||
** New: Allow to Enable/Disable Social Share
|
||||
** New: Allow to Enable/Disable Print Property, Print Invoice
|
||||
|
||||
#### 1.1.7 - June 23, 2017
|
||||
** New: Make link between country, state, neighborhood
|
||||
** New: Add neighborhood search field
|
||||
** New: Move country search field, state search field, neighborhood search field to main search (not advanced search)
|
||||
** New: Make the same style and zoom for all google map
|
||||
** New: Allow to show the hidden property
|
||||
|
||||
#### 1.1.6 - June 15, 2017
|
||||
**Fix: Allow to edit property when current package has only 1 listing remain
|
||||
|
||||
#### 1.1.5 - June 10, 2017
|
||||
**New: Allow to config add/remove search field (Advanced Search Page and Archive Property Page)
|
||||
**New: Allow to change default icon marker (Google Map Directions and Nearby Places)
|
||||
**New: Validations when user buy the same package with curently package
|
||||
**New: Allow to search property id via backend, allow config decimal separator for "Get Directions","Nearby Places"
|
||||
**Fix: Contact with Skype problems
|
||||
|
||||
#### 1.1.4 - May 23, 2017
|
||||
**Fix: Allow to upload image with Safari on mobile and ipad
|
||||
**Add notification email to admin and user when user post a new property
|
||||
**Fix: nearby places with calculator mile
|
||||
|
||||
#### 1.1.3 - May 15, 2017
|
||||
**Fix: Missing Year Built via Backend; Problem Search country; Widget Listing Property Taxonomy not show with Neighborhood Taxonomy
|
||||
**Allow to edit property if it belongs to an expired package
|
||||
**Allow to click the image to view single property page not only title
|
||||
|
||||
#### 1.1.2 - May 05, 2017
|
||||
**New feature: Allow to input Property ID,
|
||||
**New: Add property url via mail from contact information, Add New Field: Agent Licenses
|
||||
**Fix: Correct some typos
|
||||
|
||||
#### 1.1.1 - May 03, 2017
|
||||
**Allow to enter virtual tour embeded code
|
||||
**New feature: Allow to hidden listing property
|
||||
**Fix: Search Map, Submit property with location dropdowns, Package information on payment free package
|
||||
|
||||
#### 1.1 - April 25, 2017
|
||||
**Improved filtering function in backend: Property, Agent, Invoice, Transaction Log, User Packages
|
||||
**Allow to filter feature property for all property shortcode
|
||||
**New feature: Total Views count
|
||||
|
||||
#### 1.0.9 - April 20, 2017
|
||||
**New feature: Property Image 360**
|
||||
**Allow to zoom image gallery, image floor on single property page**
|
||||
**Allow to config show/hide register tab on Login & Register popup**
|
||||
|
||||
#### 1.0.8 - April 12, 2017
|
||||
**New search layot: Mini Search layout**
|
||||
**Add option: Show/Hide Contact information if user not login (single property page)**
|
||||
|
||||
#### 1.0.7 - April 8, 2017
|
||||
**Fix: upload image and allow sort image via frontend**
|
||||
|
||||
#### 1.0.6 - April 7, 2017
|
||||
**Allow to input float number of property area, size,... via backend **
|
||||
**Fix mising property status field on feature add shortcode from editor, fix empty address when edit property via frontend**
|
||||
|
||||
#### 1.0.5 - March 27, 2017
|
||||
**Change search layout**
|
||||
**Change default location with Google Maps on New Property page**
|
||||
**Format number slider bar**
|
||||
|
||||
#### 1.0.4 - March 23, 2017
|
||||
|
||||
**New Feature: Walk Score**
|
||||
|
||||
#### 1.0.3 - March 11, 2017
|
||||
|
||||
**Support RTL**
|
||||
|
||||
#### 1.0.2 - March 6, 2017
|
||||
|
||||
**Optimize performance**
|
||||
|
||||
#### 1.0.1 - March 2, 2017
|
||||
|
||||
**Support add shortcode from editor without page builder**
|
||||
|
||||
#### 1.0.0 - February 25, 2017
|
||||
|
||||
**Inital Version**
|
||||
5
spec/fixtures/dynamic_finders/plugin_version/extended-warranty/change_log/changelog.txt
vendored
Normal file
5
spec/fixtures/dynamic_finders/plugin_version/extended-warranty/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
ASSURINTYglobal for WooCommerce
|
||||
|
||||
|
||||
2015.03.01 Version 1.0.0
|
||||
* Initial release
|
||||
5
spec/fixtures/dynamic_finders/plugin_version/feature-on-homepage/change_log/changelog.txt
vendored
Normal file
5
spec/fixtures/dynamic_finders/plugin_version/feature-on-homepage/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
*** Feature On Homepage Changelog ***
|
||||
|
||||
= 1.0.0 =
|
||||
* 2014-10-24
|
||||
* Initial release
|
||||
34
spec/fixtures/dynamic_finders/plugin_version/flexible-widget-title/change_log/CHANGELOG.md
vendored
Normal file
34
spec/fixtures/dynamic_finders/plugin_version/flexible-widget-title/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
### 2.0
|
||||
|
||||
* Add the ability to change the `[]` syntax
|
||||
* Tested on wordpress 4.1.1
|
||||
|
||||
### 1.0.3
|
||||
|
||||
* Tested on wordpress 4.1.0
|
||||
|
||||
### 1.0.2
|
||||
|
||||
* Fixed [Issue#1](https://github.com/hyyan/flexible-widget-title/issues/1)
|
||||
|
||||
### 1.0.1
|
||||
|
||||
* Prevented direct access for the plugin file
|
||||
|
||||
### 1.0.0
|
||||
|
||||
* Added screenshot.png
|
||||
* Added wordpress ```readme.txt``` file
|
||||
|
||||
###0.2.1
|
||||
|
||||
Avoided notice which are generated because of titles which are shorter than two chars
|
||||
|
||||
###0.2
|
||||
|
||||
* Added support for "github-updater" plugin
|
||||
* Changed plugin name to ```Hyyan Flexible Widget Title```
|
||||
|
||||
###0.1
|
||||
|
||||
* Initial commit
|
||||
5011
spec/fixtures/dynamic_finders/plugin_version/formidable/translation_file/languages/formidable.pot
vendored
Normal file
5011
spec/fixtures/dynamic_finders/plugin_version/formidable/translation_file/languages/formidable.pot
vendored
Normal file
File diff suppressed because it is too large
Load Diff
68
spec/fixtures/dynamic_finders/plugin_version/ga-tracking-code/change_log/CHANGELOG.md
vendored
Normal file
68
spec/fixtures/dynamic_finders/plugin_version/ga-tracking-code/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,68 @@
|
||||
# Change Log
|
||||
All notable changes to this project will be documented in this file.
|
||||
This project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
## [1.2.2] - 2017-11-16
|
||||
|
||||
### Changed
|
||||
- Compatible with WordPress 4.9.0
|
||||
|
||||
## [1.2.1] - 2017-10-25
|
||||
|
||||
### Changed
|
||||
- Installation note on Readme.txt
|
||||
|
||||
## [1.2.0] - 2017-10-25
|
||||
|
||||
### Changed
|
||||
- Minimum PHP version to 5.3
|
||||
- Minimum WordPress version to 3.1.0
|
||||
|
||||
### Added
|
||||
- `Requires PHP` tag in `readme.txt`
|
||||
- `MIN_PHP_VERSION` `const` into `Ga_Tracking_Code` class
|
||||
- `MIN_WP_VERSION` `const` into `Ga_Tracking_Code` class
|
||||
- `meets_requirements` `method` into `Ga_Tracking_Code` class. Check that all plugin requirements are met.
|
||||
- `requirements_not_met_notice` `method` into `Ga_Tracking_Code` class. Adds a notice to the dashboard if the plugin requirements are not met.
|
||||
- `deactivate_plugin` `method` into `Ga_Tracking_Code` class. The plugin can self deactivate if the minimum requirements are not met.
|
||||
|
||||
## [1.1.1] - 2017-10-25
|
||||
|
||||
### Fixed
|
||||
- URL in readme.txt
|
||||
|
||||
## [1.1.0] - 2017-10-25
|
||||
|
||||
### Added
|
||||
- New setting to exclude administrator from tracking
|
||||
- gplv3 licence file
|
||||
|
||||
### Removed
|
||||
- `init` `method` from `Ga_Tracking_Code` class
|
||||
- `add_actions` `method` from `Ga_Tracking_Code` class
|
||||
- `default_options` `method` from `Ga_Tracking_Code` class
|
||||
- `set_options` `method` from `Ga_Tracking_Code` class
|
||||
|
||||
### Changed
|
||||
- General improvement to the code base
|
||||
- `sanitize_callback` `method` in `Ga_Tracking_Code` class
|
||||
- `allow_tracking` `method` in `Ga_Tracking_Code` class
|
||||
|
||||
## [1.0.5] - 2017-10-23
|
||||
|
||||
### Changed
|
||||
- Plugin File Header
|
||||
|
||||
## [1.0.4] - 2017-10-19
|
||||
|
||||
### Changed
|
||||
- Plugin description
|
||||
- Text domain slug
|
||||
|
||||
### Added
|
||||
- Added .pot file
|
||||
|
||||
## [1.0.0] - 2017-07-28
|
||||
|
||||
### Added
|
||||
- First version.
|
||||
14
spec/fixtures/dynamic_finders/plugin_version/generate-disable-mobile/change_log/changelog.txt
vendored
Normal file
14
spec/fixtures/dynamic_finders/plugin_version/generate-disable-mobile/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
Changelog Legend:
|
||||
----
|
||||
|
||||
[+] = Added
|
||||
[*] = Changed
|
||||
[^] = Moved
|
||||
[=] = No Changes
|
||||
[x] = Deleted
|
||||
[!] = Bugs
|
||||
|
||||
----
|
||||
|
||||
(4/23/2015) - 0.1
|
||||
Initial Release
|
||||
828
spec/fixtures/dynamic_finders/plugin_version/geodirectory/change_log/change_log.txt
vendored
Normal file
828
spec/fixtures/dynamic_finders/plugin_version/geodirectory/change_log/change_log.txt
vendored
Normal file
@@ -0,0 +1,828 @@
|
||||
v1.6.38
|
||||
Bulk delete tags results in 500 Internal Server Error - FIXED
|
||||
Backend edit GD listing pages can show blank page - FIXED
|
||||
CURL call replaced with wp_remote_get() - CHANGED
|
||||
GD Tool > Ratings check always shows "Review locations missing or broken" - FIXED
|
||||
Sometimes search button shows font-awesome icon html - FIXED
|
||||
Google Map bubble not working after Google round infoWindow update - FIXED
|
||||
|
||||
v1.6.37
|
||||
WP Font Awesome Settings added to support CSS and JS versions - ADDED
|
||||
|
||||
v1.6.36
|
||||
Event search not showing results for near location search - FIXED
|
||||
Some themes not showing GD Home Top widget section - FIXED
|
||||
Font Awesome ratings input not showing correctly if FA not loaded with Pseudo-Elements - FIXED
|
||||
Get directions text not changing when using default value - FIXED
|
||||
|
||||
v1.6.35
|
||||
Font Awesome Pseudo-Elements flag disabled by default - CHANGED
|
||||
|
||||
v1.6.34
|
||||
CSS Pseudo-Elements now enabled for Font Awesome - CHANGED
|
||||
Disable our own FA on beaver builder pages until BB updates to FA5 JS - FIXED
|
||||
Map child categories reveal icon not showing correctly - FIXED
|
||||
Map child categories show/hide toggle not working - FIXED
|
||||
|
||||
v1.6.32
|
||||
Fix GD search conflict with Jetpack by WordPress.com ElasticSearch - FIXED
|
||||
Change CPT settings sorting options description - CHANGED
|
||||
Special apostrophe character not supported with search listing - FIXED
|
||||
OSM cant handel geocode search of UK post codes missing the space - FIXED
|
||||
Search adds all terms to query if search field is blank - FIXED
|
||||
Deleted tag still displayed on the listing detail page - FIXED
|
||||
Use of getenv('REMOTE_ADDR') with PHP v7.2.1 results in internal server error - FIXED
|
||||
Issue with listing slug WPML translation - FIXED
|
||||
Listing shortcode shows posts from all categories if category has no post - FIXED
|
||||
Location me page shows wrong results on map when map cache enabled - FIXED
|
||||
CPT archive pages not showing any results - FIXED
|
||||
Unable to translate text on detail page photos popup - FIXED
|
||||
Search radius settings not filtering the results - FIXED
|
||||
OSM near search geolocation not adding on default location to search - FIXED
|
||||
Google maps CSS changes means map info-window close button does not work - FIXED
|
||||
Shadow missing from fav listing icon - FIXED
|
||||
Update Font Awesome to v5 JS version - CHANGED
|
||||
|
||||
v1.6.30
|
||||
Yoast v8.x shows error on backend edit listing page - FIXED
|
||||
|
||||
v1.6.29
|
||||
iframe api generation broken (by Google iframe restrictions) changed to new window popup - FIXED
|
||||
Apple devices use different kind of apostrophe which does not work for search - FIXED
|
||||
Fieldset title with special characters outputs incorrect css class - FIXED
|
||||
Issue with detail page permalink when Yoast SEO is active - FIXED
|
||||
Map popup shows incorrect listing links - FIXED
|
||||
|
||||
v1.6.28
|
||||
OpenStreetMap populates wrong region for UK - FIXED
|
||||
Check added if post info missing on details page - FIXED
|
||||
If doing first ever upgrade of GD the "set in what locations" can be unset - FIXED
|
||||
|
||||
v1.6.27
|
||||
Distance on related listings not showing anymore - FIXED
|
||||
Shows incorrect address in edit listing - FIXED
|
||||
Deleting listing sometimes fails to delete featured image smaller image sets - FIXED
|
||||
Add submit ip in export listings data - CHANGED
|
||||
Old Google analytics code should not be added if disabled - FIXED
|
||||
|
||||
v1.6.26
|
||||
OSM address encoder fails if site is non SSL - FIXED
|
||||
|
||||
v1.6.25
|
||||
My Favorites text in breadcrumb not translatable - FIXED
|
||||
Email custom field not showing on map bubble - FIXED
|
||||
Related listings widget does not have option to sort nearest listings - FIXED
|
||||
Address field does not hide validation message if address set from map dragend - FIXED
|
||||
Add listing shortcode not working if page have other shortcodes - FIXED
|
||||
Details page send enquiry/friend forms don't validate if listing is published - FIXED
|
||||
New hooks added for WPML duplicate translation - CHANGED
|
||||
Review form rendered with rich editor does not validate the field correctly - FIXED
|
||||
Detail page sidebar gets wrapped to bottom of page for Divi v3.0.87 - FIXED
|
||||
JetPack CDN breaks listing images - FIXED
|
||||
New core WP 4.9 plupload JS breaks our CSV upload for import - FIXED
|
||||
|
||||
v1.6.24
|
||||
Fix affiliate links for GeoDirectory CPTs listing pages - FIXED
|
||||
Broken term links on details page if region removed from details links - FIXED
|
||||
GD login link throwing to 404 page for already logged user - FIXED
|
||||
Show validation message for empty review/reply text - CHANGED
|
||||
Listing edited notification should be sent after listing data saved - CHANGED
|
||||
After GT to GD migration comment content shows [img] tags - FIXED
|
||||
Multiselect ajax not working properly due to VARCHAR - FIXED
|
||||
Overall rating sort now uses bayesian formula by default - CHANGED
|
||||
Add to fav for multisite using same option, now uses option for each site - CHANGED
|
||||
Bulk edit action breaks the listing status - FIXED
|
||||
listing_width parameter does not working in gd_listings shortcode FIXED
|
||||
View all link should go to search page with near me selected - CHANGED
|
||||
geodir_reviewer_content_author_link filter added - ADDED
|
||||
CPT draft/pending links can be broken with some settings - FIXED
|
||||
category_restrict parameter not hiding the text More Categories/Less Categories - FIXED
|
||||
|
||||
v1.6.23
|
||||
"All" string is not translated in popular post widget title - FIXED
|
||||
Fix post name for autosaved listing from backend - FIXED
|
||||
Added filter to the geodir_listing_belong_to_current_user() function - ADDED
|
||||
Search by tag keyword not working properly - FIXED
|
||||
|
||||
v1.6.22
|
||||
Comment replies should not add review structured data - FIXED
|
||||
Hooks added to customize texts in location description when for empty location - ADDED
|
||||
Popular post widget view all link should have url with current language - FIXED
|
||||
Mobile details page tabs now close and scroll to show tab title - CHANGED
|
||||
Sometime click on pinpoint doesn't opens the map infowindow - FIXED
|
||||
Category top description not saved from new category form - FIXED
|
||||
Fix flexslider JS conflict - FIXED
|
||||
Option added in popular post widget to hide widget if no listings found - ADDED
|
||||
Disable review submitting on draft/trash/pending listing - CHANGED
|
||||
Don't translate GD post types/taxonomies if disabled in WPML settings - CHANGED
|
||||
RTL, details page tabs not RTL - FIXED
|
||||
On detail page show no. images as per plan allowed - FIXED
|
||||
Remove grey X from default custom field - CHANGED
|
||||
WPML v3.2+ compatibility changes - CHANGED
|
||||
Theme My Login compatibility fix - FIXED
|
||||
Can't disable BCC notification to admin on post submit success - CHANGED
|
||||
Backend should load content in language that user has selected in his profile - FIXED
|
||||
geodir_date() function not working for already translated date - FIXED
|
||||
Disable quick edit links for GD CPTs - CHANGED
|
||||
If nothing found during Near search the Near location will be used as the map default location - CHANGED
|
||||
Popular post view widget, added filter to sort by option - ADDED
|
||||
Recent reviews no. of reviews limit not working - FIXED
|
||||
Function geodir_user_post_listing_count() using current user id instead of user_id arg - FIXED
|
||||
Widget listing should show nearest results when location filter enabled and lat/lon set - CHANGED
|
||||
On login/signup page redirect_to parameter not working for logged user - FIXED
|
||||
Problem occurs when using "tag" string in post type name - FIXED
|
||||
gd_listings shortcode shows all listings if post_author has no listings - FIXED
|
||||
UsersWP login widget redirects to /login page - FIXED
|
||||
Added beta map cache settings to GD>Design>Map section - ADDED
|
||||
GD css conflict with Woocommerce - FIXED
|
||||
|
||||
v1.6.21
|
||||
Recent reviews doesn't work well with WPML - FIXED
|
||||
Changed "Get Directions" custom field to apple maps link as it redirects better on all devices - CHANGED
|
||||
Remove X theme search page titles and breadcrumbs - CHANGED
|
||||
Post type conflict on add listing page - FIXED
|
||||
Listings & terms unique slug validation with WPML - CHANGED
|
||||
DB Max index length variable added - ADDED
|
||||
In location translation change to in %s to fix prefix location - CHANGED
|
||||
Added option to change default list thumbnail image size - ADDED
|
||||
Added title attribute to listing images - ADDED
|
||||
CPT > Categories widget on detail page should filter post type & category if allowed - CHANGED
|
||||
New hook added to filter address fields being displayed - ADDED
|
||||
|
||||
v1.6.20
|
||||
is_featured column added in listing sample CSV file - CHANGED
|
||||
Map Bubble placement problem for OpenStreetMap - FIXED
|
||||
Listing slider widget image not a link - CHANGED
|
||||
Hooks added to filter custom field value - CHANGED
|
||||
Problem when listing title matches category or tag name - FIXED
|
||||
Map ajax now sends location info to bust some caching problems - FIXED
|
||||
If map first loads empty then changing CPT on map might not work - FIXED
|
||||
Dummy images urls www. removed as some servers do not follow redirect - FIXED
|
||||
Default Google maps mobile view full screen map button removed as we have our own - CHANGED
|
||||
|
||||
v1.6.19
|
||||
X theme update causes some layout issues - FIXED
|
||||
Kleo listing and CPT pages not using GD titles - FIXED
|
||||
Audio custom file fields will now show audio player instead of link - CHANGED
|
||||
If single cat selected in home map, show that marker rather than post default marker - CHANGED
|
||||
Geolocation on near field can be cached when browser back button used - FIXED
|
||||
WP Session class lib can expose the Session ID publicly - SECURITY
|
||||
|
||||
v1.6.18
|
||||
Custom field should display label instead of value if set in option values - FIXED
|
||||
With WPML the location terms added twice when CPT slug is translated - FIXED
|
||||
gd_listing_map shortcode not working for CPT other then "gd_place" - FIXED
|
||||
GD Booster causes problem when used http in urls on SSL enabled site - FIXED
|
||||
Listing slider widget breaks slider if on detail page - FIXED
|
||||
For price custom field option "Decimal display" does not working - FIXED
|
||||
Singapore set address on map does not always return country - FIXED
|
||||
Use of ICL_LANGUAGE_CODE conflicts if used to check WPML installed - CHANGED
|
||||
New attributes added in gd_listings shortcode to filter user favorite listings - ADDED
|
||||
Backward compatibility for multibyte string functions - CHANGED
|
||||
Facebook login will not redirect back to add listing page - FIXED
|
||||
Fix conflict Advanced Custom Fields timepicker - FIXED
|
||||
Isle of Man added as own country and regions fixed - FIXED
|
||||
Undefined error when map marker animating - FIXED
|
||||
Option added to disable overwrite by Yoast SEO titles & metas on GD pages - ADDED
|
||||
On Custom AJAX request WPML uses default language for non logged user - FIXED
|
||||
Search returns all the posts for Kleo theme - FIXED
|
||||
Sort CPT taxonomy in popular categories widget - CHANGED
|
||||
Fixed some countries missing ISO country code - FIXED
|
||||
Admin use only date field should not lost value if saved by user - FIXED
|
||||
Post date should be updated via CSV import - CHANGED
|
||||
In [gd_listings] shortcode if category has no posts then it shows all the results - FIXED
|
||||
[gd_popular_post_view] shortcode character_count=0 not working - FIXED
|
||||
Popup forms not using correct language with WPML - FIXED
|
||||
Flatsome theme compatibility settings added - ADDED
|
||||
BuddyBoss theme compatibility settings added - ADDED
|
||||
Add locate me button to address input on add listing page - ADDED
|
||||
Categories icon urls are broken if site moved from http to https - FIXED
|
||||
Allow import/export linked business cpt ids - ADDED
|
||||
In front end allowed to translate listing via WPML duplicate translation - ADDED
|
||||
Fix issue with Paris sometimes returning a sub section name from Google API - FIXED
|
||||
Fix Tax Meta Class conflicts - FIXED
|
||||
|
||||
v1.6.17
|
||||
Changes for batch WPML duplicates feature - CHANGED
|
||||
Yoast SEO location replacement tags no longer working - FIXED
|
||||
|
||||
v1.6.16
|
||||
Country should be not added in DB via query - FIXED
|
||||
New parameters post_type & category added to the listings map shortcode - CHANGED
|
||||
WPML geodir_info_url and geodir_login_url now uses lang code in url when needed - CHANGED
|
||||
Added try catch to Google analytics account call which can break if no accounts present - FIXED
|
||||
Added Google Analytics option to anonymize IP to comply with German law - ADDED
|
||||
Marker pins not bouncing for OpenStreetMap - FIXED
|
||||
Make ratings stars clickable on listing - ADDED
|
||||
Fix for WordFence warning on registration via GD Login - FIXED
|
||||
Textarea and html custom field can now use default value - CHANGED
|
||||
Kleo theme title not show on preview page - FIXED
|
||||
Breadcrumb formatting issue with the neighbourhood name - FIXED
|
||||
On add listing page switching WPML language changes the listing type - CHANGED
|
||||
Option added in listing map widget to enable marker cluster for map - CHANGED
|
||||
Google Analytics account error breaks the site - FIXED
|
||||
Auto register custom fields for WPML translation via GD custom field translation tool - CHANGED
|
||||
Fix ISO2 for translated country - FIXED
|
||||
Updated Generate API KEY button to add access for all APIs - CHANGED
|
||||
Switching language from WPML location switcher looses the page variables on GeoDirectory pages - FIXED
|
||||
Set address on map can sometimes not work right if no zip is provided - FIXED
|
||||
Address and Category cant be shown on their own tab - FIXED
|
||||
The country code is undefined when default country is set and translated - FIXED
|
||||
Single quote in default city name causes problem in add new city - FIXED
|
||||
Popular post view widget Featured sort now secondarily ordered by date added - CHANGED
|
||||
Geocode address add listing page on FireFox can cause ZERO_RESULTS in some circumstances - FIXED
|
||||
Fusion Builder jQuery chosen conflicts with GD jQuery chosen - FIXED
|
||||
Hook added to enable/disable editor for description field - CHANGED
|
||||
Spain now uses administrative_area_level_2 for regions (this will affect current Spanish listings, you should add new regions and then merge out old ones) - CHANGED
|
||||
Category are not unticked on page refresh for map post type other than default - FIXED
|
||||
Synchronize the post reviews if "Synchronize comment on duplicate content" is set - CHANGED
|
||||
New title variables added to display country/region/city/neighbourhood - CHANGED
|
||||
Some functions added for truncate, strlen, substr the text - ADDED
|
||||
WPML duplicate should not be posts edited from frontend - FIXED
|
||||
"Place" and "Places" in latest core PO file is not translating anymore - FIXED
|
||||
WPML "view all" does not use the translated CPT slug - FIXED
|
||||
White spaces in multiselect comma separated custom fields does not ticked in edit form - FIXED
|
||||
Ultimate VC Addons script breaks backend add/edit listings - FIXED
|
||||
Widget CPT Categories has extra closing ul tag - FIXED
|
||||
Detail page map get directions should user user location - CHANGED
|
||||
[#user_email#] shortcode variable is not working in listing notification emails - FIXED
|
||||
Added media query for 375px to show listings 100% at below that - ADDED
|
||||
Some WPML compatibility fix - FIXED
|
||||
Option added to disable review stars for certain post type - CHANGED
|
||||
Fix issue for plugin installation via WP-CLI - FIXED
|
||||
Sao Tome and Principe and South Sudan countries added to DB list - CHANGED
|
||||
GD Tools> reload countries table tool added to update new countries - ADDED
|
||||
Detail page previous and next links broken if WPML is active - FIXED
|
||||
|
||||
v1.6.15
|
||||
Google Services API can conflict with newer version of the Google Service Class - UPDATED
|
||||
No way to deactivate GA Settings, deactivation button added - ADDED
|
||||
Google map directions not working on detail page map - FIXED
|
||||
CSS issue with map category show/hide icon - FIXED
|
||||
Filters added to admin BCC emails - ADDED
|
||||
Twenty Seventeen theme compatibility settings added - ADDED
|
||||
geodir_save_post_info() now faster and escapes values better - CHANGED
|
||||
Using apostrophe(') in title breaks title in map info window - FIXED
|
||||
|
||||
v1.6.11
|
||||
geodir_set_as_home rule still existed from depreciated option - FIXED
|
||||
Registration box, changed Name/Email around so to work with browser save user/pass - CHANGED
|
||||
Fix for primer theme edit place page - FIXED
|
||||
Font awesome rating validation not working - FIXED
|
||||
Admin BCC post_submit subject/message hooks not applied - FIXED
|
||||
Google maps on some mobile devices adds a new span which breaks slide out menu - FIXED
|
||||
Max and min map zoom levels set via hooks not working - FIXED
|
||||
$extra_fields in custom field stripping slashes too early - FIXED
|
||||
Email headers changed from string to array() and MIME-Version removed - CHANGED
|
||||
Added filters to the add listing page title and description labels for difficult translations - ADDED
|
||||
Reunion (island) added and Burma removed (replaced with Myanmar) - CHANGED
|
||||
Payment manager restrict description input count can affect video tab - FIXED
|
||||
WPML exclude cats on map does not work for translations of categories - FIXED
|
||||
Dummy data section improved and additional industries added - ADDED
|
||||
Empty price field outputs 0.00, now it is not displayed - CHANGED
|
||||
On detail page current location parameters should be added to the term links - CHANGED
|
||||
OpenStreetMap does not working when third party plugin using the Google Maps JS API - FIXED
|
||||
GD listings query returns wrong total when category has sub categories - FIXED
|
||||
BREAKING CHANGE: Google Analytics settings simplified, MUST be re-setup to continue use - BREAKING CHANGE
|
||||
On multisite after import it shows wrong directory location to upload images - FIXED
|
||||
alive_days column added in exported csv file - ADDED
|
||||
Share this section on details page removed, share this servers have been causing problems - REMOVED
|
||||
Full screen map button class changed to have gd- prefix to avoid conflicts - CHANGED
|
||||
|
||||
v1.6.10
|
||||
Search can fail if more than one CPT but one is empty - FIXED
|
||||
Search with near field can fire before geolocation returned - FIXED
|
||||
Sort by farthest not working, sorts by nearest - FIXED
|
||||
Change enquiry email name if owned by admin or not claimed - CHANGED
|
||||
|
||||
v1.6.9
|
||||
Tab custom field hook missing htmlvar variable - FIXED
|
||||
Some CSS tweaks for gd-comma-list in tabs - CHANGED
|
||||
linked place marker can sometime show on details page map of original place - FIXED
|
||||
Changes for custom OpenStreetMap integration - CHANGED
|
||||
Option added in Popular Category Widget to show parent categories only - ADDED
|
||||
Video preview placeholder shown on preview page - CHANGED
|
||||
Enable location filter option added for slider widget - ADDED
|
||||
Changed for WPML not getting correct lang from url - FIXED
|
||||
Predefined custom fields section added to place settings - ADDED
|
||||
Search bar styles change (to use original GD>Design>Search>Use old non-styled form) - STYLE BREAKING CHANGE
|
||||
Firefox marker title hover fails on multiple repeat hovers - FIXED
|
||||
If multiple CPT but only one has posts then search CPT switcher will not show - CHANGED
|
||||
$_SERVER['SERVER_NAME'] returns empty host with nginx server - FIXED
|
||||
Flexslider RTL chrome 53 bug, slider not showing - FIXED
|
||||
Chosen select RTL display bug - FIXED
|
||||
Yoast SEO meta tags should add category default image in meta - ADDED
|
||||
Lazyload images not loading if they have parentheses in the url (x) - FIXED
|
||||
Price output settings added to numerical text custom fields - ADDED
|
||||
Settings added to remove data on plugin uninstall - ADDED
|
||||
|
||||
v1.6.8
|
||||
Address field output containd class post instead of post_address - FIXED
|
||||
Video and special offers tabs can show twice - FIXED
|
||||
Custom field position change function sometimes not run - FIXED
|
||||
Multiselect custom field can now be show as comma separated by adding class `gd-comma-list` - ADDED
|
||||
With Avada theme "GD Home Top Section" widgets dont work on GD Home page - FIXED
|
||||
|
||||
v1.6.7
|
||||
Original custom fields hook htmlvar broken - FIXED
|
||||
Default custom fields not able to show in custom tab - FIXED
|
||||
Function added to convert date formats - ADDED
|
||||
Checkbox custom field can fail to show if previously set as own tab - FIXED
|
||||
|
||||
v1.6.6
|
||||
Added filter to geodir_filter_empty_terms function - ADDED
|
||||
Best of widget not showing lazyload images on ajax change - FIXED
|
||||
Added action hooks to login widget for social buttons - ADDED
|
||||
Changed the way fullscreen map works for more compatibility - CHANGED
|
||||
Mouse scroll zoom control setting not working for OpenStreetMap - FIXED
|
||||
Popular post view widget -> "Post Type:" setting not working on CPT pages - FIXED
|
||||
Responsive video shortcode - ADDED
|
||||
Claim listing error message incorrect class - FIXED
|
||||
Address field not showing the same on prview page - FIXED
|
||||
Options added in CPT categories widget to disable viewing post type & category filters - ADDED
|
||||
Server side marker clustering not working with OpenStreetMap - FIXED
|
||||
BuddyPress admin bar not availble for non admin users - FIXED
|
||||
Fixed map marker title special characters encoding - FIXED
|
||||
Let popup forms template override from theme - FIXED
|
||||
Added a filter to modify My Dashboard widget title - ADDED
|
||||
Map routing direction feature added for detail page OpenStreetMap - CHANGED
|
||||
Ajax pagination not working when more then gd_listings shortcodes added to the same page - FIXED
|
||||
|
||||
v1.6.5
|
||||
Location page breadcrumb now uses location page slug - CHANGED
|
||||
Date custom field date formats now more standardized - CHANGED
|
||||
Claimed column added in exported listings csv file - FIXED
|
||||
Imported images with spaces are not loaded via the lazyload function - FIXED
|
||||
GD Listings shortcode extended with the "tags" parameter to filter listings by tags - ADDED
|
||||
fgetcsv ignores special characters when they are at the beginning of line - FIXED
|
||||
When a CPT has no listing it replaces the blank CPT name in meta titles - FIXED
|
||||
Map un-ticked cats wrong on first load if default place CPT not used - FIXED
|
||||
Nearest option added to related listings - ADDED
|
||||
Add listing shortcode can sometimes show form twice - FIXED
|
||||
My Favorite page uses first listing author name instead of logged in user name - FIXED
|
||||
Is active option removed from the address field to avoid confusion - CHANGED
|
||||
Unable to populate dummy data with OpenStreetMap enabled - FIXED
|
||||
Editor/Authors can access some parts of the backend even if setting set to not allow - FIXED
|
||||
Listing success template now uses author sidebar instead of details page sidebar - CHANGED
|
||||
Popup forms changed to placeholders and html5 validation - CHANGED
|
||||
|
||||
v1.6.4
|
||||
Date custom field can sometimes display default date on preview page - FIXED
|
||||
Average review added back to sidebar - CHANGED
|
||||
& symbol causing problem in listing tag display - FIXED
|
||||
Option added to export listings which are published between specific dates - CHANGED
|
||||
Listings shortcode paging not working with lazy load images - FIXED
|
||||
Google maps now required API KEY, setting added - FIXED
|
||||
|
||||
v1.6.3
|
||||
Popular post categories widget not adhering to default post type setting - FIXED
|
||||
OpenStreetMap breaks images on https sites when SSL is active - FIXED
|
||||
Show page content for all GD pages - ADDED
|
||||
jQuery chosen conflicts causes problem when add new region/city in backend add listing - FIXED
|
||||
gd-Navi CSS min-width set to avoid hiding on small screens - FIXED
|
||||
Lazy load GD images option added in Design>Scripts - ADDED
|
||||
Wrong class spelling for search widget shortcode - FIXED
|
||||
dummy data images are being cached now - ADDED
|
||||
No reviews link points to #respond instead of #reviews - FIXED
|
||||
Filter added to make telephone linkable in home map bubble - ADDED
|
||||
Switching themes will persist GD widgets but now keep theme specific widget settings - FIXED
|
||||
If new import has new featured image it does not set it properly as featured image - FIXED
|
||||
Beaver Builder plugin has problems with draft posts when GD installed - FIXED
|
||||
Second line menus items can show over first line sub menu items because of z-index - FIXED
|
||||
Changed load_textdomain to init hook for WPML compatibility - CHANGED
|
||||
Text `Listing Title` and `Listing Description` changed to CPT specific - CHANGED
|
||||
Added filter to modify special offers tab content - ADDED
|
||||
switching post type on home map are persistent now - CHANGED
|
||||
Multiselect custom field now output as comma separated list instead of ul - CHANGED
|
||||
Apostrophe problem in address field - FIXED
|
||||
|
||||
v1.6.2
|
||||
GD Search widget bug with Display Widgets plugin - FIXED
|
||||
Log the WP error in debug.log with csv row number when fail to import listing - ADDED
|
||||
Single select extra info value not showing when output - FIXED
|
||||
Function geodir_get_post_meta() returns false value when field has value 0(zero) - FIXED
|
||||
Added filters for client and admin emails - ADDED
|
||||
Option added to remove details page tabs and show as list - ADDED
|
||||
Added filter hook to listing slider widget - ADDED
|
||||
If CPT order is changed from default the homepage categories dont change - FIXED
|
||||
Hide the empty categories on the map - CHANGED
|
||||
Large number of categories slow down the add listing page - FIXED
|
||||
Removed DONOTCACHEPAGE for frontpage as it is no longer dynamic for locations - CHANGED
|
||||
geodir_setup_submit_search() can set multiple click events on search submit - FIXED
|
||||
OpenStreetMap integration added for maps - ADDED
|
||||
New Avada theme can break search filters depending on settings - FIXED
|
||||
General functions PHP version warning - FIXED
|
||||
|
||||
v1.6.0
|
||||
GD export should not export deleted listings - CHANGED
|
||||
Edited by author message should not fire when using GD import - CHANGED
|
||||
get_currentuserinfo() Depreciated and removed/changed - FIXED
|
||||
Option added to show custom text when no listings found in gd_listings shortcode - CHANGED
|
||||
Page number variables added for titles & metas description - CHANGED
|
||||
Forgot Password link not working - FIXED
|
||||
The category icon and default image uploader no longer working with WP 4.5 - FIXED
|
||||
Now able to set source category id for WPML translated categories in GD Import/Export - CHANGED
|
||||
GD Import/Export imports wrong latitudes values - FIXED
|
||||
JS error on hovering listings in some cases - FIXED
|
||||
|
||||
v1.5.9
|
||||
New parameter "post_author" added in [gd_listings] shortcode to filter listings by author - ADDED
|
||||
The slider thumbnails are not working as expected when many listings are displayed - FIXED
|
||||
Excluded categories printed when selecting a category on add listing page - FIXED
|
||||
Var GEODIRECTORY_PLUGIN_DIR was not defined if server falls back to PHP sessions - FIXED
|
||||
Fontawesome star rating colour CSS missing a closing bracket - FIXED
|
||||
If map shows multiple CPT, clicking current selected CPT shows loading div constantly - FIXED
|
||||
Quotes in csv title import break maps - FIXED
|
||||
If domain name contain CPT and home page is set to current location then it breaks the links on listing pages - FIXED
|
||||
geodir_is_page() fails if post_type query var is an array - FIXED
|
||||
Features widget add item button does not do anything for new widgets - FIXED
|
||||
Added option to bounce marker pin on listing hover on listing page - ADDED
|
||||
Multinews theme compatibility changes for new version - FIXED
|
||||
Add listing neighbourhood via GD import/export listings - CHANGED
|
||||
If apostrophe in option value then it disappears from the selected option values - FIXED
|
||||
Display cpt/category name in the advanced pagination info - CHANGED
|
||||
Send notification to Admin when listing edited by Author - ADDED
|
||||
Added new filter for search terms `geodir_search_better_search_terms` - ADDED
|
||||
Search with single quotes does not return results - FIXED
|
||||
Tag and Cat labels on details page easier to translate - CHANGED
|
||||
Options added to check/refresh analytics data and to set time interval for auto refresh results - ADDED
|
||||
Some PHP7 compatibility changes - CHANGED
|
||||
|
||||
v1.5.8
|
||||
Local .mo file path points to wrong location - FIXED
|
||||
Debugging notice printing on plugins.php page - FIXED
|
||||
|
||||
v1.5.7
|
||||
GD Export should split requests to skip out of memory problem - FIXED
|
||||
Added filters to change img urls for uses like CDN - ADDED
|
||||
Added filters to be able to add your own vars to titles and meta - ADDED
|
||||
Some plugins/themes can unset the page_id which breaks some features - FIXED
|
||||
Events with long running times sometimes not showing on the map - FIXED
|
||||
Some notification subjects not translatable - FIXED
|
||||
Datepicker custom filed now has filter to add extra params - ADDED
|
||||
Visual Composer can throw error for widget view all links - FIXED
|
||||
Added TouristAttraction schema type for categories - ADDED
|
||||
Added filter to be able to add/remove schema types - ADDED
|
||||
Notifications email messages sent by GD should be translatable - FIXED
|
||||
Changes for the neighbourhood system improvement - CHANGED
|
||||
id & style class added to custom field type fieldset - ADDED
|
||||
Home map shortcode now supports latitude longitude args - ADDED
|
||||
Made few changes for W3C validation - CHANGED
|
||||
Font awesome updated to 4.5.0 - CHANGED
|
||||
New filter added to use group by clause in map marker query - ADDED
|
||||
Custom field option values should be translatable - FIXED
|
||||
Permalink pages settings saving on a different wpml language breaks pages settings - FIXED
|
||||
Added filter to be able to search listing results map json - ADDED
|
||||
Able to enter title for url fields with "|" separator like "http://wpgeodirectory.com|GeoDirectory" - CHANGED
|
||||
Listing width option does not working in related listing widget - FIXED
|
||||
For category field type "select" it should add parent category also when a sub-category is selected - FIXED
|
||||
Slight change to tax meta class for compatibility with some themes - CHANGED
|
||||
Added hooks to add listing success page message - ADDED
|
||||
Schema filter/function added $post param - CHANGED
|
||||
GD login doesn't allows login by email if site is using SSL - FIXED
|
||||
Description word limit to zero in GD -> Design -> Listings doesn't hide listing description - FIXED
|
||||
Url custom field uses default value for link text if present - CHANGED
|
||||
Default image should not displayed on listing detail preview page - FIXED
|
||||
Changes to implement location import/export for multilocations - CHANGED
|
||||
Not able to create new custom field with type checkbox if default value entered - FIXED
|
||||
GeoDirectory Session class added to manage sessions - ADDED
|
||||
Deleting custom field not deletes the field from sorting fields table - FIXED
|
||||
Address field sort option removed - CHANGED
|
||||
Font Awesome support added for rating images - ADDED
|
||||
Some servers fail if a POST value is VARCHAR so we change it to XVARCHAR for post - CHANGED
|
||||
Hide tags and description fields if char limit set to ZERO for fields - CHANGED
|
||||
WordPress function wp_get_http is deprecated, removed and replaced - CHANGED
|
||||
|
||||
v1.5.6
|
||||
In add listing form sub-categories are no longer showing in hierarchy for checkbox display type - FIXED
|
||||
Tick parent category should not tick sub-categories but untick parent category should untick sub-categories - CHANGED
|
||||
Filter added to modify unfavorite icon - ADDED
|
||||
Details page map can have overlapping sidebar map elements - FIXED
|
||||
Schema description HTML tags now removed - CHANGED
|
||||
New widget added to display content like features - ADDED
|
||||
URL Schema can have validation error - FIXED
|
||||
Multiselect fields with {optgroup} sometimes not creating a list - FIXED
|
||||
Option added to export max number listings per csv file to fix out of memory issue - FIXED
|
||||
Body classes added to GD pages for each page - ADDED
|
||||
The recent reviews widget ignores 1 star reviews - FIXED
|
||||
Added ability to show upgrade warning messages for major changes - ADDED
|
||||
Multiselect custom field "Display Type" option doesn't save on first attempt - FIXED
|
||||
Apostrophe in location name breaks the maps - FIXED
|
||||
JS warning Google maps sensor no longer required - FIXED
|
||||
Features widget now has repeater fields for ability to add lots of items - CHANGED
|
||||
Star rating hidden when map is full screen - FIXED
|
||||
|
||||
v1.5.5
|
||||
Added charset parameter to case conversion functions - ADDED
|
||||
Avada compat CSS updated to adjust search button position - FIXED
|
||||
Filter `geodir_filter_title_variables_location_arr` added to filter the location variables for titles/meta - ADDED
|
||||
GD category page CPT slug does not change when switching language with WPML - FIXED
|
||||
Search form url not keeping the language in the url with WPML - FIXED
|
||||
Homepage page_id query var not set and can cause problems with Yoast SEO - FIXED
|
||||
Some changes for PHP7 - CHANGED
|
||||
All CPT text are translatable using db translation - FIXED
|
||||
New actions added to customize listing not found message - CHANGED
|
||||
Advance search submit button fixed - FIXED
|
||||
Pagination not working when location selected - FIXED
|
||||
Shortcode added for CPT categories widget - ADDED
|
||||
Breadcrumb HTML does not wrap correctly for a small screens or in a mobile - FIXED
|
||||
Added geodir_review_form_args, gd_rating_form_html, geodir_get_rating_stars_html filters - ADDED
|
||||
Post type archive link not working when "add city slug in listing urls" for location - FIXED
|
||||
Tested with WP 4.4 - NOTICE
|
||||
Blog archive page shows home page content even selected as a posts page - FIXED
|
||||
|
||||
v1.5.4
|
||||
Event after map marker opened extended to prevent FireFox reclosing marker with server side clustering addon - FIXED
|
||||
Map popup image margins and padding set to 0 !important for compatibility - CHANGED
|
||||
Bootstrap styles can alter the popular categories count number position - FIXED
|
||||
Location switcher ajax search not working with accents chars - FIXED
|
||||
Best of widget Option added to display reviews in excerpt - ADDED
|
||||
Image gallery lightbox popup image stretches problem with some themes - FIXED
|
||||
Changed creation of url custom field from varchar 255 to text for longer urls - CHANGED
|
||||
Yoast SEO is unable to overwrite the home page meta title - FIXED
|
||||
Map tick box HTML changed for compatibility - CHANGED
|
||||
New widget added: CPT Categories - ADDED
|
||||
Default home page map width changed to 100% from 960px - CHANGED
|
||||
With multi ratings the comment sorting is reversed then selected under settings -> discussion - FIXED
|
||||
Excerpt more filter now only applied to GD post types - CHANGED
|
||||
New action "geodir_infowindow_meta_before" added in map marker info window - ADDED
|
||||
Default category can be set by "default_category" in csv import - CHANGED
|
||||
Search unable to find listings for a particular keyword in the content - FIXED
|
||||
New GD Home page created and setting depreciated for overriding normal home page - CHANGED
|
||||
Email address with .coop TLD not validated - FIXED
|
||||
Yoast meta title, description & keywords now also works with %location% tag - ADDED
|
||||
GeoProperty theme compatibility pack - ADDED
|
||||
Related listing widget does not reset the $post value properly - FIXED
|
||||
Email subjects and messages can now be translated in .po file if original messages is used - CHANGED
|
||||
Structured data now uses JSON-LD and can be filtered to add more info - ADDED
|
||||
Schema type option added to categories for structured data - ADDED
|
||||
Categories tax meta "cat_schema" is manageable using import/export - ADDED
|
||||
HTML5 validation added to email, number, tel and url custom fields - ADDED
|
||||
HTML5 pattern validation option added to text custom fields - ADDED
|
||||
Options added for location specific urls like /country/city/ & /region/city/ - ADDED
|
||||
Select and multiselect custom fields now exactly set their own max length in the DB so to not use as many bytes - CHANGED
|
||||
Custom field type fieldset should not import/export in csv file - FIXED
|
||||
In listing search form spinner icon customized with font-awesome spinner - CHANGED
|
||||
On home page map categories menu not able to click on down arrow of scroll bar - FIXED
|
||||
case conversion functions added to support unicode languages - ADDED
|
||||
case conversion functions replaced with custom function to support unicode languages - CHANGED
|
||||
Titles & Metas section added for changing GD page meta titles and descriptions - ADDED
|
||||
Some page titles now editable in the Titles & Metas section - ADDED
|
||||
Page titles compatible with WP 4.4 - ADDED
|
||||
%%location%%, %%in_location%%, %%location_single%% and %%in_location_single%% now compatible with Yoast (WPSEO) - ADDED
|
||||
Double words like `Place Categories` now easier to translate as one - CHANGED
|
||||
Error message added when creation/edit of custom field fails - ADDED
|
||||
Options added for location specific urls like /country/city/ & /region/city/ – ADDED
|
||||
Able to get WP_Error on post save failure in geodir_save_listing() - CHANGED
|
||||
Use get_site_url() instead of home_url() - CHANGED
|
||||
|
||||
v1.5.3
|
||||
If tax query has 'relation' set then it will throw WARNING in wp_list_pluck - FIXED
|
||||
listing-preview page template removed as details page template now used - CHANGED
|
||||
In some cases with https when saving a listing it can change image url - FIXED
|
||||
Cyrillic letters does not supported in GD Import - FIXED
|
||||
Event map infowindow not showing dates properly - FIXED
|
||||
Conflicts due to same id for password field in login and register form - FIXED
|
||||
Jobby compatibility pack - ADDED
|
||||
Avatar links to the member page are inconsistent - FIXED
|
||||
Map popups with no image can be malformed on some themes - FIXED
|
||||
WPML listings not exports original post id for some listings - FIXED
|
||||
Datepicker custom field can show wrong date on edit if left blank on save - FIXED
|
||||
Google maps zoom and street view buttons hidden with new Google layout - FIXED
|
||||
New GD page gd-info added for displaying info messages - ADDED
|
||||
New GD page gd-login added for login/register - ADDED
|
||||
Some large imports can stop at 98/99% but are actually finished - FIXED
|
||||
Image popup modal on detail page doesn't resize according to screen size - FIXED
|
||||
Editing CPT tag not updating tag for associated CPT listing - FIXED
|
||||
Changes made for marker cluster addon to allow server side clustering - ADDED
|
||||
New login page now compatible with buddypress registration form for redirect option - CHANGED
|
||||
GD import speed improved - CHANGED
|
||||
Hit enter to search delayed by 100ms so other functions have a chance to change settings - CHANGED
|
||||
Unused css image classes removed - REMOVED
|
||||
Email custom field now used mailto: for the address and filter added to change the name output - CHANGED
|
||||
Preview page missing address closing div which can break the footer in some themes - FIXED
|
||||
New widget "CPT Categories" added to list categories - ADDED
|
||||
Visiting a place while session is set to another location can show wrong breadcrumbs - FIXED
|
||||
Added some filters in listview template and widget listview for jobby theme compatibility - ADDED
|
||||
Fixed html_var variable in custom fields output - FIXED
|
||||
Added class for fieldset field - ADDED
|
||||
|
||||
v1.5.2
|
||||
Map view type TERRAIN option added for all the maps - FIXED
|
||||
Upgrade function `gd_fix_cpt_rewrite_slug` set to run on every upgrade incase a user misses a version - CHANGED
|
||||
Renamed Directory_Theme to Directory_Starter - FIXED
|
||||
Avada box style not working for some pages - FIXED
|
||||
Share this links to details pages can sometimes cause JS error from jQuery history hash object - FIXED
|
||||
WPML, other translation links on details pages can be broken when viewing on non default language - FIXED
|
||||
Filter added to change recent reviews excerpt length - ADDED
|
||||
Details table limiting city,region,country names to 30 char, some region names are longer, changed to 50 char - FIXED
|
||||
Image file for custom field not enlarging using modal if displayed as tab on detail page - FIXED
|
||||
IE map infowindow can appear very small in height - FIXED
|
||||
Added filter for adding the location to the url, so it can be filtered from addons - ADDED
|
||||
Popup custom field image file in lightbox modal not working on home page and listing pages - FIXED
|
||||
Details map and details page map widget mapview not changing from ROADMAP - FIXED
|
||||
Details page mobile tabs view improved - CHANGED
|
||||
General option added to set if user deleted posts go to trash or are permanently deleted - ADDED
|
||||
Date custom field default format of mm/dd/yy added and descriptions of each format added for better understanding - CHANGED
|
||||
Changed textdomain from defined constant to a string 'geodirectory' - CHANGED
|
||||
Awesome font upgraded with new Awesome font version 4.4.0 - CHANGED
|
||||
|
||||
v1.5.1
|
||||
Default sort by titles not translatable - FIXED
|
||||
Listings permalinks are broken if slug matches part of host or base url - FIXED
|
||||
Popular post view widget is no longer stripping HTML in the excerpt - FIXED
|
||||
Add a filter to override comment avatar size from themes - ADDED
|
||||
Added some code to override reviews template from theme - ADDED
|
||||
Some filters added in best of widget - CHANGED
|
||||
All widgets changed from PHP4 style constructors to PHP5 __construct, for WordPress 4.3 - CHANGED
|
||||
Image file for custom field can be enlarged using modal - ADDED
|
||||
Bottom section widget area inside wrapper div - FIXED
|
||||
Review text first paragraph not wrapped in `p` tags - FIXED
|
||||
Moved out avatar from reviews header - CHANGED
|
||||
Changed terms and conditions link from a text input to a page select under GD>Permalinks for WPML compatibility - CHANGED
|
||||
Option added in popular post category widget to set default posttype - CHANGED
|
||||
Recurring events no working with GD import & export - FIXED
|
||||
Category limit no longer counting child categories - FIXED
|
||||
In popular post widget View All link in not correct if location filter disabled - FIXED
|
||||
Disabling address change on marker move now also includes map drag on add listing page - CHANGED
|
||||
Countries Caribbean Netherlands and Curaçao added to the country DB - ADDED
|
||||
New map infowindow style added to be more consistent on different size maps - CHANGED
|
||||
If WPSEO static blog page set GD homepage title wrong - FIXED
|
||||
|
||||
v1.5.0
|
||||
Google analytic countries throws error - FIXED
|
||||
Some PHP warnings removed when installing - FIXED
|
||||
User level Subscriber not shown Google Analytics stats - FIXED
|
||||
GeoDirectory custom script & css should not be printed in backend - FIXED
|
||||
Added two hooks to search queries - ADDED
|
||||
Post tags has a DB limit of 254, removed this limit - FIXED
|
||||
The recent reviews shortcode is missing the title attribute - FIXED
|
||||
Login error on GD signup page is not appearing - FIXED
|
||||
In forgot password notification user display name is not well formatted - FIXED
|
||||
Wrong link passed in send enquiry notification email - FIXED
|
||||
User Dashboard links not showing titles on mobile - FIXED
|
||||
Option added to customize pagination with "Showing results x-y of z" - ADDED
|
||||
WPML custom posts slug translation not working with GD (requires CPT and Event addon update also) - FIXED
|
||||
WPML popular post view rating on details page all the same as main post - FIXED
|
||||
Import Export is now compatible with WPML - FIXED
|
||||
Popular post widget set to use "All" if no category selected - CHANGED
|
||||
Linked business events are not displayed on detail page for cached post - FIXED
|
||||
Post images and location details not translated with WPML duplicate option - FIXED
|
||||
Single post map icon not https if https is on unless uploaded via https - FIXED
|
||||
Category map icon not https if https is on unless uploaded via https - FIXED
|
||||
User ID column added in attachments table - ADDED
|
||||
Shortcodes [#username#] & [#user_login#] added in registration notification - FIXED
|
||||
is_approved and caption columns added in attachments table - ADDED
|
||||
Listing slider widget can now show more than one listing at a time - CHANGED
|
||||
Some JS and CSS files removed/reorganised - CHANGED
|
||||
Info for PHP settings requirements added on GD Import & Export page - ADDED
|
||||
Location manager select not working with genesis child themes on mobile - FIXED
|
||||
Changes for Genesis child theme fixes - CHANGED
|
||||
Import/export we now try to use ini_set to extend the execution times, if ini_set() can't be use we show manual settings notification - CHANGED
|
||||
Disqus comments plugin now works with blog posts but is disabled on GD posts - FIXED
|
||||
5px margin added to grid view titles - CHANGED
|
||||
Error messaged on user registration border changed from green to red to denote errors - CHANGED
|
||||
Date custom field shows value even if no date entered and format can be wrong on edit - FIXED
|
||||
Moved login/reg function to be called on wp_loaded rather than init so other plugins have a chance to hook in if needed - CHANGED
|
||||
|
||||
v1.4.9
|
||||
Google Analytics extra error messages added to help users debug - ADDED
|
||||
Google Analytics days of week now translatable - FIXED
|
||||
Broken image link can break the image upload button when editing - FIXED
|
||||
Added check to not run file system check function when doing ajax calls - CHANGED
|
||||
Best of widget now supports multiple uses per page - FIXED
|
||||
Filter login_redirect added for login after GD signup - ADDED
|
||||
Google Analytics Countries now translatable - FIXED
|
||||
Google maps home map loads categories on first load instead of via ajax after page load - CHANGED
|
||||
Cyrillic characters not exporting correctly in import/export - FIXED
|
||||
With WPML search results listings for all languages - FIXED
|
||||
In registration send password to email note removed when user allowed choose own password - FIXED
|
||||
Menu save triggering rebuilding of category count and review counts - FIXED
|
||||
Added option to General>search to limit small individual words form being searched - ADDED
|
||||
Genesis cat description appearing twice and title out of align if sort by present - FIXED
|
||||
Google removed some JS files from their CDN which broke some Analytics, changed to cloudflare CDN - FIXED
|
||||
Added function to ad featured image to details page header so facebook will use it on url share - ADDED
|
||||
Fields is_featured, package_id & expire_date do not working for import/export - FIXED
|
||||
Default theme compatibility settings not installed on first install only on upgrade - FIXED
|
||||
Google analytics metric changed from ga:sessions to ga:pageviews - CHANGED
|
||||
Social importer not showing imported images properly - FIXED
|
||||
Disable dragging on map not working for all mobile devices, mainly just Apple devices - FIXED
|
||||
|
||||
v1.4.8
|
||||
Send Enquiry & send to friend options removed from listings page - CHANGED
|
||||
Add listing form upload image tool should not upload non-image files - FIXED
|
||||
Added wp_filesystem checks for systems having problems with import/export - ADDED
|
||||
Genesis theme update shows menu below top widget area - FIXED
|
||||
Added filter to be able to stop add listing address from changing when moving map pin - ADDED
|
||||
Better seo title and description for search results - CHANGED
|
||||
Without filling mandatory fields click on save draft button keeps spinning - FIXED
|
||||
Autozoom assigned only for more then map markers - CHANGED
|
||||
Import/export integrated with franchise feature - ADDED
|
||||
Import/export work with parent/child category - ADDED
|
||||
Custom field with apostrophe sign not translated properly - FIXED
|
||||
WPML not translating details page content correctly - FIXED
|
||||
Google Analytics for owners stopped working due to API retirement, new improved Analytics added - FIXED
|
||||
Category listing sort by rating now uses review count as second sort value - CHANGED
|
||||
WPML copy content for translation no longer copying GD custom fields - FIXED
|
||||
Function codeAddress changed to geodir_codeAddress for compatibility - CHANGED
|
||||
|
||||
v1.4.7
|
||||
Search not working for empty keyword search - FIXED
|
||||
Review counts lost during virtual page conversion (also fixed by saving any place) - FIXED
|
||||
Option added to allow/restrict some file types for custom field file upload - ADDED
|
||||
Some DocBlocks added for documentation - ADDED
|
||||
|
||||
v1.4.6
|
||||
New filter added for term link in popular category widget - ADDED
|
||||
Validation added to avoid multiple times selection for same category - FIXED
|
||||
Map ajax requests now specifically set to return utf-8 - CHANGED
|
||||
Star ratings in sidebar not responsive for window size between 883x738 & 982x738 - FIXED
|
||||
New filter added for location terms - ADDED
|
||||
Searching function updated to find results for only matching whole words - FIXED
|
||||
On sorting comment the comment text goes disappeared - FIXED
|
||||
Import & Export added for GD listings & categories - ADDED
|
||||
CSV Upload updated & moved under Import & Export - CHANGED
|
||||
GD pages converted from virtual to normal pages - CHANGED
|
||||
GD pages section added to GD permalinks page - ADDED
|
||||
|
||||
v1.4.5
|
||||
Slider JS missing from preview page - FIXED
|
||||
http://docs.wpgeodirectory.com/security-release-21-04-2015/ - SECURITY UPDATE
|
||||
|
||||
v1.4.4
|
||||
In CSV upload file new column post_status added to set listing status - CHANGED
|
||||
term description sometimes not showing - FIXED
|
||||
Listing title displaying sanitized for title attribute - ADDED
|
||||
CSV upload not dealing with line breaks in fields - FIXED
|
||||
ADDRESS_MSG can't be translated because it contains HTML tags - FIXED
|
||||
CSS files minified and added to one file for frontend - CHANGED
|
||||
JS files minified for the frontend - CHANGED
|
||||
In Best of widget listings "Best of" text not translatable - FIXED
|
||||
Update for Avada 3.8+ compatibility that removes the need to edit and have the header.php in child theme - CHANGED
|
||||
On search pages sort options removed as sorting is done by search criteria - CHANGED
|
||||
|
||||
v1.4.3
|
||||
In the map child categories should be checked/unchecked when parent category is checked/unchecked - FIXED
|
||||
Sorting by title not working correctly - FIXED
|
||||
Added $post_id param to action 'geodir_update_postrating' - ADDED
|
||||
Removed preview button from backend for GD posts - CHANGED
|
||||
|
||||
v1.4.2
|
||||
Google api establishment term can override street address - FIXED
|
||||
Added action geodir_infowindow_meta_after to infowindow - ADDED
|
||||
On home page map css class added to highlight searched post type - FIXED
|
||||
Popular category count not working with ajax - FIXED
|
||||
In backend geodirectory style conflicts with some themes style - FIXED
|
||||
Sort by most reviews not working in widget and shortcode popular post view - FIXED
|
||||
Validation added for custom permalinks in GD -> General -> Permalinks - FIXED
|
||||
All Listings virtual page removed - CHANGED
|
||||
Shortcode added for best of widget - ADDED
|
||||
Recent reviews widget ratings stars color not changed with multirating color setting - FIXED
|
||||
geodir_curPageURL() changed slightly for https url's, we no longer add the port number - CHANGED
|
||||
Shortcode added for to display GeoDirectory Listings with pagination - ADDED
|
||||
Marker cluster not working in maps added via shortcode - FIXED
|
||||
Add to fav/remove from fav text now filterable - ADDED
|
||||
Awesome font upgraded with new Awesome font version 4.3.0 - ADDED
|
||||
After searching for a city not able to search city again without clearing Near input box - FIXED
|
||||
Custom fields texts translation added - FIXED
|
||||
[#from_email#] added as a shortcode in notification templates - ADDED
|
||||
Changed hook 'template_include' to priority 9 - CHANGED
|
||||
|
||||
v1.4.1
|
||||
Distances to listings should show miles/km until 0.01 rather than 1 before changing to ft/m - FIXED
|
||||
Function geodir_save_listing() now unsets the listing session before returning - CHANGED
|
||||
Error in google review rich snippets when review rating manager plugin not active - FIXED
|
||||
Some DocBlocks added for documentation - ADDED
|
||||
|
||||
v1.4.0
|
||||
New user registration disabled error not showing because of & - FIXED
|
||||
Category icons not always updated when changed - FIXED
|
||||
Search results not ordered correct if default sort_by changed - FIXED
|
||||
$_SESSION['listing'] being cleared too early for other addons - FIXED
|
||||
Options added for detail page default sections to be disabled - ADDED
|
||||
Best of widget doesn't set it's own view at first using the last set which is 2x grid - FIXED
|
||||
Category icons broken with WPML per language - FIXED
|
||||
Custom field wording "Show on detail page" changed for clarity - CHANGED
|
||||
Class menu-item-has-children added to GD menu items Listings & Add Listing - FIXED
|
||||
Slashes not stripped from message of send enquiry email - FIXED
|
||||
CSV upload not supports formatting in description - FIXED
|
||||
WPML bug, can show untranslated posts if category ID matches post ID - FIXED
|
||||
Star rating images have a line at the end on safari (fixed with jQuery) - FIXED
|
||||
Detail page tab content messed during page loading - FIXED
|
||||
|
||||
v1.3.9
|
||||
Moved change log into core files as we lost 1.3.9 change log due to SSD failure - CHANGED
|
||||
Virgin islands have duplicate entries in country list, removed from db install script - FIXED
|
||||
Search changed for better individual word results - CHANGED
|
||||
Excerpt length hook priority changed so it's not overridden by avada - CHANGED
|
||||
Upload error message can now be translated - FIXED
|
||||
Several W3C validation fixes/changes made - CHANGED
|
||||
Switching between listing types can add an additional "enable dragging" message - FIXED
|
||||
Category widget has a default of 15 changing this in widget does not take affect - FIXED
|
||||
Dummy data can sometimes not delete post_details info - FIXED
|
||||
Recent reviews widget can sometimes show replies as reviews - FIXED
|
||||
added filter to function geodir_curPageURL - ADDED
|
||||
Share this button JS not loaded over HTTPS if requested - FIXED
|
||||
Add listing page on mobile can sometime scroll to content section - FIXED
|
||||
Popular Categories widget improved loading time, reduced SQL queries and added ajax switcher per CPT - CHANGED
|
||||
GD > Best of widget added (similar to yelp best of section) - ADDED
|
||||
198
spec/fixtures/dynamic_finders/plugin_version/get-recent-comments/change_log/changelog.txt
vendored
Normal file
198
spec/fixtures/dynamic_finders/plugin_version/get-recent-comments/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,198 @@
|
||||
Changelog
|
||||
|
||||
Version Date Changes
|
||||
2.0.6 2009/03/31 Suppress mb_strrpos warnings, when
|
||||
haystack is empty. Thanks to ted
|
||||
and Michael for reporting the
|
||||
problem.
|
||||
2.0.5 2009/03/27 Make all mb_* functions optional.
|
||||
If function does not exist - use
|
||||
old version.
|
||||
2.0.4 2009/03/27 Check for existence of
|
||||
mb_regex_replace and if it does not
|
||||
exist (i.e. php version < 4.2.0)
|
||||
use old wordwrap version
|
||||
2.0.3 2009/03/26 Fixed %BEG_OF_TITLE% bug. Thanks to
|
||||
everybody who reported this problem
|
||||
(a LOT of people)
|
||||
Fixed broken %author_url_href
|
||||
macro. Now it works again.
|
||||
Fixed broken gravatar function -
|
||||
needed to bring e-mail address to
|
||||
lowercase before using md5 on it.
|
||||
Applied Sven Anderson's patch which
|
||||
replaces the most critical string
|
||||
functions with multibyte character
|
||||
aware php functions.
|
||||
2.0.2 2007/09/25 Fix: Plugin was not compatible to
|
||||
WordPress 2.0.11 any more. Thank
|
||||
you to Stephan for reporting the
|
||||
bug.
|
||||
2.0.1 2007/09/24 Added switch on the categories
|
||||
page, which reverses the selection.
|
||||
It is now possible to include or
|
||||
exclude categories.
|
||||
2.0 2007/09/24 New code for fetching the data: 1.
|
||||
Instead of one expensive database
|
||||
query we now use two or more cheap
|
||||
queries. Thanks to mirra, who
|
||||
reported the problem. And again
|
||||
thank you to the people mentioned
|
||||
in changlog 1.4, where the cache
|
||||
was introduced for the same
|
||||
(performance-) problems on big
|
||||
blogs. 2. This also fixed a bug,
|
||||
which lead to too less than
|
||||
requested comments in lists,
|
||||
ordered by post. Thanks to Johanna
|
||||
and Frédéric for reporting and
|
||||
documenting this. Changed the css
|
||||
in the admin gui, to work around a
|
||||
display issue with Tiger Admin.
|
||||
Thank you, Andi, for finding this.
|
||||
Added %time_since macro, which
|
||||
displays the time since the comment
|
||||
was posted. Thanks to Imran and
|
||||
Keith for sugesting (something
|
||||
like) this (very long ago). Admin
|
||||
interface: Added switch fpr turning
|
||||
on and off smileys. Thank you,
|
||||
panos, for requesting this feature.
|
||||
Support for Custom Smileys Plugin.
|
||||
Thanks to Henry for suggesting
|
||||
this. Fix: Username was not
|
||||
displayed as "Anonymous", if
|
||||
commentor left no name. Thanks to
|
||||
Pixelation for reporting this.
|
||||
Added support for WordPress 2.3. It
|
||||
will drop the post2cat table.
|
||||
Changed plugin to new taxonomy
|
||||
scheme. A *great* thank you goes to
|
||||
Lakatos Zsolt, who provided a
|
||||
complete patch for
|
||||
get-recent-comments-1.5.6, which
|
||||
made it very easy for me to
|
||||
understand how 2.0-beta10 had to be
|
||||
changed. Thank you also to xelios,
|
||||
Ville and Kretzschmar who warned
|
||||
me, that WordPress 2.3 will break
|
||||
the old plugin code.
|
||||
1.5.5 2007/03/26 Added support for malyfred's
|
||||
Polyglot Plugin. Requested by
|
||||
Torben.
|
||||
1.5.4 2007/02/01 Use full pingback_author as
|
||||
%comment_author (instead of
|
||||
'Unknown', if the pingback parser
|
||||
fails to recognize the
|
||||
pingback_author. Thanks again to
|
||||
Gant who found this in his blog.
|
||||
Added %author_url_href macros,
|
||||
which allows to generate inactive
|
||||
links, if the commentator did not
|
||||
leave an url. This was wished (in
|
||||
part long ago) by beej, carl,
|
||||
FilSchiesty and SwB.
|
||||
Added %profile_picture macro, which
|
||||
supports Hannah Gray's Profile Pics
|
||||
Plugin. Thank you for the idea and
|
||||
your help, Markus
|
||||
1.5.3 2007/01/15 Refresh cache, when a comment is
|
||||
approved by moderator. Problem
|
||||
found by Gant. Thank you!
|
||||
1.5.2 2007/01/05 Added option for excluding comments
|
||||
from blog authors. Suggested by
|
||||
This is Zimbabwe, Slim, marilyn's
|
||||
shampoo and Igor M.
|
||||
1.5.1 2006/12/29 Store the cache base64 encoded.
|
||||
There seems to be a problem with
|
||||
the unserialization of multibyte
|
||||
characters. Thanks to priv, who
|
||||
reported the problem and suggested
|
||||
the encoding.
|
||||
After upgrading to this version you
|
||||
should trigger a regeneration of
|
||||
the cache by adding a comment
|
||||
somewhere.
|
||||
1.5 2006/12/27 New pingback parser
|
||||
Stop losing html entities and tags
|
||||
in the post titles and comments by
|
||||
using wptexturize. Thanks to ejm
|
||||
(again!) and mobius for reporting
|
||||
the problem and making suggestions.
|
||||
Bugfix in widget code: Error, when
|
||||
trackbacks came before comments
|
||||
1.4 2006/12/24 The plugin is a widget now. Thanks
|
||||
to herrmueller and Thomas de Klein
|
||||
for suggesting this feature.
|
||||
Cache the output in order to reduce
|
||||
the database impact of the plugin.
|
||||
Thanks to the following people for
|
||||
reporting the poor performance and
|
||||
making suggestions to solve the
|
||||
problem: Brandon Stone, King of
|
||||
Fools, Robert Basic and especially
|
||||
CountZero.
|
||||
Option to combine comments and
|
||||
trackbacks in one list (requested
|
||||
by Maniac and die produzentin)
|
||||
Allow to Group comments by their
|
||||
posting (requested by eyolf)
|
||||
Allow limit of comments per post
|
||||
(suggested by Thomas)
|
||||
Use Wordpress 2.1 compatible
|
||||
database variables. Thanks to
|
||||
spencerp, for reporting and fixing.
|
||||
Bugfix: Wrong key used in gravatar
|
||||
hash (Thank you, Hamzeh N., for
|
||||
finding and fixing this).
|
||||
Updated the stylesheets to the look
|
||||
of wordpress 2.x.
|
||||
Added two macros: %comment_type and
|
||||
%post_counter.
|
||||
Use less option variables in db.
|
||||
Updated instructions page.
|
||||
Dropped support for Wordpress 1.2
|
||||
1.3.1 2006/12/11 Fixes for problems with wordpress
|
||||
running under windows.
|
||||
1.3 2006/11/26 Fixes for problems with php5.
|
||||
1.2 2005/09/15 Prevent pingbacks from own blog.
|
||||
Thanks to Matt for the idea and
|
||||
support!
|
||||
To use the feature, go to the
|
||||
trackbacks configuration and enter
|
||||
the address of your webserver.
|
||||
1.0 2005/03/21 Also show comments to static pages.
|
||||
(They are new in WP 1.5). Thanks to
|
||||
maza for the hint.
|
||||
0.9 2005/03/20 Introduced admin gui. Handle
|
||||
trackbacks different than comments.
|
||||
Replaced most regular expressions
|
||||
with basic string operations.
|
||||
Dedicated macro for posting time.
|
||||
Requested by Zonekiller
|
||||
0.8 2005/02/04 Readjusted sequence of arguments to
|
||||
the one described in the
|
||||
documentation. Thanks to Thomas
|
||||
0.7 2005/02/03 Renamed plugin to
|
||||
get-recent-comments, to make it
|
||||
possible to use the subversion
|
||||
system at www.wp-plugins.org
|
||||
Allow to specify your own
|
||||
formatting in the function call
|
||||
0.5 2005/01/02 Removed superfluous </p>
|
||||
0.4 2004/12/19 Use function arguments for
|
||||
displaying HTML before and after
|
||||
the comment
|
||||
Make number of comments and number
|
||||
of characters also function
|
||||
arguments
|
||||
0.3 2004/12/08 Link to permalink of comment
|
||||
Wrap very long strings
|
||||
0.2 Don’t show comments that are not
|
||||
approved
|
||||
0.1 2004/11/03 Initial release
|
||||
|
||||
Thanks to all who sent bug reports and ideas for
|
||||
improvements. Please send me a mail if I forgot you to
|
||||
mention here.
|
||||
|
||||
36
spec/fixtures/dynamic_finders/plugin_version/gravityformsapprovals/change_log/change_log.txt
vendored
Normal file
36
spec/fixtures/dynamic_finders/plugin_version/gravityformsapprovals/change_log/change_log.txt
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
-------------------------------------------------------------------------------------------------------------------
|
||||
Version 1.1
|
||||
- Bump minimum version of Gravity Forms required to 2.4.
|
||||
- Fixed an issue where approvers can't add notes.
|
||||
|
||||
-------------------------------------------------------------------------------------------------------------------
|
||||
Version 1.0.1
|
||||
- Added the gform_approvals_entry_rejected action which fires when an entry is rejected.
|
||||
- Added the gform_approvals_entry_approved action which fires when an entry is approved. Example:
|
||||
add_filter( 'gform_approvals_entry_approved', 'sh_gform_approvals_entry_approved', 10, 2 );
|
||||
function sh_gform_approvals_entry_approved( $entry, $form ){
|
||||
// do something now the entry is approved
|
||||
}
|
||||
|
||||
-------------------------------------------------------------------------------------------------------------------
|
||||
Version 1.0.0
|
||||
- Bumping version
|
||||
|
||||
-------------------------------------------------------------------------------------------------------------------
|
||||
Version 1.0-beta-5
|
||||
- Fixed an issue where User Registration is skipped even when there are no approval feeds.
|
||||
- Fixed an issue where the approval buttons appear even when conditional logic is not met.
|
||||
|
||||
-------------------------------------------------------------------------------------------------------------------
|
||||
Version 1.0-beta-4
|
||||
- Added the gravityformsapprovals_form_settings and gravityformsapprovals_uninstall capabilities for integration with the Members plugin.
|
||||
- Updated some strings to be translatable.
|
||||
- Fixed an issue with form settings tab which might not appear under certain conditions.
|
||||
|
||||
-------------------------------------------------------------------------------------------------------------------
|
||||
Version 1.0-beta-3
|
||||
- Fixed an issue with the entry detail page where the approval buttons won't appear if the approver is changed in the feed settings.
|
||||
|
||||
-------------------------------------------------------------------------------------------------------------------
|
||||
Version 1.0-beta-2
|
||||
- Added support for translations
|
||||
3
spec/fixtures/dynamic_finders/plugin_version/heart-this/change_log/CHANGELOG.md
vendored
Normal file
3
spec/fixtures/dynamic_finders/plugin_version/heart-this/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
## 0.1.0
|
||||
|
||||
Initial release!
|
||||
127
spec/fixtures/dynamic_finders/plugin_version/heart-this/translation_file/languages/heart-this.pot
vendored
Normal file
127
spec/fixtures/dynamic_finders/plugin_version/heart-this/translation_file/languages/heart-this.pot
vendored
Normal file
@@ -0,0 +1,127 @@
|
||||
# Copyright (C) 2016 WP Site Care
|
||||
# This file is distributed under the MIT.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: HeartThis 0.1.0\n"
|
||||
"Report-Msgid-Bugs-To: Robert Neu <translations@wpsitecare.com>\n"
|
||||
"POT-Creation-Date: 2016-08-07 15:40:35+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2016-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: Robert Neu <translations@wpsitecare.com>\n"
|
||||
"Language-Team: Robert Neu <translations@wpsitecare.com>\n"
|
||||
"X-Generator: grunt-wp-i18n 0.5.4\n"
|
||||
"X-Poedit-KeywordsList: "
|
||||
"__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
|
||||
"attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
|
||||
"Language: en\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-Country: United States\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-Basepath: ../\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-Bookmarks: \n"
|
||||
"X-Textdomain-Support: yes\n"
|
||||
|
||||
#: admin/settings.php:34
|
||||
msgid "Automatically enable on"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:42
|
||||
msgid "Enable CSS"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:50
|
||||
msgid "AJAX Like Counts"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:58
|
||||
msgid "Shortcode and Template Tag"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:101
|
||||
msgid ""
|
||||
"HeartThis allows you to display like icons throughout your site. Customize "
|
||||
"the output of HeartThis with this settings page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/setting-ajax-hearts.php:14
|
||||
msgid "AJAX Heart Counts on page load"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/setting-ajax-hearts.php:19
|
||||
msgid ""
|
||||
"If you are using a caching plugin, you may want to dynamically load the "
|
||||
"like counts via AJAX."
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/setting-enable-css.php:14
|
||||
msgid "Load the default plugin styles."
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/setting-instructions.php:12
|
||||
msgid "To use HeartThis in your posts and pages you can use the shortcode:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/setting-instructions.php:14
|
||||
msgid "To use HeartThis manually in your theme template use the following PHP code:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/setting-show-on.php:17
|
||||
msgid "Blog Page, Archive Pages, and Search Results"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/settings-page.php:13
|
||||
msgid "HeartThis Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/class-popular-posts.php:32
|
||||
msgid "HeartThis - Popular Posts"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/class-popular-posts.php:35
|
||||
msgid "Popular Posts"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/class-popular-posts.php:45
|
||||
msgid "Displays your most popular posts sorted by most liked"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/views/form-popular-posts.php:13
|
||||
msgid "Title:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/views/form-popular-posts.php:17
|
||||
msgid "Description:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/views/form-popular-posts.php:21
|
||||
msgid "Posts:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/widgets/views/form-popular-posts.php:26
|
||||
msgid "Display like counts"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "HeartThis"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://github.com/wpsitecare/heart-this/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Add a simple heart button to let people tell you they love your WordPress "
|
||||
"content."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "WP Site Care"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "http://www.wpsitecare.com"
|
||||
msgstr ""
|
||||
12
spec/fixtures/dynamic_finders/plugin_version/ifeature-slider/change_log/changelog.txt
vendored
Normal file
12
spec/fixtures/dynamic_finders/plugin_version/ifeature-slider/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
iFeature Slider Changelog
|
||||
|
||||
****************************
|
||||
|
||||
Version 1.2 (07/21/17)
|
||||
- Added feature to add caption for Slider Images
|
||||
|
||||
Version 1.1 (05/04/16)
|
||||
- Added feature to change navigation arrow color
|
||||
|
||||
Version 1.0
|
||||
- Initial release.
|
||||
@@ -0,0 +1,2 @@
|
||||
= 1.0 =
|
||||
Initial release.
|
||||
@@ -0,0 +1,29 @@
|
||||
== Changelog ==
|
||||
|
||||
= 10.1 =
|
||||
|
||||
* Extensive revision of the plugin to support the Gutenberg Block editor in both WordPress version 4 and 5, with seamless switching to/from the Classic editor. Please read the **Upgrade Notice** for information about a problem that may appear when you switch back and forth between the Block editor and the Classic editor.
|
||||
|
||||
= 10.0.2 =
|
||||
|
||||
* line 396 to 408 : commented sanitization file check because all folder/file are renamed accordingly
|
||||
* line 451 to 461 : added to rename folder, file and to delete unsanitized filename
|
||||
* line 609 to 613 : commented message invalid file name
|
||||
|
||||
= 10.0.1 =
|
||||
|
||||
* readme.txt updated with up-to-date information and separate changelog.txt file added
|
||||
* line 410 : sanitize_file_name() added
|
||||
* line 409 : replaced mkdir with wp_mkdir_p which is WordPress built-in function.
|
||||
* line 399 : check if folder name to be created is valid name.
|
||||
* line 413 : check if target zip file to be processed has valid name.
|
||||
* error message: Invalid file name. Only characters, numbers, underscore, dot and dashes are allowed.
|
||||
* Improvement: Implemented all the requirements of the standard WordPress plugin.
|
||||
* Fix: Tested with the latest WordPress version 4.9
|
||||
|
||||
= 9.0.1 =
|
||||
* Improvement: Added checking for ZipArchive PHP extension and error logging feature.
|
||||
* Fix: Tested compatibility with more than 35 most common plugins and fixed compatibility issue with another plugin.
|
||||
|
||||
= 9.0.0 =
|
||||
* Initial version.
|
||||
@@ -0,0 +1,20 @@
|
||||
version 1.0.5
|
||||
- Plugin now complies with the General Data Protection Regulation (GDPR) (EU).
|
||||
- Fixed issue where duplicating or split testing an opt-in only displays the newest version of the form in the Infusionsoft Campaign Builder.
|
||||
|
||||
version 1.0.4
|
||||
- Fixes contact 7 forms plugin conflict
|
||||
|
||||
version 1.0.3
|
||||
- Optinid is no longer removed on form edit
|
||||
|
||||
version 1.0.2
|
||||
- Spelling Fixes
|
||||
- Minor bug fixes
|
||||
|
||||
version 1.0.1
|
||||
- Fixes some plugin conflicts
|
||||
|
||||
version 1.0
|
||||
- Initial Release.
|
||||
|
||||
21
spec/fixtures/dynamic_finders/plugin_version/inspect-gravityforms/change_log/changelog.md
vendored
Normal file
21
spec/fixtures/dynamic_finders/plugin_version/inspect-gravityforms/change_log/changelog.md
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
# Inspect Gravity Forms
|
||||
|
||||
## Changelog
|
||||
|
||||
### 1.3.0, 2016-11-05
|
||||
|
||||
* added: show an icon for Zapier feeds
|
||||
|
||||
### 1.2.0, 2016-06-18
|
||||
|
||||
* changed: insert a custom column into forms list instead of using form actions (GF 2.0+ only)
|
||||
* changed: add an icon for every type of feed encountered, with feed slug if not specifically handled
|
||||
|
||||
### 1.1.0, 2016-05-11
|
||||
|
||||
* changed: minimum Gravity Forms version is now 1.9.10
|
||||
* added: indicate when credit card field forces SSL (https) page load
|
||||
|
||||
### 1.0.0, 2016-05-05
|
||||
|
||||
* initial public release
|
||||
27
spec/fixtures/dynamic_finders/plugin_version/jigoshop-braintree-gateway/change_log/CHANGELOG.md
vendored
Normal file
27
spec/fixtures/dynamic_finders/plugin_version/jigoshop-braintree-gateway/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
### Changelog
|
||||
|
||||
* 3.1.2 - 2017-09-21
|
||||
- Added paypal bn code
|
||||
* 3.1.1 - 2017-08-11
|
||||
- Updated Links
|
||||
* 3.0.3 - 2016-08-23
|
||||
- Redeveloped for JS2
|
||||
* 3.0.2 - 2016-06-10
|
||||
- Minor fix
|
||||
* 3.0.1 - 2016-06-09
|
||||
- Fix action hook
|
||||
* 3.0 - 2016-04-28
|
||||
- Plugin Redeveloped to Jigoshop 2.0 compatible
|
||||
* 2.1.4 - 2016-02-05
|
||||
- Changed API Version
|
||||
* 2.1.3 - 2015-09-07
|
||||
- Small issue fix
|
||||
* 2.1.2 - 2015-01-02
|
||||
- Added: actions links
|
||||
* 2.1.1
|
||||
- Fix payment bug
|
||||
* 2.1
|
||||
- Made compatibility to display Admin options with Jigoshop 1.9.x
|
||||
* 2.0
|
||||
- First Release
|
||||
|
||||
19
spec/fixtures/dynamic_finders/plugin_version/jigoshop-payflow-gateway/change_log/CHANGELOG.md
vendored
Normal file
19
spec/fixtures/dynamic_finders/plugin_version/jigoshop-payflow-gateway/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
### Changelog
|
||||
|
||||
* 3.0.5 - 2017-09-21
|
||||
- Added paypal bn code
|
||||
* 3.0.4 - 2017-08-11
|
||||
- Updated Links
|
||||
* 3.0.3 - 2017-01-17
|
||||
- Fix issue with action
|
||||
* 3.0.2 - 2016-12-28
|
||||
- New version released
|
||||
* 3.0.1 - 2016-08-05
|
||||
- Plugin redeveloped to Jigoshop 2.0.
|
||||
* 3.0 - 2016-04-28
|
||||
- Plugin Redeveloped to Jigoshop 2.0 compatible
|
||||
* 2.0.1 - 2015-02-27
|
||||
- Fixed: Endless Payflow response redirection.
|
||||
* 2.0 - 2014-12-04
|
||||
- Redeveloped the plugin
|
||||
|
||||
29
spec/fixtures/dynamic_finders/plugin_version/lcmd-tracking-codes/change_log/CHANGELOG.md
vendored
Normal file
29
spec/fixtures/dynamic_finders/plugin_version/lcmd-tracking-codes/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
# Changelog #
|
||||
* 1.1.2 *
|
||||
- Fix Google Tag Manager tracking code
|
||||
- Traduções
|
||||
|
||||
* 1.1.1 *
|
||||
- Fix plugin publish
|
||||
|
||||
* 1.1.0 *
|
||||
- Fix General Settings
|
||||
- Add Settings tab
|
||||
- Add Contact Form 7 tab
|
||||
|
||||
* 1.0.4 *
|
||||
- Fix General settings
|
||||
- Allways publish general settings
|
||||
- Fix minor bug
|
||||
|
||||
* 1.0.3 *
|
||||
- Fix GTM- validation + Brazilian language
|
||||
|
||||
* 1.0.2 *
|
||||
- Update version
|
||||
|
||||
* 1.0.1 *
|
||||
- Fix UA- validation
|
||||
|
||||
* 1.0.0 *
|
||||
- Initial version
|
||||
13
spec/fixtures/dynamic_finders/plugin_version/library-custom-post-types/change_log/changelog.txt
vendored
Normal file
13
spec/fixtures/dynamic_finders/plugin_version/library-custom-post-types/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
= 1.3 =
|
||||
* Added has_archive to custom post types and adjusted rewrite to ignore "blogs" front on multisite installs
|
||||
* Removed support for custom fields and author choice in all post types
|
||||
* Minor changes (code cleanup, index fixes, etc.)
|
||||
|
||||
= 1.2 =
|
||||
* Fixed an icon image path issue
|
||||
|
||||
= 1.1 =
|
||||
* Changed staff directory member's photo to a text box for image URL entry - hope to build in a straight-to-media library functionality at a later time
|
||||
|
||||
= 1.0 =
|
||||
* First release
|
||||
70
spec/fixtures/dynamic_finders/plugin_version/live-plus-press/change_log/changelog.txt
vendored
Normal file
70
spec/fixtures/dynamic_finders/plugin_version/live-plus-press/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,70 @@
|
||||
Live+Press
|
||||
supported by Tania Morell (aka "digsite")
|
||||
|
||||
v2.2.1 03.22.2010
|
||||
- Bugfix : Added stripslashes to LP data on its way out of the database to prevent recursive backslashes
|
||||
- Bugfix : Corrected bug with email post crossposting
|
||||
- Removed : Userpic text box option. No longer used.
|
||||
|
||||
v2.2 03.20.2010
|
||||
- Bugfix : LJ logins beyond the first one failed to authenticate
|
||||
- Bugfix : Saving a draft no longer triggers a crosspost (again)
|
||||
- Bugfix : Replaced SCRIPT_URI with is_admin in two places in lpextras.php
|
||||
- Bugfix : A broken LJ site no longer affects LP or WP as a result of LP
|
||||
- Bugfix : Addressed complaints with apostrophes, commas, slashes in the body and title
|
||||
- Changed : How LP processes post content before crossposting - using apply_filters
|
||||
- Added : Style formatting on the admin page to make options easier to follow
|
||||
- Added : support for non-Roman alphabet: Ie, Cyrillic, Kanji, Sanskrit, Greek, Arabic, Hebrew, etc
|
||||
|
||||
v2.1.11 03.15.2010
|
||||
- Bugfix : Fixed unpopulated dropdowns, Uncommented Switcher
|
||||
|
||||
v2.1.10 03.07.2010
|
||||
- Bugfix : Removed unecessary calls to lpextras.php which connects to LJ XMLRPC interface
|
||||
|
||||
v2.1.9 06.10.2009
|
||||
- Bugfix : Saving a draft on WP publishes a post on LJ
|
||||
- Changed : Blog linkback from LJ points to post uri instead of blog url
|
||||
|
||||
v2.1.8 11.18.2008
|
||||
- Bugfix : Livejournal.com site down results on broken blog
|
||||
|
||||
v2.1.0 08.22.2008
|
||||
- Bugfix : Clean posts of invisible space characters that break crossposting
|
||||
- Bugfix : Saving/Editing journal logins flakiness
|
||||
- Bugfix : Rewrite of journal login/edit code fixed jsQuery errors
|
||||
- Bugfix : Was unable to deselect comment option on previously published posts
|
||||
- Bugfix : Was unable to deselect linkback option on previously published posts
|
||||
- Removed : Removed options usesynch, useextras, advanced linkback
|
||||
- Removed : Removed options guess mood, and fix include path
|
||||
- Removed : ljeditjournal.php, no longer needed
|
||||
- Removed : class-IXR.php hack, no longer needed
|
||||
- Removed : md5.js, using php md5 instead
|
||||
- Changed : Authenticates with livejournal using challenge method instead of deprecated clear password
|
||||
- Changed : LP extras user interface aesthetics and layout
|
||||
- Changed : LP admin page user interface aesthetics and layout
|
||||
- Added : New livepress options table key to store journal logins
|
||||
- Added : Auto email crossposting configurable on LP Admin page
|
||||
- Added : Linkback includes "leave comment here" based on nocomment setting
|
||||
- Added : Option to choose between crossposting categories or tags
|
||||
- Added : Option to disable comments by default
|
||||
|
||||
v2.0.7
|
||||
- Bugfix :
|
||||
- Removed :
|
||||
- Changed :
|
||||
- Added :
|
||||
|
||||
v2.0.6
|
||||
|
||||
v2.0.5
|
||||
|
||||
v2.0.4
|
||||
|
||||
v2.0.3
|
||||
|
||||
v2.0.2
|
||||
|
||||
v2.0.1
|
||||
|
||||
v2.0
|
||||
76
spec/fixtures/dynamic_finders/plugin_version/lsx-banners/change_log/changelog.txt
vendored
Normal file
76
spec/fixtures/dynamic_finders/plugin_version/lsx-banners/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,76 @@
|
||||
## Changelog
|
||||
|
||||
### 1.1.6
|
||||
* Dev - Added function for changing the breadcrumbs to the top of the banner
|
||||
|
||||
### 1.1.5
|
||||
* Dev - Added in an option to set a title position
|
||||
* Dev - Fixed the add new banner css
|
||||
|
||||
### 1.1.4
|
||||
* Dev - Added in an "image size" dropdown to the banner metabox panel so you can choose your image size for posts and page banners
|
||||
* Dev - Changed the Taxonomy banners to call a full image by default.
|
||||
* Dev - Making sure slick.min.js slider is present, this is usually when using LSX banners with a non LSX theme.
|
||||
* Dev - Added in a way to allow the "CMB" field vendor to be excluded. `define( 'LSX_BANNER_DISABLE_CMB', true );`
|
||||
|
||||
### 1.1.3
|
||||
* Dev - Changed the "Banner" field nonce on the taxonomy term edit pages.
|
||||
* Fix - Fixed the edit term "thumbnail" preview.
|
||||
* Fix - Fixed the missing placeholder image settings.
|
||||
* Dev - Added in integration for WP Forms
|
||||
|
||||
### 1.1.2
|
||||
* Dev - Added in a template tag which returns if the current item is disabled - lsx_is_banner_disabled()
|
||||
|
||||
### 1.1.1
|
||||
* Dev - Added compatibility with LSX Videos
|
||||
* Dev - Added compatibility with LSX Search
|
||||
* Dev - Set default banner background colour to black and text colour to white
|
||||
|
||||
### 1.1.0
|
||||
* Added compatibility with LSX 2.0
|
||||
* Dev - New project structure
|
||||
* Dev - Added in a filter to allow you to disable the banner altogether
|
||||
* Dev - Updated the "Add Image" JS for the term image selection (using wp.media)
|
||||
* Dev - Added compatibility to Envira Gallery
|
||||
* Dev - Added compatibility to Soliloquy
|
||||
* Dev - UIX copied from TO 1.1 + Fixed issue with sub tabs click (settings)
|
||||
* Dev - New image size: square ('lsx-thumbnail-square')
|
||||
* Dev - New filter: banner image (lsx_banner_image)
|
||||
* Fix - Updated the license class to work with the new settings button
|
||||
* Fix - Multiple images - Randomize banners when there is more than one
|
||||
* Fix - Text/tagline front-end and all fields back-end reviewed (made all visible from default)
|
||||
* Fix - Scripts from CMB loading first than WC scripts (to avoid WC load its select2 script - it breaks the CMB select)
|
||||
* Fix - LSX tabs working integrated with TO tabs (dashboard settings)
|
||||
* Tweak - Added new option to make the banner full height or not
|
||||
* Tweak - Made the banner slider option uses Slick Slider
|
||||
* Tweak - Added new fields: button (text, link, class, link/anchor/modal), logo, background colour, text colour
|
||||
|
||||
### 1.0.6
|
||||
* Fix - Added the missing "full" image size to the placeholder class.
|
||||
* Fix - Before try use the attachment URL, test if it's available
|
||||
|
||||
### 1.0.5
|
||||
* Fix - Display tagline in blog page
|
||||
* Fix - Adjusted the plugin settings link inside the LSX API Class
|
||||
* Fix - Fixed the "banner height" attribute on front-end
|
||||
* Fix - Fixed banner title on archives
|
||||
* Fix - Fixed the feature from add/remove images on WP term pages
|
||||
* Updated the CMB class with custom Google Maps code.
|
||||
|
||||
### 1.0.4
|
||||
* Feature - Use Soliloquy HTML in front-end slider when it's a Soliloquy slider selected in back-end
|
||||
* Feature - New option to disable the banner title per page/post
|
||||
|
||||
### 1.0.3
|
||||
* Fix - Init variable as array and not string to avoid PHP fatal error
|
||||
|
||||
### 1.0.2
|
||||
* Fix - Fixed all prefixes replaces (to_ > lsx_to_, TO_ > LSX_TO_)
|
||||
|
||||
### 1.0.1
|
||||
* Fix - Reduced the access to server (check API key status) using transients
|
||||
* Fix - Made the API URLs dev/live dynamic using a prefix "dev-" in the API KEY
|
||||
|
||||
### 1.0.0
|
||||
* First Version
|
||||
31
spec/fixtures/dynamic_finders/plugin_version/lsx-mega-menus/change_log/changelog.txt
vendored
Normal file
31
spec/fixtures/dynamic_finders/plugin_version/lsx-mega-menus/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
## Changelog
|
||||
|
||||
### 1.2
|
||||
* Dev - Cleaned up Code
|
||||
|
||||
### 1.1.1
|
||||
* Fix - Compatibility with the new WordPress 4.8 media widgets.
|
||||
|
||||
### 1.1.0
|
||||
* Added compatibility with LSX 2.0
|
||||
* Dev - New project structure
|
||||
* Dev - UIX copied from TO 1.1 + Fixed issue with sub tabs click (settings)
|
||||
* Fix - Fixed scripts/styles loading order
|
||||
* Fix - Fixed small issues
|
||||
* Fix - Added compatibility to WordPress 4.8
|
||||
|
||||
### 1.0.3
|
||||
* Fix - Compatibility with WordPress 4.7
|
||||
* Fix - Compatibility with LSX Theme (mobile)
|
||||
* Fix - Adjusted the plugin settings link inside the LSX API Class
|
||||
* Fix - Menu item hover
|
||||
|
||||
### 1.0.2
|
||||
* Fix - Fixed all prefixes replaces (to_ > lsx_to_, TO_ > LSX_TO_)
|
||||
|
||||
### 1.0.1
|
||||
* Fix - Reduced the access to server (check API key status) using transients
|
||||
* Fix - Made the API URLs dev/live dynamic using a prefix "dev-" in the API KEY
|
||||
|
||||
### 1.0.0
|
||||
* First Version
|
||||
612
spec/fixtures/dynamic_finders/plugin_version/music-store/change_log/changelog.txt
vendored
Normal file
612
spec/fixtures/dynamic_finders/plugin_version/music-store/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,612 @@
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.135 =
|
||||
|
||||
* Improves the identification of the special pages, like the download page, and the shopping cart page in the commercial version of the plugin.
|
||||
|
||||
= 1.0.134 =
|
||||
|
||||
* Improves the module that protects the store.
|
||||
* Fixes some notices in the download process of purchased files.
|
||||
|
||||
= 1.0.133 =
|
||||
|
||||
* The stats for songs played have returned to the plugin. Now appears a new column in the list of products, with the number of times the audio files associated have been played. But these numbers are only informative, and do not affect the popularity, as in the previous versions of the plugin.
|
||||
|
||||
= 1.0.132 =
|
||||
|
||||
* Includes some minor errors.
|
||||
|
||||
= 1.0.131 =
|
||||
|
||||
* Modifies the module to download the purchased files.
|
||||
* Modifies the module that the determines the default From and Destination addresses for the notification emails.
|
||||
|
||||
= 1.0.130 =
|
||||
|
||||
* Includes specific widgets to insert the store from Page Builder by SiteOrigin.
|
||||
|
||||
= 1.0.129 =
|
||||
|
||||
* Modifies the queries to improve the plugin performance.
|
||||
* Removes the support for Google+ because Google has closed its social network.
|
||||
|
||||
= 1.0.128 =
|
||||
|
||||
* Implements a real review module. Now the popularity is decided by the users, clicking on the corresponding star icon associated to the products, instead determine them automatically.
|
||||
|
||||
= 1.0.127 =
|
||||
|
||||
* Modifies the blocks for the Gutenberg editor, preparing the plugin for WordPress 5.1
|
||||
|
||||
= 1.0.126 =
|
||||
|
||||
* Accepts the new "exclude" attribute in the [music_store] shortcode to exclude specific products from the store. The values of the attribute are the products' ids separated by comma sign.
|
||||
* Allows to define the new attribute from the different editors (The classic WordPress editor, Gutenberg editor and Elementor).
|
||||
|
||||
= 1.0.125 =
|
||||
|
||||
* Modifies the language files and plugin headers.
|
||||
|
||||
= 1.0.124 =
|
||||
|
||||
* Fixes an issue filtering the products by genre in the online store.
|
||||
* Includes specific widgets to integrate the plugin with the Elementor editor.
|
||||
* Improves the generation of the download links.
|
||||
|
||||
= 1.0.123 =
|
||||
|
||||
* Improves the store's settings.
|
||||
* Includes a new attribute in the store's settings for showing/hiding the products popularity in the store.
|
||||
|
||||
= 1.0.122 =
|
||||
|
||||
* Modifies the way the shortcodes are replaced to create the preview of the store and products in the Gutenberg editor.
|
||||
|
||||
= 1.0.121 =
|
||||
|
||||
* Modifies the module to download the purchased products to fix some issues in servers with low resources.
|
||||
|
||||
= 1.0.120 =
|
||||
|
||||
* Improves the integration with the Gutenberg editor displaying a preview of blocks.
|
||||
|
||||
= 1.0.119 =
|
||||
|
||||
* Fixes an issue between the Promote Banner and the official distribution of WP5.0
|
||||
|
||||
= 1.0.118 =
|
||||
|
||||
* Includes a new section in the store's settings to display related products in the products' pages.
|
||||
* The Professional version of the plugin includes a new option in the store's settings for controlling the icons S/C in front the products.
|
||||
|
||||
= 1.0.117 =
|
||||
|
||||
* Includes new language files.
|
||||
* The Professional version of the plugin includes the auto-update module.
|
||||
|
||||
= 1.0.116 =
|
||||
|
||||
* Modifies the store's settings to allow detect easier the possible problems, and includes a video to teach users how configure their PayPal accounts.
|
||||
|
||||
= 1.0.115 =
|
||||
|
||||
* Fixes a conflict with the latest update of the Gutenberg editor.
|
||||
|
||||
= 1.0.114 =
|
||||
|
||||
* Solves a conflict with the "Speed Booster Pack" plugin.
|
||||
|
||||
= 1.0.113 =
|
||||
|
||||
* Fixes an isse with the special text {download-links-here}.
|
||||
|
||||
= 1.0.112 =
|
||||
|
||||
* Allows to include a special text in the download page: {download-links-here} to be replaced by the download links. The special text gives the websites owners more control over the format of the download pages. If the special text is not inserted the download links are concatenated to the download page's content.
|
||||
* Fixes an issue checking the memory available in the PHP script.
|
||||
|
||||
= 1.0.111 =
|
||||
|
||||
* Removes the CrossOrigin attribute from the audio tags.
|
||||
|
||||
= 1.0.110 =
|
||||
|
||||
* Modifies the feedback module.
|
||||
|
||||
= 1.0.109 =
|
||||
|
||||
* Hides the promotion banner for the majority of roles and fixes a conflict between the promotion banner and the Gutenberg editor.
|
||||
|
||||
= 1.0.108 =
|
||||
|
||||
* Reduces the number of database queries.
|
||||
|
||||
= 1.0.107 =
|
||||
|
||||
* Modifies the integration with the Gutenberg editor, replacing the deprecated methods with the new ones.
|
||||
* Removes the functions deprecated in PHP7.2
|
||||
|
||||
= 1.0.106 =
|
||||
|
||||
* Modifies the wizard for the initial configuration.
|
||||
|
||||
= 1.0.105 =
|
||||
|
||||
* Improves the store configuration process.
|
||||
|
||||
= 1.0.104 =
|
||||
|
||||
* Modifies the activation action.
|
||||
|
||||
= 1.0.103 =
|
||||
|
||||
* Improves the store configuration.
|
||||
* Modifies the deactivation process to allow the users find easier the solution to the usual issues.
|
||||
|
||||
= 1.0.102 =
|
||||
|
||||
* Removes and optimize some queries to increase the plugin's performance.
|
||||
|
||||
= 1.0.101 =
|
||||
|
||||
* Removes functions that were deprecated in PHP 7.2
|
||||
|
||||
= 1.0.100 =
|
||||
|
||||
* Modifies the way the client's side scripts are executed to prevent the uncaught javascript errors on page affect the Music Store.
|
||||
|
||||
= 1.0.99 =
|
||||
|
||||
* Removes the invalid characters from the products names when the purchase is redirected to the payment gateway.
|
||||
|
||||
= 1.0.98 =
|
||||
|
||||
* Fixes an issue with the loopback requests when are being edited the code of plugins or themes in the WordPress editor.
|
||||
|
||||
= 1.0.97 =
|
||||
|
||||
* Modifies the store's settings.
|
||||
|
||||
= 1.0.96 =
|
||||
|
||||
* Includes the crossOrigin attribute in the audio tags for playing files in external domains.
|
||||
|
||||
= 1.0.95 =
|
||||
|
||||
* Fixes an issue in the promotional banner module.
|
||||
|
||||
= 1.0.94 =
|
||||
|
||||
* Allows to define the taxes to apply to sales from the settings page of the store.
|
||||
|
||||
= 1.0.93 =
|
||||
|
||||
* Removes the copy of "MediaElement" player distributed with the plugin to use the version distributed with WordPress.
|
||||
|
||||
= 1.0.92 =
|
||||
|
||||
* Restricts the access to the settings page of the store, the sales reports and the import songs section.
|
||||
* Fixes an issue with the songs duration in Firefox.
|
||||
|
||||
= 1.0.91 =
|
||||
|
||||
* Modifies the code that is considered deprecated by PHP7.
|
||||
|
||||
= 1.0.90 =
|
||||
|
||||
* Improves the integration with the Gutenberg editor.
|
||||
|
||||
= 1.0.89 =
|
||||
|
||||
* Allows the integration with the Gutenberg editor (the next editor distributed with WordPress).
|
||||
|
||||
= 1.0.88 =
|
||||
|
||||
* Modifies the payment gateway module to allow the integration with other payment gateways.
|
||||
|
||||
= 1.0.87 =
|
||||
|
||||
* Modifies the integration with the payment gateway.
|
||||
* Modifies the appearance of filtering options in the dark layout.
|
||||
* Fixes other minor issues.
|
||||
|
||||
= 1.0.86 =
|
||||
|
||||
* Includes some modifications in the database and the function that register the purchases.
|
||||
|
||||
= 1.0.85 =
|
||||
|
||||
* Includes a module to support add-ons.
|
||||
* Includes new hooks (filters and actions).
|
||||
|
||||
= 1.0.84 =
|
||||
|
||||
* Fixes some minor errors.
|
||||
* Modifies the store's settings page.
|
||||
* The professional version of the plugin allows define songs bonus.
|
||||
|
||||
= 1.0.83 =
|
||||
|
||||
* Includes a new block in the sales reports section for entering sales manually, allowing the websites' owners to maintain updated the sales reports, even if the products were sold by other ways.
|
||||
|
||||
= 1.0.82 =
|
||||
|
||||
* Allows filtering by multiple genres (separated by comma symbols) through the [music_store] shortcode.
|
||||
|
||||
= 1.0.81 =
|
||||
|
||||
* Fixes a notice starting the session variables.
|
||||
* The professional version includes the Salesforce add-on.
|
||||
|
||||
= 1.0.80 =
|
||||
|
||||
* Includes a new filter for the "get_the_excerpt" hook.
|
||||
|
||||
= 1.0.79 =
|
||||
|
||||
* Includes modifications in the store's settings.
|
||||
|
||||
= 1.0.78 =
|
||||
|
||||
* Includes some modifications in the player's sources, and prevents some possible conflicts with WordPress 4.9
|
||||
|
||||
= 1.0.77 =
|
||||
|
||||
* Applies the same charset used by the database to the plugin's tables.
|
||||
|
||||
= 1.0.76 =
|
||||
|
||||
* Solves an issue in those websites that generate output characters when the purchased file is being downloaded, breaking the audio file.
|
||||
|
||||
= 1.0.75 =
|
||||
|
||||
* Allows assign an ISRC (International Standard Recording Code) to the products.
|
||||
* Improves the store's appearance in small screen, like mobiles devices.
|
||||
|
||||
= 1.0.74 =
|
||||
|
||||
* Fixes a javascript error.
|
||||
|
||||
= 1.0.73 =
|
||||
|
||||
* Allows publishing comments in the store's products.
|
||||
* Allows integrate the Music Store with "Affiliate Royale".
|
||||
|
||||
= 1.0.72 =
|
||||
|
||||
* Modifies the module for accessing the WordPress reviews section.
|
||||
|
||||
= 1.0.71 =
|
||||
|
||||
* Minifies the template files.
|
||||
* Modifies the module that determines if the audio file is local to the website.
|
||||
|
||||
= 1.0.70 =
|
||||
|
||||
* Improves the access to the plugin documentation and reviews.
|
||||
|
||||
= 1.0.69 =
|
||||
|
||||
* Includes a new predefined template.
|
||||
* Modifies the name of the other templates.
|
||||
* Fixes an issue in the styles.
|
||||
* Includes a new menu option to facilitate the access to the documentation.
|
||||
|
||||
= 1.0.68 =
|
||||
|
||||
* Modifies the module that sanitize the products attributes before send them to the browser.
|
||||
|
||||
= 1.0.66 =
|
||||
|
||||
* Modifies the IPN script to satisfy the new PayPal requirements.
|
||||
|
||||
= 1.0.65 =
|
||||
|
||||
* Fixes an issue in the regular expression that checks the uploaded files.
|
||||
|
||||
= 1.0.64 =
|
||||
|
||||
* Strips all dangerous tags from the products' attributes.
|
||||
|
||||
= 1.0.63 =
|
||||
|
||||
* Strip tags from the terms in the taxonomies: albums and artists.
|
||||
* Excludes other files types from the lists of files to associate with the songs.
|
||||
|
||||
= 1.0.62 =
|
||||
|
||||
* Fixes a warning message accessing to QUERY_STRING in the store's pages, in stores with multiple pages.
|
||||
|
||||
= 1.0.61 =
|
||||
|
||||
* Fixes an issue with the double quotes symbols in the albums and artists names.
|
||||
|
||||
= 1.0.60 =
|
||||
|
||||
* Fixes an issue with servers where were enabled the Magic Quotes.
|
||||
|
||||
= 1.0.59 =
|
||||
|
||||
* Allows to enter the Facebook App id for sharing the website's links in Facebook.
|
||||
|
||||
= 1.0.58 =
|
||||
|
||||
* Includes some changes in the store's settings.
|
||||
|
||||
= 1.0.57 =
|
||||
|
||||
* Fixes an issue in PHP copying huge files.
|
||||
|
||||
= 1.0.56 =
|
||||
|
||||
* Fixes an error when the audio files include characters as apostrophes or spaces.
|
||||
* Includes "try/catch" blocks to prevent the PHP fatal errors, by errors generated in the PHPMailer module.
|
||||
|
||||
= 1.0.55 =
|
||||
|
||||
* Allows to change the order of artists and albums, dragging them to a different position in their lists, through the songs edition(the feature was included too in the premium version to change the order of songs in collections).
|
||||
|
||||
= 1.0.54 =
|
||||
|
||||
* Fixes an issue with audio files including apostrophes in their names.
|
||||
|
||||
= 1.0.53 =
|
||||
|
||||
* Fixes security bugs: XSS - thank you to [Nitin Venkatesh](http://in.linkedin.com/in/nitinvenkatesh/) for the report.
|
||||
|
||||
= 1.0.52 =
|
||||
|
||||
* Modifies the behavior of the Friendly URLs for the store's products.
|
||||
|
||||
= 1.0.51 =
|
||||
|
||||
* The albums and artists are ordered now alphabetically in the songs settings.
|
||||
* Modifies the warning messages in the interface of the plugin.
|
||||
|
||||
= 1.0.50 =
|
||||
|
||||
* Includes a new music player for MIDI audio files.
|
||||
|
||||
= 1.0.49 =
|
||||
|
||||
* Includes a new feature, play all songs in a same page, one after the other.
|
||||
|
||||
= 1.0.48 =
|
||||
|
||||
* Improves the appearance of Dark Layout in mobiles devices.
|
||||
|
||||
= 1.0.47 =
|
||||
|
||||
* Modifies some jQuery deprecated functions.
|
||||
|
||||
= 1.0.46 =
|
||||
|
||||
* Changes the order that resources are loaded to prevent conflicts with themes that are not prepared for WP4.5
|
||||
|
||||
= 1.0.45 =
|
||||
|
||||
* Preserves the order that artists were associated to the products, and not alphabetically.
|
||||
|
||||
= 1.0.44 =
|
||||
|
||||
* Corrects some urls
|
||||
|
||||
= 1.0.43 =
|
||||
|
||||
* Security update: Sanitized POST parameters to avoid a cross-site scripting vulnerability
|
||||
|
||||
= 1.0.42 =
|
||||
|
||||
* Security update: Sanitized POST parameters to avoid a cross-site scripting vulnerability
|
||||
|
||||
= 1.0.41 =
|
||||
|
||||
* Increases the popularity when the song is played.
|
||||
|
||||
= 1.0.40 =
|
||||
|
||||
* Modifies the download process to improve the performance and save the server's resources.
|
||||
|
||||
= 1.0.39 =
|
||||
|
||||
* Includes some changes in the player's implementation.
|
||||
|
||||
= 1.0.38 =
|
||||
|
||||
* Modifies the sales reports to allow replace all purchases associated to an email address, by another email address.
|
||||
|
||||
= 1.0.37 =
|
||||
|
||||
* Checks the MIME Type of files for selling and demo, furthermore of the file for cover.
|
||||
|
||||
= 1.0.36 =
|
||||
|
||||
* Modifies the registers of free downloads to include the user's email, if it is a registered user, or the IP address.
|
||||
* Modifies the styles to prevent some conflicts with the WordPress themes.
|
||||
* In the premium version registers the free downloads if they are the result of a discount, or coupon.
|
||||
|
||||
= 1.0.35 =
|
||||
|
||||
* Optimize the queries for searching.
|
||||
|
||||
= 1.0.34 =
|
||||
|
||||
* Takes into account the taxes in the IPN script.
|
||||
|
||||
= 1.0.33 =
|
||||
|
||||
* Reduces the penalization time by IP if the download link is invalid.
|
||||
|
||||
= 1.0.32 =
|
||||
|
||||
* Modifies the charts graphs in the sale reports to display more precise results (without rounding the numbers).
|
||||
* Allows to display or hide the "Buy Now" buttons and the download links for anonymous users.
|
||||
* Allows to define licenses for free products, regular purchases, and exclusive purchases, and include the links to the licenses in the notification emails.
|
||||
|
||||
= 1.0.31 =
|
||||
|
||||
* Registers the downloads of the free products.
|
||||
* Allows filtering the list of products in the sales reports between free and paid products.
|
||||
* Displays a Pie chart with the free downloads.
|
||||
|
||||
= 1.0.30 =
|
||||
|
||||
* Includes the metadata needed for sharing the products in Facebook (even the songs' covers)
|
||||
* Corrects some issues in the feature for searching by taxonomies: Artists, Albums, and Genres.
|
||||
|
||||
= 1.0.29 =
|
||||
|
||||
* Allows to enable/disable the PayPal Sandbox in the store's settings for testing the purchases
|
||||
|
||||
= 1.0.28 =
|
||||
|
||||
* Allows more control over the text: "Filter By:" in the store's pages.
|
||||
* Allows searching by the products' taxonomies, like: artists, genres, and albums.
|
||||
* Extends the timeout feature, when the IPN has not been notified by PayPal, even for the store manager.
|
||||
|
||||
= 1.0.27 =
|
||||
|
||||
* Displays the titles of settings pages with H1 tags, and modifies the classes constructors to the PHP5 standard (following the recommendations of WordPress developers).
|
||||
|
||||
= 1.0.26 =
|
||||
|
||||
* Fixes an issue in the use of friendly URLs on products.
|
||||
|
||||
= 1.0.25 =
|
||||
|
||||
* Modifies one of predefined layouts of the store.
|
||||
|
||||
= 1.0.24 =
|
||||
|
||||
* Corrects an issue with the use of the predefined layouts in stores protected with Secure Socket Layer (SSL).
|
||||
|
||||
= 1.0.23 =
|
||||
|
||||
* Corrects an issue with the size of songs and collections inserted on sidebar.
|
||||
|
||||
= 1.0.22 =
|
||||
|
||||
* Converts the volume control of music player in the products pages to vertical.
|
||||
|
||||
= 1.0.21 =
|
||||
|
||||
* Security update to prevent the use of brute force to identify the purchase IDs.
|
||||
|
||||
= 1.0.20 =
|
||||
|
||||
* Corrects a possible vulnerability in the download process of the purchased files.
|
||||
|
||||
= 1.0.19 =
|
||||
|
||||
* Corrects an issue with the spaces in the names of the products' files.
|
||||
|
||||
= 1.0.18 =
|
||||
|
||||
* Corrects an issue with the different terms for filtering the store's products.
|
||||
|
||||
= 1.0.17 =
|
||||
|
||||
* Allows to use friendly URLs for the products, or not, from the store's settings.
|
||||
* Selects a smaller image as covers of products, to increase the loading speed of pages of the store, and products.
|
||||
|
||||
= 1.0.16 =
|
||||
|
||||
* Includes changes in the store's layouts, and modifies the interface for the songs edition. The premium version of the plugin allows selling products exclusively.
|
||||
|
||||
= 1.0.15 =
|
||||
|
||||
* Corrects an open redirect vulnerability
|
||||
|
||||
= 1.0.14 =
|
||||
|
||||
* Corrects a conflict in the sales reports, with the Sell Downloads plugin.
|
||||
|
||||
= 1.0.13 =
|
||||
|
||||
* Modifies the store's layouts.
|
||||
|
||||
= 1.0.12 =
|
||||
|
||||
* Modifies the styles in the dark layout.
|
||||
|
||||
= 1.0.11 =
|
||||
|
||||
* Modifies the way that post types are registered to allow using custom permalinks.
|
||||
|
||||
= 1.0.10 =
|
||||
|
||||
* Modifies the appearance of the music store.
|
||||
|
||||
= 1.0.9 =
|
||||
|
||||
* Implements a new feature in the Music Store plugin, and modifies its interface.
|
||||
|
||||
= 1.0.8 =
|
||||
|
||||
* Modifies the styles of the filtering section, in the store's page.
|
||||
|
||||
= 1.0.7 =
|
||||
|
||||
* Improves the extraction of the URL of website in a multisite WordPress installation.
|
||||
* The Pro version includes a download link with the collections that are distributed for free, to allow download all audio files in an unique zipped file.
|
||||
|
||||
= 1.0.6 =
|
||||
|
||||
* Includes the Featured Image as part of songs, and collections, because some plugins and themes use the featured Images on post types.
|
||||
* Uses functions included since WordPress 3.5.0, that modifies the requirements.
|
||||
|
||||
= 1.0.5 =
|
||||
|
||||
* Modifies some styles in the store to prevent conflicts with the styles defined by the themes.
|
||||
|
||||
= 1.0.4 =
|
||||
|
||||
* Improves the selection of website's URL.
|
||||
|
||||
= 1.0.3 =
|
||||
|
||||
* Combines the filtering options in the store with AND, in place of OR, returning more coherent results.
|
||||
* Corrects an ambiguity in the filtering options when the name of Album, or the Artist are simple numbers.
|
||||
|
||||
= 1.0.2 =
|
||||
|
||||
* Displays the number of products returned by the filtering combinations.
|
||||
* Improves the appearance of the store in mobiles devices.
|
||||
|
||||
= 1.0.1 =
|
||||
|
||||
* Improves the plugin documentation.
|
||||
* Fixes an issue with tabs in pages of songs and collections.
|
||||
* Modifies some styles associated to the pages of songs.
|
||||
* Increases the security of purchased files.
|
||||
* Improves the visualization of products prices.
|
||||
* Modifies the design of download page.
|
||||
* Allows ordering the products in the store by publication date.
|
||||
* Allows to insert multiple pages, with separated music stores.
|
||||
* Improves the design of Music Store in mobile devices.
|
||||
* Allows sharing the pages of the songs in the social networks.
|
||||
* Optimize the queries to database.
|
||||
* Modifies the design of the lists of artists, albums and genres, in the music store pages.
|
||||
* Includes a column with the IDs of the products, in the products list on admin section.
|
||||
* Checks the available memory on web server to avoid errors downloading the purchased files.
|
||||
* Corrects the content-type headers, in the download process.
|
||||
* Fixes an issue with the covers of the songs.
|
||||
* Improves the store visualization in themes with responsive designs.
|
||||
* Restores the original file name of purchased file in the download process.
|
||||
* Includes new features in the sales reports for filtering the sales for different criteria, and includes charts to follow the sales trend easier.
|
||||
* Allows define a limit of downloads by product purchased, and reset the download links.
|
||||
* Fixes an issue in the store's pagination.
|
||||
* Includes multiple layouts.
|
||||
* Includes the option for filtering the songs by album.
|
||||
* Set a timeout in the download page if the IPN has not been notified from PayPal.
|
||||
|
||||
= 1.0 =
|
||||
|
||||
* First version released.
|
||||
|
||||
== Upgrade Notice ==
|
||||
|
||||
= 1.0.80 =
|
||||
|
||||
Important note: If you are using the Professional version don't update via the WP dashboard but using your personal update link. Contact us if you need further information: http://musicstore.dwbooster.com/contact-us
|
||||
80
spec/fixtures/dynamic_finders/plugin_version/nivo-slider-lite/change_log/CHANGELOG.md
vendored
Normal file
80
spec/fixtures/dynamic_finders/plugin_version/nivo-slider-lite/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,80 @@
|
||||
|
||||
### v2.3.0 - 2019-03-08
|
||||
**Changes:**
|
||||
* Tested up with WordPress 5.1
|
||||
* Fix escaping attribute issue
|
||||
* Remove mention of the pro plugin, discontinue integration on the Premium addon
|
||||
|
||||
### v2.2.0 - 2018-11-19
|
||||
**Changes:**
|
||||
* Improve compatibility with Wordpress 5.0 + Gutenberg Editor.
|
||||
* Adds integration with Optimole - Image optimization service.
|
||||
|
||||
### v2.1.2 - 2018-05-28
|
||||
**Changes:**
|
||||
* Removes redundant files present in distribution.
|
||||
* Sync ThemeIsle SDK code.
|
||||
|
||||
### v2.1.1 - 2018-01-05
|
||||
**Changes:**
|
||||
* Adds compatibility with latest WordPress standards.
|
||||
* Sync ThemeIsle SDK.
|
||||
|
||||
### v2.1.0 - 2017-06-26
|
||||
**Changes:**
|
||||
* Added carousel compatibility
|
||||
* Fixed warnings with taxonomy name change.
|
||||
* Added upsell page.
|
||||
|
||||
### v2.0.4 - 2017-05-12
|
||||
**Changes:**
|
||||
- Changed required core style loading
|
||||
|
||||
### v2.0.3 - 2017-05-10
|
||||
**Changes:**
|
||||
- Small changes to .js for better integration with Shop-Isle-Pro
|
||||
- Fixes height calculations.
|
||||
|
||||
### v2.0.2 - 2017-05-06
|
||||
**Changes:**
|
||||
- Removed redundant code.
|
||||
### v2.0.1 - 2017-05-02
|
||||
|
||||
**Changes:**
|
||||
|
||||
- Fixed an issue with style loading for other post types.
|
||||
|
||||
### v2.0.0 - 2017-04-28
|
||||
|
||||
**Changes:**
|
||||
|
||||
- Added more slider themes.
|
||||
- Added responsive option.
|
||||
- Added more transition effects.
|
||||
- Major code refactor.
|
||||
|
||||
### 3.0.0 - 17/02/2017
|
||||
|
||||
**Changes:**
|
||||
|
||||
- Refactored code base
|
||||
|
||||
### 2.5.1 - 12/12/2016
|
||||
|
||||
**Changes:**
|
||||
|
||||
- added backward compat for license
|
||||
|
||||
|
||||
### 2.5.0 - 21/11/2016
|
||||
|
||||
**Changes:**
|
||||
|
||||
- Added plugin to themeisle system
|
||||
|
||||
|
||||
### 2.5.0 - 21/11/2016
|
||||
|
||||
**Changes:**
|
||||
|
||||
- Added plugin into themeisle system
|
||||
2
spec/fixtures/dynamic_finders/plugin_version/on-page-and-post-seo/change_log/changelog.txt
vendored
Normal file
2
spec/fixtures/dynamic_finders/plugin_version/on-page-and-post-seo/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
Version 1.0
|
||||
|
||||
159
spec/fixtures/dynamic_finders/plugin_version/one-click-close-comments/change_log/CHANGELOG.md
vendored
Normal file
159
spec/fixtures/dynamic_finders/plugin_version/one-click-close-comments/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,159 @@
|
||||
# Changelog
|
||||
|
||||
## 2.6 _(2019-03-22)_
|
||||
* New: Add support for using dashicons for the click character
|
||||
* Change: Replace the bullet character (solid circle) with comment bubble dashicon as column icon for one-click link
|
||||
* New: Add CHANGELOG.md file and move all but most recent changelog entries into it
|
||||
* New: Add inline documentation for hook
|
||||
* Change: Initialize plugin on 'plugins_loaded' action instead of on load
|
||||
* Change: Use `apply_filters_deprecated()` when using the deprecated filter
|
||||
* Change: Use `wp_doing_ajax()` for official detection of use of AJAX
|
||||
* Change: Tweak plugin description
|
||||
* Change: Split paragraph in README.md's "Support" section into two
|
||||
* Change: Note compatibility through WP 5.1+
|
||||
* Change: Remove support for versions of WordPress older than 4.7
|
||||
* Change: Update copyright date (2019)
|
||||
* Change: Update License URI to be HTTPS
|
||||
* Change: Update screenshot, icon, and banner for Plugin Directory
|
||||
|
||||
## 2.5 _(2018-08-03)_
|
||||
* Change: Improve display of control toggle (and label) on smaller viewports
|
||||
* Change: Include plugin version number when registering styles
|
||||
* New: Add README.md
|
||||
* Change: Add explicit curly braces to JS 'if' statement
|
||||
* Change: Add GitHub link to readme
|
||||
* Change: Note compatibility through WP 4.9+
|
||||
* Change: Update copyright date (2018)
|
||||
* Change: Rename readme.txt section from 'Filters' to 'Hooks'
|
||||
* Change: Modify formatting of hook name in readme to prevent being uppercased when shown in the Plugin Directory
|
||||
|
||||
## 2.4 _(2017-02-04)_
|
||||
* Change: Improve accessbility (a11y)
|
||||
* Add descriptive text for close/open link to display instead of the indicator character for screen readers
|
||||
* Change colors to be WCAG AA compliant
|
||||
* Change: Use `printf()` to format output markup rather than concatenating strings, variables, and function calls.
|
||||
* Change: Escape variables used as markup attributes (hardening; none of the instances are user input).
|
||||
* Change: Note compatibility through WP 4.7+.
|
||||
* Change: Remove support for WordPress older than 4.6 (should still work for earlier versions back to WP 3.1)
|
||||
* Change: Minor code reformatting (add spacing between sections of code).
|
||||
* Change: Minor readme.txt improvements.
|
||||
* Change: Update copyright date (2017).
|
||||
* Change: Update screenshot.
|
||||
|
||||
## 2.3.5 _(2016-03-16)_
|
||||
* Change: Add support for language packs:
|
||||
* Don't load textdomain from file.
|
||||
* Remove .pot file and /lang subdirectory.
|
||||
* Remove 'Domain Path' from plugin header.
|
||||
* New: Add LICENSE file.
|
||||
* New: Add empty index.php to prevent files from being listed if web server has enabled directory listings.
|
||||
* Change: Note compatibility through WP 4.4+.
|
||||
* Change: Update copyright date (2016).
|
||||
|
||||
## 2.3.4 _(2015-09-15)_
|
||||
* Bugfix: Really revert back to using `dirname(__FILE__)`; `__DIR__` is only PHP 5.3+
|
||||
* Change: Note compatibility through WP 4.3+.
|
||||
|
||||
## 2.3.3 _(2015-03-12)_
|
||||
* Revert back to using `dirname(__FILE__)`; `__DIR__` is only PHP 5.3+
|
||||
|
||||
## 2.3.2 _(2015-02-18)_
|
||||
* Reformat plugin header
|
||||
* Use `__DIR__` instead of `dirname(__FILE__)`
|
||||
* Minor code reformatting (spacing, bracing)
|
||||
* Minor documentation spacing changes throughout
|
||||
* Change documentation links to wp.org to be https
|
||||
* Note compatibility through WP 4.1+
|
||||
* Update copyright date (2015)
|
||||
* Add plugin icon
|
||||
* Rengenerate .pot
|
||||
|
||||
## 2.3.1
|
||||
* Minor code tweaks (spacing)
|
||||
* Note compatibility through WP 3.8+
|
||||
* Update copyright date (2014)
|
||||
* Change donate link
|
||||
* Update banner image to reflect WP 3.8 admin refresh
|
||||
* Update screenshot to reflect WP 3.8 admin refresh
|
||||
|
||||
## 2.3
|
||||
* Use string instead of variable to specify translation textdomain
|
||||
* Remove `load_config()` and merge its contents into `do_init()`
|
||||
* Add check to prevent execution of code if file is directly accessed
|
||||
* Note compatibility through WP 3.5+
|
||||
* Update copyright date (2013)
|
||||
* Move screenshot into repo's assets directory
|
||||
|
||||
## 2.2.1
|
||||
* Re-license as GPLv2 or later (from X11)
|
||||
* Add 'License' and 'License URI' header tags to readme.txt and plugin file
|
||||
* Add banner image for plugin page
|
||||
* Remove ending PHP close tag
|
||||
* Note compatibility through WP 3.4+
|
||||
|
||||
## 2.2
|
||||
* Increase font size for click character to make it a larger click target
|
||||
* Fix for one-click character not being clickable for quick-edited post rows
|
||||
* Enqueue CSS and JavaScript rather than defining in, and outputting via, PHP
|
||||
* Create 'assets' subdirectory and add admin.js and admin.css to it
|
||||
* Add `enqueue_scripts_and_styles()`, `register_styles()`, `enqueue_admin_css()`, `enqueue_admin_js()`
|
||||
* Remove `add_css()`, `add_js()`
|
||||
* Hook `load-edit.php` action to initialize plugin rather than using pagenow
|
||||
* Add `version()` to return plugin version
|
||||
* Create 'lang' subdirectory and move .pot file into it
|
||||
* Regenerate .pot
|
||||
* Note compatibility through WP 3.3+
|
||||
* Add 'Domain Path' directive to top of main plugin file
|
||||
* Add link to plugin directory page to readme.txt
|
||||
* Update screenshot for WP 3.3
|
||||
* Update copyright date (2012)
|
||||
|
||||
## 2.1.1
|
||||
* Note compatibility through WP 3.2+
|
||||
* Minor code formatting changes (spacing)
|
||||
* Fix plugin homepage and author links in description in readme.txt
|
||||
|
||||
## 2.1
|
||||
* Switch from object instantiation to direct class function invocation
|
||||
* Rename the class from `OneClickCloseComments` to `c2c_OneClickCloseComments`
|
||||
* Declare all class methods public static and class variables private static
|
||||
* Output JS via `admin_print_footer_scripts` action instead of `admin_footer` action
|
||||
* Rename filter from `one-click-close-comments-click-char` to `c2c_one_click_close_comments_click_char`
|
||||
* Add Filters section to readme.txt
|
||||
* Note compatibility through WP 3.1+
|
||||
* Update copyright date (2011)
|
||||
|
||||
## 2.0.1
|
||||
* Don't even define class unless in the admin section of site
|
||||
* Store plugin instance in global variable, `$c2c_one_click_close_comments`, to allow for external manipulation
|
||||
* Move registering actions and filters into init()
|
||||
* Remove docs from top of plugin file (all that and more are in readme.txt)
|
||||
* Note compatibility with WP 3.0+
|
||||
* Minor tweaks to code formatting (spacing)
|
||||
* Add Upgrade Notice section to readme.txt
|
||||
* Remove trailing whitespace
|
||||
|
||||
## 2.0
|
||||
* Display commenting status even if JS is disabled
|
||||
* Render commenting status as a 'span' instead of an 'a' and use unobtrusive JS to make it clickable
|
||||
* Insert column into desired position using PHP instead of JS
|
||||
* Fix issue related to disappearance of button for a post after using Quick Edit
|
||||
* Fix issue of 'Allow Comments' checkbox in 'Quick Edit' getting out of sync with actual comment status
|
||||
* Allow filtering of character used as click link, via `one-click-close-comments-click-char`
|
||||
* Move initialization of config array out of constructor and into new function `load_config()`
|
||||
* Create `init()` to handle calling `load_textdomain()` and `load_config()` (textdomain must be loaded before initializing config)
|
||||
* Add support for localization
|
||||
* Add PHPDoc documentation
|
||||
* Add .pot file
|
||||
* Note compatibility with WP 2.9+
|
||||
* Drop compatibility with versions of WP older than 2.8
|
||||
* Update documentation (descriptions, FAQs, etc) to reflect behavior changes
|
||||
* Update copyright date
|
||||
|
||||
## 1.1
|
||||
* Bail out early if not on pertinent admin pages
|
||||
* Make use of `admin_url()` for path to admin section
|
||||
* Note WP 2.8 compatibility
|
||||
|
||||
## 1.0
|
||||
* Initial release
|
||||
@@ -0,0 +1,60 @@
|
||||
== Open Graph Protocol Framework - WordPress plugin by itthinx - Changelog ==
|
||||
|
||||
= 1.2.2 =
|
||||
* Tested with WordPress 4.9.
|
||||
* Fixed a warning that would occur when trying to apply the get_the_excerpt filter on an empty $post->excerpt.
|
||||
|
||||
= 1.2.1 =
|
||||
* Plugin tags updated.
|
||||
|
||||
= 1.2.0 =
|
||||
* Tested with WordPress 4.8.
|
||||
|
||||
= 1.1.0 =
|
||||
* Added support for og:locale.
|
||||
* Added support for og:locale:alternate with WPML.
|
||||
|
||||
= 1.0.10 =
|
||||
* WordPress 4.4 compatibility tested.
|
||||
* Fixed an issue with PHP Strict Standards when the deactivation hook is called.
|
||||
|
||||
= 1.0.9 =
|
||||
* Fixed an issue with descriptions so that shortcodes are rendered
|
||||
instead of being displayed as such.
|
||||
|
||||
= 1.0.8 =
|
||||
* Fixed static method declaration.
|
||||
* WordPress 4.1 compatible.
|
||||
|
||||
= 1.0.7 =
|
||||
* Fixed a bug producing PHP Notices when a 404 is returned.
|
||||
|
||||
= 1.0.6 =
|
||||
* WordPress 3.8 compatibility checked.
|
||||
* Cleaned up whitespace and line endings.
|
||||
|
||||
= 1.0.5 =
|
||||
|
||||
* Using site description for og:description on home (thanks for the suggestion [Marc](http://www.beyondred.de/)).
|
||||
* WordPress 3.6 compatibility checked.
|
||||
|
||||
= 1.0.4 =
|
||||
|
||||
* Using $_SERVER to determine current URL
|
||||
* Fixed wrong tag used for og:site_name
|
||||
|
||||
= 1.0.3 =
|
||||
|
||||
* Fixed image metadata.
|
||||
|
||||
= 1.0.2 =
|
||||
|
||||
* Paths.
|
||||
|
||||
= 1.0.1 =
|
||||
|
||||
* Fixed path.
|
||||
|
||||
= 1.0.0 =
|
||||
|
||||
* First public release.
|
||||
54
spec/fixtures/dynamic_finders/plugin_version/options-definitely/change_log/changelog.txt
vendored
Normal file
54
spec/fixtures/dynamic_finders/plugin_version/options-definitely/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,54 @@
|
||||
== Changelog ==
|
||||
|
||||
= 0.6.7 =
|
||||
* Enhanced: on WordPress 4.7 settings are now registered globally using the enhanced `register_meta()` implementation
|
||||
* Fixed: datetime and time fields no longer switch the time back by an hour automatically
|
||||
* Fixed: in datetime and date fields it is no longer possible to accidentally change the month by scrolling
|
||||
* Fixed: datetime and date fields better support locale special characters
|
||||
|
||||
= 0.6.6 =
|
||||
* Fixed: select fields no longer show twice when a placeholder is specified
|
||||
|
||||
= 0.6.5 =
|
||||
* Tweaked: updated the plugin initialization library
|
||||
* Tweaked: updated the Select2 and Datetimepicker JavaScript plugins
|
||||
* Fixed: dropdowns no longer close immediately after opening them
|
||||
|
||||
= 0.6.4 =
|
||||
* Fixed: WPDLib now has type "wordpress-muplugin" so that it is not loaded outside of a project
|
||||
|
||||
= 0.6.3 =
|
||||
* Fixed: uncaught JavaScript error with datetimepicker
|
||||
|
||||
= 0.6.2 =
|
||||
* Enhanced: WYSIWYG field experience is now more similar to the default post editor, including media and link buttons
|
||||
* Tweaked: updated the Select2 and Datetimepicker JavaScript plugins
|
||||
* Fixed: the selected value of a multiselect field is now properly displayed
|
||||
* Fixed: the `rows` attribute now works correctly for textareas and WYSIWYG
|
||||
* Fixed: updated the media picker JavaScript plugin for more flexibility and some bug fixes
|
||||
* Fixed: updated the map picker JavaScript plugin for more flexibility and some bug fixes
|
||||
|
||||
= 0.6.1 =
|
||||
* Tweaked: plugin now uses wordpress.org language packs
|
||||
* Tweaked: updated plugin initialization library
|
||||
* Fixed: "Settings saved" message does not show twice anymore on an options screen
|
||||
* Fixed: admin notice no longer shows on each site when the plugin is activated network-wide
|
||||
* Fixed: numeric validation of floating point numbers
|
||||
* Fixed: formatting floating point numbers more precise than 2 digits
|
||||
|
||||
= 0.6.0 =
|
||||
* Added: a new action is available to easily enqueue scripts on specific settings pages only
|
||||
* Added: new field type map (can store either address or latitude and longitude)
|
||||
* Enhanced: the plugin can now easily be used as a must-use plugin or as a library in any plugin or theme
|
||||
* Enhanced: media field type can now alternatively store URL instead of attachment ID
|
||||
* Enhanced: options keys 'terms' and 'users' (for related objects) now accept 'any' as value (similar to 'posts')
|
||||
* Fixed: critical validation bug in WYSIWYG
|
||||
* Fixed: step validation for decimal numbers
|
||||
* Fixed: images now display correctly in media preview
|
||||
|
||||
= 0.5.1 =
|
||||
* Fixed: critical issue in `wpod_get_options()`
|
||||
* Fixed: on PHP 5.2 the plugin now terminates appropriately
|
||||
|
||||
= 0.5.0 =
|
||||
* First stable version
|
||||
30
spec/fixtures/dynamic_finders/plugin_version/post-type-enhanced/change_log/CHANGELOG.md
vendored
Normal file
30
spec/fixtures/dynamic_finders/plugin_version/post-type-enhanced/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
# Change Log
|
||||
All notable changes to this project will be documented in this file.
|
||||
This project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
## [1.0.3] - 2017-10-20
|
||||
|
||||
### Fixed
|
||||
- esc_html__ to esc_html_x
|
||||
|
||||
## [1.0.2] - 2017-10-20
|
||||
|
||||
### Fixed
|
||||
- Function to Check if post type is valid or not
|
||||
|
||||
## [1.0.1] - 2017-10-20
|
||||
|
||||
### Fixed
|
||||
- Path to addons directory
|
||||
|
||||
### Changed
|
||||
- Link to vote the plugin
|
||||
- Improved translation on settings page
|
||||
|
||||
### Added
|
||||
- Contextual markers in translation strings
|
||||
|
||||
## [1.0.0] - 2017-10-19
|
||||
|
||||
### Added
|
||||
- First version.
|
||||
68
spec/fixtures/dynamic_finders/plugin_version/post-types-definitely/change_log/changelog.txt
vendored
Normal file
68
spec/fixtures/dynamic_finders/plugin_version/post-types-definitely/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,68 @@
|
||||
== Changelog ==
|
||||
|
||||
= 0.6.7 =
|
||||
* Added: post type and taxonomy endpoints for the WP REST API are now handled automatically depending on their other public-related arguments
|
||||
* Enhanced: on WordPress 4.7 bulk actions are handled in a clean way using the new infrastructure, without any JavaScript hacks
|
||||
* Enhanced: meta fields are provided with proper defaults for registration; registration is discouraged though due to the lack of object subtype handling in WordPress Core
|
||||
* Enhanced: new post type labels in WordPress 4.7 are now automatically generated
|
||||
* Fixed: datetime and time fields no longer switch the time back by an hour automatically
|
||||
* Fixed: in datetime and date fields it is no longer possible to accidentally change the month by scrolling
|
||||
* Fixed: datetime and date fields better support locale special characters
|
||||
|
||||
= 0.6.6 =
|
||||
* Fixed: select fields no longer show twice when a placeholder is specified
|
||||
|
||||
= 0.6.5 =
|
||||
* Enhanced: on WordPress >= 4.6, post and term meta is now registered via `register_meta()`
|
||||
* Tweaked: updated the plugin initialization library
|
||||
* Tweaked: updated the Select2 and Datetimepicker JavaScript plugins
|
||||
* Fixed: dropdowns no longer close immediately after opening them
|
||||
|
||||
= 0.6.4 =
|
||||
* Fixed: WPDLib now has type "wordpress-muplugin" so that it is not loaded outside of a project
|
||||
|
||||
= 0.6.3 =
|
||||
* Fixed: uncaught JavaScript error with datetimepicker
|
||||
|
||||
= 0.6.2 =
|
||||
* Enhanced: Plugin adjusted for single term edit form changes in WordPress >= 4.5
|
||||
* Enhanced: WYSIWYG field experience is now more similar to the default post editor, including media and link buttons
|
||||
* Tweaked: updated the Select2 and Datetimepicker JavaScript plugins
|
||||
* Fixed: the selected value of a multiselect field is now properly displayed
|
||||
* Fixed: the `rows` attribute now works correctly for textareas and WYSIWYG
|
||||
* Fixed: updated the media picker JavaScript plugin for more flexibility and some bug fixes
|
||||
* Fixed: updated the map picker JavaScript plugin for more flexibility and some bug fixes
|
||||
|
||||
= 0.6.1 =
|
||||
* Enhanced: on WordPress >= 4.5, the rows in a terms list table can now be sorted by term meta columns
|
||||
* Tweaked: restructured some classes and created abstract base classes
|
||||
* Tweaked: plugin now uses wordpress.org language packs
|
||||
* Tweaked: updated plugin initialization library
|
||||
* Fixed: `wpptd_get_taxonomy()` now handles `WP_Error` correctly
|
||||
* Fixed: on WordPress >= 4.5, the term meta UI is properly outputted using a new core action
|
||||
* Fixed: admin notice no longer shows on each site when the plugin is activated network-wide
|
||||
* Fixed: numeric validation of floating point numbers
|
||||
* Fixed: formatting floating point numbers more precise than 2 digits
|
||||
|
||||
= 0.6.0 =
|
||||
* Added: term meta is now supported (WordPress 4.4 required)
|
||||
* Added: on the term editing screen a UI for term meta is created, consisting of meta boxes, similar to the post editing screen (WordPress 4.4 required)
|
||||
* Added: new functions to get related posts / terms / users for a specific post or term, allowing simple object-to-object relationships
|
||||
* Added: 4 new actions are available to easily enqueue scripts on specific post type or taxonomy admin pages only
|
||||
* Added: new field type map (can store either address or latitude and longitude)
|
||||
* Enhanced: terms list table columns can now be customized (WordPress 4.4 required)
|
||||
* Enhanced: terms list tables can now have customized row actions and bulk actions (WordPress 4.4 required)
|
||||
* Enhanced: automatic post type / taxonomy labels translation is now more accurate as one can now specify the gender of the post type / taxonomy title
|
||||
* Enhanced: the plugin can now easily be used as a must-use plugin or as a library in any plugin or theme
|
||||
* Enhanced: media field type can now alternatively store URL instead of attachment ID
|
||||
* Enhanced: options keys 'terms' and 'users' (for related objects) now accept 'any' as value (similar to 'posts')
|
||||
* Fixed: taxonomy screens are now correctly highlighted in the admin menu when they're active
|
||||
* Fixed: critical validation bug in WYSIWYG
|
||||
* Fixed: step validation for decimal numbers
|
||||
* Fixed: images now display correctly in media preview
|
||||
|
||||
= 0.5.1 =
|
||||
* Fixed: on PHP 5.2 the plugin now terminates appropriately
|
||||
|
||||
= 0.5.0 =
|
||||
* First stable version
|
||||
48
spec/fixtures/dynamic_finders/plugin_version/preferred-languages/change_log/CHANGELOG.md
vendored
Normal file
48
spec/fixtures/dynamic_finders/plugin_version/preferred-languages/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,48 @@
|
||||
# Changelog
|
||||
|
||||
## 1.6.0
|
||||
|
||||
* Enhancement: Added support for JavaScript internationalization as used in the new block editor in WordPress 5.0. Requires WordPress 5.0.3.
|
||||
* Fixed: Fixes an issue where the preferred languages list wasn't updating after sorting via drag & drop.
|
||||
|
||||
## 1.5.0
|
||||
|
||||
* Enhancement: Improved compatibility with multilingual plugins like Polylang.
|
||||
* Fixed: Fixes an issue with keyboard navigation.
|
||||
* Fixed: Make sure the correct languages are retrieved when updating the settings.
|
||||
|
||||
## 1.4.0
|
||||
|
||||
* New: Keyboard navigation improvements.
|
||||
* New: Tooltips now show the available keyboard shortcuts.
|
||||
* New: Missing translations are now downloaded even when no changes were made.
|
||||
* New: A warning is shown when some of the preferred languages aren't installed.
|
||||
* New: Settings form is now hidden when JavaScript is disabled.
|
||||
* Fixed: Improved setting the current locale.
|
||||
* Fixed: CSS is no longer enqueued on the front end.
|
||||
|
||||
## 1.3.0
|
||||
|
||||
* New: Users can now choose English (United States) again as a preferred locale.
|
||||
* New: Users with the right capabilities can now install languages in their user profile as well.
|
||||
|
||||
## 1.2.0
|
||||
|
||||
* Fixed: Other English locales can now be added again.
|
||||
* Fixed: Prevented some errors when adding all available locales.
|
||||
|
||||
## 1.1.0
|
||||
|
||||
* New: Support for just-in-time loading of translations.
|
||||
* New: Keyboard shortcut for making inactive locales active.
|
||||
* Fixed: Responsive design improvements.
|
||||
* Fixed: Worked around a few edge cases with the various controls.
|
||||
* Fixed: Added missing text domains.
|
||||
|
||||
## 1.0.1
|
||||
|
||||
* Fixed: Fixed a bug that prevented saving changes.
|
||||
|
||||
## 1.0.0
|
||||
|
||||
* Initial release.
|
||||
14
spec/fixtures/dynamic_finders/plugin_version/qibla-events/change_log/changelog.txt
vendored
Normal file
14
spec/fixtures/dynamic_finders/plugin_version/qibla-events/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
= 1.0.2 =
|
||||
|
||||
Release Date – 17 Dicember 2018
|
||||
|
||||
Fix: toggle loader locked in archive listings
|
||||
|
||||
= 1.0.1 =
|
||||
|
||||
Release Date – 04 October 2018
|
||||
|
||||
Fix: toggle loader locked in archive listings
|
||||
|
||||
== 2018/08/10 - 1.0.0 ==
|
||||
Initial release
|
||||
@@ -2092,6 +2092,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cbcurrencyconverter/public/js/cbcurrencyconverter-public.js?ver=2.2"></script>
|
||||
|
||||
|
||||
<!-- cbxchangelog -->
|
||||
<link rel="stylesheet" id="cbxchangelog-css" href="http://wp.lab/wp-content/plugins/cbxchangelog/public/../assets/css/cbxchangelog-public.css?ver=1.0.4" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- cbxgooglemap -->
|
||||
<link rel="stylesheet" id="cbxgooglemap-public-css" href="http://wp.lab/wp-content/plugins/cbxgooglemap/public/css/cbxgooglemap-public.css?ver=1.0.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cbxgooglemap/public/js/jqcbxgooglemap.js?ver=1.0.2"></script>
|
||||
@@ -2949,6 +2953,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/custom-contact-forms/assets/build/js/form.min.js?ver=7.8.5"></script>
|
||||
|
||||
|
||||
<!-- custom-cookie-message -->
|
||||
<link rel="stylesheet" id="custom-cookie-message-popup-styles-css" href="http://wp.lab/wp-content/plugins/custom-cookie-message//assets/css/custom-cookie-message-popup.css?ver=2.2.9" type="text/css" media="screen">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/custom-cookie-message//assets/js/custom-cookie-message-popup.js?ver=2.2.9"></script>
|
||||
|
||||
|
||||
<!-- custom-facebook-feed -->
|
||||
<link rel="stylesheet" id="cff-css" href="http://wp.lab/wp-content/plugins/custom-facebook-feed/css/cff-style.css?ver=2.4.6" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/custom-facebook-feed/js/cff-scripts.js?ver=2.4.6"></script>
|
||||
@@ -3073,6 +3082,13 @@
|
||||
<!-- ditty-news-ticker -->
|
||||
<link rel="stylesheet" id="ditty-news-ticker-font-css" href="http://wp.lab/wp-content/plugins/ditty-news-ticker/assets/fontastic/styles.css?ver=2.1.10" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="ditty-news-ticker-css" href="http://wp.lab/wp-content/plugins/ditty-news-ticker/assets/css/style.css?ver=2.1.10" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="ditty-news-ticker-font-css" href="http://wp.lab/wp-content/plugins/ditty-news-ticker/legacy/static/libs/fontastic/styles.css?ver=2.1.10" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ditty-news-ticker/legacy/static/js/jquery.touchSwipe.min.js?ver=2.1.10"></script>
|
||||
|
||||
|
||||
<!-- dk-pdf -->
|
||||
<link rel="stylesheet" id="dkpdf-frontend-css" href="http://wp.lab/wp-content/plugins/dk-pdf/assets/css/frontend.css?ver=1.9.6" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/dk-pdf/assets/js/frontend.js?ver=1.9.6"></script>
|
||||
|
||||
|
||||
<!-- docspress -->
|
||||
@@ -4197,6 +4213,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/form-analytics/public/js/form-analytics-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- form-data-collector -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/form-data-collector/scripts/fdc-front.min.js?ver=2.2.2"></script>
|
||||
|
||||
|
||||
<!-- form-generation -->
|
||||
<link rel="stylesheet" id="lg-fontawesome-css" href="http://wp.lab/wp-content/plugins/form-generation/assets/vendors/fontawesome/css/fontawesome-all.min.css?ver=1.2" type="text/css" media="all">
|
||||
|
||||
@@ -4225,6 +4245,10 @@
|
||||
<link rel="stylesheet" id="fcb-fontello-animation-css-css" href="http://wp.lab/wp-content/plugins/formcraft-form-builder/assets/fontello/css/animation.css?ver=1.0.7" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- formidable -->
|
||||
<link rel="stylesheet" id="formidable-css" href="http://wp.lab/wp-content/plugins/formidable/css/formidableforms.css?ver=3.06.03" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- formlift -->
|
||||
<link rel="stylesheet" id="flp-responsive-grid-framework-css" href="http://wp.lab/wp-content/plugins/formlift/css/responsive-grid-framework.css?ver=7.2.1" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="flp-style-css-css" href="http://wp.lab/wp-content/plugins/formlift/css/style.css?ver=7.2.1" type="text/css" media="all">
|
||||
@@ -4942,6 +4966,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/healthcare-review-master/public/js/jquery.easy-ticker.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- heart-this -->
|
||||
<link rel="stylesheet" id="heart-this-css" href="http://wp.lab/wp-content/plugins/heart-this/css/heart-this.min.css?ver=0.1.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/heart-this/js/heartThis.pkgd.min.js?ver=0.1.0"></script>
|
||||
|
||||
|
||||
<!-- heateor-social-comments -->
|
||||
<link rel="stylesheet" id="heateor-sc-frontend-css-css" href="http://wp.lab/wp-content/plugins/heateor-social-comments/css/front.css?ver=1.4.12" type="text/css" media="all">
|
||||
|
||||
@@ -5172,6 +5201,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/icons-factory/js/icons_factory.min.js?ver=1.6.11"></script>
|
||||
|
||||
|
||||
<!-- ics-calendar -->
|
||||
<link rel="stylesheet" id="ics-calendar-css" href="http://wp.lab/wp-content/plugins/ics-calendar/assets/style.css?ver=2.2.1.1" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- idataffiliates -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/idataffiliates/js/app/ta.js?ver=1.0.0"></script>
|
||||
|
||||
@@ -5326,6 +5359,13 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/infogalore-file-folders/js/frontend.min.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- infusionsoft-official-opt-in-forms -->
|
||||
<link rel="stylesheet" id="inf_infusionsoft-css-css" href="http://wp.lab/wp-content/plugins/infusionsoft-official-opt-in-forms/css/style.css?ver=1.0.5" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/infusionsoft-official-opt-in-forms/js/jquery.uniform.min.js?ver=1.0.5"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/infusionsoft-official-opt-in-forms/js/custom.js?ver=1.0.5"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/infusionsoft-official-opt-in-forms/js/idle-timer.min.js?ver=1.0.5"></script>
|
||||
|
||||
|
||||
<!-- inline-call-to-action-builder-lite -->
|
||||
<link rel="stylesheet" id="ictab-frontend-style-css" href="http://wp.lab/wp-content/plugins/inline-call-to-action-builder-lite/css/cta-frontend.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="ictab-animation-style-css" href="http://wp.lab/wp-content/plugins/inline-call-to-action-builder-lite/css/cta-animation.css?ver=1.0.0" type="text/css" media="all">
|
||||
@@ -6484,6 +6524,7 @@
|
||||
<!-- mailoptin -->
|
||||
<link rel="stylesheet" id="mailoptin-css" href="http://wp.lab/wp-content/plugins/mailoptin/../mailoptin/vendor/mailoptin/core/src/assets/css/mailoptin.min.css?ver=1.2.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mailoptin/../mailoptin/vendor/mailoptin/core/src/assets/js/mailoptin.min.js?ver=1.2.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mailoptin/src/core/src/assets/js/mailoptin.min.js?ver=1.2.0.0"></script>
|
||||
|
||||
|
||||
<!-- mailpoet -->
|
||||
@@ -6574,6 +6615,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/marctv-twitch-status/jquery.marctv-twitch-status.js?ver=1.9.4"></script>
|
||||
|
||||
|
||||
<!-- marker-animation -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/marker-animation/assets/js/marker-animation.min.js?ver=1.7.3"></script>
|
||||
|
||||
|
||||
<!-- mashshare-networks -->
|
||||
<link rel='stylesheet' id='mashnet-styles-css' href='http://wp.lab/wp-content/plugins/mashshare-networks/assets/css/mashnet.min.css?ver=2.4.5' type='text/css' media='all' />
|
||||
<script type='text/javascript' src='http://wp.lab/wp-content/plugins/mashshare-networks/assets/js/mashnet.min.js?ver=2.4.5'></script>
|
||||
@@ -7535,6 +7580,13 @@
|
||||
<link rel="stylesheet" id="mailerlite_forms.css-css" href="http://wp.lab/wp-content/plugins/official-mailerlite-sign-up-forms/assets/css/mailerlite_forms.css?ver=1.2.2" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- offsprout-page-builder -->
|
||||
<link rel="stylesheet" id="offsprout-css-css" href="http://wp.lab/wp-content/plugins/offsprout-page-builder/builder/app/build/offsprout.css?ver=2.11" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/offsprout-page-builder/library/other/tether.min.js?ver=2.11"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/offsprout-page-builder/library/bootstrap/js/bootstrap.min.js?ver=2.11"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/offsprout-page-builder/builder/app/build/js/public.js?ver=2.11"></script>
|
||||
|
||||
|
||||
<!-- olevmedia-shortcodes -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/olevmedia-shortcodes/assets/js/shortcodes.js?ver=1.1.9"></script>
|
||||
|
||||
@@ -11030,6 +11082,15 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/theme-roulette//assets/js/src/theme_roulette.js?ver=0.1.5"></script>
|
||||
|
||||
|
||||
<!-- themebeez-toolkit -->
|
||||
<link rel="stylesheet" id="themebeez-toolkit-css" href="http://wp.lab/wp-content/plugins/themebeez-toolkit/public/css/themebeez-toolkit-public.css?ver=1.0.9" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/themebeez-toolkit/public/js/themebeez-toolkit-public.js?ver=1.0.9"></script>
|
||||
|
||||
|
||||
<!-- themeisle-companion -->
|
||||
<link rel="stylesheet" id="obfx-module-pub-css-menu-icons-1-css" href="http://wp.lab/wp-content/plugins/themeisle-companion/obfx_modules/menu-icons/css/public.css?ver=2.7.5" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- themepaste-secure-admin -->
|
||||
<link rel="stylesheet" id="wptpsa_fontend_style-css" href="http://wp.lab/wp-content/plugins/themepaste-secure-admin/css/wptpsa-frontend.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
@@ -14301,6 +14362,7 @@
|
||||
<!-- wp-typography -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-typography/js/jquery.selection.min.js?ver=5.2.1"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-typography/js/clean_clipboard.min.js?ver=5.2.1"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-typography/js/clean-clipboard.min.js?ver=5.2.1"></script>
|
||||
|
||||
|
||||
<!-- wp-udemy -->
|
||||
|
||||
312
spec/fixtures/dynamic_finders/plugin_version/recent-facebook-posts/change_log/CHANGELOG.md
vendored
Normal file
312
spec/fixtures/dynamic_finders/plugin_version/recent-facebook-posts/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,312 @@
|
||||
Changelog
|
||||
============
|
||||
|
||||
#### 2.0.13 - May 30, 2018
|
||||
|
||||
- Explicitly define FB Graph API version
|
||||
- Update link to website for finding your Facebook page ID.
|
||||
|
||||
|
||||
#### 2.0.12 - October 25, 2017
|
||||
|
||||
Misc. textual improvements.
|
||||
|
||||
|
||||
### 2.0.11 - October 24, 2016
|
||||
|
||||
**Fixes**
|
||||
|
||||
- Fixed "undefined function" errors when using certain cache plugins.
|
||||
|
||||
|
||||
### 2.0.10 - September 15, 2016
|
||||
|
||||
**Improvements**
|
||||
|
||||
- Added additional CSS class to post container when post has media elements. Thanks [Robbert van Mourik](https://github.com/rvmourik)!
|
||||
- Accessibility improvements to output.
|
||||
|
||||
**Additions**
|
||||
|
||||
- Added Norwegian translations, thanks to Joakim O. Saunes.
|
||||
- Added `rfbp_render_before` and `rfbp_render_after` filters. Thanks [Justin](https://github.com/dannyvankooten/recent-facebook-posts/pull/19)!
|
||||
|
||||
|
||||
### 2.0.9 - July 25, 2016
|
||||
|
||||
**Improvements**
|
||||
|
||||
- Facebook texts are now localized according to the site's locale.
|
||||
|
||||
**Additions**
|
||||
|
||||
- Added Hungarian translations, thanks to Daniel Kocsis.
|
||||
- Added Polish translations, thanks to Sophia Davenport.
|
||||
|
||||
|
||||
#### 2.0.8 - July 1, 2015
|
||||
|
||||
**Additions**
|
||||
|
||||
- Added Turkish translations, thanks to Halukcan Pehlivanoğlu!
|
||||
|
||||
#### 2.0.7 - May 15, 2015
|
||||
|
||||
**Fixes**
|
||||
|
||||
- Video posts were not showing correctly
|
||||
|
||||
**Improvements**
|
||||
|
||||
- Added play icon overlay to video's
|
||||
|
||||
**Additions**
|
||||
|
||||
- Added Italian translations, thanks to [Luigi Savini](https://github.com/gigiame)
|
||||
- Added Portugese translations, thanks to [Jonadabe](https://github.com/Jonadabe)
|
||||
|
||||
#### 2.0.6 - May 15, 2015
|
||||
|
||||
**Fixes**
|
||||
|
||||
- Hooks were double added when using the widget
|
||||
|
||||
**Improvements**
|
||||
|
||||
- Added a notice about using the shortcode to the plugin's settings page.
|
||||
|
||||
**Additions**
|
||||
|
||||
- Added German translations, thanks to [Henrik Heller ](http://www.gmx.net/).
|
||||
|
||||
#### 2.0.5 - March 23, 2015
|
||||
|
||||
**Additions**
|
||||
|
||||
- Added Swedish translations, thanks to [Robin Wellström](http://robinwellstrom.se/).
|
||||
|
||||
#### 2.0.4 - February 19, 2015
|
||||
|
||||
**Fixes**
|
||||
|
||||
- Issue where settings page would just load an empty screen. ([Issue #6](https://github.com/dannyvankooten/wordpress-recent-facebook-posts/issues/6))
|
||||
|
||||
**Improvements**
|
||||
|
||||
- Updated all links to use HTTPS protocol.
|
||||
|
||||
#### 2.0.3 - September 22, 2014
|
||||
|
||||
**Improvements**
|
||||
|
||||
- Now loading minified asset (.css and .js) files by default
|
||||
- Added some missing text domains
|
||||
- Minor improvements to settings page and settings handling.
|
||||
|
||||
**Additions**
|
||||
|
||||
- Added Spanish language, thanks [Hermann Bravo](http://hbravo.com/)
|
||||
- Added `rfpb_widget_options` filter to filter all widget options. Closes [#3](https://github.com/dannyvankooten/wordpress-recent-facebook-posts/issues/3), thanks [KilukruMedia](https://github.com/KilukruMedia)
|
||||
- Added [languages/recent-facebook-posts.pot](http://plugins.svn.wordpress.org/recent-facebook-posts/trunk/languages/recent-facebook-posts.pot) file for easier translating. Please send in your language files (.po and .mo) if you created any.
|
||||
|
||||
#### 2.0.2 - September 17, 2014
|
||||
|
||||
**Fixes**
|
||||
|
||||
- Removed duplicate `picture` in call to Facebook API. Fixes a "Syntax error" in later API versions. Props [danielfharmonic](https://github.com/danielfharmonic).
|
||||
|
||||
#### 2.0.1 - September 15, 2014
|
||||
|
||||
**Improvements**
|
||||
|
||||
- The plugin will now show a detailed error message if anything related to the connection to Facebook failed.
|
||||
- Updated Dutch translation
|
||||
|
||||
#### 2.0 - September 15, 2014
|
||||
|
||||
**Fixes**
|
||||
|
||||
- Fixed an issue with Facebook statuses containing Emojis
|
||||
|
||||
**Improvements**
|
||||
|
||||
- Better sanitizing throughout the plugin, using native WP functions.
|
||||
- Improved inline code documentation
|
||||
- Prevent direct file access
|
||||
- Changing thumbnail sizes does not require a cache refresh to fetch new video images
|
||||
|
||||
**Additions**
|
||||
|
||||
- New FB configurations are now automatically tested.
|
||||
|
||||
#### 1.8.5 - December 3, 2013
|
||||
* Fixed: Character encoding for scandinavian languages etc.
|
||||
|
||||
#### 1.8.4 - December 2, 2013
|
||||
* Fixed: Empty events won't show
|
||||
* Improved: a cache renewal is no longer required after changing the image size
|
||||
* Improved: after changing important settings, cache will automatically be cleared
|
||||
* Improved: added a *test configuration* button which performs a simple ping to Facebook.
|
||||
* Improved: added an info message for new users
|
||||
* Improved: filters are now added the "WordPress way", which means they can be disabled
|
||||
* Improved: namespaced the trigger for renewing the cache
|
||||
* Improved: added empty `index.php` files to prevent directory listings
|
||||
* Improved: code clean-up
|
||||
|
||||
#### 1.8.3 - November 17, 2013
|
||||
* Fixed: removed weird character between comment count and timestamp
|
||||
|
||||
#### 1.8.2 - November 17, 2013
|
||||
* Fixed: some translated strings in settings pages were not printed.
|
||||
* Improved: plugin file can no longer be access directly
|
||||
* Improved: better plugin code loading
|
||||
* Improved: disabled plugin directory listing
|
||||
* Added: domain path
|
||||
* Added: license file
|
||||
* Updated Dutch translations
|
||||
|
||||
#### 1.8.1 - November 4, 2013
|
||||
* Fixed: link previews without images not showing
|
||||
* Added: filter `rfbp_show_link_images` to hide link preview images
|
||||
* Improved: Link preview CSS
|
||||
|
||||
#### 1.8 - November 3, 2013
|
||||
* Added: previews of attached links, with image and short description (like Facebook)
|
||||
* Added: Translation files
|
||||
* Added: Dutch translations
|
||||
* Improved: Moved cache time to a filter.
|
||||
* Improved: Removed `session_start()` call.
|
||||
|
||||
#### 1.7.3 - October 28, 2013
|
||||
* Added: `rfbp_read_more` filter.
|
||||
* Added: `rfbp_content` filter.
|
||||
* Added: option to unhook `wpautop` from `rfbp_content` filter.
|
||||
|
||||
#### 1.7.2 - October 18, 2013
|
||||
* Fixed: No posts showing up for Scandinavian languages
|
||||
* Improved: Links will no longer show up twice
|
||||
* Added: Conversion of common smileys
|
||||
|
||||
#### 1.7.1 - October 17, 2013
|
||||
* Fixed: fetching posts from wrong Facebook page. Sorry for the quick version push.
|
||||
* Improved: default CSS
|
||||
|
||||
#### 1.7 - October 16, 2013
|
||||
* Fixed issue where strings with dots where turned into (broken) links.
|
||||
* Improved: better linebreaks
|
||||
* Improved: Now using WP Transients for caching
|
||||
* Improved: Now using WP HTTP API for fetching posts, which allows for other transfer methods besides just cURL.
|
||||
* Improved: No user access token is required any more. Access tokens will now *never* expire.
|
||||
|
||||
#### 1.6 - October 7, 2013
|
||||
* Improved code performance and readability
|
||||
* Improved usability of admin settings
|
||||
* Improved: cleaner HTML output
|
||||
* Improved: default CSS
|
||||
* Improved: image resizing
|
||||
* Improved: default settings
|
||||
* Added installation instructions link to admin settings
|
||||
* Added many CSS classes to output
|
||||
* Fixed extra double quote breaking link validation
|
||||
|
||||
**Important:** CSS Selectors and HTML output has changed in this version. If you're using custom styling rules you'll have to edit them after updating.
|
||||
|
||||
#### 1.5.3 - October 3, 2013
|
||||
* Improved: Code improvement
|
||||
* Improved: UI improvement, implemented some HTML5 fields
|
||||
* Improved: Moved options page back to sub-item of Settings.
|
||||
|
||||
#### 1.5.2 - October 1, 2013
|
||||
* Fixed: max-width in older browsers
|
||||
|
||||
#### 1.5.1 - September 20, 2013
|
||||
* Improved: a lot of refactoring, code clean-up, etc.
|
||||
* Improved: "open link in new window" option now applies to ALL generated links
|
||||
|
||||
#### 1.5
|
||||
* Improved: huge performance improvement for retrieving posts from Facebook
|
||||
* Improved: some code refactoring
|
||||
* Improved: cache now automatically invalidated when updating settings
|
||||
* Improved: settings are now sanitized before saving
|
||||
* Fixed: like and comment count no longer capped at 25
|
||||
* Changed links to show your appreciation for the plugin.
|
||||
|
||||
#### 1.4
|
||||
* Changed cache folder to the WP Content folder (outside of the plugin to prevent cache problems after updating the plugin).
|
||||
* Added redirection fallbacks when headers have already been sent when trying to connect to Facebook.
|
||||
* Fixed error message when cURL is not enabled.
|
||||
* Improved some messages and field labels so things are more clear.
|
||||
* Updated Facebook API class.
|
||||
|
||||
#### 1.3
|
||||
* Added Facebook icon to WP Admin menu item
|
||||
* Changed the connecting to Facebook process
|
||||
* Improved error messages
|
||||
* Improved code, code clean-up
|
||||
* Improved usability in admin area by showing notifications, removing unnecessary options, etc.
|
||||
* Added notice when access token expires (starting 14 days in advance)
|
||||
* Fixed: Cannot redeclare Facebook class.
|
||||
* Fixed: Images not being shown when using "normal" as image source size
|
||||
* Fixed: empty status updates (friends approved)
|
||||
|
||||
#### 1.2.3
|
||||
* Changed the way thumbnail and normal image links are generated, now works with shared photos as well.
|
||||
* Added read_stream permission, please update your access token.
|
||||
* Added cache succesfully updated notice
|
||||
|
||||
#### 1.2.2
|
||||
* Added option to hide images
|
||||
* Added option to load either thumbnail or normal size images from Facebook's CDN
|
||||
* Added border to image links
|
||||
|
||||
#### 1.2.1
|
||||
* Fixed parameter app_id is required notice before being able to enter it.
|
||||
|
||||
#### 1.2
|
||||
* Fixed: Reverted back to 'posts' instead of 'feed', to exclude posts from others.
|
||||
* Fixed: undefined index 'count' when renewing cache file
|
||||
* Fixed: wrong comment or like count for some posts
|
||||
* Improved: calculation of cache file modification time to prevent unnecessary cache renewal
|
||||
* Improved: error message when cURL is not enabled
|
||||
* Improved: access token and cache configuration options are now only available when connected
|
||||
|
||||
#### 1.1.2
|
||||
* Fixed: Added spaces after the like and comment counts in the shortcode output
|
||||
|
||||
#### 1.1.1
|
||||
* Updated: Expanded installation instructions.
|
||||
* Changed: Some code improvements
|
||||
* Added: Link to Facebook numeric ID helper website.
|
||||
* Added: Check if cache directory exists. If not the plugin will now automatically try to create it with the right permissions.
|
||||
* Added: option to open link to Facebook Page in a new window.
|
||||
|
||||
#### 1.1
|
||||
* Added: Shortcode to show a list of recent facebook updates in your posts: '[recent_facebook_posts]'
|
||||
|
||||
#### 1.0.5
|
||||
* Added: More user-friendly error message when cURL is not enabled on your server.
|
||||
|
||||
#### 1.0.4
|
||||
* Improved: The way the excerpt is created, words (or links) won't be cut off now
|
||||
* Fixed: FB API Error for unknown fields.
|
||||
* Added: Images from FB will now be shown too. Drop me a line if you think this should be optional.
|
||||
|
||||
#### 1.0.3
|
||||
* Improved the way the link to the actual status update is created (thanks Nepumuk84).
|
||||
* Improved: upped the limit of the call to Facebooks servers.
|
||||
|
||||
#### 1.0.2
|
||||
* Fixed a PHP notice in the backend area when renewing cache and fetching shared status updates.
|
||||
* Added option to show link to Facebook page, with customizable text.
|
||||
|
||||
#### 1.0.1
|
||||
* Added error messages for easier debugging.
|
||||
|
||||
#### 1.0
|
||||
* Added option to load some default CSS
|
||||
* Added option to show like count
|
||||
* Added option to show comment count
|
||||
* Improved usability. Configuring Recent Facebook Posts should be much easier now due to testing options.
|
||||
|
||||
#### 0.1
|
||||
* Initial release
|
||||
369
spec/fixtures/dynamic_finders/plugin_version/recras/change_log/changelog.md
vendored
Normal file
369
spec/fixtures/dynamic_finders/plugin_version/recras/change_log/changelog.md
vendored
Normal file
@@ -0,0 +1,369 @@
|
||||
# Changelog
|
||||
|
||||
## 2.3.4 (2019-03-27)
|
||||
* Fix default contact form setting for Gutenberg contact form block
|
||||
* Fix certain Gutenberg toggles on re-edit
|
||||
|
||||
## 2.3.3 (2019-03-26)
|
||||
* Fix new online booking in IE
|
||||
|
||||
## 2.3.2 (2019-03-25)
|
||||
* Package block only showed packages that were bookable online - fixed
|
||||
* Voucher templates are now cached along with everything else
|
||||
|
||||
## 2.3.1 (2019-03-19)
|
||||
* Fix missing "Start time" and "Show header" options in Package block
|
||||
|
||||
## 2.3.0 (2019-03-04)
|
||||
* Add Google Analytics integration
|
||||
* Add ability to pre-fill amounts form
|
||||
|
||||
## 2.2.2 (2019-02-28)
|
||||
* Fix plugin on WordPress 4
|
||||
|
||||
## 2.2.1 (2019-02-28)
|
||||
* Fix values not being set properly after opening a saved page (Gutenberg only)
|
||||
|
||||
## 2.2.0 (2019-02-26)
|
||||
* Make plugin compatible with Gutenberg/WordPress 5+
|
||||
* Update "classic editor" icons to reflect the icons used for Gutenberg blocks
|
||||
|
||||
## 2.1.2 (2019-01-30)
|
||||
Update online booking library version. This fixes the minimum amount of "fixed programme" input fields.
|
||||
|
||||
## 2.1.1 (2019-01-24)
|
||||
Update online booking library version. This fixes a few things with the new online booking method when you are logged in to your own Recras.
|
||||
|
||||
## 2.1.0 (2019-01-15)
|
||||
Choose between drop-down or radio buttons for single-choice fields (customer type, package selection, gender, and single choice) in contact forms
|
||||
|
||||
## 2.0.7 (2019-01-08)
|
||||
* "Price excl. VAT" for products is not supported anymore due to API change
|
||||
* Update online booking library version:
|
||||
- Disable date selection if there are min/max amount or dependency errors
|
||||
- Fix "NaN" price when booking size input field was cleared
|
||||
- Add option to show/hide programme times preview for online bookings (hidden by default)
|
||||
- Add loading indicator when loading available time slots
|
||||
|
||||
## 2.0.6 (2018-11-30)
|
||||
Update online booking library version:
|
||||
* Don't scroll to amounts form when package is pre-selected
|
||||
* Fixed attachments being shown even when "Send standard attachments" was disabled for a package
|
||||
* Show console warning when you are logged in to the Recras being used
|
||||
|
||||
## 2.0.5 (2018-11-28)
|
||||
Update online booking library version:
|
||||
* Fixed a bunch of minor bugs and inconsistencies
|
||||
* Show line price based on amount selected
|
||||
|
||||
## 2.0.4 (2018-11-20)
|
||||
Update online booking library version
|
||||
|
||||
## 2.0.3 (2018-11-20)
|
||||
* Voucher sales module without pre-selected template wasn't working - fixed
|
||||
* Update online booking library version:
|
||||
* Implement `keuze_enkel` fields in contact form
|
||||
* Fix "NaN" price when amount input field was cleared
|
||||
* Fix "Programme amounts are invalid" error in some cases
|
||||
* Voucher sales showed templates without contact form when logged in - fixed
|
||||
|
||||
## 2.0.2 (2018-11-12)
|
||||
Update online booking library version (check booking size lines for minimum amount)
|
||||
|
||||
## 2.0.1 (2018-11-09)
|
||||
Fixed a problem with the previous release
|
||||
|
||||
## 2.0.0 (2018-11-09)
|
||||
**Major release** This version might break things. Please read the following carefully:
|
||||
|
||||
* Added:
|
||||
- Ability to show package/product image tag (instead of bare URL and having to add `<img>` tag manually)
|
||||
- Add "Choice - single" field to contact forms
|
||||
* Fixed:
|
||||
- Position of datepicker popup on mobile
|
||||
- "Customer type" selection in contact forms
|
||||
* Changed: the discount and voucher fields for online bookings are now combined. This means there are some backward incompatible CSS changes. If you are **not** using an online booking theme, you might need to make some changes to your CSS when installing this version. Details on these changes can be found in the [changelog for the library](https://github.com/Recras/online-booking-js/blob/master/changelog.md#080-2018-10-29)
|
||||
* Removed: `[arrangement]` and `[recras-arrangement]` shortcodes. These have been replaced by `[recras-package]` over 1.5 years ago.
|
||||
|
||||
## 1.15.2 (2018-10-19)
|
||||
* Update online booking library version (fixes prices sometimes being shown incorrectly)
|
||||
|
||||
## 1.15.1 (2018-10-05)
|
||||
* Update online booking library version (fixes online bookings that can only be paid afterwards)
|
||||
|
||||
## 1.15.0 (2018-10-01)
|
||||
* Add themes for new online booking method
|
||||
* Enable "Use new library" by default
|
||||
* Update online booking library version:
|
||||
- Show reasons why 'Book now' button is disabled
|
||||
- Fix disabled 'Book now' button after changing date/time
|
||||
- Fixes potential race condition
|
||||
|
||||
## 1.14.6 (2018-09-10)
|
||||
* Better loading of polyfill
|
||||
* Update online booking library version (fixes minimum amount of booking size row)
|
||||
|
||||
## 1.14.5 (2018-07-27)
|
||||
* No changes. Releasing previous version failed, trying to re-release.
|
||||
|
||||
## 1.14.4 (2018-07-26)
|
||||
* Update online booking library version
|
||||
|
||||
## 1.14.3 (2018-07-17)
|
||||
* Update online booking library version
|
||||
|
||||
## 1.14.2 (2018-07-05)
|
||||
* Fix online booking library not loading properly
|
||||
|
||||
## 1.14.1 (2018-07-05)
|
||||
* Update online booking library version
|
||||
|
||||
## 1.14.0 (2018-06-13)
|
||||
* Add option to try out the new online booking library
|
||||
|
||||
## 1.13.0 (2018-06-11)
|
||||
* Add voucher sales module
|
||||
|
||||
## 1.12.3 (2018-06-08)
|
||||
* Fix contact form submission when jQuery is loaded too late
|
||||
|
||||
## 1.12.2 (2018-06-08)
|
||||
* Show error instead of crashing when package programme is empty
|
||||
|
||||
## 1.12.1 (2018-06-06)
|
||||
* Enable automatic resizing initially for availability calendar
|
||||
|
||||
## 1.12.0 (2018-04-17)
|
||||
* Add option to disable automatic resizing of online booking & availability iframes
|
||||
|
||||
## 1.11.5 (2018-03-27)
|
||||
* Fix selection of newsletters in a contact form
|
||||
|
||||
## 1.11.4 (2017-11-27)
|
||||
* Fix 500 error, sorry about that :(
|
||||
|
||||
## 1.11.3 (2017-11-24)
|
||||
* Add explanation why sometimes packages are not available
|
||||
|
||||
## 1.11.2 (2017-07-03)
|
||||
* Revert iframe change from previous version - did more harm than good
|
||||
|
||||
## 1.11.1 (2017-06-06)
|
||||
* Show more helpful errors if something goes wrong
|
||||
* Fix iframe heights if there is more than one iframe on a page
|
||||
|
||||
## 1.11.0 (2017-05-02)
|
||||
* Added `[recras-availability]` shortcode to show availability calendar
|
||||
* Rename "arrangement" to "package" to reflect text change in Recras
|
||||
* Deprecated `[recras-arrangement]` shortcode in favour of `[recras-package]`
|
||||
* New icons for TinyMCE buttons
|
||||
* Fix loading icon when submitting a contact form
|
||||
* Fix empty text on submit button after submitting a contact form
|
||||
|
||||
## 1.10.2 (2017-03-31)
|
||||
Fix detailed description of arrangements
|
||||
|
||||
## 1.10.1 (2017-03-31)
|
||||
Fix available arrangements for a contact form
|
||||
|
||||
## 1.10.0 (2017-03-06)
|
||||
* Don't show seconds in arrangement/product durations
|
||||
* Use display name instead of internal name for arrangements
|
||||
|
||||
## 1.9.1 & 1.9.2 (2017-02-20)
|
||||
* Fix bug with iframe height
|
||||
|
||||
## 1.9.0 (2017-02-20)
|
||||
* Listen for height-update message
|
||||
|
||||
## 1.8.1.1 (2016-12-09)
|
||||
* Updated "Tested up to" version to 4.7
|
||||
|
||||
## 1.8.1 (2016-07-19)
|
||||
* Fix problem with previous version not loading
|
||||
|
||||
## 1.8.0 (2016-07-18)
|
||||
* Add image URL and description to arrangements
|
||||
* The plugin is now available on Packagist, which means you can use Composer to install the plugin.
|
||||
* Various small bug fixes
|
||||
|
||||
## 1.7.1 (2016-07-01)
|
||||
* The Settings page is now hidden if you don't have permission to see it.
|
||||
|
||||
## 1.7.0 (2016-04-13)
|
||||
* The online booking button now allows you to pre-select an arrangement. Only arrangements that are bookable online are included.
|
||||
|
||||
## 1.6.1 (2016-04-08)
|
||||
Fixed a bug with contact form arrangements cache
|
||||
|
||||
## 1.6.0 (2016-03-23)
|
||||
* Simplified emptying caches and added more explanation
|
||||
* Arrangements in a contact form are now sorted alphabetically
|
||||
* Added workaround for dropdown placeholders
|
||||
|
||||
## 1.5.0 (2016-03-08)
|
||||
Succesfully submitting a contact form will now empty the form afterwards
|
||||
|
||||
## 1.4.0 (2016-02-23)
|
||||
* Add optional date/time pickers
|
||||
|
||||
## 1.3.4 (2016-02-02)
|
||||
* Fixed redirect URL after clearing cache
|
||||
* Add placeholders to textareas
|
||||
* Make "Unknown" the default gender, rather than "Male"
|
||||
* Fix submitting a contact form on a page that has that same form multiple times
|
||||
|
||||
## 1.3.3 (2016-01-11)
|
||||
* Sort products alphabetically
|
||||
* Move stuff from Settings to a separate Recras page in the menu
|
||||
|
||||
## 1.3.2 (2016-01-08)
|
||||
* Lowered minimum required WP version
|
||||
* Applied new classes to date/time inputs
|
||||
|
||||
## 1.3.1 (2016-01-08)
|
||||
Fixed online booking shortcode loading a contact form instead of the booking form
|
||||
|
||||
## 1.3.0 (2015-12-22)
|
||||
* Add caching of all external data
|
||||
* Add option to use a redirect after submitting a contact form
|
||||
* Remove cURL requirement (unneeded as of 1.2.1)
|
||||
|
||||
## 1.2.1 (2015-12-22)
|
||||
* Change "keuze" on a contact form from a dropdown to checkboxes (Fixes #5)
|
||||
* Bypass our own serverside submit script, use XHR instead
|
||||
|
||||
## 1.2.0 (2015-12-21)
|
||||
* Add the following possible properties to products: `description_long`, `duration`, `image_url`, and `minimum_amount`.
|
||||
|
||||
## 1.1.0 (2015-12-14)
|
||||
* Only show arrangements in contact form shortcode editor that belong to that contact form
|
||||
* Fix some styling issues (WP 4.4 only?)
|
||||
* Show error message if a contact form does not have a field for arrangements, but one is set anyway (Fixes #3)
|
||||
* If an invalid arrangement is set for a contact form, show dropdown of arrangements instead of generating an invalid form
|
||||
|
||||
## 1.0.0 (2015-11-09)
|
||||
* Add shortcode for online bookings
|
||||
* Add shortcode for products
|
||||
* Change the way arrangement programmes spanning multiple days are shown
|
||||
* Not all arrangements are available for all contact forms - the plugin now checks if the combination is valid
|
||||
* Deprecated [arrangement] shortcode in favour of [recras-arrangement]
|
||||
|
||||
## 0.17.1 (2015-11-03)
|
||||
Rename Subdomain to Recras name
|
||||
|
||||
## 0.17.0 (2015-10-27)
|
||||
* When not showing labels, don't show an empty `li`/`td`/`dt` element
|
||||
* Allow contact form submit button text to be changed
|
||||
|
||||
## 0.16.1 (2015-10-27)
|
||||
Fix invalid HTML when using an `ol` or `table` for the contact form
|
||||
|
||||
## 0.16.0 (2015-10-27)
|
||||
* Don't show asterisk for required fields if labels are disabled
|
||||
* Show asterisk for required fields in placeholder
|
||||
* Add option for decimal separator
|
||||
|
||||
## 0.15.1 (2015-10-27)
|
||||
Move files out of assets folder, as WordPress handles this unexpectedly
|
||||
|
||||
## 0.15.0 (2015-10-27)
|
||||
* Add logo for plugin repository
|
||||
* Fix readme
|
||||
|
||||
## 0.14.5 (2015-10-27)
|
||||
Workaround for array constants, which are not allowed by WordPress SVN
|
||||
|
||||
## 0.14.4 (2015-10-23)
|
||||
Add Composer autoloader to prevent users from having to install Composer
|
||||
|
||||
## 0.14.3 (2015-10-23)
|
||||
Update arrangement duration format
|
||||
|
||||
## 0.14.2 (2015-10-21)
|
||||
Add missing arrangement shortcode button options (duration, location)
|
||||
|
||||
## 0.14.1 (2015-10-21)
|
||||
* Replaced icons with GPL-compatible ones
|
||||
* Update readme with more information
|
||||
* Hack around not being allowed to load wp-load.php
|
||||
* Translation update
|
||||
|
||||
## 0.14.0 (2015-10-20)
|
||||
Add `location` and `duration` options to arrangement shortcode
|
||||
|
||||
## 0.13.3 (2015-10-20)
|
||||
Fix translation not being loaded
|
||||
|
||||
## 0.13.2 (2015-10-19)
|
||||
Add options added in 0.13.0 to the editor shortcode generator button
|
||||
|
||||
## 0.13.1 (2015-10-19)
|
||||
Refactor
|
||||
|
||||
## 0.13.0 (2015-10-19)
|
||||
* Add option to show contact forms as lists or tables
|
||||
* Add option to hide labels on contact forms
|
||||
* Placeholders added on contact forms, added option to hide them
|
||||
|
||||
## 0.12.1 (2015-10-09)
|
||||
* Minor language fix
|
||||
* Update Dutch translation
|
||||
|
||||
## 0.12.0 (2015-10-09)
|
||||
Selection of arrangement and contact form is now possible via a dropdown rather than manually entering the ID
|
||||
|
||||
## 0.11.0 (2015-10-09)
|
||||
WordPress' editors now have a button to insert a contact form without needing to know the syntax!
|
||||
|
||||
## 0.10.0 (2015-10-09)
|
||||
WordPress' editors now have a button to insert an arrangement without needing to know the syntax!
|
||||
|
||||
## 0.9.0 (2015-10-08)
|
||||
* Setting the `arrangement` parameter on a contact form will select this arrangement automatically and hide the field to the user.
|
||||
* Fix empty option being the last option instead of the first option on arrangement dropdowns
|
||||
|
||||
## 0.8.0 (2015-10-08)
|
||||
If a contact form has an "arrangements" field, show all arrangements in a dropdown
|
||||
|
||||
## 0.7.1 (2015-10-08)
|
||||
Fix translations
|
||||
|
||||
## 0.7.0 (2015-10-08)
|
||||
* Add loading indicator when sending a contact form
|
||||
* Replace contact form popups with inline text boxes
|
||||
* Fix placement of error messages on pages with multiple contact forms
|
||||
|
||||
## 0.6.2 (2015-10-08)
|
||||
Fix placement of submit button on contact forms
|
||||
|
||||
## 0.6.1 (2015-10-08)
|
||||
Fix a typo
|
||||
|
||||
## 0.6.0 (2015-10-08)
|
||||
Add option to disable the header of a programme
|
||||
|
||||
## 0.5.1 (2015-10-07)
|
||||
Show notice if cURL is not installed
|
||||
|
||||
## 0.5.0 (2015-10-07)
|
||||
Add shortcode for contact forms
|
||||
|
||||
## 0.4.2 (2015-10-07)
|
||||
Unified CSS class names
|
||||
|
||||
## 0.4.1 (2015-10-07)
|
||||
Proper handling of debug mode
|
||||
|
||||
## 0.4.0 (2015-10-06)
|
||||
Add currency option, defaults to Euro (€)
|
||||
|
||||
## 0.3.0 (2015-10-06)
|
||||
* Add Dutch translation
|
||||
* Wrap output of the shortcode in `<span>`s with different classes, for styling purposes
|
||||
|
||||
## 0.2.1 (2015-10-06)
|
||||
Don't `die()` on errors, but return error message instead
|
||||
|
||||
## 0.2.0 (2015-10-06)
|
||||
First version!
|
||||
3
spec/fixtures/dynamic_finders/plugin_version/responsive-embeds/change_log/CHANGELOG.md
vendored
Normal file
3
spec/fixtures/dynamic_finders/plugin_version/responsive-embeds/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
= v1.0.0 =
|
||||
|
||||
* Initial release
|
||||
39
spec/fixtures/dynamic_finders/plugin_version/rest-manager/change_log/CHANGELOG.md
vendored
Normal file
39
spec/fixtures/dynamic_finders/plugin_version/rest-manager/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
### HEAD
|
||||
|
||||
### 1.0.7: June 1th, 2018
|
||||
* Fix default active "on" route option if route not exist in "rest-manager_routes" wp options.
|
||||
On install new plugin with new routes the route option is not correctly set to default.
|
||||
|
||||
### 1.0.6: December 14th, 2017
|
||||
* Change settings column name from Select to Active
|
||||
|
||||
### 1.0.5: November 24th, 2017
|
||||
* Fix load settings fields for route fields
|
||||
* On filter route force to load rest-manager if route is filtered and if not active.
|
||||
|
||||
### 1.0.4: November 23th, 2017
|
||||
* Add remove old deprecated mu-plugin.
|
||||
|
||||
### 1.0.3: November 23th, 2017
|
||||
* Update Readme
|
||||
* Fix version
|
||||
|
||||
### 1.0.2: November 23th, 2017
|
||||
* Fix mu plugin name
|
||||
* Fix pluggable function not exist.
|
||||
* Add delete option on uninstall plugin
|
||||
|
||||
### 1.0.1: November 18th, 2017
|
||||
* Remove unnecessary global functions
|
||||
|
||||
### 1.0.0: November 18th, 2017
|
||||
* First Release
|
||||
|
||||
### 1.0-beta9: November 16th, 2017
|
||||
* Bug fixing.
|
||||
|
||||
### 1.0-beta8: November 16th, 2017
|
||||
* Finish first implementation.
|
||||
|
||||
### 1.0-beta1: November 2th, 2017
|
||||
* Start Project
|
||||
22
spec/fixtures/dynamic_finders/plugin_version/rife-elementor-extensions/change_log/changelog.txt
vendored
Normal file
22
spec/fixtures/dynamic_finders/plugin_version/rife-elementor-extensions/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
----------------
|
||||
|
||||
= 1.1.0(29.11.2018) =
|
||||
|
||||
Added:
|
||||
-New template named "Pile"
|
||||
|
||||
Improved:
|
||||
-keyboard navigation through plugin
|
||||
|
||||
----------------
|
||||
|
||||
= 1.0.1(16.08.2018) =
|
||||
|
||||
Fixed:
|
||||
-including scripts only when they are needed
|
||||
|
||||
----------------
|
||||
|
||||
= 1.0.0(27.07.2018) =
|
||||
|
||||
-Initial release
|
||||
111
spec/fixtures/dynamic_finders/plugin_version/safe-function-call/change_log/CHANGELOG.md
vendored
Normal file
111
spec/fixtures/dynamic_finders/plugin_version/safe-function-call/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,111 @@
|
||||
# Changelog
|
||||
|
||||
## 1.2.7 _(2019-02-06)_
|
||||
* New: Add CHANGELOG.md file and move all but most recent changelog entries into it
|
||||
* README.md:
|
||||
* New: Add instructions for use as a general PHP library
|
||||
* New: Add link to plugin's WordPress Plugin Directory page
|
||||
* Change: Split paragraph in README.md's "Support" section into two
|
||||
* Change: Note compatibility through WP 5.1+
|
||||
* Change: Update copyright date (2019)
|
||||
* Change: Update License URI to be HTTPS
|
||||
|
||||
## 1.2.6 _(2018-01-02)_
|
||||
* New: Add README.md
|
||||
* Change: Remove check that prevented use if `ABSPATH` isn't defined, allowing use of the code outside WordPress
|
||||
* Change: Unit tests: Minor whitespace changes
|
||||
* Change: Add GitHub link to readme
|
||||
* Change: Note compatibility through WP 4.9+
|
||||
* Change: Update copyright date (2018)
|
||||
* Change: Unit tests: Add comments to denote groupings of unit tests testing a given function
|
||||
|
||||
## 1.2.5 _(2017-01-27)_
|
||||
* Change: Default `WP_TESTS_DIR` to `/tmp/wordpress-tests-lib` rather than erroring out if not defined via environment variable.
|
||||
* Change: Enable more error output for unit tests.
|
||||
* Change: Note compatibility through WP 4.7+.
|
||||
* Change: Minor inline code documentation reformatting.
|
||||
* Change: Minor readme.txt improvements.
|
||||
* Change: Update copyright date (2017).
|
||||
* Change: Prevent direct invocation of test file.
|
||||
* Change: Add 'Text Domain' to plugin header.
|
||||
* New: Add LICENSE file.
|
||||
* New: Add empty index.php to prevent files from being listed if web server has enabled directory listings.
|
||||
|
||||
## 1.2.4 _(2015-12-10)_
|
||||
* Change: Note compatibility through WP 4.4+
|
||||
* Change: Explicitly declare methods in unit tests as public or protected.
|
||||
* Change: Update copyright date (2016)
|
||||
|
||||
## 1.2.3 _(2015-08-04)_
|
||||
* Note compatibility through WP 4.3+
|
||||
|
||||
## 1.2.2 _(2015-02-11)_
|
||||
* Note compatibility through WP 4.1+
|
||||
* Update copyright date (2015)
|
||||
|
||||
## 1.2.1 _(2014-08-25)_
|
||||
* Die early if script is directly invoked
|
||||
* Minor plugin header reformatting
|
||||
* Minor code reformatting (spacing)
|
||||
* Change documentation links to wp.org to be https
|
||||
* Note compatibility through WP 4.0+
|
||||
* Add plugin icon
|
||||
|
||||
## 1.2 _(2013-12-19)_
|
||||
* Add support for full callback usage
|
||||
* Add `__sfc_is_valid_callback()` to validate callbacks; use it in all functions
|
||||
* Add unit tests
|
||||
* Substantial changes to inline documentation
|
||||
* Substantial changes to documentation
|
||||
* Minor code formatting tweak (add curly braces)
|
||||
* Note compatibility through WP 3.8+
|
||||
* Update copyright date (2014)
|
||||
* Change donate link
|
||||
* Add banner
|
||||
|
||||
## 1.1.7
|
||||
* Note compatibility through WP 3.5+
|
||||
* Update copyright date (2013)
|
||||
|
||||
## 1.1.6
|
||||
* Re-license as GPLv2 or later (from X11)
|
||||
* Add 'License' and 'License URI' header tags to readme.txt and plugin file
|
||||
* Remove ending PHP close tag
|
||||
* Miscellaneous readme.txt changes
|
||||
* Update copyright date (2012)
|
||||
* Note compatibility through WP 3.4+
|
||||
|
||||
## 1.1.5
|
||||
* Note compatibility through WP 3.3+
|
||||
* Minor code documentation reformatting in readme.txt (spacing)
|
||||
|
||||
## 1.1.4
|
||||
* Note compatibility through WP 3.2+
|
||||
* Minor documentation reformatting in readme.txt
|
||||
* Fix plugin homepage and author links in description in readme.txt
|
||||
|
||||
## 1.1.3
|
||||
* Add link to plugin homepage to readme.txt
|
||||
|
||||
## 1.1.2
|
||||
* Note compatibility through WP 3.1+
|
||||
* Update copyright date (2011)
|
||||
|
||||
## 1.1.1
|
||||
* Wrapped functions in `if(function_exists())` checks
|
||||
* Note compatibility with WP 3.0+
|
||||
* Change description
|
||||
* Minor code reformatting (spacing)
|
||||
* Remove documentation and instructions from top of plugin file (all of that and more are contained in readme.txt)
|
||||
* Add Upgrade Notice section to readme.txt
|
||||
|
||||
## 1.1
|
||||
* Add new template function `_sfcf()` to allow calling a function when the intended function isn't available
|
||||
* Add PHPDoc documentation
|
||||
* Minor formatting tweaks
|
||||
* Note compatibility with WP 2.9+
|
||||
* Update copyright date
|
||||
* Update readme.txt (including adding Changelog)
|
||||
|
||||
## 1.0
|
||||
* Initial release
|
||||
27
spec/fixtures/dynamic_finders/plugin_version/sales-countdown-timer/change_log/CHANGELOG.txt
vendored
Normal file
27
spec/fixtures/dynamic_finders/plugin_version/sales-countdown-timer/change_log/CHANGELOG.txt
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
/*1.0.4.1 - 2019.01.03*/
|
||||
- Fixed: Product quantity broken
|
||||
|
||||
/*1.0.4 - 2018.12.04*/
|
||||
- Fixed: Products price when start and end sales
|
||||
- Removed: Option to show on related products
|
||||
- Added: Option to set size of countdown timer on shop/category page
|
||||
- Added: Datetime unit position
|
||||
- Added: Animation style
|
||||
- Added: Circle countdown timer
|
||||
- Added: Make countdown timer sticky when scroll on single product page
|
||||
|
||||
/*1.0.3.1 - 2018.11.21*/
|
||||
- Fixed: Current countdown timer style not working in admin settings
|
||||
|
||||
/*1.0.3 - 2018.11.21*/
|
||||
- Updated: Working with variable products
|
||||
- Optimized: Speed load
|
||||
|
||||
/*1.0.2.1 - 2018.11.10*/
|
||||
- Updated: Class support
|
||||
|
||||
/*1.0.2 - 2018.10.17*/
|
||||
- Updated: Class support
|
||||
|
||||
/*1.0.1 - 2018.10.15*/
|
||||
- Fixed: Class support
|
||||
145
spec/fixtures/dynamic_finders/plugin_version/scheduled-post-shortcut/change_log/CHANGELOG.md
vendored
Normal file
145
spec/fixtures/dynamic_finders/plugin_version/scheduled-post-shortcut/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,145 @@
|
||||
# Change Log for Scheduled Post Shortcut
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
This project adheres to [Semantic Versioning](http://semver.org/) and to
|
||||
[Keep a Changelog](http://keepachangelog.com/en/0.3.0/).
|
||||
|
||||
## 1.7.0 - 2018-12-19
|
||||
|
||||
### Added
|
||||
|
||||
- Support for WordPress 5.0.2
|
||||
|
||||
### Changed
|
||||
|
||||
- Updated the README files.
|
||||
- Cleaned up more JavaScript sources.
|
||||
|
||||
## 1.6.1 - 2018-11-19
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fixing a bug that showed '0' scheduled posts.
|
||||
|
||||
### Changed
|
||||
|
||||
- Updating tabs to spaces in the Sass.
|
||||
|
||||
## 1.6.0 - 2018-11-16
|
||||
|
||||
### Changed
|
||||
|
||||
- Updating coding standards
|
||||
- Preparing for Gutenberg release
|
||||
- Updated GPL version to 3
|
||||
|
||||
### Removed
|
||||
|
||||
- tests directory
|
||||
|
||||
## 1.5.0 - 2018-03
|
||||
|
||||
### Added
|
||||
|
||||
- Support against WordPress 4.9.4
|
||||
- Namespaces
|
||||
|
||||
### Changed
|
||||
|
||||
- Coding standards to PSR2
|
||||
- Version number to 1.5.0
|
||||
- Composer information to provide updated URLs
|
||||
|
||||
## 1.4.1 - 2017-11-22
|
||||
|
||||
### Fixed
|
||||
|
||||
- A problem that caused errors to display when a user didn't have access to certain menu items.
|
||||
|
||||
## 1.4.0 - 2016-12-07
|
||||
|
||||
### Added
|
||||
|
||||
- Adds PHP CodeSniffer to `composer.json`.
|
||||
- Adds updated CodeKit configuration.
|
||||
|
||||
### Changed
|
||||
|
||||
- Verifies compatibility with WordPress 4.7.
|
||||
- Changes references from Blogging Plugins to Pressware.
|
||||
|
||||
## 1.3.1 - 2016-09-23
|
||||
|
||||
### Changed
|
||||
|
||||
* Changes version number in the DocBlock of the main plugin file
|
||||
|
||||
## 1.3.0 - 2016-09-23
|
||||
|
||||
### Added
|
||||
|
||||
* Adds note about following [Keep a Changelog](http://keepachangelog.com/en/0.3.0/)
|
||||
|
||||
### Changed
|
||||
|
||||
* Removes the keyboard shortcut for the scheduled post shortcut
|
||||
* Removes the unit tests for the JavaScript functionality
|
||||
* Updates all anchors to 'https://bloggingplugins.com'
|
||||
|
||||
## 1.2.0 - 2016-08-22
|
||||
|
||||
* Verifies compatibility with WordPress 4.6.
|
||||
|
||||
## 1.1.1 - 2016-07-07
|
||||
|
||||
* Add support for more than 10 scheduled posts.
|
||||
* Updated the version number in the plugin header.
|
||||
|
||||
## 1.0.2 - 2016-06-09
|
||||
|
||||
* Fix version number in the WordPress Plugin Repository README
|
||||
* Fix version number in the relevant plugin files
|
||||
|
||||
## 1.0.1 - 2016-06-09
|
||||
|
||||
* Fix typo in the WordPress Plugin Repository README
|
||||
* Remove an old i18n file
|
||||
|
||||
## 1.0.0 - 2016-06-09
|
||||
|
||||
* Initial release
|
||||
|
||||
## 0.5.0 - 2016-06-08
|
||||
|
||||
* Fix typo in Changelog header
|
||||
* Fix menu number so it's inline
|
||||
* Fix shortcut for Windows
|
||||
|
||||
## 0.4.0 - 2016-06-07
|
||||
|
||||
* Add return statement and docblock for unit tests.
|
||||
* Update composer for proper format of support email.
|
||||
* Update codekit config.
|
||||
* Remove i18n filter for unit testing.
|
||||
* Add unit tests.
|
||||
* Update gitignore for test generated files.
|
||||
* Update the changelog.
|
||||
|
||||
## 0.3.0 - 2016-05-19
|
||||
|
||||
* Remove JavaScript for styling the submenu item
|
||||
* Add filter marking the submenu item as active
|
||||
|
||||
## 0.2.0 - 2016-05-18
|
||||
|
||||
* Update plugin name from "Scheduled Post..." to "Schedule Posts..."
|
||||
* Add the scheduled post count beside the menu item
|
||||
* Add i18n to the plugin
|
||||
* Add support for the shortcut (SHIFT + ( CTRL|CMD) + S + →)
|
||||
* Add functionality to set the submenu item active when on the 'Scheduled' page
|
||||
* Add assets
|
||||
|
||||
## 0.1.0 - 2016-05-11
|
||||
|
||||
* Initial commit of core plugin files.
|
||||
* Add basic functionality.
|
||||
41
spec/fixtures/dynamic_finders/plugin_version/series/change_log/changelog.md
vendored
Normal file
41
spec/fixtures/dynamic_finders/plugin_version/series/change_log/changelog.md
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
# Change Log
|
||||
|
||||
## [2.0.1] - 2018-12-17
|
||||
|
||||
### Fixed
|
||||
|
||||
* Enabled `show_in_rest` argument so that the taxonomy works with the new WordPress 5.0 editor.
|
||||
|
||||
## [2.0.0] - 2017-10-01
|
||||
|
||||
### Added
|
||||
|
||||
* New "Series" settings page for configuring the plugin.
|
||||
* Reading settings, which include posts per page, order by, and order options.
|
||||
* Permalink setting for changing the series rewrite slug.
|
||||
* `[series_list_posts]` shortcode.
|
||||
* `[series_list_related]` shortcode.
|
||||
|
||||
### Changed
|
||||
|
||||
* Plugin now requires PHP 5.3.0+.
|
||||
* Overhauled the entire plugin code. Very little of the original code is left.
|
||||
|
||||
### Deprecated
|
||||
|
||||
* `[the-series]` shortcode.
|
||||
|
||||
## [1.0.0] - 2015-07-13
|
||||
|
||||
### Fixed
|
||||
|
||||
* Removed trailing `?>` from file endings to meet standards.
|
||||
* Call the parent constructor method instead of `WP_Widget`, which was deprecated in WP 4.3.
|
||||
|
||||
## [0.2.0]
|
||||
|
||||
* Completely overhauled the entire code base.
|
||||
|
||||
## [0.1.0]
|
||||
|
||||
* Plugin launch.
|
||||
108
spec/fixtures/dynamic_finders/plugin_version/single-category-permalink/change_log/CHANGELOG.md
vendored
Normal file
108
spec/fixtures/dynamic_finders/plugin_version/single-category-permalink/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,108 @@
|
||||
# Changelog
|
||||
|
||||
## 2.3 _(2019-03-18)_
|
||||
* New: Add CHANGELOG.md file and move all but most recent changelog entries into it
|
||||
* New: Add inline documentation for hook
|
||||
* Change: Initialize plugin on 'plugins_loaded' action instead of on load
|
||||
* Change: Merge `do_init()` into `init()`
|
||||
* CHange: Cast return value of `c2c_single_category_redirect_status` filter as integer
|
||||
* Change: Split paragraph in README.md's "Support" section into two
|
||||
* Change: Note compatibility through WP 5.1+
|
||||
* Change: Update copyright date (2019)
|
||||
* Change: Update License URI to be HTTPS
|
||||
|
||||
## 2.2.1 _(2018-07-21)_
|
||||
* Change: Switch away from using deprecated `c2c_single_category_catlink()` internally
|
||||
* Change: Move `@uses` DockBlock entries to `get_http_redirect_status()`
|
||||
* New: Unit tests: Add `create_hierarchical_categories()` for creating hierarchical categories so the behavior isn't duplicated in a number of tests
|
||||
* New: Add README.md
|
||||
* New: Add GitHub link to readme
|
||||
* Change: Minor whitespace tweaks to unit test bootstrap
|
||||
* Change: Note compatibility through WP 4.9+
|
||||
* Change: Rename readme.txt section from 'Filters' to 'Hooks'
|
||||
* Change: Modify formatting of hook name in readme to prevent being uppercased when shown in the Plugin Directory
|
||||
* Change: Improve installation instructions
|
||||
* Change: Minor readme.txt tweaks
|
||||
* Change: Update copyright date (2018)
|
||||
|
||||
## 2.2 _(2017-02-10)_
|
||||
* Fix: Replace use of deprecated (in WP 4.7) `_usort_terms_by_ID()` with `wp_list_sort()` for WP 4.7+.
|
||||
* Change: Change default redirect HTTP status code from 302 (temporary redirect) to 301 (permanent redirect).
|
||||
* Change: Wrap functionality in class.
|
||||
* Create class `c2c_SingleCategoryPermalink`
|
||||
* Deprecate existing functions: `c2c_single_category_catlink()`, `c2c_single_category_postlink()`, `c2c_single_category_redirect()`
|
||||
* Move deprecated function functionality to class methods: `category_link()`, `post_link()`, `template_redirect()`
|
||||
* Add method `version()` to return plugin version
|
||||
* Add `get_http_redirect_status()` for getting the HTTP status code for redirects.
|
||||
* Change: Default `WP_TESTS_DIR` to `/tmp/wordpress-tests-lib` rather than erroring out if not defined via environment variable.
|
||||
* Change: Enable more error output for unit tests.
|
||||
* Change: Note compatibility through WP 4.7+.
|
||||
* Change: Remove support for WordPress older than 4.6 (should still work for earlier versions back to WP 1.5)
|
||||
* Change: Update copyright date (2017).
|
||||
|
||||
## 2.1.2 _(2016-03-29)_
|
||||
* New: Add LICENSE file.
|
||||
* New: Add empty index.php to prevent files from being listed if web server has enabled directory listings.
|
||||
* New: Add 'Text Domain' to plugin header.
|
||||
* Change: Minor code reformatting.
|
||||
* Change: Explicitly declare methods in unit tests as public; minor unit test doc reformatting.
|
||||
* Change: Note compatibility through WP 4.5+.
|
||||
* Change: Update copyright date (2016).
|
||||
|
||||
## 2.1.1 _(2015-02-17)_
|
||||
* Reformat plugin header
|
||||
* Note compatibility through WP 4.1+
|
||||
* Change documentation links to wp.org to be https
|
||||
* Update copyright date (2015)
|
||||
* Add plugin icon
|
||||
|
||||
## 2.1 _(2014-01-24)_
|
||||
* Add unit tests
|
||||
* Minor documentation improvements
|
||||
* Minor code reformatting (spacing, bracing)
|
||||
* Note compatibility through WP 3.8+
|
||||
* Update copyright date (2014)
|
||||
* Change donate link
|
||||
* Add banner
|
||||
|
||||
## 2.0.4
|
||||
* Add check to prevent execution of code if file is directly accessed
|
||||
* Note compatibility through WP 3.5+
|
||||
* Update copyright date (2013)
|
||||
* Minor code reformatting (spacing)
|
||||
|
||||
## 2.0.3
|
||||
* Re-license as GPLv2 or later (from X11)
|
||||
* Add 'License' and 'License URI' header tags to readme.txt and plugin file
|
||||
* Remove ending PHP close tag
|
||||
* Note compatibility through WP 3.4+
|
||||
|
||||
## 2.0.2
|
||||
* Note compatibility through WP 3.3+
|
||||
* Add link to plugin directory page to readme.txt
|
||||
* Update copyright date (2012)
|
||||
|
||||
## 2.0.1
|
||||
* Fix bug triggered when creating new post
|
||||
|
||||
## 2.0
|
||||
* Fix compatibility bug relating to generation of category permalink
|
||||
* Rename `single_category_postlink()` to `c2c_single_category_postlink()`
|
||||
* Rename `single_category_catlink()` to `c2c_single_category_catlink()`
|
||||
* Add `c2c_single_category_redirect()` to redirect hierarchical category links to the single category alternative
|
||||
* Add filter `c2c_single_category_redirect_status` to allow override of default redirect status code
|
||||
* Wrap all functions in `if (!function_exists())` check
|
||||
* Remove docs from top of plugin file (all that and more are in readme.txt)
|
||||
* Add plugin homepage and author links in description in readme.txt
|
||||
* Note compatibility through WP3.2+
|
||||
* Add PHPDoc documentation
|
||||
* Expand documentation in readme.txt
|
||||
* Minor tweaks to code formatting (spacing)
|
||||
* Minor documentation reformatting in readme.txt
|
||||
* Change description
|
||||
* Add package info to top of plugin file
|
||||
* Add Frequently Asked Questions, Filters, Changelog, and Upgrade Notice sections to readme.txt
|
||||
* Update copyright date (2011)
|
||||
|
||||
## 1.0
|
||||
* Initial release
|
||||
27
spec/fixtures/dynamic_finders/plugin_version/site-icon-extended/change_log/changelog.txt
vendored
Normal file
27
spec/fixtures/dynamic_finders/plugin_version/site-icon-extended/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
== Changelog ==
|
||||
|
||||
= 0.2.6 =
|
||||
* Tweaked: updated plugin initialization library
|
||||
|
||||
= 0.2.5 =
|
||||
* Tweaked: plugin now uses wordpress.org language packs
|
||||
* Tweaked: updated plugin initialization library
|
||||
|
||||
= 0.2.4 =
|
||||
* Enhanced: plugin can now easily be used as a must-use plugin
|
||||
|
||||
= 0.2.3 =
|
||||
* Fixed: removed .gitignore from svn repo
|
||||
|
||||
= 0.2.2 =
|
||||
* Fixed: on PHP 5.2 the plugin now terminates appropriately
|
||||
|
||||
= 0.2.1 =
|
||||
* Fixed: critical error that could happen when using a composer-managed WordPress setup
|
||||
|
||||
= 0.2.0 =
|
||||
* Added: a Pinned Tab Icon (also called mask icon) for Safari can now be uploaded
|
||||
* Tweaked: changed textdomain to `site-icon-extended` for translate.wordpress.org
|
||||
|
||||
= 0.1.0 =
|
||||
* Initial release
|
||||
65
spec/fixtures/dynamic_finders/plugin_version/socialsnap/change_log/changelog.txt
vendored
Normal file
65
spec/fixtures/dynamic_finders/plugin_version/socialsnap/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,65 @@
|
||||
== Changelog ==
|
||||
|
||||
= 1.1.3 =
|
||||
- Added: Button to force refresh share counts in Social Settings » Social Sharing.
|
||||
- Added: Migration support: Social Warfare - migrate share counts.
|
||||
- Fixed: Total shares not updating.
|
||||
- Fixed: Minor CSS issues.
|
||||
- Improved: Security.
|
||||
- Removed: Notice about NewShareCounts.
|
||||
|
||||
= 1.1.2 =
|
||||
- Added: Compatibility with AMP plugins.
|
||||
- Improved: SEO optimization.
|
||||
|
||||
= 1.1.1 =
|
||||
- Added: Mix Share & Follow network.
|
||||
- Added: Compatibility with WordPress 5.0.
|
||||
- Fixed: Compatibility with Gutenberg 4.4.0+.
|
||||
- Fixed: Click to Tweet default styles.
|
||||
- Fixed: Minor CSS issues.
|
||||
- Fixed: On Media settings live preview.
|
||||
|
||||
= 1.1.0 =
|
||||
- Improved: Migration support: Social Warfare - migrate post meta.
|
||||
- Fixed: Share count not accurate on WooCommerce shop page.
|
||||
|
||||
= 1.0.9 =
|
||||
- Added: Social Sharing buttons for WooCommerce Shop page.
|
||||
- Added: Migration support: Social Warfare.
|
||||
- Fixed: Minor PHP bugs.
|
||||
|
||||
= 1.0.8 =
|
||||
- Improved: Sharing buttons.
|
||||
|
||||
= 1.0.7 =
|
||||
- Improved: Plugin performance, faster loading time.
|
||||
|
||||
= 1.0.6 =
|
||||
- Improved: Translation/Localization files.
|
||||
- Improved: Metabox fields reorganization.
|
||||
- Improved: Notices system.
|
||||
|
||||
= 1.0.5 =
|
||||
- Fixed: Conflict with Visual Composer Custom CSS.
|
||||
- Fixed: On Media style bug.
|
||||
- Removed: StumbleUpon network.
|
||||
|
||||
= 1.0.4 =
|
||||
- Fixed: CSS display issue with On Media Share buttons.
|
||||
|
||||
= 1.0.3 =
|
||||
- Fixed: PHP 7 Compatibility.
|
||||
|
||||
= 1.0.2 =
|
||||
- Fixed: Input fields trigger in metaboxes.
|
||||
|
||||
= 1.0.1 =
|
||||
- Added: GDPR Compliance options.
|
||||
- Fixed: Compatibility issues with cache plugins.
|
||||
- Fixed: Minor CSS issues with Click to Tweet boxes.
|
||||
- Fixed: On Media styling issues.
|
||||
- Fixed: Gutenberg compatibility.
|
||||
|
||||
= 1.0.0 =
|
||||
* Initial release.
|
||||
58
spec/fixtures/dynamic_finders/plugin_version/sprout-clients/change_log/changelog.txt
vendored
Normal file
58
spec/fixtures/dynamic_finders/plugin_version/sprout-clients/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,58 @@
|
||||
= 2.2 =
|
||||
|
||||
* Compat update
|
||||
|
||||
= 2.1.9 =
|
||||
|
||||
* Update: Resolve an issue with the latest version of WordPress tax queries.
|
||||
|
||||
= 2.1.7 =
|
||||
|
||||
* Update: Collision prevention
|
||||
|
||||
= 2.1.6 =
|
||||
|
||||
* FIX: Jetpack compat issue.
|
||||
|
||||
= 2.1.4 =
|
||||
|
||||
* FIX: Select2 Compat issues with themes and other plugins
|
||||
|
||||
= 2.1.3 =
|
||||
|
||||
* FIX: ACF Compat issues
|
||||
* Update: Compat class
|
||||
|
||||
= 2.0.4 =
|
||||
|
||||
* FIX: Compat issues
|
||||
|
||||
= 2.0 =
|
||||
|
||||
* NEW: Enagements (paid version)
|
||||
* NEW: Messages (paid version)
|
||||
* NEW: Imporved categorization
|
||||
* NEW: Free version
|
||||
|
||||
= 1.2.1 =
|
||||
|
||||
* FIX: New Person issues, and compatibility with SI
|
||||
* FIX: "Unknown" users
|
||||
|
||||
= 1.2 =
|
||||
|
||||
* FIX: User meta not saved on creation.
|
||||
* FIX: Save button shown for user notes.
|
||||
|
||||
= 1.1 =
|
||||
|
||||
* FIX: Records duplicated for Sprout Invoice users.
|
||||
* FIX: Users list wasn't being updated after creation of new user.
|
||||
|
||||
= 1.0.1 =
|
||||
|
||||
* FIX: New Person issues, and compatibility with SI
|
||||
|
||||
= 1.0 =
|
||||
|
||||
Initial Release
|
||||
1363
spec/fixtures/dynamic_finders/plugin_version/sprout-invoices/change_log/changelog.txt
vendored
Normal file
1363
spec/fixtures/dynamic_finders/plugin_version/sprout-invoices/change_log/changelog.txt
vendored
Normal file
File diff suppressed because it is too large
Load Diff
21
spec/fixtures/dynamic_finders/plugin_version/statusmc/change_log/CHANGELOG.txt
vendored
Normal file
21
spec/fixtures/dynamic_finders/plugin_version/statusmc/change_log/CHANGELOG.txt
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
/*
|
||||
Plugin Name: StatusMC Widget
|
||||
Plugin URI: http://sync667.com/
|
||||
Description: Wyświetla informacje odnośnie serwera bukkit poprzez JSONAPI.
|
||||
Version: 1.1
|
||||
Author: sync667 - sync667@gmail.com
|
||||
Author URI: http://sync667.com/
|
||||
License: GPL3
|
||||
*/
|
||||
|
||||
---------------------------
|
||||
--- Changelog ---
|
||||
---------------------------
|
||||
|
||||
***Wersja 0.1.0***
|
||||
|
||||
- Initial release
|
||||
|
||||
***Wersja 0.1.1***
|
||||
|
||||
- Form pass and salt type password set.
|
||||
48
spec/fixtures/dynamic_finders/plugin_version/subscribe-plugin/change_log/changelog.txt
vendored
Normal file
48
spec/fixtures/dynamic_finders/plugin_version/subscribe-plugin/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,48 @@
|
||||
Subscribe widget
|
||||
by Kęstas Mindžiulis
|
||||
|
||||
|
||||
V2.0.4 - 11.06.2010
|
||||
- Bugfix: Bug fixing.
|
||||
- Added: Javascript function, that changes images 'onkeyup'
|
||||
|
||||
V2.0.3 - 28.04.2010
|
||||
- Bugfix: Bug fixing.
|
||||
|
||||
V2.0.1 - 27.04.2010
|
||||
- Changed: "subscribe-widget" directory check.
|
||||
- Updated: sw_displaySubscribeWidget function.
|
||||
|
||||
V2.0.0 - 16.04.2010
|
||||
- Added: FaceBook
|
||||
- Changed: Rewrited plugin using new WP widget engine.
|
||||
- Added: Wp version checker. If wp version is not supported by plugin, widget will not work.
|
||||
|
||||
V1.1.5 - 07.05.2009
|
||||
- Added: Function that could display subscribe icons anywhere on the theme
|
||||
- Added: Added option to choose bigger image size.
|
||||
- Added: Message if subscribe-widget directory not exists on the root folder.
|
||||
|
||||
V1.1.4 - 28.04.2009
|
||||
- Bugfix: Corrected spelling
|
||||
- Bugfix: Added htmlenties function for twitter and feedburnen acounts, to avoid characters like & and others
|
||||
|
||||
V1.1.3.1 - 23.04.2009
|
||||
- Bugfix: Added html code, that was removed by accident
|
||||
|
||||
V1.1.3 - 23.04.2009
|
||||
- Added: Option to open links in the same or new windows
|
||||
- Added: Before widget save, changes "subscribe-widget" atributes to 0777, after save chnges to 0755.
|
||||
|
||||
V1.1.2 - 21.04.2009
|
||||
- Bugfix : Removed html tags, added WP $before_widget, $before_title and others viariales
|
||||
|
||||
V1.1.1 - 19.04.2009
|
||||
- Bugfix : Fixed comments feed link.
|
||||
|
||||
V1.1.0 - 17.04.2009
|
||||
- Added : Checks for gd library in the server. If not exist, then images are resized using style (only by width).
|
||||
|
||||
V1.0.1 - 16.04.2009
|
||||
- Changed : Renamed folder where display images are stored
|
||||
- Bugfix : Renamed folder from `subscribe-widget` to `subscribe-plugin`
|
||||
4
spec/fixtures/dynamic_finders/plugin_version/tab-my-content/change_log/changelog.txt
vendored
Normal file
4
spec/fixtures/dynamic_finders/plugin_version/tab-my-content/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.0 - 2017-07-07 =
|
||||
* Add - Initial release.
|
||||
40
spec/fixtures/dynamic_finders/plugin_version/taghound-media-tagger/change_log/CHANGELOG.md
vendored
Normal file
40
spec/fixtures/dynamic_finders/plugin_version/taghound-media-tagger/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
==Changelog==
|
||||
|
||||
= 2.0.2 =
|
||||
* Fixes bug where server would time out during upload-only bulk tagging events
|
||||
* Fixes visual bug introduced in tag picker in WordPress 4.9
|
||||
|
||||
= 2.0.1 =
|
||||
* Minor updates to the Readme and required PHP version.
|
||||
|
||||
= 2.0.0 =
|
||||
* FEATURE: Supports v2 of the Clarifai API! You will need to generate an API token to continue using the product.
|
||||
* FEATURE: Run the bulk tagger in upload-only mode.
|
||||
* Removes support for checking your usage stats in WordPress. Clarifai no longer supports this.
|
||||
|
||||
= 1.2.0 =
|
||||
* FEATURE: Adds the `tmt_tag_taxonomy` filter to allow users to customize the taxonomy used to store tags
|
||||
|
||||
= 1.1.1 =
|
||||
* Show more detailed error message during Bulk Tagging failure
|
||||
|
||||
= 1.1.0 =
|
||||
* FEATURE: A bulk tagger tags existing images in library
|
||||
* FEATURE: Under the hood, sends URL to image assets instead of uploading images individually
|
||||
* FEATURE: Moves Taghound settings to a dedicated screen
|
||||
|
||||
= 1.0.4 =
|
||||
* BUGFIX: Adds media browser support back to < WordPress 4.7
|
||||
|
||||
= 1.0.3 =
|
||||
* Removes cruft added to last build.
|
||||
|
||||
= 1.0.2 =
|
||||
* Updates admin UI to support WordPress 4.7
|
||||
* Adds a minimum required PHP version of 5.5.
|
||||
|
||||
= 1.0.1 =
|
||||
* FEATURE: See Clarifai API usage data under Media settings.
|
||||
|
||||
= 1.0.0 =
|
||||
* Taghound Media Tagger.
|
||||
@@ -0,0 +1,179 @@
|
||||
# 2.0.1 (2018-08-23)
|
||||
* Fix local pickup calculations with street address support
|
||||
|
||||
# 2.0.0 (2018-08-16)
|
||||
* Street address support with rooftop accuracy
|
||||
* Display native rate tables for custom rates
|
||||
* Call `woocommerce_after_calculate_totals` after recalculation for other plugins
|
||||
* Fix backend order calculations in WC 2.6
|
||||
|
||||
# 1.7.1 (2018-07-19)
|
||||
* Tested up to WooCommerce 3.4
|
||||
* Skip API requests when there are no line items or shipping charges
|
||||
* Fix backend order tax calculations for deleted products
|
||||
* Fix calculations for multiple line items with exemption thresholds
|
||||
* Fix compatibility issues with PHP 5.2 and 5.3
|
||||
* Fix tax code precedence for "None" tax status and custom tax class products
|
||||
* Fix error handling when syncing nexus regions with an expired API token
|
||||
|
||||
# 1.7.0 (2018-05-10)
|
||||
* Improve performance by skipping calculations in the mini-cart
|
||||
* Drop TLC transients library in favor of native WP Transients API
|
||||
* Fix caching issues with tax calculations
|
||||
|
||||
# 1.6.1 (2018-04-05)
|
||||
* Fix error for WooCommerce stores running on PHP 5.4
|
||||
* Update "Configure TaxJar" button to point directly to TaxJar integration section
|
||||
|
||||
# 1.6.0 (2018-03-22)
|
||||
* Tested up to WooCommerce 3.3
|
||||
* Refactored plugin to better handle total calculations and WC Subscriptions
|
||||
* Fix nexus overage API issue with expired TaxJar accounts
|
||||
* Fix rounding issue with line items in WC 3.2
|
||||
* Add filter hook to TaxJar store settings for developers
|
||||
* Skip backend calculations for deleted products
|
||||
* Remove default customer address setting override
|
||||
* Exempt line items with "Zero rate" tax class applied
|
||||
* Support UK / GB and EL / GR ISO 3166-1 code exceptions
|
||||
* Sanitize tax class to handle "Zero Rate" string from Disability VAT Exemption plugin
|
||||
* Drop WP_DEBUG logging in favor of taxjar.log
|
||||
|
||||
# 1.5.4 (2017-12-08)
|
||||
* Fix sign-up fees and total issues with WC Subscriptions
|
||||
* Fix tax for duplicate line items with WC Product Add-ons & WC Product Bundles
|
||||
* Fix minor logging issue on shared hosts
|
||||
|
||||
# 1.5.3 (2017-11-17)
|
||||
* Fix total calculations for origin and modified-origin based states
|
||||
|
||||
# 1.5.2 (2017-11-14)
|
||||
* Recalculate totals in WooCommerce 3.2 instead of updating grand total
|
||||
* Update "tested up to" for WordPress 4.8.2
|
||||
* Update integration title
|
||||
|
||||
# 1.5.1 (2017-10-22)
|
||||
* Fix totals calculation issue with WooCommerce 3.2
|
||||
* Fix plugin action links filter issue with conflicting plugins
|
||||
|
||||
# 1.5.0 (2017-10-10)
|
||||
* WooCommerce 3.2 compatibility
|
||||
* Improve tax rate override notice under WooCommerce > Settings > Tax
|
||||
* Improve plugin intro copy for support under "TaxJar Integration"
|
||||
* Fix "limit usage to X items" discounts in WooCommerce 3.1
|
||||
* Fix `get_id` method error for discounts in WooCommerce 2.6
|
||||
* Fix product tax class parsing for multi-word categories such as "Food & Groceries"
|
||||
|
||||
# 1.4.0 (2017-08-17)
|
||||
* Support backend order calculations for both WooCommerce 2.6.x and 3.x
|
||||
* Fix backend rate display for orders with multiple tax classes
|
||||
|
||||
# 1.3.3 (2017-08-01)
|
||||
* Fix initial calculation for recurring subscriptions with a trial period
|
||||
|
||||
# 1.3.2 (2017-07-20)
|
||||
* Fix local pickup error for WooCommerce < 2.6.2
|
||||
|
||||
# 1.3.1 (2017-06-18)
|
||||
* Include tlc_transient hotfix
|
||||
|
||||
# 1.3.0 (2017-06-16)
|
||||
* Product taxability support for exemptions such as clothing.
|
||||
* Line item taxability with support for recurring subscriptions.
|
||||
* Fully exempt non-taxable items when tax status is set to "None".
|
||||
* Fix calculations to use shipping origin when local pickup selected.
|
||||
* Fix caching issues with API requests.
|
||||
|
||||
# 1.2.4 (2016-10-19)
|
||||
* Add fallbacks to still calculate sales tax if nexus list is not populated.
|
||||
|
||||
# 1.2.3 (2016-09-21)
|
||||
* Limit API calls for tax calculations to nexus areas.
|
||||
|
||||
# 1.2.2 (2016-08-29)
|
||||
* Fix issue where uncached shipping tax was not displayed
|
||||
|
||||
# 1.2.1 (2016-06-27)
|
||||
* Fix bug causing sales tax to not be calculated when shipping is disabled
|
||||
* Pass home_url rather than site_url when linking to TaxJar
|
||||
|
||||
# 1.2.0 (2016-01-19)
|
||||
* Changes for WooCommerce 2.5 compatibility around transients
|
||||
|
||||
# 1.1.8 (2015-12-30)
|
||||
* Shipping tax bugfix
|
||||
|
||||
# 1.1.7 (2015-12-23)
|
||||
* Bump version, wordpress.org failed to create 1.1.6 zip file
|
||||
|
||||
# 1.1.6 (2015-12-22)
|
||||
* Change wording for connection
|
||||
|
||||
# 1.1.5 (2015-12-14)
|
||||
* Display Nexus States/Region list on TaxJar panel
|
||||
* Allow 1-Click TaxJar connection setup
|
||||
* Bug fixes around order editing in order admin screens.
|
||||
|
||||
# 1.1.4 (2015-10-30)
|
||||
* Better warnings about connection errors on plugin panel
|
||||
|
||||
# 1.1.3 (2015-09-09)
|
||||
* Better support for generating API keys in WooCommerce 2.4+
|
||||
* Warnings for PHP version
|
||||
|
||||
# 1.1.2 (2015-07-30)
|
||||
* Handling Shipping tax more accurately
|
||||
|
||||
# 1.1.1 (2015-07-21)
|
||||
* Fix transient key bug with city (suggest to clear transients in WooCommerce)
|
||||
* Label text change
|
||||
* Improve handling of Shipping taxes
|
||||
|
||||
# 1.1.0 (2015-06-26)
|
||||
* Switch to v2 TaxJar API
|
||||
* Bug fixes and code cleanups
|
||||
|
||||
# (2015-04-30)
|
||||
* WooCommerce compatible note 2.3.x is now required
|
||||
|
||||
# 1.0.8 (2015-03-10)
|
||||
* Bug fixes in the handling of persisted rates
|
||||
|
||||
# 1.0.7 (2014-12-24)
|
||||
## Fixed
|
||||
* Fixed a bug encountered when local shipping options were selected
|
||||
|
||||
## New
|
||||
* Adds tax calculation support to WooCommerce for local shipping options
|
||||
* WooCommerce can now calculate taxes for local pickup shipping option
|
||||
|
||||
# 1.0.6 (2014-11-17)
|
||||
* Fixed a bug encountered on some hosting providers
|
||||
|
||||
# 1.0.5.2 (2014-11-13)
|
||||
* Fixed a bug where coupons where being applied on the cart twice
|
||||
|
||||
# 1.0.5.1 (2014-11-06)
|
||||
* Bug fixes
|
||||
|
||||
# 1.0.5 (2014-09-26)
|
||||
## Updated
|
||||
* New way of handling taxes on orders compatible with WooCommerce 2.2
|
||||
* Uses new API (with support for Canada): [read the docs](https://www.taxjar.com/api/docs/)
|
||||
|
||||
## New
|
||||
* Ability to download orders easily into TaxJar
|
||||
* Shortcuts to access TaxJar Settings
|
||||
* Freezes settings for WooCommerce Tax (we set everything up for your store's sales tax needs)
|
||||
|
||||
# 1.0.3 (2014-08-27)
|
||||
* Fix api url param for woo
|
||||
|
||||
# 1.0.2 (2014-08-26)
|
||||
* use taxable_address from wooCommerce customer
|
||||
|
||||
# 1.0.1 (2014-08-25)
|
||||
* TaxJar calc overrides all other taxes
|
||||
* Hide order admin calculate tax button
|
||||
|
||||
# 1.0 (2014-08-11)
|
||||
* Initial release
|
||||
224
spec/fixtures/dynamic_finders/plugin_version/taxonomy-images/change_log/CHANGELOG.md
vendored
Normal file
224
spec/fixtures/dynamic_finders/plugin_version/taxonomy-images/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,224 @@
|
||||
# Change Log
|
||||
All notable changes to this project will be documented in this file.
|
||||
This project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [0.9.6] - 2016-05-03
|
||||
|
||||
### Fixed
|
||||
- Fix issue where if no terms have images but 'having_images' is false, nothing would be returned (props Matt).
|
||||
|
||||
## [0.9.5] - 2016-04-09
|
||||
|
||||
### Fixed
|
||||
- Fix loading of admin stylesheet when editing terms in WordPress 4.5
|
||||
|
||||
## [0.9.4] - 2016-02-05
|
||||
|
||||
### Fixed
|
||||
- Fix for taxonomy names that may contain characters other than lowercase and underscores (e.g. uppercase).
|
||||
|
||||
## [0.9.3] - 2016-01-21
|
||||
|
||||
### Fixed
|
||||
- Fix post permissions error when using media modal.
|
||||
|
||||
## [0.9.2] - 2015-12-15
|
||||
|
||||
### Added
|
||||
- Added CHANGELOG.md
|
||||
|
||||
### Changed
|
||||
- Documentation: Pedantic corrections. Props [Gary Jones](https://profiles.wordpress.org/garyj)
|
||||
|
||||
### Fixed
|
||||
- Fix old and new media modal opening simultaneously in some circumstances.
|
||||
|
||||
## [0.9.1] - 2015-11-17
|
||||
|
||||
### Changed
|
||||
- Adhere to WordPress PHP coding standards.
|
||||
|
||||
### Fixed
|
||||
- Fixes media modal not opening on newly created terms.
|
||||
|
||||
## [0.9] - 2015-11-10
|
||||
|
||||
### Added
|
||||
- Added screenshots for WordPress.org
|
||||
- Add Spanish translation.
|
||||
- Add husobj as a contributor.
|
||||
|
||||
### Changed
|
||||
- Make images retina sized in the admin.
|
||||
- Re-color admin image and icons to fit with more recent versions of WordPress.
|
||||
- Stop using deprecated `image_resize()` function.
|
||||
- Stop using deprecated `screen_icon()` function.
|
||||
- Move JavaScript and CSS files to subfolders.
|
||||
- Confirmed minimum WordPress 3.4 required.
|
||||
|
||||
### Fixed
|
||||
- Add support for WordPress 3.5+ media modal.
|
||||
|
||||
## [0.8.0] - 2013-08-06
|
||||
|
||||
### Added
|
||||
- Add jamiemchale as a contributor.
|
||||
|
||||
### Changed
|
||||
- Use `jQuery.on()` instead of `jQuery.live()`. Props [jamiemchale](https://profiles.wordpress.org/jamiemchale).
|
||||
- Pass an empty array as default second parameter of `taxonomy_images_plugin_get_the_terms()` and `taxonomy_images_plugin_list_the_terms()`.
|
||||
- Give the button on the custom admin screen a class of `button-primary`.
|
||||
- Store the return value of `get_posts()` in a variable called `$images`. Not sure why, but this should not harm anything.
|
||||
- Change license to `GPLv2 or later` for maximum flexibility and compatibility.
|
||||
- Random whitespace fixes.
|
||||
- Update Documentation.
|
||||
- CSS coding standards.
|
||||
- Bump version number.
|
||||
- Update readme files.
|
||||
|
||||
## [0.7.3] - 2011-06-20
|
||||
|
||||
### Added
|
||||
- Introduced `.pot` file and languages directory.
|
||||
|
||||
### Changed
|
||||
- Better escaping.
|
||||
|
||||
### Fixed
|
||||
- Fixed the delete image button on edit-terms.php.
|
||||
|
||||
## [0.7.2] - 2011-06-20
|
||||
|
||||
### Changed
|
||||
- Return data for fullsize images in archive views. [See this thread](https://wordpress.org/support/topic/image-size-full).
|
||||
|
||||
## [0.7.1] - 2011-06-01
|
||||
|
||||
### Removed
|
||||
- Remove unused link code which is throwing an error when no taxonomies support images.
|
||||
|
||||
## [0.7] - 2011-05-31
|
||||
|
||||
### Added
|
||||
- Created a custom filter interface for plugin and theme integration.
|
||||
- Lots of inline documentation added.
|
||||
- Added custom notices if plugin is used in an unsupported way.
|
||||
- Taxonomy modal button now available in search + upload states.
|
||||
- Image interface has been added to single term edit screen.
|
||||
- Users can now choose which taxonomys have image support.
|
||||
|
||||
### Changed
|
||||
- All strings are now internationalized.
|
||||
- Add image to term functionality mimics "Add Featured Image".
|
||||
- All functions are now private.
|
||||
|
||||
### Deprecated
|
||||
- Shortcode deprecated.
|
||||
- All global variables and constants have been removed or deprecated.
|
||||
|
||||
### Removed
|
||||
- Deprecated function calls removed.
|
||||
|
||||
### Fixed
|
||||
- No longer breaks display of the [Better Plugin Compatibility Control](https://wordpress.org/plugins/better-plugin-compatibility-control/) plugin.
|
||||
- No notices generated by PHP or WordPress.
|
||||
|
||||
### Security
|
||||
- Security updates.
|
||||
|
||||
## 0.6 - Unreleased
|
||||
|
||||
### Changed
|
||||
- Completely recoded.
|
||||
|
||||
## [0.5] - 2010-11-05
|
||||
|
||||
### Added
|
||||
- Direct link to upload new files from `edit-tag.php` has been introduced.
|
||||
- Ability to create an image/term association immediately after upload has been introduced.
|
||||
- Users can now delete image/term associations.
|
||||
|
||||
### Changed
|
||||
- Created standalone javascript files - removed inline scripts.
|
||||
- Obsessive compulsive syntax modifications.
|
||||
- Localization for strings - still need to "fine-tooth-comb" this.
|
||||
|
||||
### Removed
|
||||
- Removed all debug functions.
|
||||
|
||||
## 0.4.4 - Unreleased
|
||||
|
||||
### Fixed
|
||||
- `get_image_html()` Now populates the image's `alt` attribute with appropriate data. Props to [jaygoldman](https://wordpress.org/support/profile/jaygoldman).
|
||||
|
||||
## 0.4.3 - Unreleased
|
||||
|
||||
### Added
|
||||
- Support for WordPress 3.0 has been added.
|
||||
|
||||
### Changed
|
||||
- Removed use of deprecated function `is_taxonomy()` - props to [anointed](https://profiles.wordpress.org/users/anointed).
|
||||
- Included a definition for `taxonomy_exists()` function for backwards compatibility with 2.9 branch. This function is new in WordPress version 3.0.
|
||||
|
||||
### Removed
|
||||
- Support for all beta versions of 3.0 has been dropped.
|
||||
|
||||
## 0.4.2 - Unreleased
|
||||
|
||||
### Added
|
||||
- Support for 2.9 branch has been added again.
|
||||
|
||||
### Changed
|
||||
- Changed button name from "Category" to "Taxonomy".
|
||||
|
||||
## 0.4.1 - Unreleased
|
||||
|
||||
### Added
|
||||
- Added support for dynamic taxonomy hooks for `_tag_row()`.
|
||||
|
||||
### Removed
|
||||
- Support for 2.9 branch has been temporarily removed.
|
||||
|
||||
## 0.4 - Unreleased
|
||||
|
||||
### Added
|
||||
- Added "taxonomy_images_shortcode".
|
||||
|
||||
### Fixed
|
||||
- `get_thumb()` now returns the fullsize URL if there is no appropriate intermediate image.
|
||||
|
||||
## 0.3 - Unreleased
|
||||
|
||||
### Added
|
||||
- Added Version check for PHP5.
|
||||
- Added argument `$term_tax_id` to both `print_image_html()` and `get_image_html()`.
|
||||
|
||||
### Changed
|
||||
- Changed the firing order of every hook utilizing the `category_rows` method to 15. This allows this plugin to be compatible with [Reveal IDs for WP Admin](https://wordpress.org/plugins/reveal-ids-for-wp-admin-25/). Thanks to [Peter Kahoun](https://profiles.wordpress.org/kahi/)
|
||||
- `$settings` and `$locale` are now public properties.
|
||||
- Object name changed to `$taxonomy_images_plugin`.
|
||||
|
||||
### Removed
|
||||
- Deleted the `register_deactivation_hook()` function - sorry to all 8 who downloaded this plugin so far :)
|
||||
|
||||
## 0.2 - Unreleased
|
||||
|
||||
### Added
|
||||
- Original Release - Works with WordPress 2.9.1.
|
||||
|
||||
[Unreleased]: https://github.com/benhuson/Taxonomy-Images/compare/0.9.6...HEAD
|
||||
[0.9.6]: https://github.com/benhuson/Taxonomy-Images/compare/0.9.5...0.9.6
|
||||
[0.9.5]: https://github.com/benhuson/Taxonomy-Images/compare/0.9.4...0.9.5
|
||||
[0.9.4]: https://github.com/benhuson/Taxonomy-Images/compare/0.9.3...0.9.4
|
||||
[0.9.3]: https://github.com/benhuson/Taxonomy-Images/compare/0.9.2...0.9.3
|
||||
[0.9.2]: https://github.com/benhuson/Taxonomy-Images/compare/0.9.1...0.9.2
|
||||
[0.9.1]: https://github.com/benhuson/Taxonomy-Images/compare/0.9...0.9.1
|
||||
[0.9]: https://github.com/benhuson/Taxonomy-Images/compare/0.8.0...0.9
|
||||
[0.8.0]: https://github.com/benhuson/Taxonomy-Images/compare/0.7.3...0.8.0
|
||||
[0.7.3]: https://github.com/benhuson/Taxonomy-Images/compare/0.7.2...0.7.3
|
||||
[0.7.2]: https://github.com/benhuson/Taxonomy-Images/compare/0.7.1...0.7.2
|
||||
[0.7.1]: https://github.com/benhuson/Taxonomy-Images/compare/0.7...0.7.1
|
||||
[0.7]: https://github.com/benhuson/Taxonomy-Images/compare/v0.5...0.7
|
||||
[0.5]: https://github.com/benhuson/Taxonomy-Images/tree/v0.5
|
||||
1538
spec/fixtures/dynamic_finders/plugin_version/testimonials-widget/change_log/CHANGELOG.md
vendored
Normal file
1538
spec/fixtures/dynamic_finders/plugin_version/testimonials-widget/change_log/CHANGELOG.md
vendored
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user