1.5.1
This commit is contained in:
parent
da914b450b
commit
3482dbe471
|
|
@ -3,6 +3,59 @@
|
||||||
+ Machines Update
|
+ Machines Update
|
||||||
+ More plans / feedback at https://docs.google.com/document/u/4/d/1R8xljj_J-K5oU-9y4louwplQmM-ZBvUfXmhbgj5LYdk/edit
|
+ 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]
|
[Version 1.5 - Apr. 13, 2022]
|
||||||
+ Greatly improved E/Element Select button
|
+ Greatly improved E/Element Select button
|
||||||
+ Mercury
|
+ Mercury
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,7 @@ Shift + Heat = Intense Heating
|
||||||
Shift + Cool = Intense Cooling
|
Shift + Cool = Intense Cooling
|
||||||
Shift + Mix = Include Fire & Smoke in Mixing
|
Shift + Mix = Include Fire & Smoke in Mixing
|
||||||
Shift + Shock = Intense Shock
|
Shift + Shock = Intense Shock
|
||||||
|
Shift + Mouse = Draw Line
|
||||||
Scroll = Change Cursor Size
|
Scroll = Change Cursor Size
|
||||||
- or [ = Decrease Cursor Size
|
- or [ = Decrease Cursor Size
|
||||||
+ or ] = Increase Cursor Size
|
+ or ] = Increase Cursor Size
|
||||||
|
|
|
||||||
BIN
icons/card.png
BIN
icons/card.png
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 |
750
index.html
750
index.html
File diff suppressed because it is too large
Load Diff
28
style.css
28
style.css
|
|
@ -326,6 +326,18 @@
|
||||||
border-radius: 20px;
|
border-radius: 20px;
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
color: white;
|
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 {
|
#canvasDiv {
|
||||||
position:relative;
|
position:relative;
|
||||||
|
|
@ -336,3 +348,19 @@
|
||||||
right:1em;
|
right:1em;
|
||||||
display: none;
|
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 */
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue