Changeset 1195058
- Timestamp:
- 07/08/2015 11:05:19 PM (11 years ago)
- Location:
- design-feedback/trunk
- Files:
-
- 10 edited
-
README.txt (modified) (7 diffs)
-
admin/class-design-feedback-admin.php (modified) (3 diffs)
-
admin/partials/design-feedback-admin-display.php (modified) (1 diff)
-
includes/class-design-feedback-activator.php (modified) (1 diff)
-
includes/class-design-feedback-deactivator.php (modified) (1 diff)
-
includes/class-design-feedback-handler.php (modified) (1 diff)
-
includes/class-design-feedback-i18n.php (modified) (1 diff)
-
includes/class-design-feedback-loader.php (modified) (1 diff)
-
includes/class-design-feedback.php (modified) (2 diffs)
-
public/class-design-feedback-public.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
design-feedback/trunk/README.txt
r1189424 r1195058 1 === Design Feedback===2 Contributors: designfeedback3 Tags: design, feedback, mockup, client, wireframe, design review, comment, webdesign, freelancer, freelancers, graphic artists, graphic designers, graphics, image, images, logo design, mood boards, infographics 1 === Cycles === 2 Contributors: Cycles 3 Tags: design, feedback, mockup, client, wireframe, design review, comment, webdesign, freelancer, freelancers, graphic artists, graphic designers, graphics, image, images, logo design, mood boards, infographics, design feedback, cycles 4 4 Requires at least: 4.0 5 5 Tested up to: 4.2 6 Stable tag: 1.0. 16 Stable tag: 1.0.2 7 7 License: GPLv2 or later 8 8 … … 11 11 == Description == 12 12 13 [ Design Feedback](http://designfeedbackplugin.com/) allows you to easily share any design (mockups, wireframes, sitemaps) without the complexity of email attachments or third-party services. Clients and colleagues view your work in their browser and post feedback directly on your designs.13 [Cycles](http://getCycles.io/) allows you to easily share any design (mockups, wireframes, sitemaps) without the complexity of email attachments or third-party services. Clients and colleagues view your work in their browser and post feedback directly on your designs. 14 14 15 15 * **Simple Sharing** - Send links (not attachments) to any design you can think of. Share logos, sitemaps, wireframes, mockups, stock photography, and more. … … 19 19 * **Happy Clients** - Delight your clients with easy to open designs and a simple feedback process. No more missing files, back and forth emails, miscommunication or lost feedback. 20 20 21 #### Follow Design Feedback22 [Blog](http:// designfeedbackplugin.com/blog/) | [Twitter](http://twitter.com/wpDFP)21 #### Follow Cycles 22 [Blog](http://getCycles.io/blog/) | [Twitter](http://twitter.com/getCycles) 23 23 24 24 == Installation == 25 25 26 1. Upload the entire ` design-feedback` folder to the `/wp-content/plugins/` directory26 1. Upload the entire `cycles` folder to the `/wp-content/plugins/` directory 27 27 2. Activate the plugin through the `Plugins` menu in WordPress 28 3. Done! Use the Design Feedback option in the admin sidebar to upload and share your designs.28 3. Done! Use the Cycles menu option in the admin sidebar to upload and share your designs. 29 29 30 30 == Screenshots == … … 36 36 == Frequently Asked Questions == 37 37 38 Thank you for installing and using the [ Design Feedback plugin for WordPress](http://designfeedbackplugin.com). If you're having trouble and can't find a solution below, please create a support topic (link below). We closely monitor and will respond as soon as possible.38 Thank you for installing and using the [Cycles plugin for WordPress](http://getCycles.io). If you're having trouble and can't find a solution below, please create a support topic (link below). We closely monitor and will respond as soon as possible. 39 39 40 For other issues, questions, suggestions, feedback, please email us at [info@ designfeedbackplugin.com](info@designfeedbackplugin.com).40 For other issues, questions, suggestions, feedback, please email us at [info@getCycles.io](info@getCycles.io). 41 41 42 42 **How do I get started?** 43 43 44 Once you've installed the plugin, sharing designs with clients is easy. Go to Design Feedback in the sidebar, and click add new (`Design Feedback> Add New`). Give your design a name (clients will see this) and add an image. You can optionally adjust the share URL to make it more client friendly. Finally, click "save" and you're ready to share and receive feedback.44 Once you've installed the plugin, sharing designs with clients is easy. Go to 'Cycles' in the sidebar, and click add new (`Cycles > Add New`). Give your design a name (clients will see this) and add an image. You can optionally adjust the share URL to make it more client friendly. Finally, click "save" and you're ready to share and receive feedback. 45 45 46 46 **Do clients need to register an account?** … … 50 50 **What kind of images are supported?** 51 51 52 Design Feedbackworks with most image types supported by WordPress, such as JPEG, GIF, PNG, and BMP.52 Cycles works with most image types supported by WordPress, such as JPEG, GIF, PNG, and BMP. 53 53 54 54 **What kind of designs can I share?** … … 72 72 == Change Log == 73 73 74 = 1.0.2 = 75 * New Name: Design Feedback is now called Cycles. 76 74 77 = 1.0.1 = 75 78 * Enhanced: Feedback dialog has cleaner styling … … 84 87 == Upgrade Notice == 85 88 86 = 1.0. 1=87 Cleaner feedback dialog styling and fixed minor image display and line break bugs.89 = 1.0.2 = 90 New name - Design Feedback is now called Cycles. -
design-feedback/trunk/admin/class-design-feedback-admin.php
r1189418 r1195058 4 4 * The admin-specific functionality of the plugin. 5 5 * 6 * @link http:// designfeedbackplugin.com6 * @link http://getCycles.io 7 7 * @since 0.1 8 8 * … … 84 84 array( 85 85 'labels' => array( 86 'name' => __( ' Design Feedback' ),86 'name' => __( 'Cycles' ), 87 87 'singular_name' => __( 'design' ), 88 'menu_name' => __( ' Design Feedback' ),89 'name_admin_bar'=> __( ' Design Feedback' ),88 'menu_name' => __( 'Cycles' ), 89 'name_admin_bar'=> __( 'Cycles' ), 90 90 'all_items' => __( 'All Designs' ), 91 91 'new_item' => __( 'Add New Design' ), … … 344 344 345 345 </script> 346 <a href = "http://designfeedbackplugin.com/" target = "_blank">Design Feedback</a> | v1.0347 346 EOD; 348 347 -
design-feedback/trunk/admin/partials/design-feedback-admin-display.php
r1181560 r1195058 6 6 * This file is used to markup the admin-facing aspects of the plugin. 7 7 * 8 * @link http:// designfeedbackplugin.com8 * @link http://getCycles.io 9 9 * @since 0.1 10 10 * -
design-feedback/trunk/includes/class-design-feedback-activator.php
r1181560 r1195058 4 4 * Fired during plugin activation 5 5 * 6 * @link http:// designfeedbackplugin.com6 * @link http://getCycles.io 7 7 * @since 0.1 8 8 * -
design-feedback/trunk/includes/class-design-feedback-deactivator.php
r1181560 r1195058 4 4 * Fired during plugin deactivation 5 5 * 6 * @link http:// designfeedbackplugin.com6 * @link http://getCycles.io 7 7 * @since 0.1 8 8 * -
design-feedback/trunk/includes/class-design-feedback-handler.php
r1181560 r1195058 7 7 * public-facing side of the site and the admin area. 8 8 * 9 * @link http:// designfeedbackplugin.com9 * @link http://getCycles.io 10 10 * @since 0.1 11 11 * -
design-feedback/trunk/includes/class-design-feedback-i18n.php
r1181560 r1195058 7 7 * so that it is ready for translation. 8 8 * 9 * @link http:// designfeedbackplugin.com9 * @link http://getCycles.io 10 10 * @since 0.1 11 11 * -
design-feedback/trunk/includes/class-design-feedback-loader.php
r1181560 r1195058 4 4 * Register all actions and filters for the plugin 5 5 * 6 * @link http:// designfeedbackplugin.com6 * @link http://getCycles.io 7 7 * @since 0.1 8 8 * -
design-feedback/trunk/includes/class-design-feedback.php
r1181566 r1195058 7 7 * public-facing side of the site and the admin area. 8 8 * 9 * @link http:// designfeedbackplugin.com9 * @link http://getCycles.io 10 10 * @since 0.1 11 11 * … … 43 43 public function __construct() { 44 44 45 $this->plugin_name = 'design -feedback';46 $this->version = '1.0 ';45 $this->plugin_name = 'designfeedback'; 46 $this->version = '1.0.2'; 47 47 48 48 $this->load_dependencies(); -
design-feedback/trunk/public/class-design-feedback-public.php
r1189418 r1195058 4 4 * The public-facing functionality of the plugin. 5 5 * 6 * @link http:// designfeedbackplugin.com6 * @link http://getCycles.io 7 7 * @since 0.1 8 8 * 9 9 * @package Design_Feedback 10 10 * @subpackage Design_Feedbacke/admin 11 * @author Design Feedback11 * @author Cycles 12 12 */ 13 13
Note: See TracChangeset
for help on using the changeset viewer.