Changeset 3127817
- Timestamp:
- 07/30/2024 06:08:02 AM (18 months ago)
- Location:
- qalam/trunk
- Files:
-
- 3 edited
-
assets/js/main.js (modified) (6 diffs)
-
qalam.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
qalam/trunk/assets/js/main.js
r2896421 r3127817 66 66 FLAT_YELLOW = '#ffc940', 67 67 FLAT_BLUE = '#1873D3', 68 FLAT_GREEN = '# 1DBC60',68 FLAT_GREEN = '#36CE8E', 69 69 FLAT_BLUE_GREY = '#263238', 70 70 FLAT_PURPLE = '#4a148c', … … 74 74 TRANSPARENT_YELLOW = 'rgba(255, 201, 64, 0.27)', 75 75 TRANSPARENT_BLUE = 'rgba(0, 255, 255, 0.08)', 76 TRANSPARENT_GREEN = ' rgba(0, 255, 0, 0.08)',76 TRANSPARENT_GREEN = '#36ce8e14', 77 77 TRANSPARENT_FLAT_BLUE_GREY = 'rgba(38, 50, 56, 0.08)', 78 78 TRANSPARENT_FLAT_PURPLE = 'rgba(74, 20, 140, 0.08)', … … 87 87 GRAMMAR_LINE_COLOR = FLAT_BLUE, 88 88 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, 91 91 PHRASING_LINE_COLOR = FLAT_YELLOW, 92 92 PHRASING_LABEL_COLOR = TRANSPARENT_YELLOW, … … 1616 1616 ) 1617 1617 ), 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, 1629 1629 extractResponse( 1630 1630 t.grammarResponse, … … 1646 1646 a, 1647 1647 extractResponse( 1648 t.tafqitResponse, 1649 TF_LINE_COLOR, 1650 TF_LABEL_COLOR, 1651 'tafqitResponse' 1652 ) 1653 ), 1654 extend( 1655 a, 1656 extractResponse( 1648 1657 t.otherSuggestions, 1649 1658 OS_LINE_COLOR, … … 1651 1660 'otherSuggestions' 1652 1661 ) 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 ); 1672 1663 let o = [], 1673 1664 l = 0; -
qalam/trunk/qalam.php
r2896421 r3127817 3 3 * Plugin Name: Qalam 4 4 * 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. 15 * Version: 1.0.3 6 6 * Requires at least: 5.2 7 7 * Requires PHP: 7.2 … … 111 111 function enqueue() 112 112 { 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__)); 114 114 $scriptData = array( 115 115 'clientId' => esc_attr($this->clientId), -
qalam/trunk/readme.txt
r2896421 r3127817 4 4 Donate link: https://www.qalam.ai/ 5 5 Requires at least: 5.2 6 Tested up to: 6. 27 Stable tag: 1.0. 16 Tested up to: 6.6.1 7 Stable tag: 1.0.3 8 8 License: GPL v2 9 9 Requires PHP: 7.2
Note: See TracChangeset
for help on using the changeset viewer.