Skip to content
This repository has been archived by the owner on May 23, 2019. It is now read-only.

Releases: davetron5000/trickster

v1.4.0

25 Oct 19:30
Compare
Choose a tag to compare

Support for TypeKit and for serving the presentation over a web server on localhost

v1.3.1

07 Nov 23:57
Compare
Choose a tag to compare

Beefed up the timer. The timer can now be told how long your presentation is, and be given two places to alert. This is all done with CSS, so you can style the timer however you want when you are good on time, need a warning, need an alert, or have gone over.

v1.2.0

07 Nov 18:29
Compare
Choose a tag to compare

Added ability to have a free-form slide that just passes through the markup:

!FREEFORM
<h1>This is a freeform slide</h1>
<table>
  <thead><tr>
    <th>Name</th><th>Age</th><th>Role</th>
  </tr></thead>
  <tbody>
    <tr>
      <td>Dave</td><td>40</td><td>Husband</td>
    </tr>
    <tr>
      <td>Amy</td><td>One shouldn't ask</td><td>Wife</td>
    </tr>
    <tr>
      <td>Rudy</td><td>13</td><td>Cat</td>
    </tr>
  </tbody>
</table>