Skip to content

Releases: dohly/funogram.keyboard

1.3.1

06 Apr 10:35
Compare
Choose a tag to compare

Now you can use "|" character in your serialized value

1.3.0

02 Apr 04:30
Compare
Choose a tag to compare

Now you don't need to describe keyboard handlers.
Just attach them to your command handlers using InlineKeyboard.getRegisteredHandlers()

let cmds=[
                cmd "/calendar"  (fun _ -> showKeyboard (calendar()))
                cmd "/flight"  (fun _ -> Random().Next(0,3)|>seats|>showKeyboard)
                cmd "/confirm"  (fun _ -> showKeyboard (confirmKeyboard()))
            ]
let notHandled = processCommands ctx (cmds @ InlineKeyboard.getRegisteredHandlers())

Please check updated examples

1.1.2

31 Mar 18:55
Compare
Choose a tag to compare
Merge branch 'release/netStandard'