Plugin Directory

Changeset 2705198


Ignore:
Timestamp:
04/05/2022 03:28:31 PM (4 years ago)
Author:
pechenki
Message:

add new theme white theme round button

Location:
chat-life-telegram/trunk
Files:
1 added
4 edited

Legend:

Unmodified
Added
Removed
  • chat-life-telegram/trunk/index.php

    r2699569 r2705198  
    99Description: Allows you to make a chat on the site and answer online via Telegram chat
    1010Author: Pechenki
    11 Version: 0.1.1
     11Version: 0.1.2
    1212Author URI: https://pechenki.top/
    1313*/
  • chat-life-telegram/trunk/init.php

    r2682025 r2705198  
    2424     * @var string
    2525     */
    26     public $version = '0.99';
     26    public $version = '0.1.2';
    2727    /**
    2828     * @var ControllerForTelegram
  • chat-life-telegram/trunk/readme.txt

    r2699569 r2705198  
    2424
    2525== Changelog ==
     26= 0.1.2 =
     27* add new theme white theme round button
     28
    2629= 0.1.1 =
    2730 * fix /wp-content/plugins/chat-life-telegram/src/AdminController.php
  • chat-life-telegram/trunk/src/ChatCore.php

    r2682025 r2705198  
    2323        add_filter('sanitize_option_tcl', array($this, 'filter_function_save_option'), 10, 3);
    2424        add_filter('tcl_theme_list', function ($data) {
    25             $data[2] = [
     25            $data[] = [
    2626                'name' => 'Ios',
    2727                'url' => TCL_URL_PLUGIN . 'frontend/css/ios-theme.css',
     28            ];
     29            $data[] = [
     30                'name' => 'White',
     31                'url' => TCL_URL_PLUGIN . 'frontend/css/white-theme.css',
    2832            ];
    2933            return $data;
Note: See TracChangeset for help on using the changeset viewer.