Skip to content

Releases: Vexcited/EDT-IUT-Info-Limoges

1.6.10

14 Oct 11:34
b0b9f9f
Compare
Choose a tag to compare
  • Fix reference for S3.01B

1.6.9

18 Sep 06:05
Compare
Choose a tag to compare
  • Add St (stage) references for S3 and S4

1.6.8

14 Jun 11:53
Compare
Choose a tag to compare

Use HTTPS to get the timetable from the remote server.

v1.6.7...v1.6.8

1.6.7

15 May 16:44
Compare
Choose a tag to compare

Only minor fixes such as references descriptions and dependencies bump.

v1.6.6...v1.6.7

1.6.6

09 Feb 09:53
Compare
Choose a tag to compare

Only minor fixes such as references description.

v1.6.5...v1.6.6

1.6.5

16 Nov 21:55
Compare
Choose a tag to compare
  • Fixes a "Body used" issue when looking up for entry.getTimetable() after doing entry.lastUpdated().

v1.6.4...v1.6.5

1.6.4

14 Nov 09:26
Compare
Choose a tag to compare
  • Fixes reference name for S5A.02

v1.6.3...v1.6.4

1.6.3

10 Oct 06:50
Compare
Choose a tag to compare
  • Fix documentation

v1.6.2...v1.6.3

1.6.2

10 Oct 06:42
Compare
Choose a tag to compare
  • Add support for subgroup SAEs
// This is now a possibility.
if (lesson.type === LESSON_TYPES.SAE && typeof lesson.group.sub !== "undefined") {
  isForUser = lesson.group.main === 1 && lesson.group.sub === SUBGROUPS.A;
}

v1.6.1...v1.6.2

1.6.1

05 Oct 06:36
Compare
Choose a tag to compare
  • Implements lastUpdated() function on TimetableEntry class, see example below.
import { YEARS, getLatestTimetableEntry } from "edt-iut-info-limoges";

const entry = await getLatestTimetableEntry(YEARS.A1);
const last_update = await entry.lastUpdated();
console.log(last_update); // DateTime from `luxon`

v1.6.0...v1.6.1