Plugin Directory

Changeset 3176942


Ignore:
Timestamp:
10/28/2024 11:17:25 AM (14 months ago)
Author:
dragwp
Message:

Update to version 1.0.6 from GitHub

Location:
pattern-box
Files:
18 added
10 deleted
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • pattern-box/tags/1.0.6/assets/css/style.css

    r3167504 r3176942  
     1/* Service Split Layout */
    12.service-item:hover .service-item-img{
    23  transform: translateY(-20px);
     
    67  transition: transform 0.3s ease;
    78}
     9
     10/* Team Social Centered */
     11
     12.team-member-social-icons{
     13  opacity:0;
     14  transition: padding-bottom 0.5s ease;
     15  }
     16 
     17  .team-members-block .team-member-item:hover .team-member-social-icons{
     18  opacity:1;
     19  padding-bottom:20px;
     20  }
     21 
     22  .team-member-image{
     23  position:relative;
     24  }
     25 
     26  .team-member-image::before{
     27  content: '';
     28  position: absolute;
     29  top:0;
     30  left:0;
     31  width: 100%;
     32  height: 100%;
     33  background-color: rgba(0,0,0,0.5);
     34  z-index:1;
     35  opacity:0;
     36  transition: opacity 0.3s ease;
     37  }
     38 
     39  .team-member-image:hover::before{
     40  opacity:1;
     41  }
     42 
     43  .team-member-title{
     44  transition: color 0.3s ease;
     45  }
     46 
     47  .team-members-block .team-member-item:hover .team-member-title{
     48  color:#8ed1fc;
     49  }
  • pattern-box/tags/1.0.6/pattern-box.php

    r3167504 r3176942  
    44     * Plugin URI: https://dragwp.com/
    55     * Description: A WordPress pattern library plugin for block editor.
    6      * Version: 1.0.4
     6     * Version: 1.0.6
    77     * Author: Drag WP
    88     * Author URI: https://dragwp.com
  • pattern-box/tags/1.0.6/readme.txt

    r3167504 r3176942  
    11=== Pattern Box ===
    2 Contributors: dragwp, devmuhib, huzaifaalmesbah
     2Contributors: dragwp, devmuhib
    33Donate link: https://dragwp.com/donate
    44Tags: patterns, blocks, Gutenberg, design, WordPress
    55Requires at least: 6.0
    66Tested up to: 6.6.1
    7 Stable tag: 1.0.5
     7Stable tag: 1.0.6
    88Requires PHP: 7.0
    99License: GPLv2 or later
     
    1919* Hero sections
    2020* About sections
     21* Team sections
    2122* Easy to enable/disable patterns and categories
    2223* Seamless integration with Gutenberg
     
    5051== Changelog ==
    5152
    52 == Changelog ==
     53= 1.0.6 =
     54* Team Social Centered Added
     55* Hero Patterns Removed (Unnecessary)
     56* New Category Added
     57
    5358= 1.0.5 =
    5459* Service Split Pattern Added
  • pattern-box/tags/1.0.6/src/PatternBoxDashboard.php

    r3167504 r3176942  
    5959            'dwpb-about' => 'About Patterns',
    6060            'dwpb-service' => 'Service Patterns',
     61            'dwpb-team' => 'Team Patterns',
    6162        ];
    6263
     
    7475        $patternCategories = [
    7576            'dwpb-hero' => [
    76                 'hero-1' => 'Hero 1',
    77                 'hero-2' => 'Hero 2',
    78                 'hero-3' => 'Hero 3',
    79                 'hero-4' => 'Hero 4',
    80                 'hero-5' => 'Hero 5',
     77                'hero-3' => 'Hero Center Aligned',
    8178            ],
    8279            'dwpb-about' => [
     
    8784            'dwpb-service' => [
    8885                'service-split-layout' => 'Services Split Layout'
     86            ],
     87            'dwpb-team' => [
     88                'team-social-centered' => 'Team Social Centered'
    8989            ],
    9090        ];
  • pattern-box/tags/1.0.6/src/PatternBoxMain.php

    r3167504 r3176942  
    2929                'description' => __('Pattern Box Service Sections.', 'pattern-box'),
    3030            ],
     31            'dwpb-team' => [
     32                'label' => __('PB Team', 'pattern-box'),
     33                'description' => __('Pattern Box Team Sections.', 'pattern-box'),
     34            ],
    3135        ];
    3236
     
    4852        if (isset($this->options['categories']) && isset($this->options['categories']['dwpb-hero']) && $this->options['categories']['dwpb-hero']) {
    4953
    50             if (isset($this->options['hero-1']) && $this->options['hero-1']) {
    51                 require_once __DIR__ . '/patterns/hero-image-left.php';
    52             }
    53 
    54             if (isset($this->options['hero-2']) && $this->options['hero-2']) {
    55                 require_once __DIR__ . '/patterns/hero-image-right.php';
    56             }
    57 
    5854            if (isset($this->options['hero-3']) && $this->options['hero-3']) {
    59                 require_once __DIR__ . '/patterns/hero-center-aligned.php';
    60             }
    61 
    62             if (isset($this->options['hero-4']) && $this->options['hero-4']) {
    63                 require_once __DIR__ . '/patterns/hero-fullscreen.php';
    64             }
    65 
    66             if (isset($this->options['hero-5']) && $this->options['hero-5']) {
    67                 require_once __DIR__ . '/patterns/hero.php';
     55                require_once __DIR__ . '/patterns/hero/hero-center-aligned.php';
    6856            }
    6957
     
    8775        }
    8876
     77        // Register Service Patterns
    8978        if (isset($this->options['categories']) && isset($this->options['categories']['dwpb-service']) && $this->options['categories']['dwpb-service']) {
    9079            if (isset($this->options['service-split-layout']) && $this->options['service-split-layout']) {
     
    9382        }
    9483
     84        // Register Team Patterns
     85        if (isset($this->options['categories']) && isset($this->options['categories']['dwpb-team']) && $this->options['categories']['dwpb-team']) {
     86
     87            if (isset($this->options['team-social-centered']) && $this->options['team-social-centered']) {
     88                require_once __DIR__ . '/patterns/team/team-social-centered.php';
     89            }
     90
     91        }
     92
    9593    }
    9694}
  • pattern-box/trunk/assets/css/style.css

    r3167504 r3176942  
     1/* Service Split Layout */
    12.service-item:hover .service-item-img{
    23  transform: translateY(-20px);
     
    67  transition: transform 0.3s ease;
    78}
     9
     10/* Team Social Centered */
     11
     12.team-member-social-icons{
     13  opacity:0;
     14  transition: padding-bottom 0.5s ease;
     15  }
     16 
     17  .team-members-block .team-member-item:hover .team-member-social-icons{
     18  opacity:1;
     19  padding-bottom:20px;
     20  }
     21 
     22  .team-member-image{
     23  position:relative;
     24  }
     25 
     26  .team-member-image::before{
     27  content: '';
     28  position: absolute;
     29  top:0;
     30  left:0;
     31  width: 100%;
     32  height: 100%;
     33  background-color: rgba(0,0,0,0.5);
     34  z-index:1;
     35  opacity:0;
     36  transition: opacity 0.3s ease;
     37  }
     38 
     39  .team-member-image:hover::before{
     40  opacity:1;
     41  }
     42 
     43  .team-member-title{
     44  transition: color 0.3s ease;
     45  }
     46 
     47  .team-members-block .team-member-item:hover .team-member-title{
     48  color:#8ed1fc;
     49  }
  • pattern-box/trunk/pattern-box.php

    r3167504 r3176942  
    44     * Plugin URI: https://dragwp.com/
    55     * Description: A WordPress pattern library plugin for block editor.
    6      * Version: 1.0.4
     6     * Version: 1.0.6
    77     * Author: Drag WP
    88     * Author URI: https://dragwp.com
  • pattern-box/trunk/readme.txt

    r3167504 r3176942  
    11=== Pattern Box ===
    2 Contributors: dragwp, devmuhib, huzaifaalmesbah
     2Contributors: dragwp, devmuhib
    33Donate link: https://dragwp.com/donate
    44Tags: patterns, blocks, Gutenberg, design, WordPress
    55Requires at least: 6.0
    66Tested up to: 6.6.1
    7 Stable tag: 1.0.5
     7Stable tag: 1.0.6
    88Requires PHP: 7.0
    99License: GPLv2 or later
     
    1919* Hero sections
    2020* About sections
     21* Team sections
    2122* Easy to enable/disable patterns and categories
    2223* Seamless integration with Gutenberg
     
    5051== Changelog ==
    5152
    52 == Changelog ==
     53= 1.0.6 =
     54* Team Social Centered Added
     55* Hero Patterns Removed (Unnecessary)
     56* New Category Added
     57
    5358= 1.0.5 =
    5459* Service Split Pattern Added
  • pattern-box/trunk/src/PatternBoxDashboard.php

    r3167504 r3176942  
    5959            'dwpb-about' => 'About Patterns',
    6060            'dwpb-service' => 'Service Patterns',
     61            'dwpb-team' => 'Team Patterns',
    6162        ];
    6263
     
    7475        $patternCategories = [
    7576            'dwpb-hero' => [
    76                 'hero-1' => 'Hero 1',
    77                 'hero-2' => 'Hero 2',
    78                 'hero-3' => 'Hero 3',
    79                 'hero-4' => 'Hero 4',
    80                 'hero-5' => 'Hero 5',
     77                'hero-3' => 'Hero Center Aligned',
    8178            ],
    8279            'dwpb-about' => [
     
    8784            'dwpb-service' => [
    8885                'service-split-layout' => 'Services Split Layout'
     86            ],
     87            'dwpb-team' => [
     88                'team-social-centered' => 'Team Social Centered'
    8989            ],
    9090        ];
  • pattern-box/trunk/src/PatternBoxMain.php

    r3167504 r3176942  
    2929                'description' => __('Pattern Box Service Sections.', 'pattern-box'),
    3030            ],
     31            'dwpb-team' => [
     32                'label' => __('PB Team', 'pattern-box'),
     33                'description' => __('Pattern Box Team Sections.', 'pattern-box'),
     34            ],
    3135        ];
    3236
     
    4852        if (isset($this->options['categories']) && isset($this->options['categories']['dwpb-hero']) && $this->options['categories']['dwpb-hero']) {
    4953
    50             if (isset($this->options['hero-1']) && $this->options['hero-1']) {
    51                 require_once __DIR__ . '/patterns/hero-image-left.php';
    52             }
    53 
    54             if (isset($this->options['hero-2']) && $this->options['hero-2']) {
    55                 require_once __DIR__ . '/patterns/hero-image-right.php';
    56             }
    57 
    5854            if (isset($this->options['hero-3']) && $this->options['hero-3']) {
    59                 require_once __DIR__ . '/patterns/hero-center-aligned.php';
    60             }
    61 
    62             if (isset($this->options['hero-4']) && $this->options['hero-4']) {
    63                 require_once __DIR__ . '/patterns/hero-fullscreen.php';
    64             }
    65 
    66             if (isset($this->options['hero-5']) && $this->options['hero-5']) {
    67                 require_once __DIR__ . '/patterns/hero.php';
     55                require_once __DIR__ . '/patterns/hero/hero-center-aligned.php';
    6856            }
    6957
     
    8775        }
    8876
     77        // Register Service Patterns
    8978        if (isset($this->options['categories']) && isset($this->options['categories']['dwpb-service']) && $this->options['categories']['dwpb-service']) {
    9079            if (isset($this->options['service-split-layout']) && $this->options['service-split-layout']) {
     
    9382        }
    9483
     84        // Register Team Patterns
     85        if (isset($this->options['categories']) && isset($this->options['categories']['dwpb-team']) && $this->options['categories']['dwpb-team']) {
     86
     87            if (isset($this->options['team-social-centered']) && $this->options['team-social-centered']) {
     88                require_once __DIR__ . '/patterns/team/team-social-centered.php';
     89            }
     90
     91        }
     92
    9593    }
    9694}
Note: See TracChangeset for help on using the changeset viewer.