Added changelogs / Updated link registry

This commit is contained in:
Anuken
2019-11-19 22:04:10 -05:00
parent 8daaea3536
commit 879f90ebf4
11 changed files with 2143 additions and 2120 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 747 B

After

Width:  |  Height:  |  Size: 745 B

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 957 KiB

After

Width:  |  Height:  |  Size: 741 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 304 KiB

After

Width:  |  Height:  |  Size: 278 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 MiB

After

Width:  |  Height:  |  Size: 261 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 187 KiB

After

Width:  |  Height:  |  Size: 134 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 332 KiB

After

Width:  |  Height:  |  Size: 901 KiB

View File

@ -16,7 +16,7 @@ import static io.anuke.mindustry.Vars.*;
public class AboutDialog extends FloatingDialog{
private Array<String> contributors = new Array<>();
private static ObjectSet<String> bannedItems = ObjectSet.with("google-play", "itch.io", "dev-builds");
private static ObjectSet<String> bannedItems = ObjectSet.with("google-play", "itch.io", "dev-builds", "f-droid");
public AboutDialog(){
super("$about.button");

View File

@ -75,6 +75,11 @@ public class LightBlock extends Block{
public class LightEntity extends TileEntity{
public int color = Pal.accent.rgba();
@Override
public int config(){
return color;
}
@Override
public void write(DataOutput stream) throws IOException{
super.write(stream);

View File

@ -0,0 +1,9 @@
- Added experimental lighting system - can be enabled in custom game rules
- Added power diode block (Contributed by Quezler)
- Added plated conduit block (Contributed by Quezler)
- Added light block for dark maps only
- Improved pulse conduit speed (Contributed by Quezler)
- Improved building priority
- New permissive mod parsing format (HJSON)
- Fixed a few incorrect consumption displays in blocks
- Fixed 'underwater' ores in editor

View File

@ -0,0 +1,9 @@
- Added experimental lighting system - can be enabled in custom game rules
- Added power diode block (Contributed by Quezler)
- Added plated conduit block (Contributed by Quezler)
- Added light block for dark maps only
- Improved pulse conduit speed (Contributed by Quezler)
- Improved building priority
- New permissive mod parsing format (HJSON)
- Fixed a few incorrect consumption displays in blocks
- Fixed 'underwater' ores in editor