Releases: icpctools/icpctools
Releases · icpctools/icpctools
v2.6.1219
Switch from UPC to QR in balloon printout Switch from custom UPCa drawing code to using a QR code library. QR code scanners aren't significantly more expensive than barcode scanners now, it uses less space (so will conflict with messages less on the printout), has built-in error correction, and we can use 'icpc-balloon-X' instead of just a number. I've used the qrcodegen library. The 1.8 release is a little stale, but the github repo still has activity and it's not like QR codes have changed a lot lately (and my UPC code was older). I'm putting the library in the model project instead of balloon util so that it can be reused by other tools (like snakeyaml or sentry).
v2.6.1218
Reduce CDS console output These are pretty minor, but we output an error on startup if there is no specified id and no contest.yaml (and hence we have to use the path to default the id instead). This isn't really an error, so check if the file exists before trying, and reduce it to warning. I've also reduced: Finished scanning astana for changed resources in 94ms to: Scanned astana for changes in 94ms just to reduce the constant output a little bit.
v2.6.1217
Move SVG utility to it's own class We had 3 places reading/converting SVGs, with multiple copies of the image transcoder and parsing w/h info. This moves it all to a shared SVGUtil class with only 2 public functions: loading SVGs (2 versions) and converting to BufferedImages. Since all the work is now done in the model jar the batik jar and its dependencies no longer need to be exported. Some minor formatting and variable overriding cleanup was automatically applied to the image generator.
v2.6.1216
Update SWT libs The presentation admin UI was glitchy on my new machine, eventually tracked it back to needing to update SWT libraries to support current Mac OS/chip. Last time I updated was 4 years ago to add M1 support, so probably time. :)
v2.6.1215
Fix dependencies and simplify batch scripts When trying to test things on my new machine I found the CDS wouldn't start due to missing sentry library, and two cases where new snakeyaml hadn't been updated. Most of our batch files use -cp, but these ones used -jar. Switching them over for consistency, and so that we don't to maintain the ones that have versions in the jar name.
v2.6.1214
Dependency updates Updates snakeyaml, batik, and xmlgraphics to the latest versions.
v2.6.1213
Add problem limits Add problem limits as per the spec update.
v2.6.1212
React to minor VLCJ API change
v2.6.1210
Upgrade ubuntu from 20.04 to 22.04
v2.6.1209
Request wider logos in balloon printout Organization logos are supposed to be 'square-ish', but when they are more horizontal they don't look great in the balloon printouts because we don't give them any more space. We don't want to give these logos too much additional real-estate or squeeze the title either, so this just bumps the width to 2x height. Fixes #1124.