Releases: Iune/ida
Releases · Iune/ida
Ida v0.4.1
Summary of Changes
- Fixed spelling error in
check_for_duplicate_votes()
votes check. - Fixed display error when displaying actual number of points in
check_for_points_total()
votes check. - Fixed copy string when multiple entries have the same entry. Previously, it was inadvertently picking up the points for the first entry with the country rather than for the actual entry that received points.
Ida v0.4.0
Summary of Changes
- Program is now implemented in Python 3.10, and is built using Poetry.
- Addresses a bug where parsing country names didn't take into account word boundaries. Previously, a line such as
12 Ukraine
would incorrectly trigger a match forUK
, even though the full country name specified on the line wasUkraine
.
Ida v0.3.0
Summary of Changes
- Instead of reading two files—a JSON file containing country details and an Excel spreadsheet for contest details—the program now reads a single JSON file containing both the country and contest details.
- The program is now written in F#, using the
.NET 5.0
runtime instead of Go. - Parsed votes are now displayed in a table.
- Updated logging messages to be more descriptive.
Ida v0.2.0
Summary of Changes
- Instead of reading a
.tsv
for the country details, the program now reads in a JSON file — this prevents any parsing errors while loading due to the presence of spaces versus tabs. - The program now reads in input Excel spreadsheets for the contest details, instead of the
.tsv
files previously used. This allows the program to directly read in the same file used by the Melbourne Scoreboard Generator. - Updated logging messages to be more descriptive.