The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
Revision history for TCOD

0.004     2021-07-15 00:00:49+01:00 Europe/London

    New:
        - Added bindings for some additional TCOD::Context methods:
          - new_console
          - recommended_console_size
    Fixes:
        - Added missing documentation for TCOD::Context and TCOD::Tileset
          objects.
    Changes:
        - The new_terminal method for TCOD::Context objects has been
          removed. This is a deprecated method that was implemented in
          error. The candle that burns twice as fast burns twice as bright.
        - Some methods for TCOD::Tileset objects that have only been partially
          implemented have been removed until they are ready for prime-time.

0.003     2021-07-14 22:12:08+01:00 Europe/London

    New:
        - Added TCOD::ColorRGBA used internally in some of the
          new API functions
        - Added TCOD::Event to wrap around SDL2 events. This uses
          an internal set of SDL2 bindings, while we wait for a
          stable release on CPAN
        - Added TCOD::Context and TCOD::Tileset modeled after the
          recommended API in the upstream python-tcod
    Fixes:
        - Fixed the walk method for Path::Dijkstra objects. This
          method, and the related is_empty, are now documented and tested.
    Changes:
        - Imported bundled fonts from python-tcod to replace the
          old ones with licensing issues.
        - The TCOD::Console API has been updated to reflect
          upstream deprecated methods.

          The following methods were removed:
          - hline
          - print_ex
          - print_ex_utf
          - print_frame
          - print_rect
          - print_rect_ex
          - print_rect_ex_utf
          - print_rect_utf
          - print_utf
          - rect
          - set_key_color
          - vline

          The following methods were changed:
          - blit
          - clear
          - print

          The following methods were added
          - draw_frame
          - draw_rect
          - print_box

          Please see the documentation for these methods for more details.

0.002     2021-07-11 16:58:16+01:00 Europe/London

    Fixes:
        - Dependencies on FFI libraries are properly reported
    Changes:
        - The FontFlags enum was renamed to FontFlag for consistency

0.001     2021-07-08 23:58:46+01:00 Europe/London

        First version.