casr-logbook 0.0.11 → 0.0.12
raw patch · 3 files changed
+31/−11 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- casr-logbook.cabal +1/−1
- changelog +4/−0
- src/Data/Aviation/Casr/Logbook/ExamEntry.hs +26/−10
casr-logbook.cabal view
@@ -1,5 +1,5 @@ name: casr-logbook-version: 0.0.11+version: 0.0.12 license: OtherLicense license-file: LICENSE author: Tony Morris <ʇǝu˙sıɹɹoɯʇ@ןןǝʞsɐɥ>
changelog view
@@ -1,3 +1,7 @@+0.0.12++* Fix exam output for HTML.+ 0.0.11 * Fix build to export `FlightEntry`.
src/Data/Aviation/Casr/Logbook/ExamEntry.hs view
@@ -51,19 +51,35 @@ , "<li class=\"date\">" , html date , "</li>"- , "<li class=\"delegate\">"- , html dn- , " ("- , html dr- , ")"- , "</li>"+ , concat+ [+ "<span class=\"heading delegateheading\">"+ , "Delegate"+ , "</span>"+ , ": "+ , "<span class=\"info delegateinfo\">"+ , html dn+ , " ("+ , html dr+ , ")"+ , "</span>"+ ]+ , "</li>" , "<li class=\"delegatearn\">" , html da- , "</li>" , "<li class=\"examresult\">"- , html r- , "/"- , html m+ , concat+ [+ "<span class=\"heading resultheading\">"+ , "Result"+ , "</span>"+ , ": "+ , "<span class=\"info resultinfo\">"+ , html r+ , "/"+ , html m+ , "</span>"+ ] , "</li>" , "</ul>" ]