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

Commit ff31431

Browse files
committed
Merge branch 'release-0.7.12'
2 parents 56955fc + 4ad1982 commit ff31431

File tree

10 files changed

+13
-10
lines changed

10 files changed

+13
-10
lines changed

Diff for: 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.7.12
4+
- FIX: making sure only the hostname shows up for the websocket servers. no ports.
5+
- THX: thanks to @levito for the pull request
6+
37
PL-v0.7.11
48
- FIX: migrator now orders migrations properly for ubuntu
59
- THX: thanks to @krulik for reporting the issue & @paulovieira for confirming the fix

Diff for: core/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.7.11
4+
* Pattern Lab Builder CLI - v0.7.12
55
*
66
* Copyright (c) 2013-2014 Dave Olsen, http://dmolsen.com
77
* Licensed under the MIT license

Diff for: core/config/config.ini.default

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* If config.ini doesn't exist Pattern Lab will try to create a new version
44
*/
55

6-
v = "0.7.11"
6+
v = "0.7.12"
77

88
// file extensions to ignore when building or watching the source dir, separate with a comma
99
ie = "scss,DS_Store,less"

Diff for: core/lib/PatternLab/Builder.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.7.11
4+
* Pattern Lab Builder Class - v0.7.12
55
*
66
* Copyright (c) 2013-2014 Dave Olsen, http://dmolsen.com
77
* Licensed under the MIT license

Diff for: core/lib/PatternLab/Configurer.php

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

33
/*!
4-
* Pattern Lab Configurer Class - v0.7.11
4+
* Pattern Lab Configurer Class - v0.7.12
55
*
66
* Copyright (c) 2014 Dave Olsen, http://dmolsen.com
77
* Licensed under the MIT license

Diff for: core/lib/PatternLab/Console.php

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

33
/*!
4-
* Pattern Lab Console Class - v0.7.11
4+
* Pattern Lab Console Class - v0.7.12
55
*
66
* Copyright (c) 2014 Dave Olsen, http://dmolsen.com
77
* Licensed under the MIT license

Diff for: core/lib/PatternLab/Generator.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.7.11
4+
* Pattern Lab Generator Class - v0.7.12
55
*
66
* Copyright (c) 2013-2014 Dave Olsen, http://dmolsen.com
77
* Licensed under the MIT license

Diff for: core/lib/PatternLab/Migrator.php

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

33
/*!
4-
* Pattern Lab Migrator Class - v0.7.11
4+
* Pattern Lab Migrator Class - v0.7.12
55
*
66
* Copyright (c) 2014 Dave Olsen http://dmolsen.com
77
* Licensed under the MIT license

Diff for: core/lib/PatternLab/Watcher.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.7.11
4+
* Pattern Lab Watcher Class - v0.7.12
55
*
66
* Copyright (c) 2013-2014 Dave Olsen, http://dmolsen.com
77
* Licensed under the MIT license

Diff for: core/styleguide/js/synclisteners.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
/*!
32
* Sync Listeners, v0.1
43
*
@@ -17,7 +16,7 @@ var wsn;
1716
var wsnConnected = false;
1817
var wsc;
1918
var wscConnected = false;
20-
var host = (window.location.host !== "") ? window.location.host : "127.0.0.1";
19+
var host = (window.location.hostname !== "") ? window.location.hostname : "127.0.0.1";
2120

2221
// handle page updates from one browser to another
2322
function connectPageFollowSync() {

0 commit comments

Comments
 (0)