packages feed

casr-logbook 0.6.1 → 0.6.2

raw patch · 3 files changed

+26/−4 lines, 3 files

Files

casr-logbook.cabal view
@@ -1,5 +1,5 @@ name:               casr-logbook-version:            0.6.1+version:            0.6.2 license:            OtherLicense license-file:       LICENSE author:             Tony Morris <ʇǝu˙sıɹɹoɯʇ@ןןǝʞsɐɥ>
changelog view
@@ -1,3 +1,7 @@+0.6.2++* Update to instruction for flight time report.+ 0.6.1  * Update to instruction for flight time report.
src/Data/Aviation/Casr/Logbook/Types/AircraftFlight.hs view
@@ -11,6 +11,7 @@ , commandonlyflight , noif_commandonlyflight , instructionflight+, noif_instructionflight ) where  import Control.Category((.))@@ -137,6 +138,20 @@     []     i +noif_commandonlyflight ::+  String+  -> Aircraft+  -> DayNight+  -> FlightPath+  -> AircraftFlight+noif_commandonlyflight n a t p =+  commandonlyflight+    n+    a+    t+    p+    zerotimeamount+ instructionflight ::   String   -> Aircraft@@ -155,16 +170,19 @@     []     i -noif_commandonlyflight ::+noif_instructionflight ::   String   -> Aircraft+  -> Instruction   -> DayNight   -> FlightPath   -> AircraftFlight-noif_commandonlyflight n a t p =-  commandonlyflight+noif_instructionflight n a s t p =+  AircraftFlight     n     a+    (InCommandInstructing s)     t     p+    []     zerotimeamount