Plugin Directory

Changeset 3397120


Ignore:
Timestamp:
11/17/2025 10:59:20 AM (4 weeks ago)
Author:
wpdevteam
Message:

Update to version 2.6.5 from GitHub

Location:
easyjobs
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • easyjobs/tags/2.6.5/README.txt

    r3381072 r3397120  
    55Requires PHP: 5.6
    66Tested up to: 6.8
    7 Stable tag: 2.6.4
     7Stable tag: 2.6.5
    88License: GPLv3 or later
    99License URI: https://opensource.org/licenses/GPL-3.0
     
    139139== Changelog ==
    140140
     141= 2.6.5 - 17/11/2025 =
     142* Few minor bug fixes & improvements.
     143
    141144= 2.6.4 - 20/10/2025 =
    142145* Improved: Candidate filter functionality and UI.
  • easyjobs/tags/2.6.5/admin/class-easyjobs-admin.php

    r3365228 r3397120  
    306306         * Black Friday Notice
    307307         */     
    308         // $upgrade_cta_link_bf = 'https://easy.jobs/bfcm24-pricing';
    309         // $black_friday_notice_message = "<p>🔔 This Black Friday manage your candidate pool more smartly with easy.jobs PRO & <strong>Save Up to 80%</strong>.</p><a style='display: inline-flex;column-gap:5px;' class='button button-primary' href='{$upgrade_cta_link_bf}' target='_blank'><img style='width:15px;' src='{$crown_icon}'/>Upgrade to PRO</a>";
    310 
    311         // $_black_friday_notice = [
    312         //  'thumbnail' => EASYJOBS_ADMIN_URL . 'assets/img/easyjobs-halloween-logo.svg',
    313         //  'html'      => $black_friday_notice_message,
    314         // ];
    315         // $notices->add(
    316         //  'black_friday_notice',
    317         //  $_black_friday_notice,
    318         //  [
    319         //      'classes'     => 'updated put-dismiss-notice',
    320         //      'start'       => $notices->time(),
    321         //      // 'start'       => $notices->strtotime( '+2 days' ),
    322         //      "expire"      => strtotime( '11:59:59pm 5th December, 2024' ),
    323         //      'dismissible' => true,
    324         //      'refresh'     => EASYJOBS_VERSION,
    325         //      'screens'     => [ 'dashboard' ],
    326         //      'display_if'  => !empty($company_info) ? !$company_info->is_pro : true,
    327         // ]
    328         // );
     308        $company_info = Easyjobs_Helper::get_company_info( true );
     309        $upgrade_cta_link_bf = 'https://easy.jobs/bfcm2025-admin-notice';
     310        $black_friday_notice_message = "<p><strong>Black Friday Mega Sale:</strong> Hire Faster With Smarter Recruitment Features – Now <strong>Up to 75% OFF! 🎁</strong> </p><div class='wpsp-notice-action-button' style='display: inline-flex;column-gap:5px;'><a class='button button-primary' href={$upgrade_cta_link_bf} target='_blank'>Upgrade To PRO</a> <button class='wpsp-notice-action-dismiss dismiss-btn' data-dismiss='true' target='_blank'>I’ll Grab It Later</button></div>";
     311
     312        $_black_friday_notice = [
     313            'thumbnail' => EASYJOBS_ADMIN_URL . 'assets/img/easyjobs-halloween-logo.svg',
     314            'html'      => $black_friday_notice_message,
     315        ];
     316        $notices->add(
     317            'black_friday_notice',
     318            $_black_friday_notice,
     319            [
     320                'classes'     => 'updated put-dismiss-notice',
     321                'start'       => strtotime( '12:00:00am 16th November, 2025' ),
     322                "expire"      => strtotime( '11:59:59pm 4th December, 2025' ),
     323                'dismissible' => true,
     324                'refresh'     => EASYJOBS_VERSION,
     325                'screens'     => [ 'dashboard' ],
     326                'display_if'  => !empty($company_info) ? !$company_info->is_pro : true,
     327            ]
     328        );
    329329
    330330        /**
     
    380380
    381381            /*
    382             * Halloween, black friday, holiday notice css
     382            * Black Friday Notice css 2025
    383383            */
    384             #wpnotice-easyjobs-notice-halloween_notice,
    385384            #wpnotice-easyjobs-notice-black_friday_notice {
    386                 border-left-color: #593dbd;
    387             }
    388             .notice-easyjobs-notice-halloween_notice .wpnotice-content-wrapper,
    389             .notice-easyjobs-notice-black_friday_notice .wpnotice-content-wrapper {
     385                border-left-color: #597DFC;
     386                padding: 10px 40px 14px 20px;
     387            }
     388            #wpnotice-easyjobs-notice-black_friday_notice .wpnotice-content-wrapper .wpsp-notice-action-button > a.button-primary,
     389            #wpnotice-easyjobs-notice-black_friday_notice .wpnotice-content-wrapper .wpsp-notice-action-button > a.button-primary:focus,
     390            #wpnotice-easyjobs-notice-black_friday_notice .wpnotice-content-wrapper .wpsp-notice-action-button > a.button-primary:hover {
     391                background-color: #3B4045;
     392                color: #fff;
     393                box-shadow: 0px 1px 0px 0px #000000;
     394                border: none;
     395                border-radius: 6px;
     396                padding: 2px 16px;
     397            }
     398
     399            #wpnotice-easyjobs-notice-black_friday_notice .wpnotice-content-wrapper .wpsp-notice-action-button .wpsp-notice-action-dismiss {
     400                background: none;
     401                border: none;
     402                color: #424242;
     403                font-size: 14px;
     404                font-weight: 400;
     405                line-height: 1.5;
     406                text-decoration: underline;
     407                cursor: pointer;
     408                padding: 0;
     409                margin: 0;
     410                display: inline-block;
     411                margin-left: 5px;
     412            }
     413
     414            #wpnotice-easyjobs-notice-black_friday_notice .wpnotice-content-wrapper {
    390415                display: flex;
    391                 align-items: center;
     416                align-items: start;
    392417                justify-content: space-between;
    393418                width: 100%;
    394             }
    395             a.holiday-notice.dismiss-btn {
    396                 display: inline-block;
    397                 padding: 8px;
    398                 color: #5626E7;
    399             }
    400             div.updated.easyjobs-notice .wpnotice-content-wrapper p,
    401             div.updated.easyjobs-notice .wpnotice-content-wrapper a {
     419                flex-direction: column;
     420            }
     421            #wpnotice-easyjobs-notice-black_friday_notice .wpnotice-content-wrapper p{
    402422                font-size: 15px;
    403             }
    404             div.updated.easyjobs-notice.notice-easyjobs-notice-holiday_notice .wpnotice-content-wrapper p {
    405                 font-size: 18px;
    406             }
    407             .easyjobs-notice .wpnotice-content-wrapper > a.button-primary,
    408             .easyjobs-notice .wpnotice-content-wrapper > a.button-primary:focus,
    409             .easyjobs-notice .wpnotice-content-wrapper > a.button-primary:hover {
    410                 background-color: #593dbd;
    411                 border-color: #593dbd;
     423                margin-top: 0;
     424                padding-top: 0;
     425                margin-bottom: 3px;
     426            }
     427            #wpnotice-easyjobs-notice-black_friday_notice .wpnotice-content-wrapper {
     428                padding: 0;
    412429            }
    413430            @media only screen and (max-width: 767px) {
    414                 #wpnotice-easyjobs-notice-halloween_notice,
    415                 #wpnotice-easyjobs-notice-black_friday_notice,
    416                 #wpnotice-easyjobs-notice-holiday_notice {
     431                #wpnotice-easyjobs-notice-black_friday_notice {
    417432                    display: none !important;
    418433                }
  • easyjobs/tags/2.6.5/changelog.txt

    r3381072 r3397120  
     1= 2.6.5 - 17/11/2025 =
     2* Few minor bug fixes & improvements.
     3
    14= 2.6.4 - 20/10/2025 =
    25* Improved: Candidate filter functionality and UI.
  • easyjobs/tags/2.6.5/easyjobs.php

    r3381072 r3397120  
    1111 * Plugin URI:        https://easy.jobs
    1212 * Description:       Easy solution for the job recruitment to attract, manage & hire right talent faster.
    13  * Version:           2.6.4
     13 * Version:           2.6.5
    1414 * Author:            easy.jobs
    1515 * Author URI:        https://easy.jobs
     
    2828 * Defines CONSTANTS for Whole plugins.
    2929 */
    30 define( 'EASYJOBS_VERSION', '2.6.4' );
     30define( 'EASYJOBS_VERSION', '2.6.5' );
    3131define( 'EASYJOBS_PLUGIN_URL', 'https://easy.jobs' );
    3232define( 'EASYJOBS_URL', plugins_url( '/', __FILE__ ) );
  • easyjobs/trunk/README.txt

    r3381072 r3397120  
    55Requires PHP: 5.6
    66Tested up to: 6.8
    7 Stable tag: 2.6.4
     7Stable tag: 2.6.5
    88License: GPLv3 or later
    99License URI: https://opensource.org/licenses/GPL-3.0
     
    139139== Changelog ==
    140140
     141= 2.6.5 - 17/11/2025 =
     142* Few minor bug fixes & improvements.
     143
    141144= 2.6.4 - 20/10/2025 =
    142145* Improved: Candidate filter functionality and UI.
  • easyjobs/trunk/admin/class-easyjobs-admin.php

    r3365228 r3397120  
    306306         * Black Friday Notice
    307307         */     
    308         // $upgrade_cta_link_bf = 'https://easy.jobs/bfcm24-pricing';
    309         // $black_friday_notice_message = "<p>🔔 This Black Friday manage your candidate pool more smartly with easy.jobs PRO & <strong>Save Up to 80%</strong>.</p><a style='display: inline-flex;column-gap:5px;' class='button button-primary' href='{$upgrade_cta_link_bf}' target='_blank'><img style='width:15px;' src='{$crown_icon}'/>Upgrade to PRO</a>";
    310 
    311         // $_black_friday_notice = [
    312         //  'thumbnail' => EASYJOBS_ADMIN_URL . 'assets/img/easyjobs-halloween-logo.svg',
    313         //  'html'      => $black_friday_notice_message,
    314         // ];
    315         // $notices->add(
    316         //  'black_friday_notice',
    317         //  $_black_friday_notice,
    318         //  [
    319         //      'classes'     => 'updated put-dismiss-notice',
    320         //      'start'       => $notices->time(),
    321         //      // 'start'       => $notices->strtotime( '+2 days' ),
    322         //      "expire"      => strtotime( '11:59:59pm 5th December, 2024' ),
    323         //      'dismissible' => true,
    324         //      'refresh'     => EASYJOBS_VERSION,
    325         //      'screens'     => [ 'dashboard' ],
    326         //      'display_if'  => !empty($company_info) ? !$company_info->is_pro : true,
    327         // ]
    328         // );
     308        $company_info = Easyjobs_Helper::get_company_info( true );
     309        $upgrade_cta_link_bf = 'https://easy.jobs/bfcm2025-admin-notice';
     310        $black_friday_notice_message = "<p><strong>Black Friday Mega Sale:</strong> Hire Faster With Smarter Recruitment Features – Now <strong>Up to 75% OFF! 🎁</strong> </p><div class='wpsp-notice-action-button' style='display: inline-flex;column-gap:5px;'><a class='button button-primary' href={$upgrade_cta_link_bf} target='_blank'>Upgrade To PRO</a> <button class='wpsp-notice-action-dismiss dismiss-btn' data-dismiss='true' target='_blank'>I’ll Grab It Later</button></div>";
     311
     312        $_black_friday_notice = [
     313            'thumbnail' => EASYJOBS_ADMIN_URL . 'assets/img/easyjobs-halloween-logo.svg',
     314            'html'      => $black_friday_notice_message,
     315        ];
     316        $notices->add(
     317            'black_friday_notice',
     318            $_black_friday_notice,
     319            [
     320                'classes'     => 'updated put-dismiss-notice',
     321                'start'       => strtotime( '12:00:00am 16th November, 2025' ),
     322                "expire"      => strtotime( '11:59:59pm 4th December, 2025' ),
     323                'dismissible' => true,
     324                'refresh'     => EASYJOBS_VERSION,
     325                'screens'     => [ 'dashboard' ],
     326                'display_if'  => !empty($company_info) ? !$company_info->is_pro : true,
     327            ]
     328        );
    329329
    330330        /**
     
    380380
    381381            /*
    382             * Halloween, black friday, holiday notice css
     382            * Black Friday Notice css 2025
    383383            */
    384             #wpnotice-easyjobs-notice-halloween_notice,
    385384            #wpnotice-easyjobs-notice-black_friday_notice {
    386                 border-left-color: #593dbd;
    387             }
    388             .notice-easyjobs-notice-halloween_notice .wpnotice-content-wrapper,
    389             .notice-easyjobs-notice-black_friday_notice .wpnotice-content-wrapper {
     385                border-left-color: #597DFC;
     386                padding: 10px 40px 14px 20px;
     387            }
     388            #wpnotice-easyjobs-notice-black_friday_notice .wpnotice-content-wrapper .wpsp-notice-action-button > a.button-primary,
     389            #wpnotice-easyjobs-notice-black_friday_notice .wpnotice-content-wrapper .wpsp-notice-action-button > a.button-primary:focus,
     390            #wpnotice-easyjobs-notice-black_friday_notice .wpnotice-content-wrapper .wpsp-notice-action-button > a.button-primary:hover {
     391                background-color: #3B4045;
     392                color: #fff;
     393                box-shadow: 0px 1px 0px 0px #000000;
     394                border: none;
     395                border-radius: 6px;
     396                padding: 2px 16px;
     397            }
     398
     399            #wpnotice-easyjobs-notice-black_friday_notice .wpnotice-content-wrapper .wpsp-notice-action-button .wpsp-notice-action-dismiss {
     400                background: none;
     401                border: none;
     402                color: #424242;
     403                font-size: 14px;
     404                font-weight: 400;
     405                line-height: 1.5;
     406                text-decoration: underline;
     407                cursor: pointer;
     408                padding: 0;
     409                margin: 0;
     410                display: inline-block;
     411                margin-left: 5px;
     412            }
     413
     414            #wpnotice-easyjobs-notice-black_friday_notice .wpnotice-content-wrapper {
    390415                display: flex;
    391                 align-items: center;
     416                align-items: start;
    392417                justify-content: space-between;
    393418                width: 100%;
    394             }
    395             a.holiday-notice.dismiss-btn {
    396                 display: inline-block;
    397                 padding: 8px;
    398                 color: #5626E7;
    399             }
    400             div.updated.easyjobs-notice .wpnotice-content-wrapper p,
    401             div.updated.easyjobs-notice .wpnotice-content-wrapper a {
     419                flex-direction: column;
     420            }
     421            #wpnotice-easyjobs-notice-black_friday_notice .wpnotice-content-wrapper p{
    402422                font-size: 15px;
    403             }
    404             div.updated.easyjobs-notice.notice-easyjobs-notice-holiday_notice .wpnotice-content-wrapper p {
    405                 font-size: 18px;
    406             }
    407             .easyjobs-notice .wpnotice-content-wrapper > a.button-primary,
    408             .easyjobs-notice .wpnotice-content-wrapper > a.button-primary:focus,
    409             .easyjobs-notice .wpnotice-content-wrapper > a.button-primary:hover {
    410                 background-color: #593dbd;
    411                 border-color: #593dbd;
     423                margin-top: 0;
     424                padding-top: 0;
     425                margin-bottom: 3px;
     426            }
     427            #wpnotice-easyjobs-notice-black_friday_notice .wpnotice-content-wrapper {
     428                padding: 0;
    412429            }
    413430            @media only screen and (max-width: 767px) {
    414                 #wpnotice-easyjobs-notice-halloween_notice,
    415                 #wpnotice-easyjobs-notice-black_friday_notice,
    416                 #wpnotice-easyjobs-notice-holiday_notice {
     431                #wpnotice-easyjobs-notice-black_friday_notice {
    417432                    display: none !important;
    418433                }
  • easyjobs/trunk/changelog.txt

    r3381072 r3397120  
     1= 2.6.5 - 17/11/2025 =
     2* Few minor bug fixes & improvements.
     3
    14= 2.6.4 - 20/10/2025 =
    25* Improved: Candidate filter functionality and UI.
  • easyjobs/trunk/easyjobs.php

    r3381072 r3397120  
    1111 * Plugin URI:        https://easy.jobs
    1212 * Description:       Easy solution for the job recruitment to attract, manage & hire right talent faster.
    13  * Version:           2.6.4
     13 * Version:           2.6.5
    1414 * Author:            easy.jobs
    1515 * Author URI:        https://easy.jobs
     
    2828 * Defines CONSTANTS for Whole plugins.
    2929 */
    30 define( 'EASYJOBS_VERSION', '2.6.4' );
     30define( 'EASYJOBS_VERSION', '2.6.5' );
    3131define( 'EASYJOBS_PLUGIN_URL', 'https://easy.jobs' );
    3232define( 'EASYJOBS_URL', plugins_url( '/', __FILE__ ) );
Note: See TracChangeset for help on using the changeset viewer.