log

age author description
Wed, 04 Jul 2018 10:38:13 +0300 Matti Hamalainen Remove dead code.
Wed, 04 Jul 2018 10:36:43 +0300 Matti Hamalainen Refactor the import/export stuff a bit and the GUI bits for JS.
Wed, 04 Jul 2018 10:34:12 +0300 Matti Hamalainen Add several new helper functions for loading and saving formats using Javascript facilities.
Wed, 04 Jul 2018 10:33:42 +0300 Matti Hamalainen Make fexists() return always true.
Wed, 04 Jul 2018 10:28:01 +0300 Matti Hamalainen Add missing Multipaint data files - icons.bin and templates.
Wed, 04 Jul 2018 10:27:30 +0300 Matti Hamalainen As we launch from a browser now, include the HTML and necessary Javascript
Wed, 04 Jul 2018 10:12:16 +0300 Matti Hamalainen Delete Processing 3 related (commented out) things.
Wed, 04 Jul 2018 10:11:50 +0300 Matti Hamalainen Remove dead code.
Wed, 04 Jul 2018 10:11:12 +0300 Matti Hamalainen Attempt to limit CPU usage by using frameRate().
Wed, 04 Jul 2018 10:10:46 +0300 Matti Hamalainen The delay() function does not exist in ProcessingJS, so don't use it.
Wed, 04 Jul 2018 10:08:35 +0300 Matti Hamalainen Cleanup / optimize.
Wed, 04 Jul 2018 10:06:10 +0300 Matti Hamalainen Use console.log() to log message() things in browser console.
Wed, 04 Jul 2018 10:05:42 +0300 Matti Hamalainen Missed one char -> int() cast.
Wed, 04 Jul 2018 10:03:14 +0300 Matti Hamalainen Remove the use of 'gui' variable.
Wed, 04 Jul 2018 10:01:05 +0300 Matti Hamalainen ProcessingJS does not provide "platform" variables, we need to define them ourselves.
Wed, 04 Jul 2018 09:55:10 +0300 Matti Hamalainen Remove the use of 'debugger' variable, as it is reserved in Javascript.
Wed, 04 Jul 2018 09:48:33 +0300 Matti Hamalainen Remove unused code and variables.
Wed, 04 Jul 2018 09:08:47 +0300 Matti Hamalainen Oops, fix the coordinate printing.
Wed, 04 Jul 2018 09:07:25 +0300 Matti Hamalainen Make the machine setup sections a bit more uniform in order.
Wed, 04 Jul 2018 09:03:08 +0300 Matti Hamalainen Cosmetics and indentation.
Wed, 04 Jul 2018 08:57:43 +0300 Matti Hamalainen Check for characters < 32 in drawchar() because 32 is deducted from the value.
Wed, 04 Jul 2018 08:55:48 +0300 Matti Hamalainen Change the help() function and its usage to have more than one parameter to
Wed, 04 Jul 2018 08:51:19 +0300 Matti Hamalainen Various minor code cleanups.
Tue, 03 Jul 2018 22:17:48 +0300 Matti Hamalainen Fix many calculations (divisions) that assume integer variable division
Tue, 03 Jul 2018 21:27:18 +0300 Matti Hamalainen Cast char to int where needed and other related operations.
Tue, 03 Jul 2018 21:22:49 +0300 Matti Hamalainen Regreplace s/ & 15/ & 0x0f/g; s/ & 240/ & 0xf0/g
Tue, 03 Jul 2018 21:19:29 +0300 Matti Hamalainen Int-ize byte array index references when using character, e.g. arr['A'] -> arr[int('A')]
Tue, 03 Jul 2018 21:08:55 +0300 Matti Hamalainen Replace newArray = oldArray.clone() pattern with arrayCopy().
Tue, 03 Jul 2018 21:02:33 +0300 Matti Hamalainen Run everything through JS-beautifier and remove trailing whitespace.
Tue, 03 Jul 2018 20:58:46 +0300 Matti Hamalainen Change #RRGGBB style colour constants to 0xFFrrggbb.