Skip to content

Commit 979aaa9

Browse files
committed
Fixes #440, version 1.3.2
1 parent 6a8c406 commit 979aaa9

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

CHANGELOG.md

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## Version 1.3.2
4+
5+
*February 3, 2016*
6+
7+
A small bugfix for slightly incorrect background colors on code samples in some cases.
8+
39
## Version 1.3.1
410

511
*January 31, 2016*
@@ -8,7 +14,7 @@ A small bugfix for incorrect whitespace in code blocks.
814

915
## Version 1.3
1016

11-
*January 27th, 2016*
17+
*January 27, 2016*
1218

1319
We've upgraded Middleman and a number of other dependencies, which should fix quite a few bugs.
1420

@@ -35,7 +41,7 @@ Instead of `rake build` and `rake deploy`, you should now run `bundle exec middl
3541

3642
## Version 1.1
3743

38-
*July 27th, 2014*
44+
*July 27, 2014*
3945

4046
**Fixes:**
4147

source/layouts/layout.erb

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ under the License.
2222
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
2323
<title><%= current_page.data.title || "API Documentation" %></title>
2424

25-
<%= stylesheet_link_tag :screen, media: :screen %>
26-
<%= stylesheet_link_tag :print, media: :print %>
2725
<style>
2826
<%= Rouge::Themes::Base16::Monokai.render(:scope => '.highlight') %>
2927
</style>
28+
<%= stylesheet_link_tag :screen, media: :screen %>
29+
<%= stylesheet_link_tag :print, media: :print %>
3030
<% if current_page.data.search %>
3131
<%= javascript_include_tag "all" %>
3232
<% else %>

0 commit comments

Comments
 (0)