Plugin Directory

Changeset 3039747


Ignore:
Timestamp:
02/22/2024 02:10:20 PM (2 years ago)
Author:
easyling
Message:

Updating plugin to version 1.7

Location:
easyling/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • easyling/trunk/assets/js/admin.js

    r2922201 r3039747  
    2121    locationHost = $.trim( locationHost );
    2222    projectCode = $.trim( projectCode );
    23 
    24     if ( ! locationHost || ! projectCode ) {
     23   
     24    if ( ! locationHost ) {
    2525        $('#EasylingLocationLogin').attr( 'href', '#' );
    2626        $('#EasylingLocationLogin').attr( 'onclick', 'return false' );
     
    2828    }
    2929
    30     var url = 'https://' + locationHost + '/_el/dashboard/project/' + projectCode + '/language-selector';
     30    var url = 'https://' + locationHost;
     31
     32    if ( ! projectCode ) {
     33        $('#EasylingLocationLogin').attr( 'href', url );
     34        $('#EasylingLocationLogin').removeAttr( 'onclick' );
     35        return;
     36    }
     37
     38    url += '/_el/dashboard/project/' + projectCode + '/language-selector';
    3139    $('#EasylingLocationLogin').attr( 'href', url );
    3240    $('#EasylingLocationLogin').removeAttr( 'onclick' );
  • easyling/trunk/easyling.php

    r3035871 r3039747  
    44Plugin URI: https://www.easyling.com/
    55Description: One-click website translation solution from Easyling.
    6 Version: 1.6
     6Version: 1.7
    77Author: Easyling
    88Copyright: Easyling
     
    7575  private function __construct() {
    7676    $this->settings = array(
    77       'version'  => '1.3',
     77      'version'  => '1.7',
    7878      'path'     => plugin_dir_path( __FILE__ ),
    7979      'url'      => plugin_dir_url( __FILE__ ),
  • easyling/trunk/readme.txt

    r3035871 r3039747  
    44Requires at least: 4.7
    55Tested up to: 6.4.1
    6 Stable tag: 1.6
     6Stable tag: 1.7
    77Requires PHP: 7.0
    88License: GPLv2 or later
     
    4242
    43431. Plugin settings.
    44  
     44
    4545== Changelog ==
     46= 1.7 =
     47Release Date: February 22nd, 2024
     48
     49Enhancements:
     50
     51* Small tweaks in admin area
     52
    4653= 1.6 =
    4754Release Date: February 14th, 2024
Note: See TracChangeset for help on using the changeset viewer.