Skip to content
This repository was archived by the owner on Feb 7, 2023. It is now read-only.

Commit 8e070ca

Browse files
committed
Merge branch 'release-0.3.1'
2 parents e300e61 + 8b7116d commit 8e070ca

9 files changed

+12
-8
lines changed

CHANGELOG

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
THIS CHANGELOG IS AN ATTEMPT TO DOCUMENT CHANGES TO THIS PROJECT.
22

3+
PL-v0.3.1
4+
- FIX: made sure the command scripts work in directories that contain spaces
5+
- THX: thanks to @mattsims for the heads up
6+
37
PL-v0.3.0
48
- ADD: added "all" link to the nav that takes the user back to the style guide
59
- ADD: title tag updates when switching patterns

builder/builder.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/*!
4-
* Pattern Lab Builder CLI - v0.3.0
4+
* Pattern Lab Builder CLI - v0.3.1
55
*
66
* Copyright (c) 2013 Dave Olsen, http://dmolsen.com
77
* Licensed under the MIT license

builder/lib/builder.lib.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/*!
4-
* Pattern Lab Builder Class - v0.3.0
4+
* Pattern Lab Builder Class - v0.3.1
55
*
66
* Copyright (c) 2013 Dave Olsen, http://dmolsen.com
77
* Licensed under the MIT license

builder/lib/generator.lib.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/*!
4-
* Pattern Lab Generator Class - v0.3.0
4+
* Pattern Lab Generator Class - v0.3.1
55
*
66
* Copyright (c) 2013 Dave Olsen, http://dmolsen.com
77
* Licensed under the MIT license

builder/lib/watcher.lib.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/*!
4-
* Pattern Lab Watcher Class - v0.3.0
4+
* Pattern Lab Watcher Class - v0.3.1
55
*
66
* Copyright (c) 2013 Dave Olsen, http://dmolsen.com
77
* Licensed under the MIT license

scripts/generateSite.command

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/sh
22
DIR="$( cd "$( dirname "$0" )" && pwd )"
3-
php $DIR/../builder/builder.php -g
3+
php "$DIR/../builder/builder.php" -g

scripts/startAutoReloadServer.command

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/sh
22
DIR="$( cd "$( dirname "$0" )" && pwd )"
3-
php $DIR/../listeners/contentSyncBroadcasterServer.php
3+
php "$DIR/../listeners/contentSyncBroadcasterServer.php"

scripts/startPageFollowServer.command

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/sh
22
DIR="$( cd "$( dirname "$0" )" && pwd )"
3-
php $DIR/../listeners/navSyncBroadcasterServer.php
3+
php "$DIR/../listeners/navSyncBroadcasterServer.php"

scripts/startWatcher.command

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/sh
22
DIR="$( cd "$( dirname "$0" )" && pwd )"
3-
php $DIR/../builder/builder.php -w
3+
php "$DIR/../builder/builder.php" -w

0 commit comments

Comments
 (0)