This commit is contained in:
slweeb 2022-04-19 20:03:11 -04:00
parent da914b450b
commit 3482dbe471
6 changed files with 1009 additions and 509 deletions

View File

@ -3,6 +3,59 @@
+ Machines Update
+ More plans / feedback at https://docs.google.com/document/u/4/d/1R8xljj_J-K5oU-9y4louwplQmM-ZBvUfXmhbgj5LYdk/edit
[Version 1.5.1 - Apr. 2022]
+ Hold Shift to draw lines
+ Info Screen now shows category info
+ Info Screen shows undiscovered elements
+ Fire now appears below burning pixels if the top if blocked
+ Porcelain
+ Pyrite
+ Incinerate tool
+ Unburn tool
+ Particleboard
+ Rats, Humans, and Yeasts can now breathe oxygen
+ Worms decompose Dead Plants
+ Chlorine Ice
+ Sulfur Gas
+ Frozen Yogurt
+ Antiice
+ Liquid forms of Ammonia, Propane, Methane
+ Sawdust can be made into Cellulose
+ Reset buttons in Settings
+ Added clarification and mod list link to Mod Manager
+ All metals given unique hardness values
+ Lamp Oil removes Glue
+ Cheese can be vaporized
+ Bone Marrow, Pointer, Rainbow, and Static can now be obtained
+ Ash can eliminate Stench
- Removed Helium Ice
~ Improved Smash tool
~ Acid no longer errodes Water
~ Fish out of water now fall to side
~ Less Smog forms
~ Algae now floats on water
~ Fish no longer tend to swim downwards
~ Molten Sulfur is now red and non-viscous
~ Fermented alcohols now colored differently
~ More foods can be fermented
~ Tweaked Milk flavor densities
~ Tweaked Rat consumption rates
~ Tweaked most insect consumption rates
~ Tweaked Meat cooking rates
~ Tweaked Yeast fermentation rates
~ Glue no longer sticks to Ice
~ Oil burns longer
~ Fixed: Gaps in lines when drawing fast
~ Fixed: Notifications not showing in Unlock as Discover mode
~ Fixed: Clicking outside menu immediately starting placing
~ Fixed: Molten Slag eats infinite Ash
~ Fixed: Flash color inconsistent with Light
~ Fixed: Mercury not amalgamating with Gold Coins or Rose Gold
~ Fixed: Decimal point TPS
+ Technical: Tools can now ignore certain elements
+ Technical: "related" element property, shows a "See Also" in info
+ Technical: "alias" element property, shows a "Also known as" in info
[Version 1.5 - Apr. 13, 2022]
+ Greatly improved E/Element Select button
+ Mercury

View File

@ -7,6 +7,7 @@ Shift + Heat = Intense Heating
Shift + Cool = Intense Cooling
Shift + Mix = Include Fire & Smoke in Mixing
Shift + Shock = Intense Shock
Shift + Mouse = Draw Line
Scroll = Change Cursor Size
- or [ = Decrease Cursor Size
+ or ] = Increase Cursor Size

Binary file not shown.

Before

Width:  |  Height:  |  Size: 253 KiB

After

Width:  |  Height:  |  Size: 371 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 217 KiB

After

Width:  |  Height:  |  Size: 375 KiB

File diff suppressed because it is too large Load Diff

View File

@ -326,6 +326,18 @@
border-radius: 20px;
padding: 0.5em;
color: white;
font-family: Arial, Helvetica, sans-serif;
}
.settingsButton {
background-color: black;
vertical-align: middle;
margin-left: 5px;
margin-right: 5px;
border: white 0.5px solid;
border-radius: 20px;
padding: 0.5em;
color: white;
font-family: Arial, Helvetica, sans-serif;
}
#canvasDiv {
position:relative;
@ -336,3 +348,19 @@
right:1em;
display: none;
}
.categoryButton.notify {
background-color: rgba(255, 0, 0, 0.25);
}
/* .elementButton.notify with a red glow */
.elementButton.notify {
-webkit-box-shadow: 0px 0px 15px 5px #FF0000;
box-shadow: 0px 0px 15px 5px #FF0000;
}
.noselect {
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
}