Plugin Directory

Changeset 2326100


Ignore:
Timestamp:
06/17/2020 08:46:07 PM (6 years ago)
Author:
agentevolution
Message:

Version 2.5.2 update

Location:
wp-listings
Files:
12 edited
1 copied

Legend:

Unmodified
Added
Removed
  • wp-listings/tags/2.5.2/README.md

    r2322612 r2326100  
    1212**Tested up to:** 5.4.1
    1313
    14 **Stable tag:** 2.5.1
     14**Stable tag:** 2.5.2
    1515
    1616**Requires PHP:** 5.6
     
    190190
    191191## Changelog ##
     192
     193## 2.5.2 ##
     194*Released 6-17-2020*
     195* Fix: Resolves minor styling issue on Google My Business scheduling page
    192196
    193197## 2.5.1 ##
  • wp-listings/tags/2.5.2/includes/class-listings.php

    r2322612 r2326100  
    136136            $idx_api = new \IDX\Idx_Api();
    137137            if ( $idx_api->platinum_account_type() ) {
    138                 add_submenu_page( 'edit.php?post_type=listing', __( 'Google My Business', 'wp-listings' ), __( 'Google My Business', 'wp-listings' ), 'manage_options', $this->gmb_settings_page, array( &$this, 'gmb_settings_page' ) );
     138                add_submenu_page( 'edit.php?post_type=listing', __( 'IMPress Listings - Google My Business', 'wp-listings' ), __( '<small style="color:#8dc541;">beta</small><br>Google My Business', 'wp-listings' ), 'manage_options', $this->gmb_settings_page, array( &$this, 'gmb_settings_page' ) );
    139139            }
    140140        }
  • wp-listings/tags/2.5.2/includes/css/wp-listings-gmb-admin.css

    r2322612 r2326100  
    11#post-body #post-body-content {
    22  margin-right: 0px;
     3}
     4
     5.gmb-settings-page-header-container {
     6  display: flex;
     7  align-items: center;
     8  justify-content: center;
     9}
     10
     11.gmb-settings-page-header-container > .gmb-settings-page-header {
     12  padding: 0px;
     13}
     14
     15.beta-label-tag {
     16  color: white;
     17  background-color: #8dc541;
     18  font-weight: bold;
     19  border-radius: 4px;
     20  margin-left: 4px;
     21  font-size: 0.7em;
     22  display: flex;
     23  align-items: center;
     24  justify-content: center;
     25  padding: 3px 6px;
    326}
    427
     
    660683
    661684.preview-container-label strong {
    662   margin-bottom: 5px;
    663685  font-size: 1.2em;
    664 }
    665 
    666 #clear-schedule-button:active {
    667   background-color: lightsalmon;
    668686}
    669687
     
    707725  background-color: white;
    708726  border: solid 2px tomato;
     727}
     728
     729#new-custom-post-button {
     730  background-color: rebeccapurple;
     731}
     732
     733#new-custom-post-button:hover {
     734  color: rebeccapurple;
     735  background-color: white;
     736  border: solid 2px rebeccapurple;
    709737}
    710738
  • wp-listings/tags/2.5.2/includes/views/wp-listings-gmb-settings.php

    r2322612 r2326100  
    55<div id="icon-options-general" class="icon32"></div>
    66<div class="wrap">
    7     <h1><?php _e( 'IMPress Listings - Google My Business Settings', 'wp-listings' ); ?></h1>
     7
     8    <div class="gmb-settings-page-header-container">
     9        <h1 class="gmb-settings-page-header"><?php esc_attr_e( 'IMPress Listings - Google My Business Settings', 'wp-listings' ); ?></h1>
     10        <div class="beta-label-tag">
     11            beta
     12        </div>
     13    </div>
    814    <hr>
    915    <div id="poststuff" class="metabox-holder has-right-sidebar">
  • wp-listings/tags/2.5.2/plugin.php

    r2322612 r2326100  
    88    Text Domain: wp-listings
    99
    10     Version: 2.5.1
     10    Version: 2.5.2
    1111
    1212    License: GNU General Public License v2.0 (or later)
  • wp-listings/tags/2.5.2/readme.txt

    r2322612 r2326100  
    66Requires at least: 4.0
    77Tested up to: 5.4.1
    8 Stable tag: 2.5.1
     8Stable tag: 2.5.2
    99Requires PHP: 5.6
    1010License: GPLv2 or later
     
    203203
    204204== Changelog ==
     205
     206= 2.5.2 =
     207*Released 6-17-2020*
     208* Fix: Resolves minor styling issue on Google My Business scheduling page
    205209
    206210= 2.5.1 =
  • wp-listings/trunk/README.md

    r2322612 r2326100  
    1212**Tested up to:** 5.4.1
    1313
    14 **Stable tag:** 2.5.1
     14**Stable tag:** 2.5.2
    1515
    1616**Requires PHP:** 5.6
     
    190190
    191191## Changelog ##
     192
     193## 2.5.2 ##
     194*Released 6-17-2020*
     195* Fix: Resolves minor styling issue on Google My Business scheduling page
    192196
    193197## 2.5.1 ##
  • wp-listings/trunk/includes/class-listings.php

    r2322612 r2326100  
    136136            $idx_api = new \IDX\Idx_Api();
    137137            if ( $idx_api->platinum_account_type() ) {
    138                 add_submenu_page( 'edit.php?post_type=listing', __( 'Google My Business', 'wp-listings' ), __( 'Google My Business', 'wp-listings' ), 'manage_options', $this->gmb_settings_page, array( &$this, 'gmb_settings_page' ) );
     138                add_submenu_page( 'edit.php?post_type=listing', __( 'IMPress Listings - Google My Business', 'wp-listings' ), __( '<small style="color:#8dc541;">beta</small><br>Google My Business', 'wp-listings' ), 'manage_options', $this->gmb_settings_page, array( &$this, 'gmb_settings_page' ) );
    139139            }
    140140        }
  • wp-listings/trunk/includes/css/wp-listings-gmb-admin.css

    r2322612 r2326100  
    11#post-body #post-body-content {
    22  margin-right: 0px;
     3}
     4
     5.gmb-settings-page-header-container {
     6  display: flex;
     7  align-items: center;
     8  justify-content: center;
     9}
     10
     11.gmb-settings-page-header-container > .gmb-settings-page-header {
     12  padding: 0px;
     13}
     14
     15.beta-label-tag {
     16  color: white;
     17  background-color: #8dc541;
     18  font-weight: bold;
     19  border-radius: 4px;
     20  margin-left: 4px;
     21  font-size: 0.7em;
     22  display: flex;
     23  align-items: center;
     24  justify-content: center;
     25  padding: 3px 6px;
    326}
    427
     
    660683
    661684.preview-container-label strong {
    662   margin-bottom: 5px;
    663685  font-size: 1.2em;
    664 }
    665 
    666 #clear-schedule-button:active {
    667   background-color: lightsalmon;
    668686}
    669687
     
    707725  background-color: white;
    708726  border: solid 2px tomato;
     727}
     728
     729#new-custom-post-button {
     730  background-color: rebeccapurple;
     731}
     732
     733#new-custom-post-button:hover {
     734  color: rebeccapurple;
     735  background-color: white;
     736  border: solid 2px rebeccapurple;
    709737}
    710738
  • wp-listings/trunk/includes/views/wp-listings-gmb-settings.php

    r2322612 r2326100  
    55<div id="icon-options-general" class="icon32"></div>
    66<div class="wrap">
    7     <h1><?php _e( 'IMPress Listings - Google My Business Settings', 'wp-listings' ); ?></h1>
     7
     8    <div class="gmb-settings-page-header-container">
     9        <h1 class="gmb-settings-page-header"><?php esc_attr_e( 'IMPress Listings - Google My Business Settings', 'wp-listings' ); ?></h1>
     10        <div class="beta-label-tag">
     11            beta
     12        </div>
     13    </div>
    814    <hr>
    915    <div id="poststuff" class="metabox-holder has-right-sidebar">
  • wp-listings/trunk/plugin.php

    r2322612 r2326100  
    88    Text Domain: wp-listings
    99
    10     Version: 2.5.1
     10    Version: 2.5.2
    1111
    1212    License: GNU General Public License v2.0 (or later)
  • wp-listings/trunk/readme.txt

    r2322612 r2326100  
    66Requires at least: 4.0
    77Tested up to: 5.4.1
    8 Stable tag: 2.5.1
     8Stable tag: 2.5.2
    99Requires PHP: 5.6
    1010License: GPLv2 or later
     
    203203
    204204== Changelog ==
     205
     206= 2.5.2 =
     207*Released 6-17-2020*
     208* Fix: Resolves minor styling issue on Google My Business scheduling page
    205209
    206210= 2.5.1 =
Note: See TracChangeset for help on using the changeset viewer.