Changeset 2919235
- Timestamp:
- 05/30/2023 05:50:29 PM (3 years ago)
- Location:
- dash-todo
- Files:
-
- 4 edited
- 1 copied
-
tags/1.0.7 (copied) (copied from dash-todo/trunk)
-
tags/1.0.7/README.txt (modified) (2 diffs)
-
tags/1.0.7/dash-todo.php (modified) (3 diffs)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/dash-todo.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
dash-todo/tags/1.0.7/README.txt
r2919231 r2919235 53 53 * Fix: Plugin Menu Link 54 54 * Update: Initial todo items with due date and priority. 55 55 = 1.0.7 = 56 Fix: Installation hook 56 57 == Upgrade Notice == 57 58 … … 68 69 = 1.0.6 = 69 70 New Features to set todo priority and due date. 71 = 1.0.7 = 72 Fix: Installation hook -
dash-todo/tags/1.0.7/dash-todo.php
r2919231 r2919235 9 9 * Author: Sharif Mohammad Eunus 10 10 * Author URI: https://sharifff.com 11 * Version: 1.0. 611 * Version: 1.0.7 12 12 * Requires at least: 5.9 13 13 * Tested up to: 6.2 … … 27 27 define('DASH_TODO_PLUGIN_FILE', __FILE__); 28 28 define('DASH_TODO_PLUGIN_DIR', __DIR__); 29 define('DASH_TODO_PLUGIN_VERSION', '1.0. 6');29 define('DASH_TODO_PLUGIN_VERSION', '1.0.7'); 30 30 31 31 … … 55 55 ] 56 56 ]; 57 if ( true) {57 if (!$installed) { 58 58 update_option('dash_todo_installed', time()); 59 59 foreach ($initial_todo_items as $item) { -
dash-todo/trunk/README.txt
r2919231 r2919235 53 53 * Fix: Plugin Menu Link 54 54 * Update: Initial todo items with due date and priority. 55 55 = 1.0.7 = 56 Fix: Installation hook 56 57 == Upgrade Notice == 57 58 … … 68 69 = 1.0.6 = 69 70 New Features to set todo priority and due date. 71 = 1.0.7 = 72 Fix: Installation hook -
dash-todo/trunk/dash-todo.php
r2919231 r2919235 9 9 * Author: Sharif Mohammad Eunus 10 10 * Author URI: https://sharifff.com 11 * Version: 1.0. 611 * Version: 1.0.7 12 12 * Requires at least: 5.9 13 13 * Tested up to: 6.2 … … 27 27 define('DASH_TODO_PLUGIN_FILE', __FILE__); 28 28 define('DASH_TODO_PLUGIN_DIR', __DIR__); 29 define('DASH_TODO_PLUGIN_VERSION', '1.0. 6');29 define('DASH_TODO_PLUGIN_VERSION', '1.0.7'); 30 30 31 31 … … 55 55 ] 56 56 ]; 57 if ( true) {57 if (!$installed) { 58 58 update_option('dash_todo_installed', time()); 59 59 foreach ($initial_todo_items as $item) {
Note: See TracChangeset
for help on using the changeset viewer.