Changelog changes! Instructions on how to update it will be soon.
3
html/archivedchangelog.html
Normal file
@@ -0,0 +1,3 @@
|
||||
<!--
|
||||
Stick old posts here to prevent cluttering of main changelog.
|
||||
-->
|
||||
BIN
html/bug-minus.png
Normal file
|
After Width: | Height: | Size: 657 B |
BIN
html/burn-exclamation.png
Normal file
|
After Width: | Height: | Size: 727 B |
@@ -1,13 +1,26 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<title>/tg/ Station 13 Changelog</title>
|
||||
<title>Baystation 12 Changelog</title>
|
||||
<link rel="stylesheet" type="text/css" href="changelog.css">
|
||||
<script type='text/javascript'></script>
|
||||
<script type='text/javascript'>
|
||||
|
||||
function changeText(tagID, newText, linkTagID){
|
||||
var tag = document.getElementById(tagID);
|
||||
tag.innerHTML = newText;
|
||||
var linkTag = document.getElementById(linkTagID);
|
||||
linkTag.removeAttribute("href");
|
||||
linkTag.removeAttribute("onclick");
|
||||
}
|
||||
|
||||
</script>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<!--
|
||||
Header Section
|
||||
-->
|
||||
<table align='center' width='650'><tr><td>
|
||||
<table align='center' class="top">
|
||||
<tr>
|
||||
@@ -24,7 +37,31 @@
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<iframe width='100%' height='500px' src="http://baystation12.net/wiki/index.php?title=Changelog&printable=yes&remove_links=1" frameborder="0" id="main_frame"></iframe>
|
||||
<!--
|
||||
Changelog Section
|
||||
-->
|
||||
|
||||
<!-- NOTE TO UPDATERS!! Please only list things which are important to players.
|
||||
Stuff which is in development and not yet visible to players or just code related
|
||||
(ie. code improvements for expandability, etc.) should not be listed here. They
|
||||
should be listed in the changelog upon commit though. Thanks. -->
|
||||
|
||||
<!-- To take advantage of the pretty new format (well it was new when I wrote this anyway), open the "add-to-changelog.html" file in any browser and add the stuff and then generate the html code and paste it here -->
|
||||
<div class="commit sansserif">
|
||||
<h2 class="date">30th April 2012</h2>
|
||||
<h3 class="author">Erthilo updated:</h3>
|
||||
<ul class="changes bgimages16">
|
||||
<li class="rscadd">Switched to /tg/'s changelog format! Previous updates can be found here: http://baystation12.net/wiki/index.php/Changelog</li>
|
||||
<li class="rscadd">New green alt satchel for Botanists.</li>
|
||||
<li class="rscadd">Cyborgs can now view crew manifest and also state laws.</li>
|
||||
<li class="imageadd">New ATM sprites.</li>
|
||||
<li class="tweak">Changes year to 2556 on medical/security records.</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<!--
|
||||
Credits Section
|
||||
-->
|
||||
|
||||
<b>/tg/ station 13 Development Team</b>
|
||||
<table align='center' class="top">
|
||||
|
||||
87
html/changelog.js
Normal file
@@ -0,0 +1,87 @@
|
||||
/*
|
||||
function dropdowns() {
|
||||
var divs = document.getElementsByTagName('div');
|
||||
var headers = new Array();
|
||||
var links = new Array();
|
||||
for(var i=0;i<divs.length;i++){
|
||||
if(divs[i].className=='drop') {
|
||||
divs[i].className='drop closed';
|
||||
headers.push(divs[i]);
|
||||
}
|
||||
if(divs[i].className=='indrop') {
|
||||
divs[i].className='indrop hidden';
|
||||
links.push(divs[i]);
|
||||
}
|
||||
}
|
||||
for(var i=0;i<headers.length;i++){
|
||||
if(typeof(links[i])!== 'undefined' && links[i]!=null) {
|
||||
headers[i].onclick = (function(elem) {
|
||||
return function() {
|
||||
if(elem.className.search('visible')>=0) {
|
||||
elem.className = elem.className.replace('visible','hidden');
|
||||
this.className = this.className.replace('open','closed');
|
||||
}
|
||||
else {
|
||||
elem.className = elem.className.replace('hidden','visible');
|
||||
this.className = this.className.replace('closed','open');
|
||||
}
|
||||
return false;
|
||||
}
|
||||
})(links[i]);
|
||||
}
|
||||
}
|
||||
}
|
||||
*/
|
||||
/*
|
||||
function filterchanges(type){
|
||||
var lists = document.getElementsByTagName('ul');
|
||||
for(var i in lists){
|
||||
if(lists[i].className && lists[i].className.search('changes')>=0) {
|
||||
for(var j in lists[i].childNodes){
|
||||
if(lists[i].childNodes[j].nodeType == 1){
|
||||
if(!type){
|
||||
lists[i].childNodes[j].style.display = 'block';
|
||||
}
|
||||
else if(lists[i].childNodes[j].className!=type) {
|
||||
lists[i].childNodes[j].style.display = 'none';
|
||||
}
|
||||
else {
|
||||
lists[i].childNodes[j].style.display = 'block';
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
*/
|
||||
function dropdowns() {
|
||||
var drops = $('div.drop');
|
||||
var indrops = $('div.indrop');
|
||||
if(drops.length!=indrops.length){
|
||||
alert("Some coder fucked up with dropdowns");
|
||||
}
|
||||
drops.each(function(index){
|
||||
$(this).toggleClass('closed');
|
||||
$(indrops[index]).hide();
|
||||
$(this).click(function(){
|
||||
$(this).toggleClass('closed');
|
||||
$(this).toggleClass('open');
|
||||
$(indrops[index]).toggle();
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
function filterchanges(type){
|
||||
$('ul.changes li').each(function(){
|
||||
if(!type || $(this).hasClass(type)){
|
||||
$(this).show();
|
||||
}
|
||||
else {
|
||||
$(this).hide();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
$(document).ready(function(){
|
||||
dropdowns();
|
||||
});
|
||||
BIN
html/chevron-expand.png
Normal file
|
After Width: | Height: | Size: 495 B |
BIN
html/chevron.png
Normal file
|
After Width: | Height: | Size: 498 B |
BIN
html/cross-circle.png
Normal file
|
After Width: | Height: | Size: 651 B |
BIN
html/hard-hat-exclamation.png
Normal file
|
After Width: | Height: | Size: 678 B |
BIN
html/image-minus.png
Normal file
|
After Width: | Height: | Size: 535 B |
BIN
html/image-plus.png
Normal file
|
After Width: | Height: | Size: 580 B |
BIN
html/music-minus.png
Normal file
|
After Width: | Height: | Size: 403 B |
BIN
html/music-plus.png
Normal file
|
After Width: | Height: | Size: 462 B |
BIN
html/spell-check.png
Normal file
|
After Width: | Height: | Size: 509 B |
BIN
html/tick-circle.png
Normal file
|
After Width: | Height: | Size: 660 B |
BIN
html/wrench-screwdriver.png
Normal file
|
After Width: | Height: | Size: 684 B |