Tiger Grades v0.0.4 - Enhanced Analytics & Version Management
We're excited to announce the release of Tiger Grades v0.0.4, featuring enhanced category weight analytics, improved version management, and expanded multilingual support with Mandarin translations.
โจ What's New in v0.0.4โ
๐ Category Weight Analyticsโ
The standout feature of this release is the new category weight visualization system. Teachers can now view detailed analytics about how grade categories impact overall student performance:
// New AJAX endpoint for category weight analysis
fetch('/wp-json/tiger-grades/v1/analytics/category-weights', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
class_id: classId,
grade_type: 'current_semester'
})
})
.then(response => response.json())
.then(data => displayCategoryWeights(data));
This feature provides:
- Real-time weight calculations for each grade category
- Visual breakdown of how categories contribute to final grades
- Interactive charts showing category impact across different grade types
- Actionable insights for optimizing grading strategies
