File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11THIS 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+
37PL-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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
99ie = "scss,DS_Store,less"
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 1-
21/*!
32 * Sync Listeners, v0.1
43 *
@@ -17,7 +16,7 @@ var wsn;
1716var wsnConnected = false ;
1817var wsc ;
1918var 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
2322function connectPageFollowSync ( ) {
You can’t perform that action at this time.
0 commit comments