Plugin Directory

Changeset 3142154


Ignore:
Timestamp:
08/27/2024 09:21:41 AM (19 months ago)
Author:
webgarh
Message:

Updating my plugin to newer version

Location:
offload-videos-bunny-netaws-s3/trunk
Files:
10 edited

Legend:

Unmodified
Added
Removed
  • offload-videos-bunny-netaws-s3/trunk/README.txt

    r3140306 r3142154  
    55Requires at least: 4.7
    66Tested up to: 6.6.1
    7 Stable tag: 1.0.1
    8 Version: 1.0.1
     7Stable tag: 1.0.2
     8Version: 1.0.2
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • offload-videos-bunny-netaws-s3/trunk/admin/class-offload-video-admin.php

    r3140306 r3142154  
    55 *
    66 * @link       https://wegarh.com
    7  * @since      1.0.1
     7 * @since      1.0.2
    88 *
    99 * @package    offload-videos
     
    2626     * The ID of this plugin.
    2727     *
    28      * @since    1.0.1
     28     * @since    1.0.2
    2929     * @access   private
    3030     * @var      string    $plugin_name    The ID of this plugin.
     
    3535     * The version of this plugin.
    3636     *
    37      * @since    1.0.1
     37     * @since    1.0.2
    3838     * @access   private
    3939     * @var      string    $version    The current version of this plugin.
     
    4444     * Initialize the class and set its properties.
    4545     *
    46      * @since    1.0.1
     46     * @since    1.0.2
    4747     * @param      string    $plugin_name       The name of this plugin.
    4848     * @param      string    $version    The version of this plugin.
     
    6363     * Register the stylesheets for the admin area.
    6464     *
    65      * @since    1.0.1
     65     * @since    1.0.2
    6666     */
    6767    public function offload_video_enqueue_styles() {
     
    8686     * Register the JavaScript for the admin area.
    8787     *
    88      * @since    1.0.1
     88     * @since    1.0.2
    8989     */
    9090    public function offload_video_enqueue_scripts() {
  • offload-videos-bunny-netaws-s3/trunk/includes/class-offload-video-activator.php

    r3140306 r3142154  
    55 *
    66 * @link       https://webgarh.com/
    7  * @since      1.0.1
     7 * @since      1.0.2
    88 *
    99 * @package    oflload-videos
     
    1616 * This class defines all code necessary to run during the plugin's activation.
    1717 *
    18  * @since      1.0.1
     18 * @since      1.0.2
    1919 * @package    oflload-videos
    2020 * @subpackage oflload-videos/includes
     
    2828     * Long Description.
    2929     *
    30      * @since    1.0.1
     30     * @since    1.0.2
    3131     */
    3232    public static function activate() {
  • offload-videos-bunny-netaws-s3/trunk/includes/class-offload-video-deactivator.php

    r3140306 r3142154  
    55 *
    66 * @link       https://webgarh.com/
    7  * @since      1.0.0
     7 * @since      1.0.2
    88 *
    99 * @package    oflload-videos
     
    1616 * This class defines all code necessary to run during the plugin's deactivation.
    1717 *
    18  * @since      1.0.0
     18 * @since      1.0.2
    1919 * @package    oflload-videos
    2020 * @subpackage oflload-videos/includes
     
    2828     * Long Description.
    2929     *
    30      * @since    1.0.0
     30     * @since    1.0.2
    3131     */
    3232    public static function deactivate() {
  • offload-videos-bunny-netaws-s3/trunk/includes/class-offload-video.php

    r3140306 r3142154  
    88 *
    99 * @link       https://webgarh.com/
    10  * @since      1.0.1
     10 * @since      1.0.2
    1111 *
    1212 * @package    offload-videos
     
    2323 * version of the plugin.
    2424 *
    25  * @since      1.0.1
     25 * @since      1.0.2
    2626 * @package    offload-videos
    2727 * @subpackage offload-videos/includes
     
    3434     * the plugin.
    3535     *
    36      * @since    1.0.1
     36     * @since    1.0.2
    3737     * @access   protected
    3838     * @var      Video_Uploader_For_Tutorlms_Loader    $loader    Maintains and registers all hooks for the plugin.
     
    4343     * The unique identifier of this plugin.
    4444     *
    45      * @since    1.0.1
     45     * @since    1.0.2
    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.1
     54     * @since    1.0.2
    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.1
     67     * @since    1.0.2
    6868     */
    6969    public function __construct() {
     
    7171            $this->version = OFFLOAD_VIDEO_VERSION;
    7272        } else {
    73             $this->version = '1.0.1';
     73            $this->version = '1.0.2';
    7474        }
    7575        $this->plugin_name = 'offload-videos';
     
    9595     * with WordPress.
    9696     *
    97      * @since    1.0.1
     97     * @since    1.0.2
    9898     * @access   private
    9999     */
     
    133133     * with WordPress.
    134134     *
    135      * @since    1.0.1
     135     * @since    1.0.2
    136136     * @access   private
    137137     */
     
    148148     * of the plugin.
    149149     *
    150      * @since    1.0.1
     150     * @since    1.0.2
    151151     * @access   private
    152152     */
     
    164164     * of the plugin.
    165165     *
    166      * @since    1.0.1
     166     * @since    1.0.2
    167167     * @access   private
    168168     */
     
    192192     * Run the loader to execute all of the hooks with WordPress.
    193193     *
    194      * @since    1.0.1
     194     * @since    1.0.2
    195195     */
    196196    public function run() {
     
    202202     * WordPress and to define internationalization functionality.
    203203     *
    204      * @since     1.0.1
     204     * @since     1.0.2
    205205     * @return    string    The name of the plugin.
    206206     */
     
    212212     * The reference to the class that orchestrates the hooks with the plugin.
    213213     *
    214      * @since     1.0.1
     214     * @since     1.0.2
    215215     * @return    Video_Uploader_For_Tutorlms_Loader    Orchestrates the hooks of the plugin.
    216216     */
     
    222222     * Retrieve the version number of the plugin.
    223223     *
    224      * @since     1.0.1
     224     * @since     1.0.2
    225225     * @return    string    The version number of the plugin.
    226226     */
  • offload-videos-bunny-netaws-s3/trunk/includes/class-video-uploader-for-tutorlms-i18n.php

    r3140306 r3142154  
    88 *
    99 * @link       https://webgarh.com/
    10  * @since      1.0.1
     10 * @since      1.0.2
    1111 *
    1212 * @package    offload-videos
     
    2020 * so that it is ready for translation.
    2121 *
    22  * @since      1.0.1
     22 * @since      1.0.2
    2323 * @package    offload-videos
    2424 * @subpackage offload-videos/includes
     
    3131     * Load the plugin text domain for translation.
    3232     *
    33      * @since    1.0.1
     33     * @since    1.0.2
    3434     */
    3535    public function load_plugin_textdomain() {
  • offload-videos-bunny-netaws-s3/trunk/includes/class-video-uploader-for-tutorlms-loader.php

    r3140306 r3142154  
    55 *
    66 * @link       https://webgarh.com/
    7  * @since      1.0.1
     7 * @since      1.0.2
    88 *
    99 * @package    offload-videos
     
    2727     * The array of actions registered with WordPress.
    2828     *
    29      * @since    1.0.1
     29     * @since    1.0.2
    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.1
     38     * @since    1.0.2
    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.1
     47     * @since    1.0.2
    4848     */
    4949    public function __construct() {
     
    5757     * Add a new action to the collection to be registered with WordPress.
    5858     *
    59      * @since    1.0.1
     59     * @since    1.0.2
    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.1
     73     * @since    1.0.2
    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.1
     88     * @since    1.0.2
    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.1
     115     * @since    1.0.2
    116116     */
    117117    public function run() {
  • offload-videos-bunny-netaws-s3/trunk/offload-video.php

    r3140306 r3142154  
    99 *
    1010 * @link              https://webgarh.com/
    11  * @since             1.0.1
     11 * @since             1.0.2
    1212 * @package           Video_Uploader_For_Tutorlms
    1313 *
     
    1515 * Plugin Name:       Offload Videos-Bunny.net,AWS S3
    1616 * Description:       Upload videos to Bunny.net and AWS S3 storage via using bunny streaming API's and AWS SDK services
    17  * Version:           1.0.1
     17 * Version:           1.0.2
    1818 * Author:            Webgarh Solutions
    1919 * Author URI:        https://webgarh.com/
     
    3030
    3131$PluginTextDomain="offload-videos-bunny-netaws-s3";
    32 define( "OFFLOAD_VIDEO_VERSION", "1.0.1");
     32define( "OFFLOAD_VIDEO_VERSION", "1.0.2");
    3333define("BUNNY_LIBRARY_URL","https://video.bunnycdn.com/library");
    3434define("STREAMING_PLUGIN_PATH",plugin_dir_path( __FILE__ ));
  • offload-videos-bunny-netaws-s3/trunk/public/class-offload-video-public.php

    r3140306 r3142154  
    1212 *
    1313 * @link       https://webgarh.com
    14  * @since      1.0.1
     14 * @since      1.0.2
    1515 *
    1616 * @package    offload-videos
     
    3333     * The ID of this plugin.
    3434     *
    35      * @since    1.0.0
     35     * @since    1.0.2
    3636     * @access   private
    3737     * @var      string    $plugin_name    The ID of this plugin.
     
    4242     * The version of this plugin.
    4343     *
    44      * @since    1.0.0
     44     * @since    1.0.2
    4545     * @access   private
    4646     * @var      string    $version    The current version of this plugin.
     
    5151     * Initialize the class and set its properties.
    5252     *
    53      * @since    1.0.0
     53     * @since    1.0.2
    5454     * @param      string    $plugin_name       The name of the plugin.
    5555     * @param      string    $version    The version of this plugin.
     
    7171     * Register the stylesheets for the public-facing side of the site.
    7272     *
    73      * @since    1.0.0
     73     * @since    1.0.2
    7474     */
    7575    public function offload_video_check_foot_js()
     
    114114     * Register the JavaScript for the public-facing side of the site.
    115115     *
    116      * @since    1.0.0
     116     * @since    1.0.2
    117117     */
    118118    public function offload_video_enqueue_scripts() {
  • offload-videos-bunny-netaws-s3/trunk/uninstall.php

    r3140306 r3142154  
    2121 *
    2222 * @link        https://webgarh.com/
    23  * @since      1.0.1
     23 * @since      1.0.2
    2424 *
    2525 * @package    offload-videos
Note: See TracChangeset for help on using the changeset viewer.