From 372de694d04466de8d9fd152a72afa1a940053bd Mon Sep 17 00:00:00 2001 From: slweeb <91897291+slweeb@users.noreply.github.com> Date: Tue, 1 Apr 2025 11:52:52 -0400 Subject: [PATCH] Version 1.11.1 - April 1, 2025 - FOOLS-2-5 [Version 1.11.1 - April 1, 2025 - FOOLS-2-5] + Border setting + Void deletes pixels that touch the sides + Loop teleports pixels that touch the sides ~ Improved Thermal View now uses hottest and coldest pixels as bounds + Finnish and Indonesian languages [FOOLS] + Element Modulator + FOOLS Mode is back! ~ Note: FOOLS features will disappear April 4th [Changes] + Keybind: Ctrl+O to load a save file + Keybind: Ctrl+Shift+O to reload the last loaded save + Flame test can be done on elements with fire colors + Honey and Molasses freeze into Candy + 'Golden Wind' Tornado variant + Milk variants can be churned into Butter + Udders can absorb certain liquids to produce Milk variants + Cheese can be made with Cream + Soda foam has a unique color + Candy dissolves in Water + Void is insulative + Bless stops panic in Humans + Gunpowder explodes when shocked + Ozone can cure Infection + Dust and Ash dirty Seltzer + Calcium can react with Steam + Magnesium reacts with Water and Steam + Sponges can release Water absorbed from soils + Sponges separate Water variant contents + Primordial Soup can freeze + Positrons shock Antimatter ~ Antimatter no longer explodes when touching Cloners ~ Thermite burns into Molten Iron + Acid stains Silver ~ Tweaked Acid-Potassium reaction ~ Frogs have a unique egg color ~ Molten Rad Glass is greener ~ Recolored Pilk Cheese ~ Bless removes Filler, Lattice, Vertical, and Horizontal ~ Copper Sulfate is no longer flammable + Copper Sulfate produces Poison Gas when burned + Baking Soda alias 'Sodium Bicarbonate' + Cellulose alias 'Paper Paste' + Cyanide alias 'Hydrogen Cyanide' + Acid Gas alias 'Hydrochloric Acid Gas' + Adobe alias 'Mud Brick' + Saves can keep Limitless Mode if settings are included ~ Saves no longer update cursor size + Partial translations for Dutch, Korean, Italian, Serbian, and Emoji ~ Halacae translations completed ~ Prompt inputs no longer allow autocomplete [Bug Fixes] ~ Fixed: Half-pixels on the edges of smaller canvases ~ Fixed: LEDs can create ghost pixels when absorbing Light ~ Fixed: Eggs break when placed with Drag tool ~ Fixed: Frozen Yogurt variants don't retain color when melting ~ Fixed: Frozen elements aren't generated properly when no state is present ~ Fixed: Tea and Coffee start boiling when placed manually ~ Fixed: Duplicate mods can be added ~ Fixed: Portals can't teleport pixels being dragged ~ Fixed: Embers are never deleted when Burning is disabled ~ Fixed: Mix tool can be used on ghost pixels ~ Fixed: Saves can set cursor size to impossible sizes ~ Fixed: colorOn isn't applied by reactions [Technical] + Mod dependency system, see dependency_test.js for more info + Elements can be added dynamically with addElement() + onAddElement(callback) function, called when element is added dynamically + loadedMods array holds mods that have been loaded + onSelect and onUnselect properties for custom views + Portals display channel on hover + 'mouseColor' setting ~ Unknown is now in the Special category (Still hidden) ~ Save version is now sb4 and includes new border settings --- changelog.html | 78 + changelog.txt | 76 + controls.html | 2 + controls.txt | 4 + icons/modulator.png | Bin 0 -> 36415 bytes index.html | 35231 +++++++++++++++++++------------------ lang/af.json | 1 + lang/ar.json | 1 + lang/ar_sy.json | 1 + lang/bn.json | 1 + lang/ca.json | 1 + lang/cs.json | 552 +- lang/da.json | 1 + lang/de.json | 549 +- lang/el.json | 1 + lang/en.json | 1 + lang/en_au.json | 1 + lang/en_ca.json | 14 +- lang/en_gb.json | 19 +- lang/es.json | 544 +- lang/et.json | 1 + lang/fi.json | 1 + lang/fil.json | 1 + lang/fr.json | 560 +- lang/he.json | 1 + lang/hu.json | 565 +- lang/id.json | 1 + lang/it.json | 1 + lang/ja.json | 1 + lang/ko.json | 1 + lang/la.json | 1 + lang/ne.json | 1 + lang/nl.json | 1 + lang/no.json | 1 + lang/pl.json | 2 +- lang/pt.json | 1 + lang/pt_br.json | 544 +- lang/qha.json | 549 +- lang/qvp.json | 1 + lang/ro.json | 1 + lang/ru.json | 563 +- lang/sr.json | 1 + lang/sv.json | 1 + lang/tok.json | 549 +- lang/tr.json | 555 +- lang/uk.json | 544 +- lang/vi.json | 561 +- lang/zh_cn.json | 550 +- lang/zh_hant.json | 563 +- mods/alchem.js | 24 +- mods/classic_textures.js | 3 +- mods/dependency_test.js | 13 + mods/fools25.js | 346 + mods/glow.js | 16 +- mods/library_test.js | 5 + mods/rainbow_cursor.js | 12 + scripts/perlin.js | 165 + style.css | 21 +- 58 files changed, 18597 insertions(+), 25208 deletions(-) create mode 100644 icons/modulator.png create mode 100644 lang/af.json create mode 100644 lang/ar.json create mode 100644 lang/ar_sy.json create mode 100644 lang/bn.json create mode 100644 lang/ca.json create mode 100644 lang/da.json create mode 100644 lang/el.json create mode 100644 lang/en.json create mode 100644 lang/en_au.json create mode 100644 lang/et.json create mode 100644 lang/fi.json create mode 100644 lang/fil.json create mode 100644 lang/he.json create mode 100644 lang/id.json create mode 100644 lang/it.json create mode 100644 lang/ja.json create mode 100644 lang/ko.json create mode 100644 lang/la.json create mode 100644 lang/ne.json create mode 100644 lang/nl.json create mode 100644 lang/no.json create mode 100644 lang/pt.json create mode 100644 lang/qvp.json create mode 100644 lang/ro.json create mode 100644 lang/sr.json create mode 100644 lang/sv.json create mode 100644 mods/dependency_test.js create mode 100644 mods/fools25.js create mode 100644 mods/library_test.js create mode 100644 mods/rainbow_cursor.js create mode 100644 scripts/perlin.js diff --git a/changelog.html b/changelog.html index ce8b7b74..f47bedb6 100644 --- a/changelog.html +++ b/changelog.html @@ -109,6 +109,84 @@

The original plain text version of this is still maintained.

+

[Version 1.11.1 - April 1, 2025 - FOOLS-2-5]

+ +

[Version 1.11 - February 21, 2025 - Everyone's Update]