diff --git a/web/classes/frontcontroller.class.php b/web/classes/frontcontroller.class.php index 93e2fd8fb3..610fa6ae82 100644 --- a/web/classes/frontcontroller.class.php +++ b/web/classes/frontcontroller.class.php @@ -415,7 +415,7 @@ private function outputMainMenu($page=NULL) $leftTabs = array(); $leftTabs[] = array('page'=>'/engine', 'label'=>'Engine', 'tooltip'=>'About the Doomsday Engine'); $leftTabs[] = array('page'=>'/games', 'label'=>'Games', 'tooltip'=>'Games playable with the Doomsday Engine'); - $leftTabs[] = array('page'=>'/dew', 'label'=>'Wiki', 'tooltip'=>'Doomsday Engine wiki (documentation)'); + $leftTabs[] = array('page'=>'http://wiki.dengine.net', 'label'=>'Wiki', 'tooltip'=>'Doomsday Engine wiki (documentation)'); $rightTabs = array(); $rightTabs[] = array('page'=>'/addons', 'label'=>'Add-ons', 'tooltip'=>'Add-ons for games playable with the Doomsday Engine'); diff --git a/web/forums/styles/Deng/imageset/icon_topic_attach.png b/web/forums/styles/Deng/imageset/icon_topic_attach.png index 77f21de5b5..4dc469a180 100644 Binary files a/web/forums/styles/Deng/imageset/icon_topic_attach.png and b/web/forums/styles/Deng/imageset/icon_topic_attach.png differ diff --git a/web/plugins/z#home/home.php b/web/plugins/z#home/home.php index 8e2bee05ba..3dd5f14c35 100644 --- a/web/plugins/z#home/home.php +++ b/web/plugins/z#home/home.php @@ -321,20 +321,20 @@ public function execute($args=NULL) }); $('#column2').interpretFeed({ - feedUri: 'http://dengine.net/forums/rss.php?f=24', + feedUri: 'http://dengine.net/blog/category/dev/feed', dataType: 'json', clearOnSuccess: false, useGoogleApi: true, maxItems: 1, generateItemHtml: function (n, t) { - var html = '

' + t.title + '

'; + var html = '

' + t.title + '

'; var d = new Date(t.publishedDate); var niceDate = $.datepicker.formatDate('MM d, yy', d); html += '

'; html += '

'; - html += t.content; + html += '
' + t.content + '
'; html += '
'; html += '
'; return '
  • ' + html + '
  • '; diff --git a/web/plugins/z#home/html/getitnow.html b/web/plugins/z#home/html/getitnow.html index d00c29d1e8..e9ef8fc9ea 100644 --- a/web/plugins/z#home/html/getitnow.html +++ b/web/plugins/z#home/html/getitnow.html @@ -1,4 +1,4 @@ -Get it NOW - free + diff --git a/web/plugins/z#home/html/latestversion.html b/web/plugins/z#home/html/latestversion.html index ef5fc7ccb7..234fa732c4 100644 --- a/web/plugins/z#home/html/latestversion.html +++ b/web/plugins/z#home/html/latestversion.html @@ -16,7 +16,18 @@ if(ob) { ob.empty(); - var html = '

    ' + json.version + '

    '; + // Omit zeroes in the end. + var components = json.version.split('.'); + while(components.length > 2) + { + if(components[components.length - 1] == '0') + { + components.length--; + } + else break; + } + var cleanVersion = components.join('.'); + var html = '

    ' + cleanVersion + '

    '; ob.append(html); } } diff --git a/web/style.css b/web/style.css index b95d1dd2a4..41163555b5 100644 --- a/web/style.css +++ b/web/style.css @@ -268,6 +268,13 @@ hr.dashed { .block a:hover { color: #FFCB0F; } +.block p + p, .block section + p { + margin-top: 1em; +} + +.block h1 + p, .block h2, .block h3 { margin-top: 1em; } +.block h2:first-child, .block h3:first-child { margin-top: 0; } + .major_issue { background-color:#ff4444; /* red */ } .minor_issue { background-color:#ffee00; /* yellow */ } .no_issue { background-color:#00ee00; /* green */ } @@ -813,7 +820,7 @@ div.clear { #main footer { width: 100%; font-size: xx-small; - font-family: Verdana, Arial, Helvetica, sans-serif; + font-family: "Open Sans", sans-serif; text-align: center; margin-top: 1em; margin-bottom: 1em; @@ -886,13 +893,13 @@ div.clear { .asidebox { display: block; - font-family: Verdana, Arial, Helvetica, sans-serif; + font-family: "Open Sans", sans-serif; margin:.8em; } #downloadbox, #socialbookmarkbox { text-align: center; - margin-top: 2.4em; + margin-top: 2em; margin-bottom: 2.4em; overflow: hidden; } @@ -949,18 +956,31 @@ div.clear { background-position: 0 0; } -.getitnow-label { +.download-button { font-size: x-large; - text-align:center; + text-align: center; + margin-top: 1ex; + margin-bottom: 1.3em; + font-weight: 300; } -.getitnow-label a, a:hover, a:visited:hover { - text-decoration: none; +.download-button a { + border: 1px solid white; + border-radius: 0.5ex; + padding: 0.4ex 1ex; + margin: 1ex; } -.getitnow-label span.free-label { - font-style: italic; - font-size: medium; +.download-button a:hover { + border: 1px solid #FFCB0F; +} + +.download-button .downarrow { + text-weight: bold; +} + +.download-button a, a:hover, a:visited:hover { + text-decoration: none; } #socialbookmarkbox .hnav {