Changeset 541111
- Timestamp:
- 05/07/2012 09:37:24 PM (14 years ago)
- Location:
- ribbon-maker/trunk
- Files:
-
- 7 added
- 3 edited
-
jscolor (added)
-
jscolor/arrow.gif (added)
-
jscolor/cross.gif (added)
-
jscolor/demo.html (added)
-
jscolor/hs.png (added)
-
jscolor/hv.png (added)
-
jscolor/jscolor.js (added)
-
readme.txt (modified) (5 diffs)
-
ribbon-maker.php (modified) (4 diffs)
-
screenshot-2.png (modified) (previous)
Legend:
- Unmodified
- Added
- Removed
-
ribbon-maker/trunk/readme.txt
r539896 r541111 5 5 Requires at Least: 3.0.0 6 6 Tested Up To: 3.3.2 7 Stable tag: 1. 217 Stable tag: 1.30 8 8 9 9 Make your own ribbon now without waiting for a plugin designer to do it for you. … … 11 11 == Description == 12 12 13 A ribbon creation plugin that will allow you to generate your own ribbons in real time for up to 4 corners. They have all of the features of the static ribbons you have enjoyed so far with the exception that you can set the Message, the Link, the Link Title (hover message), toolbar offset, no toolbar offset, the background color and the foreground color. You can also control the visibility of the of ribbon so you don't have to deactivate when it is not in use. The background color is the color of the shapes that make up the ribbon and the foreground color is the color of the text. 13 A ribbon creation/corner decorator plugin that will allow you to generate your own ribbons for each of the 4 corners or you can upload your own graphics. 14 15 = Features = 16 All of the features of the static corner ribbons. 17 Set the Message 18 Set the Link 19 Set the Link 20 Set the Title (hover message) 21 Set the toolbar offset 22 Set no toolbar offset 23 Set the background and foreground color 24 Control the visibility of the of ribbon via (de)activation 25 Use custom images. 26 27 Now with added JSColor color picker! 14 28 15 29 == Installation == … … 25 39 26 40 == Changelog == 41 = 1.30 = 42 Added JSColor picker code to color selection boxes from the LGPL JSColor at JSColor.com. 43 27 44 = 1.22 = 28 45 Added ability to upload custom images. … … 67 84 68 85 == Upgrade Notice == 86 = 1.30 = 87 Now you don't have to imagine what the hex color code is, you can simply pick it from the JSColor picker! 88 69 89 = 1.22 = 70 90 Do this only if you need the ability to upload custom images in place of the ribbons. … … 97 117 = Store for Future = 98 118 Add database routines to store everything you create or upload for future retrieval at any time. Also, needed for scheduling. 99 = Allow Custom Images =100 Decided that allowing you to add a custom image in place of an autogenerated one should be an option. This likely will be in the next release.101 119 = CSS Functionality = 102 120 Switch to a comletely CSS driven routine. Which will solve resolution issues and transparency issues. Because the GD library sucks. For some reason GD is forcing me to use the "black" color for the transparency. It is not agreeing with the code at PHP.net. Going CSS will solve this issue. I just have to wrap my mind around CSS now. :D -
ribbon-maker/trunk/ribbon-maker.php
r539896 r541111 5 5 Description: When activated, this plugin will put a ribbon of your design, message and custom link on the top right corner of your website. 6 6 Author: Al Lamb 7 Version: 1. 227 Version: 1.30 8 8 License: GPLv2 9 9 Author URI: http://bowierocks.com … … 11 11 12 12 function ribbon_maker_getVersion() { 13 return "1. 22";13 return "1.30"; 14 14 } 15 15 … … 191 191 </tr> 192 192 <tr><td>BGCOLOR of Ribbon<br/><span class="ribbon_maker_hint">This is the color of the objects that make up the ribbon.</span></td> 193 <td><input type="text" name="ribbon_maker_bgcolor'.$slot.'" size="10" maxlength=7 value="'.get_option( "ribbon_maker_bgcolor$slot",'000000' ).'"></td>193 <td><input class="color" type="text" name="ribbon_maker_bgcolor'.$slot.'" size="10" maxlength=7 value="'.get_option( "ribbon_maker_bgcolor$slot",'000000' ).'"></td> 194 194 </tr> 195 195 <tr><td>FGCOLOR of Ribbon<br/><span class="ribbon_maker_hint">This is the color of the text comprising the message.</span></td> 196 <td><input type="text" name="ribbon_maker_fgcolor'.$slot.'" size="10" maxlength=7 value="'.get_option( "ribbon_maker_fgcolor$slot",'ffffff' ).'"></td>196 <td><input class="color" type="text" name="ribbon_maker_fgcolor'.$slot.'" size="10" maxlength=7 value="'.get_option( "ribbon_maker_fgcolor$slot",'ffffff' ).'"></td> 197 197 </tr> 198 198 <tr><td>Admin Vertical Offset<br/><span class="ribbon_maker_hint">Enter a positive number to push the ribbon down, negative for up. Suggest 28 to offset the ADMIN bar.</span></td> … … 235 235 function ribbon_maker_admin_head() { 236 236 echo( ' 237 <script type="text/javascript" src="'.plugins_url("jscolor/jscolor.js",__FILE__).'"></script> 237 238 <style type="text/css"> 238 239 .ribbon_maker_admin_hint {
Note: See TracChangeset
for help on using the changeset viewer.