Plugin Directory

Changeset 3215400


Ignore:
Timestamp:
12/31/2024 03:25:12 PM (14 months ago)
Author:
fixbd
Message:

int 1.5.0

Location:
educare
Files:
52 added
4 edited

Legend:

Unmodified
Added
Removed
  • educare/trunk/Educare.php

    r3072941 r3215400  
    22/**
    33 * @package     Educare
    4  * @version     1.4.9
     4 * @version     1.5.0
    55 * @author      FixBD <fixbd.org@gmail.com>
    66 * @copyright   GPL-2.0+
     
    1111 * Plugin URI:   http://github.com/fixbd/educare
    1212 * Description:  Educare is a online Students & Results management system developed by FixBD. This powerful results management plugin is built to easily manage institute, academy, or student results online. Designed to be universally adaptable, this solution seamlessly integrates with result systems across the world. No matter the format, Educare supports diverse result systems, making it your go-to choice for streamlined and efficient management.
    13  * Version:      1.4.9
     13 * Version:      1.5.0
    1414 * Author:       FixBD
    1515 * Author URI:   http://fixbd.net
     
    4545    // Make it simple! (Define Educare Name-Space)
    4646    // Plugin Version
    47     define('EDUCARE_VERSION', '1.4.9');
     47    define('EDUCARE_VERSION', '1.5.0');
    4848    // Settings Version
    4949    define('EDUCARE_SETTINGS_VERSION', '1.0');
  • educare/trunk/changelog.md

    r3072941 r3215400  
     1## [1.5.0]
     2
     3- Fixed an issue causing invalid results to display on the front end.
     4- Addressed a problem where results were not displayed when added without a subject.
     5- Updated "Tested up to" WordPress version to 6.7.1
     6
    17## [1.4.9]
    28
    3 - Sets the WordPress tested up to version to 6.5.2
     9- Set the WordPress tested up to version to 6.5.2
    410
    511## [1.4.8]
    612
    7 - Sets the WordPress tested up to version to 6.4.2
     13- Set the WordPress tested up to version to 6.4.2
    814- Resolved backslash issues when add extra fields with character (').
    915
     
    1723
    1824- Removed unnecessary code and comments.
    19 - Sets the WordPress tested up to version to 6.3.1
     25- Set the WordPress tested up to version to 6.3.1
    2026
    2127## [1.4.5]
  • educare/trunk/readme.txt

    r3072941 r3215400  
    22
    33Contributors:        fixbd
    4 GitHub link:         https://github.com/fixbd/educare
    5 Tags:                Result management, Academic, Results, Students, Education, School, College, Exam, School management, publish results, Coaching Center
    6 Requires at least:   3.8
    7 Tested up to:        6.5.2
    8 Requires PHP:        5.2.4
    9 Stable tag:          1.4.9
     4Donate link:         https://buymeacoffee.com/fixbd
    105License:             GPLv2 or later
    116License URI:         http://www.gnu.org/licenses/gpl-2.0.html
     7Tags:                Academic, Education, Result Management, Results, Students & School Management
     8Requires at least:   3.8
     9Tested up to:        6.7.1
     10Stable tag:          1.5.0
     11Requires PHP:        5.2.4
    1212
    1313No. 1 Academic Students & Result Management solutions For WordPress. Educare Help You To Easily Publish And Manage Any Type Of Results At Online.
     
    1919Educare is a online Students & Results management system developed by FixBD. This powerful results management plugin is built to easily manage institute, academy, or student results online. Designed to be universally adaptable, this solution seamlessly integrates with result systems across the world. No matter the format, Educare supports diverse result systems, making it your go-to choice for streamlined and efficient management.
    2020
    21 [youtube https://youtu.be/U29ZoNDBiDU]
     21[youtube https://youtu.be/WN17qvzBqDs]
    2222
    2323Educare is free and always will be, but it has a premium version that is even more functional and powerful.
    2424
    2525Please note: This is an old video. We are updating Educare regularly. More features have been added in the updated version. We will upload it soon.
     26
     27[youtube https://youtu.be/AlNzzWjNmjk]
    2628
    2729== Features ==
     
    411413== Changelog ==
    412414
    413 Here are the highlights of the last four updates:
     415Here are the highlights of the last few updates:
     416
     417= [1.5.0] =
     418
     419* Fixed an issue causing invalid results to display on the front end.
     420* Addressed a problem where results were not displayed when added without a subject.
     421* Updated "Tested up to" WordPress version to 6.7.1
    414422
    415423= [1.4.9] =
  • educare/trunk/templates/users/results_systems.php

    r2944930 r3215400  
    181181        $gpa += $add_optinal_mark;
    182182        if (count($main_subjects) >= 0) {
    183             $gpa /= count($main_subjects);
     183           
     184            if ($main_subjects) {
     185                $gpa /= count($main_subjects);
     186            }
     187           
    184188            // ignore unnecessary digits!
    185189            $gpa = number_format((float)$gpa, 2, '.', '');
Note: See TracChangeset for help on using the changeset viewer.