Plugin Directory

Changeset 2314862


Ignore:
Timestamp:
05/30/2020 01:48:47 AM (6 years ago)
Author:
typetura
Message:

Version up

Location:
typetura/trunk
Files:
10 edited

Legend:

Unmodified
Added
Removed
  • typetura/trunk/README.txt

    r2314859 r2314862  
    8080* Added screenshots and icons
    8181
    82 = 1.0.0 =
     82= 1.0.1 =
    8383* The first release of Typetura, a fluid typesetting plugin, for WordPress
  • typetura/trunk/admin/partials/typetura-admin-display.php

    r2314073 r2314862  
    77 *
    88 * @link       https://typetura.com
    9  * @since      1.0.0
     9 * @since      1.0.1
    1010 *
    1111 * @package    Typetura
  • typetura/trunk/includes/class-typetura-activator.php

    r2314073 r2314862  
    55 *
    66 * @link       https://typetura.com
    7  * @since      1.0.0
     7 * @since      1.0.1
    88 *
    99 * @package    Typetura
     
    1616 * This class defines all code necessary to run during the plugin's activation.
    1717 *
    18  * @since      1.0.0
     18 * @since      1.0.1
    1919 * @package    Typetura
    2020 * @subpackage Typetura/includes
     
    2828     * Long Description.
    2929     *
    30      * @since    1.0.0
     30     * @since    1.0.1
    3131     */
    3232    public static function activate() {
  • typetura/trunk/includes/class-typetura-deactivator.php

    r2314073 r2314862  
    55 *
    66 * @link       https://typetura.com
    7  * @since      1.0.0
     7 * @since      1.0.1
    88 *
    99 * @package    Typetura
     
    1616 * This class defines all code necessary to run during the plugin's deactivation.
    1717 *
    18  * @since      1.0.0
     18 * @since      1.0.1
    1919 * @package    Typetura
    2020 * @subpackage Typetura/includes
     
    2828     * Long Description.
    2929     *
    30      * @since    1.0.0
     30     * @since    1.0.1
    3131     */
    3232    public static function deactivate() {
  • typetura/trunk/includes/class-typetura-i18n.php

    r2314073 r2314862  
    88 *
    99 * @link       https://typetura.com
    10  * @since      1.0.0
     10 * @since      1.0.1
    1111 *
    1212 * @package    Typetura
     
    2020 * so that it is ready for translation.
    2121 *
    22  * @since      1.0.0
     22 * @since      1.0.1
    2323 * @package    Typetura
    2424 * @subpackage Typetura/includes
     
    3131     * Load the plugin text domain for translation.
    3232     *
    33      * @since    1.0.0
     33     * @since    1.0.1
    3434     */
    3535    public function load_plugin_textdomain() {
  • typetura/trunk/includes/class-typetura-loader.php

    r2314073 r2314862  
    55 *
    66 * @link       https://typetura.com
    7  * @since      1.0.0
     7 * @since      1.0.1
    88 *
    99 * @package    Typetura
     
    2727     * The array of actions registered with WordPress.
    2828     *
    29      * @since    1.0.0
     29     * @since    1.0.1
    3030     * @access   protected
    3131     * @var      array    $actions    The actions registered with WordPress to fire when the plugin loads.
     
    3636     * The array of filters registered with WordPress.
    3737     *
    38      * @since    1.0.0
     38     * @since    1.0.1
    3939     * @access   protected
    4040     * @var      array    $filters    The filters registered with WordPress to fire when the plugin loads.
     
    4545     * Initialize the collections used to maintain the actions and filters.
    4646     *
    47      * @since    1.0.0
     47     * @since    1.0.1
    4848     */
    4949    public function __construct() {
     
    5757     * Add a new action to the collection to be registered with WordPress.
    5858     *
    59      * @since    1.0.0
     59     * @since    1.0.1
    6060     * @param    string               $hook             The name of the WordPress action that is being registered.
    6161     * @param    object               $component        A reference to the instance of the object on which the action is defined.
     
    7171     * Add a new filter to the collection to be registered with WordPress.
    7272     *
    73      * @since    1.0.0
     73     * @since    1.0.1
    7474     * @param    string               $hook             The name of the WordPress filter that is being registered.
    7575     * @param    object               $component        A reference to the instance of the object on which the filter is defined.
     
    8686     * collection.
    8787     *
    88      * @since    1.0.0
     88     * @since    1.0.1
    8989     * @access   private
    9090     * @param    array                $hooks            The collection of hooks that is being registered (that is, actions or filters).
     
    113113     * Register the filters and actions with WordPress.
    114114     *
    115      * @since    1.0.0
     115     * @since    1.0.1
    116116     */
    117117    public function run() {
  • typetura/trunk/includes/class-typetura.php

    r2314073 r2314862  
    88 *
    99 * @link       https://typetura.com
    10  * @since      1.0.0
     10 * @since      1.0.1
    1111 *
    1212 * @package    Typetura
     
    2323 * version of the plugin.
    2424 *
    25  * @since      1.0.0
     25 * @since      1.0.1
    2626 * @package    Typetura
    2727 * @subpackage Typetura/includes
     
    3434     * the plugin.
    3535     *
    36      * @since    1.0.0
     36     * @since    1.0.1
    3737     * @access   protected
    3838     * @var      Typetura_Loader    $loader    Maintains and registers all hooks for the plugin.
     
    4343     * The unique identifier of this plugin.
    4444     *
    45      * @since    1.0.0
     45     * @since    1.0.1
    4646     * @access   protected
    4747     * @var      string    $plugin_name    The string used to uniquely identify this plugin.
     
    5252     * The current version of the plugin.
    5353     *
    54      * @since    1.0.0
     54     * @since    1.0.1
    5555     * @access   protected
    5656     * @var      string    $version    The current version of the plugin.
     
    6565     * the public-facing side of the site.
    6666     *
    67      * @since    1.0.0
     67     * @since    1.0.1
    6868     */
    6969    public function __construct() {
     
    7171            $this->version = TYPETURA_VERSION;
    7272        } else {
    73             $this->version = '1.0.0';
     73            $this->version = '1.0.1';
    7474        }
    7575        $this->plugin_name = 'typetura';
     
    9595     * with WordPress.
    9696     *
    97      * @since    1.0.0
     97     * @since    1.0.1
    9898     * @access   private
    9999     */
     
    133133     * with WordPress.
    134134     *
    135      * @since    1.0.0
     135     * @since    1.0.1
    136136     * @access   private
    137137     */
     
    148148     * of the plugin.
    149149     *
    150      * @since    1.0.0
     150     * @since    1.0.1
    151151     * @access   private
    152152     */
     
    174174     * of the plugin.
    175175     *
    176      * @since    1.0.0
     176     * @since    1.0.1
    177177     * @access   private
    178178     */
     
    194194     * Run the loader to execute all of the hooks with WordPress.
    195195     *
    196      * @since    1.0.0
     196     * @since    1.0.1
    197197     */
    198198    public function run() {
     
    204204     * WordPress and to define internationalization functionality.
    205205     *
    206      * @since     1.0.0
     206     * @since     1.0.1
    207207     * @return    string    The name of the plugin.
    208208     */
     
    214214     * The reference to the class that orchestrates the hooks with the plugin.
    215215     *
    216      * @since     1.0.0
     216     * @since     1.0.1
    217217     * @return    Typetura_Loader    Orchestrates the hooks of the plugin.
    218218     */
     
    224224     * Retrieve the version number of the plugin.
    225225     *
    226      * @since     1.0.0
     226     * @since     1.0.1
    227227     * @return    string    The version number of the plugin.
    228228     */
  • typetura/trunk/public/partials/typetura-public-display.php

    r2314073 r2314862  
    77 *
    88 * @link       https://typetura.com
    9  * @since      1.0.0
     9 * @since      1.0.1
    1010 *
    1111 * @package    Typetura
  • typetura/trunk/typetura.php

    r2314073 r2314862  
    1010 *
    1111 * @link              https://typetura.com
    12  * @since             1.0.0
     12 * @since             1.0.1
    1313 * @package           Typetura
    1414 *
     
    1717 * Plugin URI:        typetura.com/
    1818 * Description:       We typeset your website! Typography that works on your website regardless of layout or device.
    19  * Version:           1.0.0
     19 * Version:           1.0.1
    2020 * Author:            Typetura
    2121 * Author URI:        https://typetura.com
     
    3333/**
    3434 * Currently plugin version.
    35  * Start at version 1.0.0 and use SemVer - https://semver.org
     35 * Start at version 1.0.1 and use SemVer - https://semver.org
    3636 * Rename this for your plugin and update it as you release new versions.
    3737 */
    38 define( 'TYPETURA_VERSION', '1.0.0' );
     38define( 'TYPETURA_VERSION', '1.0.1' );
    3939
    4040/**
     
    7272 * not affect the page life cycle.
    7373 *
    74  * @since    1.0.0
     74 * @since    1.0.1
    7575 */
    7676function run_typetura() {
  • typetura/trunk/uninstall.php

    r2314073 r2314862  
    2121 *
    2222 * @link       https://typetura.com
    23  * @since      1.0.0
     23 * @since      1.0.1
    2424 *
    2525 * @package    Typetura
Note: See TracChangeset for help on using the changeset viewer.