Compare commits

...

4 commits

Author SHA1 Message Date
Matyáš Caras d098965883 Merge pull request 'fix: opravit chybu s burzou' (#5) from burzafix into main
Reviewed-on: #5
2022-12-14 18:37:38 +00:00
Matyáš Caras 0d4c597ad2 fix: opravit chybu s burzou 2022-12-14 19:33:40 +01:00
Matyáš Caras 1996707ee4 Merge branch 'main' into burzafix 2022-12-14 19:32:09 +01:00
Matyáš Caras 91cbf2d390 chore: bump version 2022-12-14 18:56:20 +01:00
3 changed files with 6 additions and 5 deletions

View file

@ -1,3 +1,5 @@
## 1.1.1
- Opravit problém s burzou
## 1.1.0-alpha.1
- Experimentální podpora pro SPŠEI Ostrava
- Hezčí kód

View file

@ -326,7 +326,7 @@ class Canteen {
r"""db\/dbProcessOrder\.jsp.+?type=((plusburza)|(minusburza)).+?(?=')""")
.firstMatch(o);
if (match != null) {
burzaUrl = match.group(1)!.replaceAll("amp;", "");
burzaUrl = match.group(0)!.replaceAll("amp;", "");
}
}

View file

@ -1,9 +1,8 @@
name: canteenlib
description: Library for communication with the czech canteen food ordering system iCanteen
version: 1.1.0-alpha.1
repository: 'https://github.com/hernikplays/canteenlib'
issue_tracker: 'https://github.com/hernikplays/canteenlib/issues'
documentation: 'https://docs.hernikplays.cz'
version: 1.1.1
repository: 'https://git.mnau.xyz/hernik/canteenlib'
issue_tracker: 'https://git.mnau.xyz/hernik/canteenlib/issues'
environment:
sdk: '>=2.16.1 <3.0.0'