Changeset 517155
- Timestamp:
- 03/10/2012 08:27:25 AM (14 years ago)
- Location:
- worldcurrency
- Files:
-
- 2 edited
- 8 copied
-
tags/1.10 (copied) (copied from worldcurrency/trunk)
-
tags/1.10/currencies.inc.php (copied) (copied from worldcurrency/trunk/currencies.inc.php)
-
tags/1.10/ip2c (copied) (copied from worldcurrency/trunk/ip2c)
-
tags/1.10/readme.txt (copied) (copied from worldcurrency/trunk/readme.txt) (2 diffs)
-
tags/1.10/worldcurrency-admin.php (copied) (copied from worldcurrency/trunk/worldcurrency-admin.php)
-
tags/1.10/worldcurrency.php (copied) (copied from worldcurrency/trunk/worldcurrency.php) (2 diffs)
-
tags/1.10/worldcurrency.widget.php (copied) (copied from worldcurrency/trunk/worldcurrency.widget.php)
-
tags/1.10/yahoofinance.class.php (copied) (copied from worldcurrency/trunk/yahoofinance.class.php)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/worldcurrency.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
worldcurrency/tags/1.10/readme.txt
r512360 r517155 5 5 Requires at least: 2.8.0 6 6 Tested up to: 3.3.1 7 Stable tag: 1. 97 Stable tag: 1.10 8 8 9 9 Recognises users by IP address and shows them converted values in their local currency, you can write post/pages in multiple currencies. … … 92 92 == Changelog == 93 93 94 = 1.9 (29th February 2012) = 94 = 1.10 (10 March 2012) = 95 * Added: it is possible to add "wc_force" = 1 custom field to post to force the loading of worldcurrency code, in case of conflict with other plugins 96 97 = 1.9 (29 February 2012) = 95 98 * Added: is now possible to choose the decimal and thousands separator for the output formatting 96 99 97 = 1.8 (29 thFebruary 2012) =100 = 1.8 (29 February 2012) = 98 101 * Fix: ajax was not working if wordpress admin is under forced SSL with: define('FORCE_SSL_LOGIN', true); 99 102 * Added: possibility to choose to make ajax calls over SSL 100 103 * Added: Fijian dollar (FJD) - if using historic rates you shuld delete "wc_rates" custom field in each post to have it updated with the new currency 101 104 102 = 1.7 (28 thFebruary 2012) =105 = 1.7 (28 February 2012) = 103 106 * Fix: now plugin uses wordpress ajax handler and should work also with wp-config.php in different locations 104 107 105 = 1.6 (22 thFebruary 2012) =108 = 1.6 (22 February 2012) = 106 109 * Added option to use a jQuery.noconflict to increase compatibility with other themes/plugins 107 110 108 = 1.5 (21 thFebruary 2012) =111 = 1.5 (21 February 2012) = 109 112 * Hides the widget if no currency on page/post 110 113 111 = 1.4 (20t hFebruary 2012) =114 = 1.4 (20t February 2012) = 112 115 * Estetic improvements 113 116 114 = 1.2 (20 thFebruary 2012) =117 = 1.2 (20 February 2012) = 115 118 * Minor corrections 116 119 * Possibility to choose to hide conversion if target and origin currency are the same 117 120 118 = 1.1 (20 thFebruary 2012) =121 = 1.1 (20 February 2012) = 119 122 * Minor improvements and Currency selection box shorttag 120 123 121 = 1.0 (19 thFebruary 2012) =124 = 1.0 (19 February 2012) = 122 125 * Initial Release 123 126 -
worldcurrency/tags/1.10/worldcurrency.php
r512360 r517155 4 4 Plugin URI: http://www.cometicucinoilweb.it/blog/en/worldcurrency-plugin-for-wordpress/ 5 5 Description: Recognises users by IP address and shows them converted values in their local currency, you can write post/pages in multiple currencies. 6 Version: 1. 97 Date: 29th February20126 Version: 1.10 7 Date: 10 March 2012 8 8 Author: Daniele Tieghi 9 9 Author URI: http://www.cometicucinoilweb.it/blog/chi-siamo/daniele-tieghi/ … … 106 106 107 107 // Include the script only if necessary 108 if ( strpos($post->post_content, 'worldcurrency') !== false) {108 if (get_post_meta($post->ID, 'wc_force', true) == 1 || strpos($post->post_content, 'worldcurrency') !== false) { 109 109 110 110 $usercurrency = dt_wc_userlocation(); -
worldcurrency/trunk/readme.txt
r512360 r517155 5 5 Requires at least: 2.8.0 6 6 Tested up to: 3.3.1 7 Stable tag: 1. 97 Stable tag: 1.10 8 8 9 9 Recognises users by IP address and shows them converted values in their local currency, you can write post/pages in multiple currencies. … … 92 92 == Changelog == 93 93 94 = 1.9 (29th February 2012) = 94 = 1.10 (10 March 2012) = 95 * Added: it is possible to add "wc_force" = 1 custom field to post to force the loading of worldcurrency code, in case of conflict with other plugins 96 97 = 1.9 (29 February 2012) = 95 98 * Added: is now possible to choose the decimal and thousands separator for the output formatting 96 99 97 = 1.8 (29 thFebruary 2012) =100 = 1.8 (29 February 2012) = 98 101 * Fix: ajax was not working if wordpress admin is under forced SSL with: define('FORCE_SSL_LOGIN', true); 99 102 * Added: possibility to choose to make ajax calls over SSL 100 103 * Added: Fijian dollar (FJD) - if using historic rates you shuld delete "wc_rates" custom field in each post to have it updated with the new currency 101 104 102 = 1.7 (28 thFebruary 2012) =105 = 1.7 (28 February 2012) = 103 106 * Fix: now plugin uses wordpress ajax handler and should work also with wp-config.php in different locations 104 107 105 = 1.6 (22 thFebruary 2012) =108 = 1.6 (22 February 2012) = 106 109 * Added option to use a jQuery.noconflict to increase compatibility with other themes/plugins 107 110 108 = 1.5 (21 thFebruary 2012) =111 = 1.5 (21 February 2012) = 109 112 * Hides the widget if no currency on page/post 110 113 111 = 1.4 (20t hFebruary 2012) =114 = 1.4 (20t February 2012) = 112 115 * Estetic improvements 113 116 114 = 1.2 (20 thFebruary 2012) =117 = 1.2 (20 February 2012) = 115 118 * Minor corrections 116 119 * Possibility to choose to hide conversion if target and origin currency are the same 117 120 118 = 1.1 (20 thFebruary 2012) =121 = 1.1 (20 February 2012) = 119 122 * Minor improvements and Currency selection box shorttag 120 123 121 = 1.0 (19 thFebruary 2012) =124 = 1.0 (19 February 2012) = 122 125 * Initial Release 123 126 -
worldcurrency/trunk/worldcurrency.php
r512360 r517155 4 4 Plugin URI: http://www.cometicucinoilweb.it/blog/en/worldcurrency-plugin-for-wordpress/ 5 5 Description: Recognises users by IP address and shows them converted values in their local currency, you can write post/pages in multiple currencies. 6 Version: 1. 97 Date: 29th February20126 Version: 1.10 7 Date: 10 March 2012 8 8 Author: Daniele Tieghi 9 9 Author URI: http://www.cometicucinoilweb.it/blog/chi-siamo/daniele-tieghi/ … … 106 106 107 107 // Include the script only if necessary 108 if ( strpos($post->post_content, 'worldcurrency') !== false) {108 if (get_post_meta($post->ID, 'wc_force', true) == 1 || strpos($post->post_content, 'worldcurrency') !== false) { 109 109 110 110 $usercurrency = dt_wc_userlocation();
Note: See TracChangeset
for help on using the changeset viewer.