Plugin Directory

Changeset 3127817


Ignore:
Timestamp:
07/30/2024 06:08:02 AM (18 months ago)
Author:
qalam
Message:

Update trunk files

Location:
qalam/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • qalam/trunk/assets/js/main.js

    r2896421 r3127817  
    6666  FLAT_YELLOW = '#ffc940',
    6767  FLAT_BLUE = '#1873D3',
    68   FLAT_GREEN = '#1DBC60',
     68  FLAT_GREEN = '#36CE8E',
    6969  FLAT_BLUE_GREY = '#263238',
    7070  FLAT_PURPLE = '#4a148c',
     
    7474  TRANSPARENT_YELLOW = 'rgba(255, 201, 64, 0.27)',
    7575  TRANSPARENT_BLUE = 'rgba(0, 255, 255, 0.08)',
    76   TRANSPARENT_GREEN = 'rgba(0, 255, 0, 0.08)',
     76  TRANSPARENT_GREEN = '#36ce8e14',
    7777  TRANSPARENT_FLAT_BLUE_GREY = 'rgba(38, 50, 56, 0.08)',
    7878  TRANSPARENT_FLAT_PURPLE = 'rgba(74, 20, 140, 0.08)',
     
    8787  GRAMMAR_LINE_COLOR = FLAT_BLUE,
    8888  GRAMMAR_LABEL_COLOR = TRANSPARENT_BLUE,
    89   T_LINE_COLOR = FLAT_GREEN,
    90   T_LABEL_COLOR = TRANSPARENT_GREEN,
     89  TF_LINE_COLOR = FLAT_GREEN,
     90  TF_LABEL_COLOR = TRANSPARENT_GREEN,
    9191  PHRASING_LINE_COLOR = FLAT_YELLOW,
    9292  PHRASING_LABEL_COLOR = TRANSPARENT_YELLOW,
     
    16161616        )
    16171617      ),
    1618         extend(
    1619           a,
    1620           extractRest(
    1621             t.tafqeetSuggestions,
    1622             TAFQEET_LINE_COLOR,
    1623             TAFQEET_LABEL_COLOR,
    1624             'tafqeet'
    1625           )
    1626         ),
    1627         extend(
    1628           a,
     1618      extend(
     1619        a,
     1620        extractResponse(
     1621          t.spellCheckResponse,
     1622          SC_LINE_COLOR,
     1623          SC_LABEL_COLOR,
     1624          'spellChecker'
     1625        )
     1626      );
     1627      extend(
     1628        a,
    16291629          extractResponse(
    16301630            t.grammarResponse,
     
    16461646          a,
    16471647          extractResponse(
     1648            t.tafqitResponse,
     1649            TF_LINE_COLOR,
     1650            TF_LABEL_COLOR,
     1651            'tafqitResponse'
     1652          )
     1653        ),
     1654        extend(
     1655          a,
     1656          extractResponse(
    16481657            t.otherSuggestions,
    16491658            OS_LINE_COLOR,
     
    16511660            'otherSuggestions'
    16521661          )
    1653         ),
    1654         extend(
    1655           a,
    1656           extractResponse(
    1657             t.spellCheckResponse,
    1658             SC_LINE_COLOR,
    1659             SC_LABEL_COLOR,
    1660             'spellChecker'
    1661           )
    1662         ),
    1663         $.each(t.numDate, function () {
    1664           extend(a, extractRest(this, NUM_LINE_COLOR, NUM_LABEL_COLOR));
    1665         }),
    1666         $.each(t.tashkeel, function () {
    1667           extend(a, extractRest(this, T_LINE_COLOR, T_LABEL_COLOR));
    1668         }),
    1669         $.each(t.punctuation, function () {
    1670           extend(a, extractRest(this, PUNC_LINE_COLOR, PUNC_LABEL_COLOR));
    1671         });
     1662        );
    16721663      let o = [],
    16731664        l = 0;
  • qalam/trunk/qalam.php

    r2896421 r3127817  
    33 * Plugin Name:       Qalam
    44 * Description:       Qalam helps you to write clear, effective texts that are free from spelling and grammatical errors, using the latest artificial intelligence technologies and Arabic language processing.
    5  * Version:           1.0.1
     5 * Version:           1.0.3
    66 * Requires at least: 5.2
    77 * Requires PHP:      7.2
     
    111111        function enqueue()
    112112        {
    113             wp_enqueue_script('qalamMain', plugins_url('assets/js/main.js', __FILE__));
     113            wp_enqueue_script('qalamMain', plugins_url('assets/js/main.js?v1.1.0', __FILE__));
    114114            $scriptData = array(
    115115                'clientId' => esc_attr($this->clientId),
  • qalam/trunk/readme.txt

    r2896421 r3127817  
    44Donate link: https://www.qalam.ai/
    55Requires at least: 5.2
    6 Tested up to: 6.2
    7 Stable tag: 1.0.1
     6Tested up to: 6.6.1
     7Stable tag: 1.0.3
    88License: GPL v2
    99Requires PHP: 7.2
Note: See TracChangeset for help on using the changeset viewer.