|
| 1 | +<!DOCTYPE html> |
| 2 | +<!-- this file is auto-generated from docs/changelist.md. Do not edited directly --> |
| 3 | +<!-- |
| 4 | +Copyright 2012, Gregg Tavares. |
| 5 | +All rights reserved. |
| 6 | +
|
| 7 | +Redistribution and use in source and binary forms, with or without |
| 8 | +modification, are permitted provided that the following conditions are |
| 9 | +met: |
| 10 | +
|
| 11 | + * Redistributions of source code must retain the above copyright |
| 12 | +notice, this list of conditions and the following disclaimer. |
| 13 | + * Redistributions in binary form must reproduce the above |
| 14 | +copyright notice, this list of conditions and the following disclaimer |
| 15 | +in the documentation and/or other materials provided with the |
| 16 | +distribution. |
| 17 | + * Neither the name of Gregg Tavares. nor the names of his |
| 18 | +contributors may be used to endorse or promote products derived from |
| 19 | +this software without specific prior written permission. |
| 20 | +
|
| 21 | +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 22 | +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 23 | +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 24 | +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 25 | +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 26 | +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 27 | +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 28 | +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 29 | +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 30 | +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 31 | +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 32 | +--> |
| 33 | +<html> |
| 34 | +<head> |
| 35 | +<meta charset="utf-8"> |
| 36 | +<meta name="viewport" content="width=device-width, target-densitydpi=160dpi, initial-scale=1.0, user-scalable=yes"> |
| 37 | +<meta property="og:title" content="" /> |
| 38 | +<meta property="og:type" content="website" /> |
| 39 | +<meta property="og:image" content="http://docs.happyfuntimes.net/docs/images/happyfuntimes.jpg" /> |
| 40 | +<meta property="og:description" content="" /> |
| 41 | +<meta property="og:url" content="http://docs.happyfuntimes.net/docs/changelist.html" /> |
| 42 | + |
| 43 | +<meta name="twitter:card" content="summary_large_image" /> |
| 44 | +<meta name="twitter:site" content="@greggman" /> |
| 45 | +<meta name="twitter:creator" content="@greggman" /> |
| 46 | +<meta name="twitter:domain" content="docs.happyfuntimes.net" /> |
| 47 | +<meta name="twitter:title" content="" /> |
| 48 | +<meta name="twitter:url" content="http://docs.happyfuntimes.net/docs/changelist.html" /> |
| 49 | +<meta name="twitter:description" content="" /> |
| 50 | +<meta name="twitter:image:src" content="http://docs.happyfuntimes.net/docs/images/happyfuntimes.jpg" /> |
| 51 | + |
| 52 | +<title></title> |
| 53 | +<link href="/public/hft-icon.png" rel="shortcut icon" type="image/png"> |
| 54 | +<link rel="stylesheet" href="/docs/css/base.css" type="text/css" /> |
| 55 | +<link rel="stylesheet" href="/docs/css/lesson.css" type="text/css" /> |
| 56 | +</head> |
| 57 | +<body> |
| 58 | +<div class="header"> |
| 59 | + <h1><a href="/docs">HappyFunTimes Docs</a></h1> |
| 60 | +</div> |
| 61 | + |
| 62 | + |
| 63 | +<div class="container"> |
| 64 | + <div class="lesson-title"> |
| 65 | + <h1></h1> |
| 66 | + </div> |
| 67 | + <div class="row"> |
| 68 | + <div class="col-sm-8 lesson-main"> |
| 69 | + <h1 id="changelist">Changelist</h1> |
| 70 | +<ul> |
| 71 | +<li><p>0.0.30</p> |
| 72 | +<ul> |
| 73 | +<li><p>added <code>--no-check-for-app</code></p> |
| 74 | +</li> |
| 75 | +<li><p>added <code>hft/0.x.x/scripts/runtime/live-settings.js</code> so HFT can deliver live setttings easily.</p> |
| 76 | +<p>a little worried there's too many ways to deliver options. As in code is not organized. |
| 77 | +To games data comes in index.html through a template. Maybe that should change to |
| 78 | +<code>/game/<gameid>/scripts/runtime/live-game-settings.js</code>? One difference is we allow |
| 79 | +minifying on game but minifying is at runtime so that doesn't seem like it would matter.</p> |
| 80 | +</li> |
| 81 | +<li><p>added changelist.md</p> |
| 82 | +</li> |
| 83 | +</ul> |
| 84 | +</li> |
| 85 | +</ul> |
| 86 | +<ul> |
| 87 | +<li><p>0.0.29</p> |
| 88 | +<ul> |
| 89 | +<li><p>fixed touch pad code.</p> |
| 90 | +<p>Issue was it was possible for button to get stuck down because we don't always |
| 91 | +get pointerup events. Also didn't handle pointerout then sliding back on to button.</p> |
| 92 | +</li> |
| 93 | +<li><p>added <code>GameClient.log</code> and <code>GameClient.error</code></p> |
| 94 | +<p>allows the controller to send debug messages that make it to game.</p> |
| 95 | +</li> |
| 96 | +<li><p>added way for game to supply files for controller.</p> |
| 97 | +<p>This allows games to participate in HappyFunTimes without being registered. |
| 98 | +So for example <a href="http://greggman.github.io/hft-gamepad-api/">http://greggman.github.io/hft-gamepad-api/</a></p> |
| 99 | +</li> |
| 100 | +</ul> |
| 101 | +</li> |
| 102 | +<li><p>0.0.28</p> |
| 103 | +<ul> |
| 104 | +<li><p>CommonUI now handles orientation.</p> |
| 105 | +<p>Pass orientation to <code>CommonUI.setupStandardControllerUI</code> and if it can |
| 106 | +force the orientation it will. If it can't it will add the appropriate |
| 107 | +HTML/CSS so a message appears to turn the phone in the wrong orientation.</p> |
| 108 | +</li> |
| 109 | +<li><p>Added app suppport.</p> |
| 110 | +<p>HFT tries to redirect to native mobile app.</p> |
| 111 | +</li> |
| 112 | +<li><p><code>NetPlayer.name</code>, <code>NetPlayer.busy</code> and <code>NetPlayer.hft_namechange</code> and <code>NetPlayer.hft_busy</code> events.</p> |
| 113 | +</li> |
| 114 | +<li><p>added code to disablecontext menus.</p> |
| 115 | +<p>Wondering if I should just always do this.</p> |
| 116 | +</li> |
| 117 | +</ul> |
| 118 | +</li> |
| 119 | +<li><p>0.0.27</p> |
| 120 | +<ul> |
| 121 | +<li><p>make hft-publish optionally use HFT_PUBLISH_USER for user:pass</p> |
| 122 | +</li> |
| 123 | +<li><p>send headers so hopefully browser never caches.</p> |
| 124 | +</li> |
| 125 | +<li><p>switch to node 0.12</p> |
| 126 | +</li> |
| 127 | +<li><p>made "Install" message pop to front</p> |
| 128 | +</li> |
| 129 | +</ul> |
| 130 | +</li> |
| 131 | +<li><p>0.0.26</p> |
| 132 | +<ul> |
| 133 | +<li><p>Add session ids. See <code>Netplayer.sessionId</code></p> |
| 134 | +</li> |
| 135 | +<li><p>switch docs to use handlebars</p> |
| 136 | +</li> |
| 137 | +<li><p>add docs.happyfuntimes.net</p> |
| 138 | +</li> |
| 139 | +</ul> |
| 140 | +</li> |
| 141 | +</ul> |
| 142 | + |
| 143 | + <hr/> |
| 144 | + <div> |
| 145 | + <div>Questions? <a href="http://stackoverflow.com/questions/tagged/happyfuntimes">Ask on stackoverflow</a>.</div> |
| 146 | + <div>Issue/Bug? <a href="http://github.com/greggman/happyfuntimes/issues">Create an issue on github</a>.</div> |
| 147 | + |
| 148 | + <div id="disqus_thread"></div> |
| 149 | + <script type="text/javascript"> |
| 150 | + /* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */ |
| 151 | + var disqus_shortname = 'happyfuntimes'; // required: replace example with your forum shortname |
| 152 | + var disqus_identifier = ''; |
| 153 | + var disqus_title = ''; |
| 154 | + |
| 155 | + /* * * DON'T EDIT BELOW THIS LINE * * */ |
| 156 | + (function() { |
| 157 | + if (window.location.hostname.indexOf("happyfuntimes") < 0) { |
| 158 | + return; |
| 159 | + } |
| 160 | + var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true; |
| 161 | + dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js'; |
| 162 | + (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq); |
| 163 | + })(); |
| 164 | + </script> |
| 165 | + <noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript> |
| 166 | + <a href="http://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a> |
| 167 | + </div> |
| 168 | + </div> |
| 169 | + <div class="col-sm-3 col-sm-offset-1 lesson-sidebar"> |
| 170 | + <ul> |
| 171 | + <li>Setup |
| 172 | + <ul> |
| 173 | + <li><a href="osx.html">OSX</a></li> |
| 174 | + <li><a href="windows.html">Windows</a></li> |
| 175 | + <li><a href="linux.html">Linux</a></li> |
| 176 | + </ul> |
| 177 | + </li> |
| 178 | + <li>Making Games |
| 179 | + <ul> |
| 180 | + <li><a href="makinggames.html">Making games in HTML5</a></li> |
| 181 | + <li><a href="unity">Making games in Unity3D</a></li> |
| 182 | + <li><a href="ideas.html">Ideas</a></li> |
| 183 | + <li><a href="tips.html">Tips</a></li> |
| 184 | + <li><a href="examples.html">Examples</a></li> |
| 185 | + <li><a href="api-versions.html">API Versions</a></li> |
| 186 | + <li><a href="commands.html">hft command</a></li> |
| 187 | + </ul> |
| 188 | + </li> |
| 189 | + <li>Special Stuff |
| 190 | + <ul> |
| 191 | + <li><a href="network.html">Museums & Installations</a></li> |
| 192 | + <li><a href="migration.html">Migrating from older APIs</a></li> |
| 193 | + </ul> |
| 194 | + </li> |
| 195 | + <li>Contributing |
| 196 | + <ul> |
| 197 | + <li><a href="contributing.html">Contributing</a></li> |
| 198 | + <li><a href="future.html">Future Features</a></li> |
| 199 | + </ul> |
| 200 | + </li> |
| 201 | +</ul> |
| 202 | + |
| 203 | + </div> |
| 204 | + </div> |
| 205 | +</div> |
| 206 | +</body> |
| 207 | +<script src="/docs/3rdparty/jquery-1.11.2.min.js"></script> |
| 208 | +<script src="/docs/3rdparty/prettify.js"></script> |
| 209 | +<script src="/docs/js/lesson.js"></script> |
| 210 | +<script> |
| 211 | + (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ |
| 212 | + (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), |
| 213 | + m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) |
| 214 | + })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); |
| 215 | + |
| 216 | + ga('create', 'UA-51764205-4', 'auto'); |
| 217 | + ga('send', 'pageview'); |
| 218 | + |
| 219 | +</script> |
| 220 | + |
| 221 | + |
| 222 | +</html> |
| 223 | + |
| 224 | + |
| 225 | + |
0 commit comments