Merge pull request #4860 from Atermonera/changelog5

Changelog update
This commit is contained in:
Anewbe
2018-02-17 13:15:13 -06:00
committed by GitHub
9 changed files with 65 additions and 170 deletions
+33
View File
@@ -53,6 +53,39 @@
-->
<div class="commit sansserif">
<h2 class="date">17 February 2018</h2>
<h3 class="author">Anewbe updated:</h3>
<ul class="changes bgimages16">
<li class="rscadd">Added a random mine spawner, for use in PoIs. Replaces mines in PoIs with the random spawner.</li>
<li class="rscadd">Mines now give a visible message when they go off.</li>
<li class="tweak">Land mines on the ground can no longer be told apart from one another, to prevent gaming the system.</li>
<li class="bugfix">Hovering mobs (viscerators, drones, Poly, carp) no longer set off land mines.</li>
<li class="tweak">Arming a land mine now takes concentration. If you move, it will boom.</li>
<li class="tweak">RINGS AND CERTAIN GLOVES INCREASE PUNCHING DAMAGE.</li>
<li class="tweak">BRASS KNUCKLES HAVE BEEN TURNED INTO GLOVES AND REBALANCED. THEY DO LESS DAMAGE PER HIT BECAUSE IT'S HARD TO DISARM A PAIR OF GLOVES.</li>
<li class="rscadd">Cyborg Chargers now decrease radiation on FBPs.</li>
<li class="tweak">Falling one floor now does a lot less damage, on average.</li>
<li class="bugfix">Falling one floor in a Mech no longer hurts the occupant.</li>
</ul>
<h3 class="author">PrismaticGynoid updated:</h3>
<ul class="changes bgimages16">
<li class="rscadd">A lot more machines can now be moved with a wrench, mostly kitchen, hydroponics, and virology machines.</li>
<li class="tweak">Changed department ponchos to be open to any job, just like department jackets.</li>
</ul>
<h3 class="author">Schnayy updated:</h3>
<ul class="changes bgimages16">
<li class="rscadd">Adds bouquets. Can be ordered via 'gift crate' in cargo.</li>
<li class="rscadd">Adds fake bouquets for the cheap. Can currently be won from arcade machines.</li>
<li class="rscadd">Adds chocolate heart-shaped boxes. Can be ordered via 'gift crate' in cargo.</li>
<li class="rscadd">Adds gift cards with four cover variations. Function like paper. Can be ordered via 'gift crate' in cargo.</li>
</ul>
<h3 class="author">battlefieldCommander updated:</h3>
<ul class="changes bgimages16">
<li class="rscadd">Added packed snow brick material. Craft it using snow piles.</li>
<li class="recadd">Added snow girders and igloo walls. Craft them using snow bricks.</li>
<li class="rscadd">Added various snowmen. Craft them using snow piles. Punch 'em to destroy.</li>
</ul>
<h2 class="date">10 February 2018</h2>
<h3 class="author">Atermonera updated:</h3>
<ul class="changes bgimages16">
+32
View File
@@ -3868,3 +3868,35 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py.
- maptweak: Redesign of medical surgery rooms, replacement of the closets with wall
closets.
- bugfix: Multiple map bugfixes including distro and scrubber lines to deck 3.
2018-02-17:
Anewbe:
- rscadd: Added a random mine spawner, for use in PoIs. Replaces mines in PoIs with
the random spawner.
- rscadd: Mines now give a visible message when they go off.
- tweak: Land mines on the ground can no longer be told apart from one another,
to prevent gaming the system.
- bugfix: Hovering mobs (viscerators, drones, Poly, carp) no longer set off land
mines.
- tweak: Arming a land mine now takes concentration. If you move, it will boom.
- tweak: RINGS AND CERTAIN GLOVES INCREASE PUNCHING DAMAGE.
- tweak: BRASS KNUCKLES HAVE BEEN TURNED INTO GLOVES AND REBALANCED. THEY DO LESS
DAMAGE PER HIT BECAUSE IT'S HARD TO DISARM A PAIR OF GLOVES.
- rscadd: Cyborg Chargers now decrease radiation on FBPs.
- tweak: Falling one floor now does a lot less damage, on average.
- bugfix: Falling one floor in a Mech no longer hurts the occupant.
PrismaticGynoid:
- rscadd: A lot more machines can now be moved with a wrench, mostly kitchen, hydroponics,
and virology machines.
- tweak: Changed department ponchos to be open to any job, just like department
jackets.
Schnayy:
- rscadd: Adds bouquets. Can be ordered via 'gift crate' in cargo.
- rscadd: Adds fake bouquets for the cheap. Can currently be won from arcade machines.
- rscadd: Adds chocolate heart-shaped boxes. Can be ordered via 'gift crate' in
cargo.
- rscadd: Adds gift cards with four cover variations. Function like paper. Can be
ordered via 'gift crate' in cargo.
battlefieldCommander:
- rscadd: Added packed snow brick material. Craft it using snow piles.
- recadd: Added snow girders and igloo walls. Craft them using snow bricks.
- rscadd: Added various snowmen. Craft them using snow piles. Punch 'em to destroy.
-37
View File
@@ -1,37 +0,0 @@
################################
# Example Changelog File
#
# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb.
#
# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.)
# When it is, any changes listed below will disappear.
#
# Valid Prefixes:
# bugfix
# wip (For works in progress)
# tweak
# soundadd
# sounddel
# rscadd (general adding of nice things)
# rscdel (general deleting of nice things)
# imageadd
# imagedel
# maptweak
# spellcheck (typo fixes)
# experiment
#################################
# Your name.
author: Anewbe
# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again.
delete-after: True
# Any changes you've made. See valid prefix list above.
# INDENT WITH TWO SPACES. NOT TABS. SPACES.
# SCREW THIS UP AND IT WON'T WORK.
# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries.
# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog.
changes:
- tweak: "RINGS AND CERTAIN GLOVES INCREASE PUNCHING DAMAGE."
- tweak: "BRASS KNUCKLES HAVE BEEN TURNED INTO GLOVES AND REBALANCED. THEY DO LESS DAMAGE PER HIT BECAUSE IT'S HARD TO DISARM A PAIR OF GLOVES."
-40
View File
@@ -1,40 +0,0 @@
################################
# Example Changelog File
#
# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb.
#
# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.)
# When it is, any changes listed below will disappear.
#
# Valid Prefixes:
# bugfix
# wip (For works in progress)
# tweak
# soundadd
# sounddel
# rscadd (general adding of nice things)
# rscdel (general deleting of nice things)
# imageadd
# imagedel
# maptweak
# spellcheck (typo fixes)
# experiment
#################################
# Your name.
author: Anewbe
# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again.
delete-after: True
# Any changes you've made. See valid prefix list above.
# INDENT WITH TWO SPACES. NOT TABS. SPACES.
# SCREW THIS UP AND IT WON'T WORK.
# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries.
# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog.
changes:
- rscadd: "Added a random mine spawner, for use in PoIs. Replaces mines in PoIs with the random spawner."
- rscadd: "Mines now give a visible message when they go off."
- tweak: "Land mines on the ground can no longer be told apart from one another, to prevent gaming the system."
- bugfix: "Hovering mobs (viscerators, drones, Poly, carp) no longer set off land mines."
- tweak: "Arming a land mine now takes concentration. If you move, it will boom."
-38
View File
@@ -1,38 +0,0 @@
################################
# Example Changelog File
#
# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb.
#
# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.)
# When it is, any changes listed below will disappear.
#
# Valid Prefixes:
# bugfix
# wip (For works in progress)
# tweak
# soundadd
# sounddel
# rscadd (general adding of nice things)
# rscdel (general deleting of nice things)
# imageadd
# imagedel
# maptweak
# spellcheck (typo fixes)
# experiment
#################################
# Your name.
author: Anewbe
# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again.
delete-after: True
# Any changes you've made. See valid prefix list above.
# INDENT WITH TWO SPACES. NOT TABS. SPACES.
# SCREW THIS UP AND IT WON'T WORK.
# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries.
# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog.
changes:
- rscadd: "Cyborg Chargers now decrease radiation on FBPs."
- tweak: "Falling one floor now does a lot less damage, on average."
- bugfix: "Falling one floor in a Mech no longer hurts the occupant."
@@ -1,38 +0,0 @@
################################
# Example Changelog File
#
# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb.
#
# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.)
# When it is, any changes listed below will disappear.
#
# Valid Prefixes:
# bugfix
# wip (For works in progress)
# tweak
# soundadd
# sounddel
# rscadd (general adding of nice things)
# rscdel (general deleting of nice things)
# imageadd
# imagedel
# maptweak
# spellcheck (typo fixes)
# experiment
#################################
# Your name.
author: battlefieldCommander
# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again.
delete-after: True
# Any changes you've made. See valid prefix list above.
# INDENT WITH TWO SPACES. NOT TABS. SPACES.
# SCREW THIS UP AND IT WON'T WORK.
# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries.
# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog.
changes:
- rscadd: "Added packed snow brick material. Craft it using snow piles."
- recadd: "Added snow girders and igloo walls. Craft them using snow bricks."
- rscadd: "Added various snowmen. Craft them using snow piles. Punch 'em to destroy."
@@ -1,4 +0,0 @@
author: PrismaticGynoid
delete-after: True
changes:
- rscadd: "A lot more machines can now be moved with a wrench, mostly kitchen, hydroponics, and virology machines."
@@ -1,4 +0,0 @@
author: PrismaticGynoid
delete-after: True
changes:
- tweak: "Changed department ponchos to be open to any job, just like department jackets."
-9
View File
@@ -1,9 +0,0 @@
author: Schnayy
delete-after: True
changes:
- rscadd: "Adds bouquets. Can be ordered via 'gift crate' in cargo."
- rscadd: "Adds fake bouquets for the cheap. Can currently be won from arcade machines."
- rscadd: "Adds chocolate heart-shaped boxes. Can be ordered via 'gift crate' in cargo."
- rscadd: "Adds gift cards with four cover variations. Function like paper. Can be ordered via 'gift crate' in cargo."