Plugin Directory

Changeset 1699010


Ignore:
Timestamp:
07/19/2017 02:49:34 PM (9 years ago)
Author:
petervw
Message:

Version 1.0.1

Location:
seostack
Files:
82 added
4 edited

Legend:

Unmodified
Added
Removed
  • seostack/trunk/css/seostack.frontend.css

    r1695965 r1699010  
    11#seostack-wrapper {
    22    position: relative;
     3}
     4
     5#seostack-suggest-box:before, #seostack-suggest-box:after, ul#seostack-suggest:before, ul#seostack-suggest:after {
     6    content: none !important;
    37}
    48
  • seostack/trunk/readme.txt

    r1697046 r1699010  
    55Requires at least: 4.6
    66Tested up to: 4.8
    7 Stable tag: 1.0.0
     7Stable tag: 1.0.1
    88
    99Improve the internal search results with this plugin. Live search, spelling and synonyms are supported.
     
    5757Privacy: We only store data that is publicly visible. For example, we use the title, content, excerpt and the name of the author. We don't save an email address from the author.
    5858
     59**Translations**
     60This site search plugin is currently available in English and Dutch. Would you like to help us with the translation? You may want to use the [generated .pot file](https://github.com/seostack/seostack-for-wordpress/blob/develop/languages) on our GitHub page.
     61
    5962== Installation ==
    6063
     
    8891== Changelog ==
    8992
     93= 1.0.1 - 19 July 2017 =
     94
     95* Enhancements
     96    * Dutch translation added
     97    * CSS optimized, added minified file in the frontend
     98
     99* Bug fixes
     100    * CSS bug fix in the frontend styling to prevent "before" and "after" elements in the search suggestion box
     101
    90102= 1.0.0 - 14 July 2017 =
    91 - Initial SEOStack for WordPress release
    92 - Improve the internal site search results (synonyms and automated spelling improvements)
    93 - Customize the live search design
     103* Initial SEOStack for WordPress release
     104    * Improve the internal site search results (synonyms and automated spelling improvements)
     105    * Customize the live search design
  • seostack/trunk/seostack.php

    r1695965 r1699010  
    1212
    1313
    14 define( 'SEOSTACK_VERSION', '1.0.0' );
     14define( 'SEOSTACK_VERSION', '1.0.1' );
    1515
    1616define( 'SEOSTACK_API_ENDPOINT', 'https://search.api.seostack.io/' );
     
    2525
    2626add_action( 'init', array( $application, 'init' ) );
     27add_action( 'plugins_loaded', array( $application, 'loadPluginTranslations' ) );
  • seostack/trunk/src/SeoStackWP/Init.php

    r1695965 r1699010  
    8484    }
    8585
     86    /**
     87     * Load the translation files for SEOStack
     88     */
     89    public function loadPluginTranslations() {
     90        load_plugin_textdomain( 'seostack', false, basename( SEOSTACK_PLUGIN_ROOT_DIR ) . '/languages' );
     91    }
     92
    8693}
Note: See TracChangeset for help on using the changeset viewer.