Plugin Directory

Changeset 2839003

Timestamp:
12/24/2022 05:55:59 PM (20 months ago)
Author:
antonlukin
Message:

Update to version 1.1.11 from GitHub

Location:
social-planner
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • social-planner/tags/1.1.11/assets/scripts/metabox.js

    r2624451 r2839003  
    953953
    954954  var subscribeOnSaving = function subscribeOnSaving() {
    955     var editPost = wp.data.select('core/edit-post');
    956 
    957     if (null === editPost) {
    958       return;
    959     }
    960 
    961     var wasSavingPost = editPost.isSavingMetaBoxes();
     955    var wasSavingPost = wp.data.select('core/edit-post').isSavingMetaBoxes();
    962956    wp.data.subscribe(function () {
    963       var isSavingPost = editPost.isSavingMetaBoxes();
     957      var isSavingPost = .isSavingMetaBoxes();
    964958
    965959      if (wasSavingPost && !isSavingPost) {
     
    990984    createAppend(list); // Subscribe and update on Gutenberg post saving.
    991985
    992     subscribeOnSaving();
     986    if (wp.data && wp.data.select('core/edit-post')) {
     987      subscribeOnSaving();
     988    }
    993989  };
    994990
  • social-planner/tags/1.1.11/readme.txt

    r2724910 r2839003  
    44Tags: automation, autopost, auto-post, auto post, socialnetworks, socialnetwork, social networks, social network, facebook, twitter, telegram, vkontakte, vk.com, ok.ru, api, social images, social image, sharing, share, repost, re-post, open graph
    55Requires at least: 5.3
    6 Tested up to: 5.9
    7 Stable tag: 1.1.10
     6Tested up to:
     7Stable tag: 1.1.1
    88Requires PHP: 5.6
    99License: GPLv2 or later
     
    5151== Changelog ==
    5252
     53
     54
     55
    5356= 1.1.10 =
    5457* Replacing invalid `social_poster_prepare_message` filter with `social_planner_prepare_message`
  • social-planner/tags/1.1.11/social-planner.php

    r2724910 r2839003  
    88 * Requires at least: 5.3
    99 * Tested up to: 5.8
    10  * Version: 1.1.10
     10 * Version: 1.1.1
    1111 *
    1212 * Text Domain: social-planner
     
    2929 * Plugin version.
    3030 */
    31 define( 'SOCIAL_PLANNER_VERSION', '1.1.10' );
     31define( 'SOCIAL_PLANNER_VERSION', '1.1.1' );
    3232
    3333/**
  • social-planner/trunk/assets/scripts/metabox.js

    r2624451 r2839003  
    953953
    954954  var subscribeOnSaving = function subscribeOnSaving() {
    955     var editPost = wp.data.select('core/edit-post');
    956 
    957     if (null === editPost) {
    958       return;
    959     }
    960 
    961     var wasSavingPost = editPost.isSavingMetaBoxes();
     955    var wasSavingPost = wp.data.select('core/edit-post').isSavingMetaBoxes();
    962956    wp.data.subscribe(function () {
    963       var isSavingPost = editPost.isSavingMetaBoxes();
     957      var isSavingPost = .isSavingMetaBoxes();
    964958
    965959      if (wasSavingPost && !isSavingPost) {
     
    990984    createAppend(list); // Subscribe and update on Gutenberg post saving.
    991985
    992     subscribeOnSaving();
     986    if (wp.data && wp.data.select('core/edit-post')) {
     987      subscribeOnSaving();
     988    }
    993989  };
    994990
  • social-planner/trunk/readme.txt

    r2724910 r2839003  
    44Tags: automation, autopost, auto-post, auto post, socialnetworks, socialnetwork, social networks, social network, facebook, twitter, telegram, vkontakte, vk.com, ok.ru, api, social images, social image, sharing, share, repost, re-post, open graph
    55Requires at least: 5.3
    6 Tested up to: 5.9
    7 Stable tag: 1.1.10
     6Tested up to:
     7Stable tag: 1.1.1
    88Requires PHP: 5.6
    99License: GPLv2 or later
     
    5151== Changelog ==
    5252
     53
     54
     55
    5356= 1.1.10 =
    5457* Replacing invalid `social_poster_prepare_message` filter with `social_planner_prepare_message`
  • social-planner/trunk/social-planner.php

    r2724910 r2839003  
    88 * Requires at least: 5.3
    99 * Tested up to: 5.8
    10  * Version: 1.1.10
     10 * Version: 1.1.1
    1111 *
    1212 * Text Domain: social-planner
     
    2929 * Plugin version.
    3030 */
    31 define( 'SOCIAL_PLANNER_VERSION', '1.1.10' );
     31define( 'SOCIAL_PLANNER_VERSION', '1.1.1' );
    3232
    3333/**
Note: See TracChangeset for help on using the changeset viewer.