comparison mpui.js @ 216:d3eba28c26e5

Some launcher / UI improvements.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 04 Sep 2018 15:29:10 +0300
parents 280d95196265
children ed594b3e3f45
comparison
equal deleted inserted replaced
215:280d95196265 216:d3eba28c26e5
250 "<li>PNG/JPEG <b>import</b> does not work. <b>PNG export works now (alt+shift+W or alt+click on format export icon.)</b></li>"+ 250 "<li>PNG/JPEG <b>import</b> does not work. <b>PNG export works now (alt+shift+W or alt+click on format export icon.)</b></li>"+
251 "<li>The 'magnify' tool works oddly, though I think this issue may exist in the original as well.</li>"+ 251 "<li>The 'magnify' tool works oddly, though I think this issue may exist in the original as well.</li>"+
252 "<li>The preview window seems to be buggy for wide-pixel (e.g. c64 multicolor) bitmaps.</li>"+ 252 "<li>The preview window seems to be buggy for wide-pixel (e.g. c64 multicolor) bitmaps.</li>"+
253 "<li>There may be other bugs .. though I've also fixed few bugs that exist in original Multipaint.</li>"+ 253 "<li>There may be other bugs .. though I've also fixed few bugs that exist in original Multipaint.</li>"+
254 "</ul>"+ 254 "</ul>"+
255 "<p>You can also view the <a href=\"https://tnsp.org/hg/forks/multipaint-js/\">Mercurial repository for this project</a>.</p>"; 255 "<p>You can also view the <a href=\"https://tnsp.org/hg/forks/multipaint-js/\">Mercurial repository for this project</a>.</p>"+
256 "<div id=\"mpNote\"><a href=\"http://multipaint.kameli.net/\">Multipaint</a> (C) 2016-2018 <b>Tero 'Dr. TerrorZ' Heikkinen</b>, "+
257 "ProcessingJS port and modifications by <b>Matti 'ccr' Hämäläinen</b> (2018)</div>";
256 258
257 mpUI.appendChild(mobj); 259 mpUI.appendChild(mobj);
258 } 260 }
259 261
260 262
294 } 296 }
295 297
296 298
297 function mpStart() 299 function mpStart()
298 { 300 {
299 stGE("mpNote").innerHTML =
300 "<a href=\"http://multipaint.kameli.net/\">Multipaint</a> (C) 2016-2018 <b>Tero 'Dr. TerrorZ' Heikkinen</b>, "+
301 "ProcessingJS port and modifications by <b>Matti 'ccr' Hämäläinen</b> (2018)";
302
303 // Check for URL parameters 301 // Check for URL parameters
304 var slink = window.location.href; 302 var slink = window.location.href;
305 var spos, found = false; 303 var spos, found = false;
306 if ((spos = slink.indexOf("?")) >= 0) 304 if ((spos = slink.indexOf("?")) >= 0)
307 { 305 {