diff --git a/CHANGELOG.md b/CHANGELOG.md index 8214165..0cd465e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [4.0.1] - 2023-12-10 + +### Fixed +- Counting the average for annual grades did not work. + ## [4.0.0] - 2023-10-16 ### Added diff --git a/extensions/combined/manifest-chrome.json b/extensions/combined/manifest-chrome.json index ac7b8d6..01705df 100644 --- a/extensions/combined/manifest-chrome.json +++ b/extensions/combined/manifest-chrome.json @@ -1,7 +1,7 @@ { "manifest_version": 3, "name": "Librus Średnia", - "version": "4.0.0", + "version": "4.0.1", "description": "Wtyczka wyświetlająca średnią ocen dla każdego przedmiotu, mimo że ta funkcja została wyłączona przez administratora szkoły.", "author": "Krzysztof Kwiatkowski", "icons": { diff --git a/extensions/combined/src/przegladaj_oceny/srednia.js b/extensions/combined/src/przegladaj_oceny/srednia.js index 0e1389e..ba64eef 100644 --- a/extensions/combined/src/przegladaj_oceny/srednia.js +++ b/extensions/combined/src/przegladaj_oceny/srednia.js @@ -91,7 +91,7 @@ function annualAverages(tbody, tdsIndexes) { } function parseAnnual(tds, annualAndTdsKey) { - const grade = getAnnualGrade(tds, tdsIndexes[annualAndTdsKey]); + const grade = getAnnualGrade(tds, tdsIndexes.get(annualAndTdsKey)); if (grade) { annualsTemp[annualAndTdsKey][0] += grade; annualsTemp[annualAndTdsKey][1]++; diff --git a/package.json b/package.json index eb39297..2048a92 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "librus-srednia", - "version": "4.0.0", + "version": "4.0.1", "description": "Rozszerzenie do najpopularniejszych przeglądarek dodające możliwość wyświetlenia średniej z ocen, która nie zaśmieca strony.", "main": "index.js", "scripts": {