Plugin Directory

Changeset 3275583


Ignore:
Timestamp:
04/17/2025 09:23:44 AM (10 months ago)
Author:
codeisartnet
Message:

update

Location:
codeart-units-converter
Files:
16 added
8 deleted
5 edited
18 copied

Legend:

Unmodified
Added
Removed
  • codeart-units-converter/tags/2.5.0/codeart-units-converter.php

    r3274842 r3275583  
    1010 * Text Domain: codeart-units-converter
    1111 * Domain Path: /i18n/languages/
    12  * Version: 2.4.0
     12 * Version: 2.5.0
    1313 * Tested up to: 6.8.0
    1414 */
     
    100100//area
    101101include_once plugin_dir_path(__FILE__) . 'include/converter/area/area.php';
     102//length
     103include_once plugin_dir_path(__FILE__) . 'include/converter/length/length.php';
     104//temperature
     105include_once plugin_dir_path(__FILE__) . 'include/converter/temperature/temperature.php';
     106//volume
     107include_once plugin_dir_path(__FILE__) . 'include/converter/volume/volume.php';
     108//time
     109include_once plugin_dir_path(__FILE__) . 'include/converter/time/time.php';
     110
     111
     112
     113
     114
    102115
    103116
  • codeart-units-converter/tags/2.5.0/readme.txt

    r3274842 r3275583  
    66Requires PHP: 7.0
    77Tested up to: 6.8.0
    8 Stable tag: 2.4.0
     8Stable tag: 2.5.0
    99License: GPLv3
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    2525* ✅ Speed units converter (km/h, m/s, mph, knots)
    2626* ✅ Area units converter (m², ft², acres, hectares, etc.)
     27* ✅ Volume units converter (liters, gallons, cubic meters, etc.)
     28* ✅ Length units converter (meters, feet, inches, miles, etc.)
     29* ✅ Temperature converter (Celsius, Fahrenheit, Kelvin)
     30* ✅ Time converter (seconds, minutes, hours, days, etc.)
     31* ✅ Digital Storage converter (KB, MB, GB, TB, etc.)
     32* ✅ Energy converter (Joules, Calories, kWh, etc.)
     33* ✅ Power converter (Watts, Kilowatts, Horsepower, etc.)
     34* ✅ Pressure converter (Pa, bar, PSI, atm, etc.)
     35* ✅ Force converter (Newtons, dynes, pound-force, etc.)
     36* ✅ Angle converter (degrees, radians, grads)
     37* ✅ Frequency converter (Hz, kHz, MHz, etc.)
     38* ✅ Fuel Economy converter (mpg, L/100km, etc.)
     39* ✅ Density converter (kg/m³, g/cm³, lb/ft³, etc.)
    2740* 🧮 Basic Calculator – For everyday arithmetic
    2841* 🧪 Scientific Calculator – Advanced functions like powers, roots, trigonometry, logs, π, and e
     
    3346### Example Shortcodes
    3447
    35 * `[codeart_units_converter_weight]`
    36 * `[codeart_units_converter_speed]`
    37 * `[codeart_units_converter_area]`
    38 * `[codeart_units_converter_basic_calculator]`
    39 * `[codeart_units_converter_scientific_calculator]`
     48Use the `type` attribute to specify the converter or calculator. You can also use the `style` attribute to customize layout (e.g., `table`, `compact`, `default`).
     49
     50* `[codeart_units_converter_converters type='weight' style='table']`
     51* `[codeart_units_converter_converters type='speed' style='table']`
     52* `[codeart_units_converter_converters type='area' style='table']`
     53* `[codeart_units_converter_converters type='volume' style='table']`
     54* `[codeart_units_converter_converters type='length' style='table']`
     55* `[codeart_units_converter_converters type='temperature' style='table']`
     56* `[codeart_units_converter_converters type='time' style='table']`
     57* `[codeart_units_converter_converters type='digital_storage' style='table']`
     58* `[codeart_units_converter_converters type='energy' style='table']`
     59* `[codeart_units_converter_converters type='power' style='table']`
     60* `[codeart_units_converter_converters type='pressure' style='table']`
     61* `[codeart_units_converter_converters type='force' style='table']`
     62* `[codeart_units_converter_converters type='angle' style='table']`
     63* `[codeart_units_converter_converters type='frequency' style='table']`
     64* `[codeart_units_converter_converters type='fuel_economy' style='table']`
     65* `[codeart_units_converter_converters type='density' style='table']`
     66* `[codeart_units_converter_converters type='basic_calculator' style='default']`
     67* `[codeart_units_converter_converters type='scientific_calculator' style='default']`
    4068
    4169### Need Help?
     
    6593
    6694Currently, the plugin includes:
    67 - 3 unit converters (Weight, Speed, Area)
     95- 16+ unit converters (Weight, Speed, Area, Volume, Length, Temperature, Time, Digital Storage, Energy, Power, Pressure, Force, Angle, Frequency, Fuel Economy, Density)
    6896- 2 calculators (Basic and Scientific)
    6997
    70 More converters are in development and will be released in future updates.
     98More features are under development.
    7199
    72100== Screenshots ==
     
    751032. Speed unit converter
    761043. Area unit converter
    77 4. Basic calculator
    78 5. Scientific calculator
     1054. Volume unit converter
     1065. Temperature converter
     1076. Scientific calculator
    79108
    80109== Changelog ==
     110
     111= 2.6.0 =
     112* 🔥 Major update: Added 13 new unit converters (Length, Volume, Temperature, Time, Digital Storage, Energy, Power, Pressure, Force, Angle, Frequency, Fuel Economy, Density)
     113* 🔀 New unified shortcode: `[codeart_units_converter_converters type='...' style='...']`
     114* Enhanced responsiveness
     115* Added full shortcode documentation
    81116
    82117= 1.3.0 =
     
    108143== Upgrade Notice ==
    109144
     145= 2.4.0 =
     146Major update: Added 13 new converters and new shortcode system. Replace old shortcodes with the new `[codeart_units_converter_converters type='...']` format. Clear browser and WordPress caches after update.
     147
    110148= 1.3.0 =
    111149New features added: Basic and Scientific Calculators. Clear browser cache and any WordPress caching plugins after update.
  • codeart-units-converter/tags/2.5.0/templates/admin/about.htm

    r3274842 r3275583  
    360360                        <td data-label="Description" class="description">Converts between square meters, square feet, acres, and square kilometers.</td>
    361361                    </tr>
     362                    <tr>
     363                        <td data-label="Converter">Length</td>
     364                        <td data-label="Shortcode">
     365                            <strong>Table</strong><br>
     366                            <code class="copyable">[codeart_units_converter_converters type='length' style='table']</code>
     367                            <button class="copy-btn">Copy</button><br>
     368                            <strong>List</strong><br>
     369                            <code class="copyable">[codeart_units_converter_converters type='length' style='list']</code>
     370                            <button class="copy-btn">Copy</button>
     371                        </td>
     372                        <td data-label="Description" class="description">Converts between meters, kilometers, miles, feet, inches, and more.</td>
     373                    </tr>
     374                    <tr>
     375                        <td data-label="Converter">Temperature</td>
     376                        <td data-label="Shortcode">
     377                            <strong>Table</strong><br>
     378                            <code class="copyable">[codeart_units_converter_converters type='temperature' style='table']</code>
     379                            <button class="copy-btn">Copy</button><br>
     380                            <strong>List</strong><br>
     381                            <code class="copyable">[codeart_units_converter_converters type='temperature' style='list']</code>
     382                            <button class="copy-btn">Copy</button>
     383                        </td>
     384                        <td data-label="Description" class="description">Converts between Celsius, Fahrenheit, and Kelvin.</td>
     385                    </tr>
     386                    <tr>
     387                        <td data-label="Converter">Volume</td>
     388                        <td data-label="Shortcode">
     389                            <strong>Table</strong><br>
     390                            <code class="copyable">[codeart_units_converter_converters type='volume' style='table']</code>
     391                            <button class="copy-btn">Copy</button><br>
     392                            <strong>List</strong><br>
     393                            <code class="copyable">[codeart_units_converter_converters type='volume' style='list']</code>
     394                            <button class="copy-btn">Copy</button>
     395                        </td>
     396                        <td data-label="Description" class="description">Converts between liters, milliliters, gallons, cups, and more.</td>
     397                    </tr>
     398                    <tr>
     399                        <td data-label="Converter">Time</td>
     400                        <td data-label="Shortcode">
     401                            <strong>Table</strong><br>
     402                            <code class="copyable">[codeart_units_converter_converters type='time' style='table']</code>
     403                            <button class="copy-btn">Copy</button><br>
     404                            <strong>List</strong><br>
     405                            <code class="copyable">[codeart_units_converter_converters type='time' style='list']</code>
     406                            <button class="copy-btn">Copy</button>
     407                        </td>
     408                        <td data-label="Description" class="description">Converts between seconds, minutes, hours, days, and weeks.</td>
     409                    </tr>
     410
    362411                </tbody>
    363412            </table>
  • codeart-units-converter/tags/2.5.0/templates/user/units/table/container.htm

    r3272469 r3275583  
    9090            if (this.readyState == 4 && this.status == 200) {
    9191                var jsonObj = JSON.parse(this.responseText);
    92 
     92                console.table(jsonObj);
    9393                if (jsonObj.results) {
    9494                    for (var key in jsonObj.results) {
  • codeart-units-converter/trunk/codeart-units-converter.php

    r3274842 r3275583  
    1010 * Text Domain: codeart-units-converter
    1111 * Domain Path: /i18n/languages/
    12  * Version: 2.4.0
     12 * Version: 2.5.0
    1313 * Tested up to: 6.8.0
    1414 */
     
    100100//area
    101101include_once plugin_dir_path(__FILE__) . 'include/converter/area/area.php';
     102//length
     103include_once plugin_dir_path(__FILE__) . 'include/converter/length/length.php';
     104//temperature
     105include_once plugin_dir_path(__FILE__) . 'include/converter/temperature/temperature.php';
     106//volume
     107include_once plugin_dir_path(__FILE__) . 'include/converter/volume/volume.php';
     108//time
     109include_once plugin_dir_path(__FILE__) . 'include/converter/time/time.php';
     110
     111
     112
     113
     114
    102115
    103116
  • codeart-units-converter/trunk/readme.txt

    r3274842 r3275583  
    66Requires PHP: 7.0
    77Tested up to: 6.8.0
    8 Stable tag: 2.4.0
     8Stable tag: 2.5.0
    99License: GPLv3
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    2525* ✅ Speed units converter (km/h, m/s, mph, knots)
    2626* ✅ Area units converter (m², ft², acres, hectares, etc.)
     27* ✅ Volume units converter (liters, gallons, cubic meters, etc.)
     28* ✅ Length units converter (meters, feet, inches, miles, etc.)
     29* ✅ Temperature converter (Celsius, Fahrenheit, Kelvin)
     30* ✅ Time converter (seconds, minutes, hours, days, etc.)
     31* ✅ Digital Storage converter (KB, MB, GB, TB, etc.)
     32* ✅ Energy converter (Joules, Calories, kWh, etc.)
     33* ✅ Power converter (Watts, Kilowatts, Horsepower, etc.)
     34* ✅ Pressure converter (Pa, bar, PSI, atm, etc.)
     35* ✅ Force converter (Newtons, dynes, pound-force, etc.)
     36* ✅ Angle converter (degrees, radians, grads)
     37* ✅ Frequency converter (Hz, kHz, MHz, etc.)
     38* ✅ Fuel Economy converter (mpg, L/100km, etc.)
     39* ✅ Density converter (kg/m³, g/cm³, lb/ft³, etc.)
    2740* 🧮 Basic Calculator – For everyday arithmetic
    2841* 🧪 Scientific Calculator – Advanced functions like powers, roots, trigonometry, logs, π, and e
     
    3346### Example Shortcodes
    3447
    35 * `[codeart_units_converter_weight]`
    36 * `[codeart_units_converter_speed]`
    37 * `[codeart_units_converter_area]`
    38 * `[codeart_units_converter_basic_calculator]`
    39 * `[codeart_units_converter_scientific_calculator]`
     48Use the `type` attribute to specify the converter or calculator. You can also use the `style` attribute to customize layout (e.g., `table`, `compact`, `default`).
     49
     50* `[codeart_units_converter_converters type='weight' style='table']`
     51* `[codeart_units_converter_converters type='speed' style='table']`
     52* `[codeart_units_converter_converters type='area' style='table']`
     53* `[codeart_units_converter_converters type='volume' style='table']`
     54* `[codeart_units_converter_converters type='length' style='table']`
     55* `[codeart_units_converter_converters type='temperature' style='table']`
     56* `[codeart_units_converter_converters type='time' style='table']`
     57* `[codeart_units_converter_converters type='digital_storage' style='table']`
     58* `[codeart_units_converter_converters type='energy' style='table']`
     59* `[codeart_units_converter_converters type='power' style='table']`
     60* `[codeart_units_converter_converters type='pressure' style='table']`
     61* `[codeart_units_converter_converters type='force' style='table']`
     62* `[codeart_units_converter_converters type='angle' style='table']`
     63* `[codeart_units_converter_converters type='frequency' style='table']`
     64* `[codeart_units_converter_converters type='fuel_economy' style='table']`
     65* `[codeart_units_converter_converters type='density' style='table']`
     66* `[codeart_units_converter_converters type='basic_calculator' style='default']`
     67* `[codeart_units_converter_converters type='scientific_calculator' style='default']`
    4068
    4169### Need Help?
     
    6593
    6694Currently, the plugin includes:
    67 - 3 unit converters (Weight, Speed, Area)
     95- 16+ unit converters (Weight, Speed, Area, Volume, Length, Temperature, Time, Digital Storage, Energy, Power, Pressure, Force, Angle, Frequency, Fuel Economy, Density)
    6896- 2 calculators (Basic and Scientific)
    6997
    70 More converters are in development and will be released in future updates.
     98More features are under development.
    7199
    72100== Screenshots ==
     
    751032. Speed unit converter
    761043. Area unit converter
    77 4. Basic calculator
    78 5. Scientific calculator
     1054. Volume unit converter
     1065. Temperature converter
     1076. Scientific calculator
    79108
    80109== Changelog ==
     110
     111= 2.6.0 =
     112* 🔥 Major update: Added 13 new unit converters (Length, Volume, Temperature, Time, Digital Storage, Energy, Power, Pressure, Force, Angle, Frequency, Fuel Economy, Density)
     113* 🔀 New unified shortcode: `[codeart_units_converter_converters type='...' style='...']`
     114* Enhanced responsiveness
     115* Added full shortcode documentation
    81116
    82117= 1.3.0 =
     
    108143== Upgrade Notice ==
    109144
     145= 2.4.0 =
     146Major update: Added 13 new converters and new shortcode system. Replace old shortcodes with the new `[codeart_units_converter_converters type='...']` format. Clear browser and WordPress caches after update.
     147
    110148= 1.3.0 =
    111149New features added: Basic and Scientific Calculators. Clear browser cache and any WordPress caching plugins after update.
  • codeart-units-converter/trunk/templates/admin/about.htm

    r3274842 r3275583  
    360360                        <td data-label="Description" class="description">Converts between square meters, square feet, acres, and square kilometers.</td>
    361361                    </tr>
     362                    <tr>
     363                        <td data-label="Converter">Length</td>
     364                        <td data-label="Shortcode">
     365                            <strong>Table</strong><br>
     366                            <code class="copyable">[codeart_units_converter_converters type='length' style='table']</code>
     367                            <button class="copy-btn">Copy</button><br>
     368                            <strong>List</strong><br>
     369                            <code class="copyable">[codeart_units_converter_converters type='length' style='list']</code>
     370                            <button class="copy-btn">Copy</button>
     371                        </td>
     372                        <td data-label="Description" class="description">Converts between meters, kilometers, miles, feet, inches, and more.</td>
     373                    </tr>
     374                    <tr>
     375                        <td data-label="Converter">Temperature</td>
     376                        <td data-label="Shortcode">
     377                            <strong>Table</strong><br>
     378                            <code class="copyable">[codeart_units_converter_converters type='temperature' style='table']</code>
     379                            <button class="copy-btn">Copy</button><br>
     380                            <strong>List</strong><br>
     381                            <code class="copyable">[codeart_units_converter_converters type='temperature' style='list']</code>
     382                            <button class="copy-btn">Copy</button>
     383                        </td>
     384                        <td data-label="Description" class="description">Converts between Celsius, Fahrenheit, and Kelvin.</td>
     385                    </tr>
     386                    <tr>
     387                        <td data-label="Converter">Volume</td>
     388                        <td data-label="Shortcode">
     389                            <strong>Table</strong><br>
     390                            <code class="copyable">[codeart_units_converter_converters type='volume' style='table']</code>
     391                            <button class="copy-btn">Copy</button><br>
     392                            <strong>List</strong><br>
     393                            <code class="copyable">[codeart_units_converter_converters type='volume' style='list']</code>
     394                            <button class="copy-btn">Copy</button>
     395                        </td>
     396                        <td data-label="Description" class="description">Converts between liters, milliliters, gallons, cups, and more.</td>
     397                    </tr>
     398                    <tr>
     399                        <td data-label="Converter">Time</td>
     400                        <td data-label="Shortcode">
     401                            <strong>Table</strong><br>
     402                            <code class="copyable">[codeart_units_converter_converters type='time' style='table']</code>
     403                            <button class="copy-btn">Copy</button><br>
     404                            <strong>List</strong><br>
     405                            <code class="copyable">[codeart_units_converter_converters type='time' style='list']</code>
     406                            <button class="copy-btn">Copy</button>
     407                        </td>
     408                        <td data-label="Description" class="description">Converts between seconds, minutes, hours, days, and weeks.</td>
     409                    </tr>
     410
    362411                </tbody>
    363412            </table>
  • codeart-units-converter/trunk/templates/user/units/table/container.htm

    r3272469 r3275583  
    9090            if (this.readyState == 4 && this.status == 200) {
    9191                var jsonObj = JSON.parse(this.responseText);
    92 
     92                console.table(jsonObj);
    9393                if (jsonObj.results) {
    9494                    for (var key in jsonObj.results) {
Note: See TracChangeset for help on using the changeset viewer.