Plugin Directory

Changeset 2818886


Ignore:
Timestamp:
11/16/2022 11:06:24 AM (3 years ago)
Author:
jamesckemp
Message:

Update to version 1.1.0 from GitHub

Location:
replybox
Files:
88 added
5 edited
1 copied

Legend:

Unmodified
Added
Removed
  • replybox/assets/icon.svg

    • Property svn:mime-type set to image/svg+xml
  • replybox/tags/1.1.0/readme.txt

    r2714544 r2818886  
    55Tested up to: 5.9.3
    66Requires PHP: 7.0
    7 Stable tag: 1.0.1
     7Stable tag: 1.1.0
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    5959**Webhooks:** Notify external services that new comments have been added and streamline your workflow.
    6060
     61**Pin a Comment:** Highlight a bright idea or spark of inspiration with the click of a button so you never lose it.
     62
    6163**Emoji Reactions (coming soon):** Sometimes all you need is a simple 👍 or 😍, so we’re adding it for you.
    62 
    63 **Pin a Comment (coming soon):** Highlight a bright idea or spark of inspiration with the click of a button so you never lose it.
    6464
    6565**More Design Options (coming soon):** Our designers are hard at work putting the finishing touches to even more ways to turn on the style.
     
    7474
    7575== Changelog ==
     76
     77= 1.1.0 =
     78* Add welcome page
     79* [readme] Update feature list
    7680
    7781= 1.0.1 =
  • replybox/tags/1.1.0/replybox.php

    r2714539 r2818886  
    11<?php
    22/**
    3  * Plugin Name: ReplyBox
     3 * Plugin Name: ReplyBox — Better WordPress Comments
    44 * Description: A simple, honest comment system which works everywhere. No ads, no dodgy affiliate links, no fluff.
    5  * Version: 1.0.1
     5 * Version: 1.1.0
    66 * Author: ReplyBox
    77 * Author URI: https://getreplybox.com
     
    1212}
    1313
     14define( 'REPLYBOX_URL', \plugins_url( '/', __FILE__ ) );
     15define( 'REPLYBOX_PATH', \plugin_dir_path( __FILE__ ) );
     16
    1417final class ReplyBox {
    1518
     
    2326     */
    2427    private $options = array();
     28    /**
     29     * @var null|ReplyBox\Welcome
     30     */
     31    private $welcome = null;
    2532
    2633    /**
     
    4451     */
    4552    private function init() {
     53        require_once plugin_dir_path( __FILE__ ) . 'inc/class-welcome.php';
     54
     55        $this->welcome = new ReplyBox\Welcome();
    4656        $this->options = $this->get_options();
    4757
     
    493503            $this->generate_token();
    494504        }
     505
     506        $this->welcome->activate();
    495507    }
    496508
  • replybox/trunk/readme.txt

    r2714544 r2818886  
    55Tested up to: 5.9.3
    66Requires PHP: 7.0
    7 Stable tag: 1.0.1
     7Stable tag: 1.1.0
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    5959**Webhooks:** Notify external services that new comments have been added and streamline your workflow.
    6060
     61**Pin a Comment:** Highlight a bright idea or spark of inspiration with the click of a button so you never lose it.
     62
    6163**Emoji Reactions (coming soon):** Sometimes all you need is a simple 👍 or 😍, so we’re adding it for you.
    62 
    63 **Pin a Comment (coming soon):** Highlight a bright idea or spark of inspiration with the click of a button so you never lose it.
    6464
    6565**More Design Options (coming soon):** Our designers are hard at work putting the finishing touches to even more ways to turn on the style.
     
    7474
    7575== Changelog ==
     76
     77= 1.1.0 =
     78* Add welcome page
     79* [readme] Update feature list
    7680
    7781= 1.0.1 =
  • replybox/trunk/replybox.php

    r2714539 r2818886  
    11<?php
    22/**
    3  * Plugin Name: ReplyBox
     3 * Plugin Name: ReplyBox — Better WordPress Comments
    44 * Description: A simple, honest comment system which works everywhere. No ads, no dodgy affiliate links, no fluff.
    5  * Version: 1.0.1
     5 * Version: 1.1.0
    66 * Author: ReplyBox
    77 * Author URI: https://getreplybox.com
     
    1212}
    1313
     14define( 'REPLYBOX_URL', \plugins_url( '/', __FILE__ ) );
     15define( 'REPLYBOX_PATH', \plugin_dir_path( __FILE__ ) );
     16
    1417final class ReplyBox {
    1518
     
    2326     */
    2427    private $options = array();
     28    /**
     29     * @var null|ReplyBox\Welcome
     30     */
     31    private $welcome = null;
    2532
    2633    /**
     
    4451     */
    4552    private function init() {
     53        require_once plugin_dir_path( __FILE__ ) . 'inc/class-welcome.php';
     54
     55        $this->welcome = new ReplyBox\Welcome();
    4656        $this->options = $this->get_options();
    4757
     
    493503            $this->generate_token();
    494504        }
     505
     506        $this->welcome->activate();
    495507    }
    496508
Note: See TracChangeset for help on using the changeset viewer.