Plugin Directory

Changeset 2919235


Ignore:
Timestamp:
05/30/2023 05:50:29 PM (3 years ago)
Author:
smeunus
Message:

Update to version 1.0.7 from GitHub

Location:
dash-todo
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • dash-todo/tags/1.0.7/README.txt

    r2919231 r2919235  
    5353* Fix: Plugin Menu Link
    5454* Update: Initial todo items with due date and priority.
    55 
     55= 1.0.7 =
     56Fix: Installation hook
    5657== Upgrade Notice ==
    5758
     
    6869= 1.0.6 =
    6970New Features to set todo priority and due date.
     71= 1.0.7 =
     72Fix: Installation hook
  • dash-todo/tags/1.0.7/dash-todo.php

    r2919231 r2919235  
    99 * Author:            Sharif Mohammad Eunus
    1010 * Author URI:       https://sharifff.com
    11  * Version:           1.0.6
     11 * Version:           1.0.7
    1212 * Requires at least: 5.9
    1313 * Tested up to:      6.2
     
    2727define('DASH_TODO_PLUGIN_FILE', __FILE__);
    2828define('DASH_TODO_PLUGIN_DIR', __DIR__);
    29 define('DASH_TODO_PLUGIN_VERSION', '1.0.6');
     29define('DASH_TODO_PLUGIN_VERSION', '1.0.7');
    3030
    3131
     
    5555        ]
    5656    ];
    57     if (true) {
     57    if (!$installed) {
    5858        update_option('dash_todo_installed', time());
    5959        foreach ($initial_todo_items as $item) {
  • dash-todo/trunk/README.txt

    r2919231 r2919235  
    5353* Fix: Plugin Menu Link
    5454* Update: Initial todo items with due date and priority.
    55 
     55= 1.0.7 =
     56Fix: Installation hook
    5657== Upgrade Notice ==
    5758
     
    6869= 1.0.6 =
    6970New Features to set todo priority and due date.
     71= 1.0.7 =
     72Fix: Installation hook
  • dash-todo/trunk/dash-todo.php

    r2919231 r2919235  
    99 * Author:            Sharif Mohammad Eunus
    1010 * Author URI:       https://sharifff.com
    11  * Version:           1.0.6
     11 * Version:           1.0.7
    1212 * Requires at least: 5.9
    1313 * Tested up to:      6.2
     
    2727define('DASH_TODO_PLUGIN_FILE', __FILE__);
    2828define('DASH_TODO_PLUGIN_DIR', __DIR__);
    29 define('DASH_TODO_PLUGIN_VERSION', '1.0.6');
     29define('DASH_TODO_PLUGIN_VERSION', '1.0.7');
    3030
    3131
     
    5555        ]
    5656    ];
    57     if (true) {
     57    if (!$installed) {
    5858        update_option('dash_todo_installed', time());
    5959        foreach ($initial_todo_items as $item) {
Note: See TracChangeset for help on using the changeset viewer.