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

Commit

Permalink
Merge branch 'release-0.3.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
dmolsen committed Sep 19, 2013
2 parents e300e61 + 8b7116d commit 8e070ca
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
THIS CHANGELOG IS AN ATTEMPT TO DOCUMENT CHANGES TO THIS PROJECT.

PL-v0.3.1
- FIX: made sure the command scripts work in directories that contain spaces
- THX: thanks to @mattsims for the heads up

PL-v0.3.0
- ADD: added "all" link to the nav that takes the user back to the style guide
- ADD: title tag updates when switching patterns
Expand Down
2 changes: 1 addition & 1 deletion builder/builder.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*!
* Pattern Lab Builder CLI - v0.3.0
* Pattern Lab Builder CLI - v0.3.1
*
* Copyright (c) 2013 Dave Olsen, http://dmolsen.com
* Licensed under the MIT license
Expand Down
2 changes: 1 addition & 1 deletion builder/lib/builder.lib.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*!
* Pattern Lab Builder Class - v0.3.0
* Pattern Lab Builder Class - v0.3.1
*
* Copyright (c) 2013 Dave Olsen, http://dmolsen.com
* Licensed under the MIT license
Expand Down
2 changes: 1 addition & 1 deletion builder/lib/generator.lib.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*!
* Pattern Lab Generator Class - v0.3.0
* Pattern Lab Generator Class - v0.3.1
*
* Copyright (c) 2013 Dave Olsen, http://dmolsen.com
* Licensed under the MIT license
Expand Down
2 changes: 1 addition & 1 deletion builder/lib/watcher.lib.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*!
* Pattern Lab Watcher Class - v0.3.0
* Pattern Lab Watcher Class - v0.3.1
*
* Copyright (c) 2013 Dave Olsen, http://dmolsen.com
* Licensed under the MIT license
Expand Down
2 changes: 1 addition & 1 deletion scripts/generateSite.command
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/sh
DIR="$( cd "$( dirname "$0" )" && pwd )"
php $DIR/../builder/builder.php -g
php "$DIR/../builder/builder.php" -g
2 changes: 1 addition & 1 deletion scripts/startAutoReloadServer.command
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/sh
DIR="$( cd "$( dirname "$0" )" && pwd )"
php $DIR/../listeners/contentSyncBroadcasterServer.php
php "$DIR/../listeners/contentSyncBroadcasterServer.php"
2 changes: 1 addition & 1 deletion scripts/startPageFollowServer.command
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/sh
DIR="$( cd "$( dirname "$0" )" && pwd )"
php $DIR/../listeners/navSyncBroadcasterServer.php
php "$DIR/../listeners/navSyncBroadcasterServer.php"
2 changes: 1 addition & 1 deletion scripts/startWatcher.command
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/sh
DIR="$( cd "$( dirname "$0" )" && pwd )"
php $DIR/../builder/builder.php -w
php "$DIR/../builder/builder.php" -w

0 comments on commit 8e070ca

Please sign in to comment.