Changeset 2381564
- Timestamp:
- 09/15/2020 12:56:00 AM (6 years ago)
- Location:
- browserly
- Files:
-
- 17 added
- 1 deleted
- 3 edited
-
tags/1.0.0 (added)
-
tags/1.0.0/browserly.php (added)
-
tags/1.0.0/includes (added)
-
tags/1.0.0/includes/customizer.php (added)
-
tags/1.0.0/includes/get-options.php (added)
-
tags/1.0.0/readme.txt (added)
-
tags/1.0.0/uninstall.php (added)
-
tags/1.1.0 (added)
-
tags/1.1.0/browserly.php (added)
-
tags/1.1.0/inc (added)
-
tags/1.1.0/inc/customizer.php (added)
-
tags/1.1.0/inc/get-options.php (added)
-
tags/1.1.0/readme.txt (added)
-
tags/1.1.0/uninstall.php (added)
-
trunk/browserly.php (modified) (2 diffs)
-
trunk/inc (added)
-
trunk/inc/customizer.php (added)
-
trunk/inc/get-options.php (added)
-
trunk/includes (deleted)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/uninstall.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
browserly/trunk/browserly.php
r2378401 r2381564 6 6 * 7 7 * Plugin Name: Browserly 8 * Description: Easily customise the user 's browser, including setting the theme colour, and disabling overscroll or pull-to-refresh features.8 * Description: Easily customise the users browser, including setting the theme colour, and disabling overscroll or pull-to-refresh features. 9 9 * Author: Browserly 10 * Version: 1. 0.010 * Version: 1.1.0 11 11 */ 12 12 … … 16 16 17 17 // Customizer 18 require plugin_dir_path( __FILE__ ) . 'inc ludes/customizer.php';18 require plugin_dir_path( __FILE__ ) . 'inc/customizer.php'; 19 19 20 20 // Get options 21 require plugin_dir_path( __FILE__ ) . 'inc ludes/get-options.php';21 require plugin_dir_path( __FILE__ ) . 'inc/get-options.php'; -
browserly/trunk/readme.txt
r2378411 r2381564 8 8 License URI: https://www.gnu.org/licenses/gpl-2.0.html 9 9 10 Easily customise the user's browser, including setting the theme colour, and disabling overscroll or pull-to-refresh features.10 Browserly allows you to easily customise the users browser, including setting the theme colour, and disabling overscroll or pull-to-refresh features. 11 11 12 12 == Description == 13 13 14 Browserly allows you to easily customise the user 's browser, including setting the theme colour, and disabling overscroll or pull-to-refresh features.14 Browserly allows you to easily customise the users browser, including setting the theme colour, and disabling overscroll or pull-to-refresh features. 15 15 16 < b>Theme Colour:</b>16 <h3>Theme Colour:</h3> 17 17 18 Allow your branding to flow throughout the user 's browser on mobile devices,by adjusting the theme colour of the address and notifications bar.18 Allow your branding to flow throughout the users browser by adjusting the theme colour of the address and notifications bar. 19 19 20 The default theme colour is #FF595E.20 Applies to Chrome, Firefox, Opera, and Windows on mobile devices. The default theme colour is #FF595E. 21 21 22 < b>Scroll Effects:</b>22 <h4>Safari Specific Styling:</h4> 23 23 24 Sometimes the browser's overscroll and pull-to-refresh features have unwanted or even unintended effects on the user experience. These can be easily disabled with a click of a button.24 Easily set the notification bar in Safari on mobile devices to be transparent (theme colour isn't supported in Safari). 25 25 26 <b>Easy Setup:</b> 26 <h3>Scroll Effects:</h3> 27 28 Sometimes the browsers overscroll and pull-to-refresh features have unwanted effects on the user experience. These can be easily disabled site-wide, or by targeting the CSS class of a specific element. 29 30 <h3>Easy Setup:</h3> 27 31 28 32 Browserly can be set up in seconds. All options are available within the WordPress Customizer > Browserly. … … 47 51 1.0.0 48 52 Initial release 53 1.1.0 54 Feature: Safari Specific Styling -
browserly/trunk/uninstall.php
r2378401 r2381564 16 16 $wpdb->query( "DELETE FROM {$wpdb->options} WHERE option_name LIKE 'browserly_pulltorefresh'" ); 17 17 $wpdb->query( "DELETE FROM {$wpdb->options} WHERE option_name LIKE 'browserly_overscroll'" ); 18 $wpdb->query( "DELETE FROM {$wpdb->options} WHERE option_name LIKE 'browserly_safari_notification'" );
Note: See TracChangeset
for help on using the changeset viewer.