Changeset 588492
- Timestamp:
- 08/21/2012 06:24:03 PM (14 years ago)
- Location:
- teleport/tags
- Files:
-
- 2 edited
- 13 copied
-
1.2.1/readme.txt (modified) (3 diffs)
-
1.2.1/teleport.php (modified) (2 diffs)
-
1.2.2 (copied) (copied from teleport/trunk)
-
1.2.2/css (copied) (copied from teleport/trunk/css)
-
1.2.2/css/style.css (copied) (copied from teleport/trunk/css/style.css)
-
1.2.2/images (copied) (copied from teleport/trunk/images)
-
1.2.2/images/dknewmedia.png (copied) (copied from teleport/trunk/images/dknewmedia.png)
-
1.2.2/images/wordpress.png (copied) (copied from teleport/trunk/images/wordpress.png)
-
1.2.2/js (copied) (copied from teleport/trunk/js)
-
1.2.2/js/script.js (copied) (copied from teleport/trunk/js/script.js)
-
1.2.2/readme.txt (copied) (copied from teleport/trunk/readme.txt)
-
1.2.2/screenshot-1.png (copied) (copied from teleport/trunk/screenshot-1.png)
-
1.2.2/screenshot-2.png (copied) (copied from teleport/trunk/screenshot-2.png)
-
1.2.2/screenshot-3.png (copied) (copied from teleport/trunk/screenshot-3.png)
-
1.2.2/teleport.php (copied) (copied from teleport/trunk/teleport.php)
Legend:
- Unmodified
- Added
- Removed
-
teleport/tags/1.2.1/readme.txt
r588182 r588492 4 4 Requires at least: 2.0.2 5 5 Tested up to: 3.4.1 6 Stable tag: 1.2. 17 Version: 1.2. 16 Stable tag: 1.2.2 7 Version: 1.2.2 8 8 License: GPLv2 9 9 … … 89 89 * Fixes major bug that outputs error messages 90 90 91 = 1.2.2 = 92 93 * Added title attributes to the Teleport buttons 94 91 95 92 96 == Upgrade Notice == … … 108 112 = 1.2.1 = 109 113 Urgent update! If you're running 1.2, please update now. This update fixes a bug that outputs unexpected errors. 114 115 = 1.2.2 = 116 This update adds title tags to the Teleport buttons. If you forget which button does what, you can now hover over the button to see it's function. -
teleport/tags/1.2.1/teleport.php
r588182 r588492 4 4 Plugin URI: http://wordpress.org/extend/plugins/teleport/ 5 5 Description: Teleport is all about getting around WordPress quickly! It uses keyboard shortcuts to get you to the most important places with just two taps. The intuitive teleporter is arranged exactly like the keyboard shortcuts - the e, d, s, a, and q keys make a 'u' shape around the w key. This matches the layout the teleporter. <strong>To get started:</strong> 1) Activate the plugin. 2) Go to your homepage. 3) Once the page has finished loading, press "w". This will activate the teleporter. To learn more about the teleporter, read the plugin documentation. 6 Version: 1.2. 16 Version: 1.2.2 7 7 Author: Stephen Coley 8 8 Author URI: http://dknewmedia.com … … 105 105 </div> 106 106 <div id="teleport_first" class="teleport_button"> 107 <div id="teleport_icon_first" class="teleport_icon" data-url="' . teleport_url(get_bloginfo('wpurl') . '/wp-admin/options-general.php') . '" ></div>107 <div id="teleport_icon_first" class="teleport_icon" data-url="' . teleport_url(get_bloginfo('wpurl') . '/wp-admin/options-general.php') . '" title="Settings"></div> 108 108 </div> 109 109 <div id="teleport_second" class="teleport_button"> 110 <div id="teleport_icon_second" class="teleport_icon" data-url="' . teleport_url(get_bloginfo('wpurl') . '/wp-admin/index.php') . '" ></div>110 <div id="teleport_icon_second" class="teleport_icon" data-url="' . teleport_url(get_bloginfo('wpurl') . '/wp-admin/index.php') . '" title="Dashboard"></div> 111 111 </div> 112 112 <div id="teleport_third" class="teleport_button"> 113 <div id="teleport_icon_third" class="teleport_icon" data-url="' . teleport_url($edit) . '" ></div>113 <div id="teleport_icon_third" class="teleport_icon" data-url="' . teleport_url($edit) . '" title="Edit"></div> 114 114 </div> 115 115 <div id="teleport_fourth" class="teleport_button"> 116 <div id="teleport_icon_fourth" class="teleport_icon" data-url="' . $logger . '" ></div>116 <div id="teleport_icon_fourth" class="teleport_icon" data-url="' . $logger . '" title="Log in/out"></div> 117 117 </div> 118 118 <div id="teleport_fifth" class="teleport_button"> 119 <div id="teleport_icon_fifth" class="teleport_icon" data-url="' . teleport_url($archive) . '" ></div>119 <div id="teleport_icon_fifth" class="teleport_icon" data-url="' . teleport_url($archive) . '" title="Archive"></div> 120 120 </div> 121 121 </div>';
Note: See TracChangeset
for help on using the changeset viewer.