Plugin Directory

Changeset 3167504


Ignore:
Timestamp:
10/12/2024 09:52:50 AM (14 months ago)
Author:
dragwp
Message:

Update to version 1.0.5 from GitHub

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

Legend:

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

    r3136498 r3167504  
    1 body {
    2     background-color: #f0f0f0;
    3     color: #333;
     1.service-item:hover .service-item-img{
     2  transform: translateY(-20px);
    43  }
    54 
     5.service-item-img{
     6  transition: transform 0.3s ease;
     7}
  • pattern-box/tags/1.0.5/pattern-box.php

    r3140128 r3167504  
    9696                true
    9797            );
     98
     99            wp_enqueue_style('pattern-box-css');
    98100        }
    99101       
  • pattern-box/tags/1.0.5/readme.txt

    r3156100 r3167504  
    11=== Pattern Box ===
    2 Contributors: dragwp, devmuhib
     2Contributors: dragwp, devmuhib, huzaifaalmesbah
    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.4
     7Stable tag: 1.0.5
    88Requires PHP: 7.0
    99License: GPLv2 or later
     
    5050== Changelog ==
    5151
     52== Changelog ==
     53= 1.0.5 =
     54* Service Split Pattern Added
     55
    5256= 1.0.1 =
    5357* Fix security issues.
  • pattern-box/tags/1.0.5/src/PatternBoxDashboard.php

    r3136498 r3167504  
    5858            'dwpb-hero' => 'Hero Patterns',
    5959            'dwpb-about' => 'About Patterns',
     60            'dwpb-service' => 'Service Patterns',
    6061        ];
    6162
     
    8384                'about-2' => 'About 2',
    8485                'about-3' => 'About 3',
     86            ],
     87            'dwpb-service' => [
     88                'service-split-layout' => 'Services Split Layout'
    8589            ],
    8690        ];
  • pattern-box/tags/1.0.5/src/PatternBoxMain.php

    r3136498 r3167504  
    2424                'label' => __('PB About', 'pattern-box'),
    2525                'description' => __('Pattern Box About Sections.', 'pattern-box'),
     26            ],
     27            'dwpb-service' => [
     28                'label' => __('PB Service', 'pattern-box'),
     29                'description' => __('Pattern Box Service Sections.', 'pattern-box'),
    2630            ],
    2731        ];
     
    8387        }
    8488
     89        if (isset($this->options['categories']) && isset($this->options['categories']['dwpb-service']) && $this->options['categories']['dwpb-service']) {
     90            if (isset($this->options['service-split-layout']) && $this->options['service-split-layout']) {
     91                require_once __DIR__ . '/patterns/service/service-split-layout.php';
     92            }
     93        }
     94
    8595    }
    8696}
  • pattern-box/trunk/assets/css/style.css

    r3136498 r3167504  
    1 body {
    2     background-color: #f0f0f0;
    3     color: #333;
     1.service-item:hover .service-item-img{
     2  transform: translateY(-20px);
    43  }
    54 
     5.service-item-img{
     6  transition: transform 0.3s ease;
     7}
  • pattern-box/trunk/pattern-box.php

    r3140128 r3167504  
    9696                true
    9797            );
     98
     99            wp_enqueue_style('pattern-box-css');
    98100        }
    99101       
  • pattern-box/trunk/readme.txt

    r3156100 r3167504  
    11=== Pattern Box ===
    2 Contributors: dragwp, devmuhib
     2Contributors: dragwp, devmuhib, huzaifaalmesbah
    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.4
     7Stable tag: 1.0.5
    88Requires PHP: 7.0
    99License: GPLv2 or later
     
    5050== Changelog ==
    5151
     52== Changelog ==
     53= 1.0.5 =
     54* Service Split Pattern Added
     55
    5256= 1.0.1 =
    5357* Fix security issues.
  • pattern-box/trunk/src/PatternBoxDashboard.php

    r3136498 r3167504  
    5858            'dwpb-hero' => 'Hero Patterns',
    5959            'dwpb-about' => 'About Patterns',
     60            'dwpb-service' => 'Service Patterns',
    6061        ];
    6162
     
    8384                'about-2' => 'About 2',
    8485                'about-3' => 'About 3',
     86            ],
     87            'dwpb-service' => [
     88                'service-split-layout' => 'Services Split Layout'
    8589            ],
    8690        ];
  • pattern-box/trunk/src/PatternBoxMain.php

    r3136498 r3167504  
    2424                'label' => __('PB About', 'pattern-box'),
    2525                'description' => __('Pattern Box About Sections.', 'pattern-box'),
     26            ],
     27            'dwpb-service' => [
     28                'label' => __('PB Service', 'pattern-box'),
     29                'description' => __('Pattern Box Service Sections.', 'pattern-box'),
    2630            ],
    2731        ];
     
    8387        }
    8488
     89        if (isset($this->options['categories']) && isset($this->options['categories']['dwpb-service']) && $this->options['categories']['dwpb-service']) {
     90            if (isset($this->options['service-split-layout']) && $this->options['service-split-layout']) {
     91                require_once __DIR__ . '/patterns/service/service-split-layout.php';
     92            }
     93        }
     94
    8595    }
    8696}
Note: See TracChangeset for help on using the changeset viewer.