Plugin Directory

Changeset 3185422


Ignore:
Timestamp:
11/11/2024 06:01:21 AM (16 months ago)
Author:
fromgate
Message:

Update to version 1.2.6 (Plugin renamed)

Location:
widget-for-yandex-zen
Files:
26 added
3 edited

Legend:

Unmodified
Added
Removed
  • widget-for-yandex-zen/trunk/css/widget-for-yandex-zen.css

    r3182567 r3185422  
    7777    padding: 8px;
    7878    text-align: left;
    79     background-color: #f8f8f8;
    8079    display: flex;
    8180    align-items: center;
  • widget-for-yandex-zen/trunk/readme.txt

    r3182569 r3185422  
    33Tags: widget, zen, dzen, дзен, виджет
    44Donate link: https://goo.gl/xKTWQJ
    5 Stable tag: 1.2.7
     5Stable tag: 1.2.8
    66Requires at least: 4.9
    77Tested up to: 6.6.2
     
    3939
    4040== Changelog ==
     41= v1.2.8 =
     42* Removed background color for caption displayed below the image in order to make it compatible with dark theme sites.
    4143= v1.2.7 =
    42 Added four distinct card styles with customizable options, replacing the previously singular style.
    43 Updated Zen logo images to the latest version; outdated logos have been removed.
    44 Optimized internal code for better performance and cleaner URL handling.
     44* Added four distinct card styles with customizable options, replacing the previously singular style.
     45* Updated Zen logo images to the latest version; outdated logos have been removed.
     46* Optimized internal code for better performance and cleaner URL handling.
    4547= v1.2.6 =
    4648* Updated naming according to rename Yandex Zen into Zen.
  • widget-for-yandex-zen/trunk/widget-for-yandex-zen.php

    r3182584 r3185422  
    55Plugin URI: https://wordpress.org/plugins/widget-for-yandex-zen/
    66Description: This plugin provides Widget for Zen Blogging Platform.
    7 Version: 1.2.7
     7Version: 1.2.8
    88Author: fromgate
    99Author URI: https://prozen.ru
     
    218218
    219219function register_zen_widget_styles() {
    220     wp_register_style( 'zenwidgetcss', plugins_url( 'css/widget-for-yandex-zen.css', __FILE__ ) );
     220    $plugin_data = get_plugin_data( __FILE__ );
     221    $plugin_version = $plugin_data['Version'];
     222
     223    wp_register_style(
     224        'zenwidgetcss',
     225        plugins_url( 'css/widget-for-yandex-zen.css', __FILE__ ),
     226        array(),
     227        $plugin_version
     228    );
    221229    wp_enqueue_style( 'zenwidgetcss' );
    222230}
Note: See TracChangeset for help on using the changeset viewer.