Plugin Directory

Changeset 3176877


Ignore:
Timestamp:
10/28/2024 10:25:13 AM (17 months ago)
Author:
fedata
Message:

Version 2.2.2

Location:
fast-events
Files:
1 deleted
5 edited
48 copied

Legend:

Unmodified
Added
Removed
  • fast-events/tags/2.2.2/changelog.txt

    r3070756 r3176877  
    11== Changelog ==
    22
     3= 2.2.2 =
     4* Fix: Selected wrong template for passe-partout.
     5* New: WordPress 6.7 compatible.
     6* New: Bump minimum WordPress version to 6.4.
     7*
    38= 2.2.1 =
    49* Fix: Public Ordering API could not be used.
  • fast-events/tags/2.2.2/fast-events.php

    r3070756 r3176877  
    44 * Plugin URI: https://fast-events.eu/
    55 * Description: Sell online etickets wit a variety of payment options, mobile scanning, admin app, seating plans, online tracking for sports events and much more.
    6  * Version: 2.2.1
     6 * Version: 2.2.2
    77 * Requires at least: 6.0
    88 * Requires PHP: 8.0
  • fast-events/tags/2.2.2/includes/class-fast-events.php

    r3070756 r3176877  
    1515 */
    1616class Fast_Events {
    17     public const FAST_EVENTS_VERSION = '2.2.1';
     17    public const FAST_EVENTS_VERSION = '2.2.2';
    1818    public const FE_ADMIN_VERSION    = 'v4.2';
    1919
  • fast-events/tags/2.2.2/includes/classes/class-fast-events-tickets.php

    r3070756 r3176877  
    138138     * @since 1.0
    139139     * @since 2.1.0 Added layout parameter.
     140     * @since 2.2.2 Selection of passe-partout templates per ticket.
    140141     */
    141142    public function __construct( string $author, string $pdf_info, array $layout ) {
    142         // Get the PDF-template.
    143         $pdf = json_decode( $pdf_info );
    144 
    145143        // Prepare the PDF.
    146144        include_once ABSPATH . 'wp-admin/includes/file.php';
    147145
    148         $this->pdf       = new Fast_Events_Pdf();
    149         $this->id        = (int) $pdf->ticket->id;
    150         $this->x         = (float) $pdf->ticket->x;
    151         $this->y         = (float) $pdf->ticket->y;
    152         $this->rotate    = (float) $pdf->ticket->rotate;
    153         $this->scale     = isset( $pdf->ticket->scale ) ? (float) $pdf->ticket->scale : 100.0;
    154         $this->no_border = (int) $pdf->ticket->no_border;
    155         $this->templates = $pdf->ticket->types ?? null;
    156 
     146        $this->pdf    = new Fast_Events_Pdf();
    157147        $this->layout = $layout;
    158148
     
    195185     * @since 1.0
    196186     * @since 1.7 Added scaling.
     187     * @since 2.2.2 Selection of passe-partout templates per ticket.
    197188     *
    198189     * @param array $results {
     
    240231        foreach ( $results as $result ) {
    241232            $this->pdf->AddPage();
     233
     234            // Get the PDF-template.
     235            $pdf             = json_decode( $result->pdf_info );
     236            $this->id        = (int) $pdf->ticket->id;
     237            $this->x         = (float) $pdf->ticket->x;
     238            $this->y         = (float) $pdf->ticket->y;
     239            $this->rotate    = (float) $pdf->ticket->rotate;
     240            $this->scale     = isset( $pdf->ticket->scale ) ? (float) $pdf->ticket->scale : 100.0;
     241            $this->no_border = (int) $pdf->ticket->no_border;
     242            $this->templates = $pdf->ticket->types ?? null;
    242243
    243244            // Set the right template.
  • fast-events/tags/2.2.2/readme.txt

    r3070756 r3176877  
    22* Contributors: fedata
    33* Tags: events, etickets, qrcode, sell online, tickets
    4 * Requires at least: 6.0
     4* Requires at least: 6.4
    55* Requires PHP: 8.0
    6 * Tested up to: 6.5
    7 * Stable tag: 2.2.1
     6* Tested up to: 6.7
     7* Stable tag: 2.2.2
    88* Donate link: https://docs.fast-events.eu/en/latest/misc/donate.html
    99* License: GPLv3 or later
    1010* License URI: https://www.gnu.org/licenses/gpl-3.0.txt
    1111
    12 Sell event tickets with WordPress including free Scan App, Tracking App and Admin App.
     12Sell event tickets with WordPress including free Scan App, Tracking App and Admin App. 
    1313
    1414== Description ==
     
    188188== Changelog ==
    189189
    190 = 2.2.1 =
    191 
    192 * Fix: Public Ordering API could not be used.
    193 * Fix: An event cannot refer to itself as a linked-event.
     190= 2.2.2 =
     191
     192* Fix: Selected wrong template for passe-partout.
     193* New: WordPress 6.7 compatible.
     194* New: Bump minimum WordPress version to 6.4.
    194195
    195196
  • fast-events/trunk/changelog.txt

    r3070756 r3176877  
    11== Changelog ==
    22
     3= 2.2.2 =
     4* Fix: Selected wrong template for passe-partout.
     5* New: WordPress 6.7 compatible.
     6* New: Bump minimum WordPress version to 6.4.
     7*
    38= 2.2.1 =
    49* Fix: Public Ordering API could not be used.
  • fast-events/trunk/fast-events.php

    r3070756 r3176877  
    44 * Plugin URI: https://fast-events.eu/
    55 * Description: Sell online etickets wit a variety of payment options, mobile scanning, admin app, seating plans, online tracking for sports events and much more.
    6  * Version: 2.2.1
     6 * Version: 2.2.2
    77 * Requires at least: 6.0
    88 * Requires PHP: 8.0
  • fast-events/trunk/includes/class-fast-events.php

    r3070756 r3176877  
    1515 */
    1616class Fast_Events {
    17     public const FAST_EVENTS_VERSION = '2.2.1';
     17    public const FAST_EVENTS_VERSION = '2.2.2';
    1818    public const FE_ADMIN_VERSION    = 'v4.2';
    1919
  • fast-events/trunk/includes/classes/class-fast-events-tickets.php

    r3070756 r3176877  
    138138     * @since 1.0
    139139     * @since 2.1.0 Added layout parameter.
     140     * @since 2.2.2 Selection of passe-partout templates per ticket.
    140141     */
    141142    public function __construct( string $author, string $pdf_info, array $layout ) {
    142         // Get the PDF-template.
    143         $pdf = json_decode( $pdf_info );
    144 
    145143        // Prepare the PDF.
    146144        include_once ABSPATH . 'wp-admin/includes/file.php';
    147145
    148         $this->pdf       = new Fast_Events_Pdf();
    149         $this->id        = (int) $pdf->ticket->id;
    150         $this->x         = (float) $pdf->ticket->x;
    151         $this->y         = (float) $pdf->ticket->y;
    152         $this->rotate    = (float) $pdf->ticket->rotate;
    153         $this->scale     = isset( $pdf->ticket->scale ) ? (float) $pdf->ticket->scale : 100.0;
    154         $this->no_border = (int) $pdf->ticket->no_border;
    155         $this->templates = $pdf->ticket->types ?? null;
    156 
     146        $this->pdf    = new Fast_Events_Pdf();
    157147        $this->layout = $layout;
    158148
     
    195185     * @since 1.0
    196186     * @since 1.7 Added scaling.
     187     * @since 2.2.2 Selection of passe-partout templates per ticket.
    197188     *
    198189     * @param array $results {
     
    240231        foreach ( $results as $result ) {
    241232            $this->pdf->AddPage();
     233
     234            // Get the PDF-template.
     235            $pdf             = json_decode( $result->pdf_info );
     236            $this->id        = (int) $pdf->ticket->id;
     237            $this->x         = (float) $pdf->ticket->x;
     238            $this->y         = (float) $pdf->ticket->y;
     239            $this->rotate    = (float) $pdf->ticket->rotate;
     240            $this->scale     = isset( $pdf->ticket->scale ) ? (float) $pdf->ticket->scale : 100.0;
     241            $this->no_border = (int) $pdf->ticket->no_border;
     242            $this->templates = $pdf->ticket->types ?? null;
    242243
    243244            // Set the right template.
  • fast-events/trunk/readme.txt

    r3070756 r3176877  
    22* Contributors: fedata
    33* Tags: events, etickets, qrcode, sell online, tickets
    4 * Requires at least: 6.0
     4* Requires at least: 6.4
    55* Requires PHP: 8.0
    6 * Tested up to: 6.5
    7 * Stable tag: 2.2.1
     6* Tested up to: 6.7
     7* Stable tag: 2.2.2
    88* Donate link: https://docs.fast-events.eu/en/latest/misc/donate.html
    99* License: GPLv3 or later
    1010* License URI: https://www.gnu.org/licenses/gpl-3.0.txt
    1111
    12 Sell event tickets with WordPress including free Scan App, Tracking App and Admin App.
     12Sell event tickets with WordPress including free Scan App, Tracking App and Admin App. 
    1313
    1414== Description ==
     
    188188== Changelog ==
    189189
    190 = 2.2.1 =
    191 
    192 * Fix: Public Ordering API could not be used.
    193 * Fix: An event cannot refer to itself as a linked-event.
     190= 2.2.2 =
     191
     192* Fix: Selected wrong template for passe-partout.
     193* New: WordPress 6.7 compatible.
     194* New: Bump minimum WordPress version to 6.4.
    194195
    195196
Note: See TracChangeset for help on using the changeset viewer.