Skip to content

Releases: itsnubix/nowcal

v1.1.0

04 May 02:53
Compare
Choose a tag to compare

New features 💅

  • Adds timezone support, add any Olsen string timezone
  • Adds support for customizing UID which can allow you to replace an event
  • Allow callbacks to return additional types when setting

Bug fixes 🐛

  • Allow start/end/timezone/duration to take DateTime/DateInterval/DateTimeZone values properly.

v1.0.0

17 Apr 19:43
Compare
Choose a tag to compare

v1 release

Removes extraneous dependencies and upgrade to work with new versions of PHP.

v0.5.2

22 Nov 05:15
Compare
Choose a tag to compare

adds uuid dep

v0.5.1

22 Nov 05:14
Compare
Choose a tag to compare

Add L9 support

v0.4.0

24 Sep 21:17
ba2580b
Compare
Choose a tag to compare

Add L8 support.

v0.3.0

09 Jun 17:43
Compare
Choose a tag to compare

Update support to include L5/6/7

v0.2.0

26 Jan 20:13
Compare
Choose a tag to compare

Update to work with Carbon 2 and Illuminate\Support 6.*

v0.1.7

27 Feb 20:48
Compare
Choose a tag to compare

Adds ability for duration to be set

NowCal::create()
    ->duration('1 h');

v0.1.6

19 Feb 16:14
Compare
Choose a tag to compare

Adds ability for attribute setters to take a callback. Ex:

$eventIsNow = true;

NowCal::create()
    ->start(function() use ($eventIsNow) {
        if ($eventIsNow) {
            return 'now';
        } else {
            return 'tomorrow';
        }
    });

v0.1.4

10 Feb 16:22
Compare
Choose a tag to compare

Add ability to export tempfile paths