Plugin Directory

Changeset 2863250

Timestamp:
02/10/2023 12:48:23 PM (18 months ago)
Author:
geisthanen
Message:

Tagging release 2.9.1.

Location:
gallerya/tags/2.9.1
Files:
8 edited
2 copied

Legend:

Unmodified
Added
Removed
  • gallerya/tags/2.9.1/README.txt

    r2784738 r2863250  
    44Requires at least: 4.5
    55Tested up to: 6.0
    6 Stable tag: 2.9.0
     6Stable tag: 2.9.
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2525== Changelog ==
    2626
     27
     28
     29
     30
     31
    2732= 2.9.0 =
    28 2022-09-214
     332022-09-14
    2934
    3035* Added wp-graphql support for product variation additional gallery images.
  • gallerya/tags/2.9.1/package.json

    r2784738 r2863250  
    11{
    22  "name": "gallerya",
    3   "version": "2.9.0",
     3  "version": "2.9.",
    44  "author": "netzstrategen <hallo@netzstrategen.com>",
    55  "repository": {
  • gallerya/tags/2.9.1/plugin.php

    r2784738 r2863250  
    33/*
    44  Plugin Name: Gallerya
    5   Version: 2.9.0
     5  Version: 2.9.
    66  Text Domain: gallerya
    77  Description: Change the native post gallery to be displayed as a slider with lightbox support.
  • gallerya/tags/2.9.1/src/GraphQL.php

    r2784738 r2863250  
    2525        'fromFieldName' => 'galleryImages',
    2626        'resolve' => function ($source, array $args, $context, $info) {
    27           $variation_gallery_image_ids = Woocommerce::getVariationGalleryImages($source->databaseId);
     27          $variation_gallery_image_ids = Wooommerce::getVariationGalleryImages($source->databaseId);
    2828          if (empty($variation_gallery_image_ids)) {
    29             return ['nodes' => []];
     29            return;
    3030          }
    3131          $resolver = new PostObjectConnectionResolver($source, $args, $context, $info, 'attachment');
  • gallerya/tags/2.9.1/trunk/README.txt

    r2784738 r2863250  
    44Requires at least: 4.5
    55Tested up to: 6.0
    6 Stable tag: 2.9.0
     6Stable tag: 2.9.
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2525== Changelog ==
    2626
     27
     28
     29
     30
     31
    2732= 2.9.0 =
    28 2022-09-214
     332022-09-14
    2934
    3035* Added wp-graphql support for product variation additional gallery images.
  • gallerya/tags/2.9.1/trunk/package.json

    r2784738 r2863250  
    11{
    22  "name": "gallerya",
    3   "version": "2.9.0",
     3  "version": "2.9.",
    44  "author": "netzstrategen <hallo@netzstrategen.com>",
    55  "repository": {
  • gallerya/tags/2.9.1/trunk/plugin.php

    r2784738 r2863250  
    33/*
    44  Plugin Name: Gallerya
    5   Version: 2.9.0
     5  Version: 2.9.
    66  Text Domain: gallerya
    77  Description: Change the native post gallery to be displayed as a slider with lightbox support.
  • gallerya/tags/2.9.1/trunk/src/GraphQL.php

    r2784738 r2863250  
    2525        'fromFieldName' => 'galleryImages',
    2626        'resolve' => function ($source, array $args, $context, $info) {
    27           $variation_gallery_image_ids = Woocommerce::getVariationGalleryImages($source->databaseId);
     27          $variation_gallery_image_ids = Wooommerce::getVariationGalleryImages($source->databaseId);
    2828          if (empty($variation_gallery_image_ids)) {
    29             return ['nodes' => []];
     29            return;
    3030          }
    3131          $resolver = new PostObjectConnectionResolver($source, $args, $context, $info, 'attachment');
Note: See TracChangeset for help on using the changeset viewer.