Plugin Directory

Changeset 2185349


Ignore:
Timestamp:
11/04/2019 03:38:04 AM (6 years ago)
Author:
uwonder
Message:

Update to version 1.4 from GitHub

Location:
simple-google-photos-grid
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • simple-google-photos-grid/tags/1.4/readme.md

    r1775225 r2185349  
    11# Simple Google Photos WordPress Plugin
    2 Provides a WordPress widget and shortcode to display photos from a public Google Photos album. [See a demo and read more about the plugin](https://josheli.com/knob/2017/11/21/simple-google-photos-a-wordpress-plugin/).
     2[Get the plugin here](https://wordpress.org/plugins/simple-google-photos-grid/). Provides a WordPress widget and shortcode to display photos from a public Google Photos album. [See a demo and read more about the plugin](https://josheli.com/knob/2017/11/21/simple-google-photos-a-wordpress-plugin/).
    33
    44## Installation
  • simple-google-photos-grid/tags/1.4/readme.txt

    r2077307 r2185349  
    33Tags: album, gallery, photos, Google Photos
    44Requires at least: 4.0
    5 Tested up to: 5.1.1
     5Tested up to: 5.2.4
    66Stable tag: trunk
    77License: GPLv2
     
    5454== Changelog ==
    5555
     56= 1.4 =
     57* Fixed uninstall and shortcode bugs
     58
    5659= 1.3 =
    5760* Added "number photos per row" configuration/attribute to have grids other than 2x2
  • simple-google-photos-grid/tags/1.4/simple-google-photos-grid-shortcode.php

    r1775225 r2185349  
    88class Simple_Google_Photos_Grid_Shortcode
    99{
    10   public function shortcode($attributes = [], $content = null, $tag = '') {
     10  public static function shortcode($attributes = [], $content = null, $tag = '') {
    1111
    1212    $attributes = array_change_key_case((array)$attributes, CASE_LOWER);
  • simple-google-photos-grid/tags/1.4/uninstall.php

    r1775225 r2185349  
    1313    exit;
    1414
    15 include_once __DIR__ . '/simple-google-photos-grid-widget.php';
    16 Simple_Google_Photo_Grid_Widget::uninstall();
     15include_once __DIR__ . '/Simple_Google_Photos_Grid.php';
     16Simple_Google_Photos_Grid::uninstall();
  • simple-google-photos-grid/trunk/readme.md

    r1775225 r2185349  
    11# Simple Google Photos WordPress Plugin
    2 Provides a WordPress widget and shortcode to display photos from a public Google Photos album. [See a demo and read more about the plugin](https://josheli.com/knob/2017/11/21/simple-google-photos-a-wordpress-plugin/).
     2[Get the plugin here](https://wordpress.org/plugins/simple-google-photos-grid/). Provides a WordPress widget and shortcode to display photos from a public Google Photos album. [See a demo and read more about the plugin](https://josheli.com/knob/2017/11/21/simple-google-photos-a-wordpress-plugin/).
    33
    44## Installation
  • simple-google-photos-grid/trunk/readme.txt

    r2077307 r2185349  
    33Tags: album, gallery, photos, Google Photos
    44Requires at least: 4.0
    5 Tested up to: 5.1.1
     5Tested up to: 5.2.4
    66Stable tag: trunk
    77License: GPLv2
     
    5454== Changelog ==
    5555
     56= 1.4 =
     57* Fixed uninstall and shortcode bugs
     58
    5659= 1.3 =
    5760* Added "number photos per row" configuration/attribute to have grids other than 2x2
  • simple-google-photos-grid/trunk/simple-google-photos-grid-shortcode.php

    r1775225 r2185349  
    88class Simple_Google_Photos_Grid_Shortcode
    99{
    10   public function shortcode($attributes = [], $content = null, $tag = '') {
     10  public static function shortcode($attributes = [], $content = null, $tag = '') {
    1111
    1212    $attributes = array_change_key_case((array)$attributes, CASE_LOWER);
  • simple-google-photos-grid/trunk/uninstall.php

    r1775225 r2185349  
    1313    exit;
    1414
    15 include_once __DIR__ . '/simple-google-photos-grid-widget.php';
    16 Simple_Google_Photo_Grid_Widget::uninstall();
     15include_once __DIR__ . '/Simple_Google_Photos_Grid.php';
     16Simple_Google_Photos_Grid::uninstall();
Note: See TracChangeset for help on using the changeset viewer.