Skip to content

Releases: Duosmium/sciolyff

Release 0.6.0

30 Mar 22:44
9e06f89
Compare
Choose a tag to compare

Breaking Changes

sciolyff.valid returns a status property instead of readable, which only provides status of the validation. Validation errors have been moved to the errors property as an array of Errors (see below). A helper function for parsing the errors is at sciolyff.format.

interface Error {
  warning: boolean;
  message: string;
  location?: {
    line: number;
    column: number;
    position: number;
  };
  context: unknown;
}
function format(
  errors?: Error[],
  filename?: string,
  colors?: boolean
): string

Changelog

  • bold title (032a19d)
  • display place information for event errors (fb666df)
  • factor out error formatting (511d66a)
  • update deps (907db93)
  • add sourcemaps for line number information (d12e65e)
  • disable tracks with reverse scoring (0d64368)

Release 0.5.2

25 Mar 03:04
f82434a
Compare
Choose a tag to compare

Release 0.5.1

25 Mar 02:32
d57b7e4
Compare
Choose a tag to compare

Release 0.5.0

25 Mar 02:29
b72aa80
Compare
Choose a tag to compare
  • Merge pull request #3 from Duosmium:reverse-scoring (ea3052a)
  • fix medal counts (e747106)
  • disable more keys when reverse (c120ae4)
  • fix validation (1d3d692)
  • fix points (7b3947d)
  • implement reverse scoring (b65500a)
  • add validation schema (4af93f0)
  • don't set track info if there are no tracks (19e5184)
  • update demo for explicit placings (82d754b)
  • add explicit placings (5043193)

Release 0.4.0

18 Mar 03:44
884432d
Compare
Choose a tag to compare
  • makes sense for these to be undefined (50bb475)

Release 0.3.0

16 Mar 00:47
c39575a
Compare
Choose a tag to compare

Release 0.2.5

11 Mar 23:44
9cbd7fd
Compare
Choose a tag to compare
  • mark unknowns like no shows (36b5ca3)

Release 0.2.4

10 Mar 00:03
723593c
Compare
Choose a tag to compare

Release 0.2.3

08 Mar 18:17
4341b22
Compare
Choose a tag to compare
  • fix issue with undefined places when computing maxplace (818b556)

Release 0.2.2

02 Mar 23:32
94adcfe
Compare
Choose a tag to compare
  • add superscore flag that disables certain checks (5a55225)