Changeset 643448
- Timestamp:
- 12/22/2012 05:31:31 PM (13 years ago)
- Location:
- google-routeplaner
- Files:
-
- 38 added
- 3 edited
-
tags/2.6 (added)
-
tags/2.6/google-routeplaner-add-route.php (added)
-
tags/2.6/google-routeplaner-doc-page.php (added)
-
tags/2.6/google-routeplaner-edit-route.php (added)
-
tags/2.6/google-routeplaner-js.php (added)
-
tags/2.6/google-routeplaner-list-routes.php (added)
-
tags/2.6/google-routeplaner-main-js.php (added)
-
tags/2.6/google-routeplaner-main-page.php (added)
-
tags/2.6/google-routeplaner-pages.php (added)
-
tags/2.6/google-routeplaner-settings-page.php (added)
-
tags/2.6/google-routeplaner.css (added)
-
tags/2.6/google-routeplaner.php (added)
-
tags/2.6/images (added)
-
tags/2.6/images/delete.png (added)
-
tags/2.6/images/edit.png (added)
-
tags/2.6/images/icon_amazon.png (added)
-
tags/2.6/images/icon_paypal.png (added)
-
tags/2.6/images/icon_wordpress.png (added)
-
tags/2.6/images/preview.png (added)
-
tags/2.6/images/routeplanner_icon16.png (added)
-
tags/2.6/images/routeplanner_icon_grey.png (added)
-
tags/2.6/images/support.png (added)
-
tags/2.6/languages (added)
-
tags/2.6/languages/google_routeplaner-de_DE.mo (added)
-
tags/2.6/languages/google_routeplaner-de_DE.po (added)
-
tags/2.6/languages/google_routeplaner-fr_FR.mo (added)
-
tags/2.6/languages/google_routeplaner-fr_FR.po (added)
-
tags/2.6/languages/google_routeplaner-nl_NL.mo (added)
-
tags/2.6/languages/google_routeplaner-nl_NL.po (added)
-
tags/2.6/languages/google_routeplaner-ro_RO.mo (added)
-
tags/2.6/languages/google_routeplaner-ro_RO.po (added)
-
tags/2.6/languages/google_routeplaner-sk_SK.mo (added)
-
tags/2.6/languages/google_routeplaner-sk_SK.po (added)
-
tags/2.6/readme.txt (added)
-
tags/2.6/screenshot-1.jpg (added)
-
tags/2.6/screenshot-2.jpg (added)
-
tags/2.6/screenshot-3.jpg (added)
-
tags/2.6/screenshot-4.jpg (added)
-
trunk/google-routeplaner-main-page.php (modified) (1 diff)
-
trunk/google-routeplaner.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
google-routeplaner/trunk/google-routeplaner-main-page.php
r643415 r643448 5 5 <h3><?php _e('Changelog', 'google_routeplaner'); ?></h3> 6 6 <div class="inside" style="height: 300px; overflow: auto; overflow-y: scroll;"> 7 <h5>Version 2.6</h5> 8 <ul> 9 <li>Hotfix for trouble with version 2.5</li> 10 </ul> 7 11 <h5>Version 2.5</h5> 8 12 <ul> -
google-routeplaner/trunk/google-routeplaner.php
r643415 r643448 4 4 Plugin URI: http://support.derwebschmied.de 5 5 Description: Allows you to add one or more route planners based on Google Maps to help your users to find a specific place. 6 Version: 2. 56 Version: 2.6 7 7 Author: DerWebschmied 8 8 Author URI: http://support.derwebschmied.de … … 91 91 92 92 function google_routeplaner_update() { 93 global $wpdb; 94 93 95 /* 94 96 * Update old information in the database for version 2 … … 113 115 * Update old information in the database for version 2.5 114 116 */ 115 $wpdb->query('ALTER TABLE `wp_google_routeplaner` ADD `planer_width_unit` VARCHAR( 5 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT \'px\' AFTER `planer_width`'); 116 $wpdb->query('ALTER TABLE `wp_google_routeplaner` ADD `planer_height_unit` VARCHAR( 5 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT \'px\' AFTER `planer_height`'); 117 $wpdb->query('ALTER TABLE `wp_google_routeplaner` ADD `planer_autofill` INT NOT NULL DEFAULT \'0\' AFTER `planer_type_control`'); 118 119 117 $wpdb->query('ALTER TABLE `' . $wpdb->prefix . 'google_routeplaner` ADD `planer_width_unit` VARCHAR( 5 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT \'px\' AFTER `planer_width`'); 118 $wpdb->query('ALTER TABLE `' . $wpdb->prefix . 'google_routeplaner` ADD `planer_height_unit` VARCHAR( 5 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT \'px\' AFTER `planer_height`'); 119 $wpdb->query('ALTER TABLE `' . $wpdb->prefix . 'google_routeplaner` ADD `planer_autofill` INT NOT NULL DEFAULT \'0\' AFTER `planer_type_control`'); 120 120 121 } 121 122 -
google-routeplaner/trunk/readme.txt
r643415 r643448 5 5 Requires at least: 3.0 6 6 Tested up to: 3.4.2 7 Stable tag: 2. 57 Stable tag: 2.6 8 8 License: Feel free to edit for personal use 9 9
Note: See TracChangeset
for help on using the changeset viewer.