Skip to content

Commit 1cce75a

Browse files
committed
Merge branch 'release/3.0.0'
2 parents 6d2a627 + 7a5793c commit 1cce75a

File tree

243 files changed

+10310
-4351
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

243 files changed

+10310
-4351
lines changed

.editorconfig

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# editorconfig.org
2+
root = true
3+
4+
[*]
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
charset = utf-8
9+
trim_trailing_whitespace = true
10+
insert_final_newline = false
11+
12+
[*.md]
13+
trim_trailing_whitespace = false

.gitattributes

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
_assets/css/vendor/* linguist-vendored
2+
_assets/js/plugins/* linguist-vendored
3+
_assets/js/vendor/* linguist-vendored
4+
assets/fonts/* linguist-vendored
5+
assets/js/vendor/* linguist-vendored

.gitignore

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
_site
2-
.sass-cache
3-
.DS_Store
41
*.sublime-project
52
*.sublime-workspace
3+
.DS_Store
4+
.jekyll-metadata
5+
.sass-cache
6+
_asset_bundler_cache
7+
_site
68
codekit-config.json
79
node_modules
8-
_asset_bundler_cache
9-
.jekyll-metadata
10+
npm-debug.log*

.jshintrc

Lines changed: 0 additions & 20 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
## [1.2.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/1.2.0)
2+
3+
### Bug Fixes
4+
5+
- Table weren't filling the entire width of the content container. They now scale at 100%. Thanks [@dhruvbhatia](https://github.com/dhruvbhatia)
6+
7+
### Enhancements
8+
9+
- Decreased spacing between Markdown footnotes
10+
- Removed dark background on footer
11+
- Removed UPPERCASE styling on post titles in the index listing
12+
13+
## [1.1.4](https://github.com/mmistakes/minimal-mistakes/releases/tag/1.1.4)
14+
15+
### Bug Fixes
16+
17+
- Fix top navigation bug issue ([#10](https://github.com/mmistakes/minimal-mistakes/issues/10)) for real this time. Remember to clear your floats kids.
18+
19+
## [1.1.3](https://github.com/mmistakes/minimal-mistakes/releases/tag/1.1.3)
20+
21+
### Bug Fixes
22+
23+
- Fix top navigation links that weren't click able on small viewports (Issue [#10](https://github.com/mmistakes/minimal-mistakes/issues/10)).
24+
- Remove line wrap from top navigation links that may span multiple lines.
25+
26+
## [1.1.2](https://github.com/mmistakes/minimal-mistakes/releases/tag/1.1.2)
27+
28+
### Enhancements
29+
30+
- Added Grunt build script for compiling Less/JavaScript and optimizing image assets.
31+
- Added support for large image summary Twitter card.
32+
- Stylesheet adjustments
33+
34+
## [1.1.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/1.1.1)
35+
36+
### Bug Fixes
37+
38+
- Removed [Typeplate](http://typeplate.com/) styles. Was [causing issues with newer versions of Less](https://github.com/typeplate/typeplate.github.io/issues/108) and is no longer maintained.
39+
40+
### Enhancements
41+
42+
- Added [image attribution](http://mmistakes.github.io/minimal-mistakes/theme-setup/#feature-images) for post and page feature images.
43+
- Added [404 page](http://mmistakes.github.io/minimal-mistakes/404.html).
44+
- Cleaned up various Less variables to better align with naming conventions used in other MM Jekyll themes.
45+
- Removed Chrome Frame references.
46+
- Added global CSS3 transitions to text and block elements.
47+
- Improved typography in a few places.
48+
49+
## [1.0.2](https://github.com/mmistakes/minimal-mistakes/releases/tag/v1.0.2)
50+
51+
### Enhancements
52+
53+
- Google Analytics, Google Authorship, webmaster verifies, and Twitter card meta are now optional.
54+
55+
## [1.0.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/v1.0.1)

Gemfile

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
source "https://rubygems.org"
22

3-
gem "jekyll", "~> 3.0"
4-
gem "jekyll-sitemap"
5-
gem "jekyll-gist"
6-
gem "octopress"
3+
gem "github-pages"
4+
# gem "jekyll-archives"
5+
gem "wdm", "~> 0.1.0" if Gem.win_platform?

Gemfile.lock

Lines changed: 103 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,61 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
addressable (2.3.8)
4+
RedCloth (4.2.9)
5+
activesupport (4.2.6)
6+
i18n (~> 0.7)
7+
json (~> 1.7, >= 1.7.7)
8+
minitest (~> 5.1)
9+
thread_safe (~> 0.3, >= 0.3.4)
10+
tzinfo (~> 1.1)
11+
addressable (2.4.0)
12+
coffee-script (2.4.1)
13+
coffee-script-source
14+
execjs
15+
coffee-script-source (1.10.0)
516
colorator (0.1)
17+
ethon (0.8.1)
18+
ffi (>= 1.3.0)
19+
execjs (2.6.0)
620
faraday (0.9.2)
721
multipart-post (>= 1.2, < 3)
822
ffi (1.9.10)
9-
jekyll (3.1.1)
23+
ffi (1.9.10-x64-mingw32)
24+
gemoji (2.1.0)
25+
github-pages (69)
26+
RedCloth (= 4.2.9)
27+
github-pages-health-check (= 1.1.0)
28+
jekyll (= 3.0.3)
29+
jekyll-coffeescript (= 1.0.1)
30+
jekyll-feed (= 0.4.0)
31+
jekyll-gist (= 1.4.0)
32+
jekyll-github-metadata (= 1.11.0)
33+
jekyll-mentions (= 1.1.2)
34+
jekyll-paginate (= 1.1.0)
35+
jekyll-redirect-from (= 0.10.0)
36+
jekyll-sass-converter (= 1.3.0)
37+
jekyll-seo-tag (= 1.3.3)
38+
jekyll-sitemap (= 0.10.0)
39+
jekyll-textile-converter (= 0.1.0)
40+
jemoji (= 0.6.2)
41+
kramdown (= 1.10.0)
42+
liquid (= 3.0.6)
43+
mercenary (~> 0.3)
44+
rdiscount (= 2.1.8)
45+
redcarpet (= 3.3.3)
46+
rouge (= 1.10.1)
47+
terminal-table (~> 1.4)
48+
github-pages-health-check (1.1.0)
49+
addressable (~> 2.3)
50+
net-dns (~> 0.8)
51+
octokit (~> 4.0)
52+
public_suffix (~> 1.4)
53+
typhoeus (~> 0.7)
54+
html-pipeline (2.4.0)
55+
activesupport (>= 2, < 5)
56+
nokogiri (>= 1.4)
57+
i18n (0.7.0)
58+
jekyll (3.0.3)
1059
colorator (~> 0.1)
1160
jekyll-sass-converter (~> 1.0)
1261
jekyll-watch (~> 1.1)
@@ -15,56 +64,76 @@ GEM
1564
mercenary (~> 0.3.3)
1665
rouge (~> 1.7)
1766
safe_yaml (~> 1.0)
67+
jekyll-coffeescript (1.0.1)
68+
coffee-script (~> 2.2)
69+
jekyll-feed (0.4.0)
1870
jekyll-gist (1.4.0)
1971
octokit (~> 4.2)
20-
jekyll-sass-converter (1.4.0)
21-
sass (~> 3.4)
72+
jekyll-github-metadata (1.11.0)
73+
octokit (~> 4.0)
74+
jekyll-mentions (1.1.2)
75+
html-pipeline (~> 2.3)
76+
jekyll (~> 3.0)
77+
jekyll-paginate (1.1.0)
78+
jekyll-redirect-from (0.10.0)
79+
jekyll (>= 2.0)
80+
jekyll-sass-converter (1.3.0)
81+
sass (~> 3.2)
82+
jekyll-seo-tag (1.3.3)
83+
jekyll (~> 3.0)
2284
jekyll-sitemap (0.10.0)
85+
jekyll-textile-converter (0.1.0)
86+
RedCloth (~> 4.0)
2387
jekyll-watch (1.3.1)
2488
listen (~> 3.0)
25-
kramdown (1.9.0)
89+
jemoji (0.6.2)
90+
gemoji (~> 2.0)
91+
html-pipeline (~> 2.2)
92+
jekyll (>= 3.0)
93+
json (1.8.3)
94+
kramdown (1.10.0)
2695
liquid (3.0.6)
27-
listen (3.0.5)
96+
listen (3.0.6)
2897
rb-fsevent (>= 0.9.3)
29-
rb-inotify (>= 0.9)
30-
mercenary (0.3.5)
98+
rb-inotify (>= 0.9.7)
99+
mercenary (0.3.6)
100+
mini_portile2 (2.0.0)
101+
minitest (5.8.4)
31102
multipart-post (2.0.0)
32-
octokit (4.2.0)
33-
sawyer (~> 0.6.0, >= 0.5.3)
34-
octopress (3.0.11)
35-
jekyll (>= 2.0)
36-
mercenary (~> 0.3.2)
37-
octopress-deploy
38-
octopress-escape-code (~> 2.0)
39-
octopress-hooks (~> 2.0)
40-
redcarpet (~> 3.0)
41-
titlecase
42-
octopress-deploy (1.3.0)
43-
colorator
44-
octopress-escape-code (2.1.1)
45-
jekyll (~> 3.0)
46-
octopress-hooks (2.6.1)
47-
jekyll (>= 2.0)
103+
net-dns (0.8.0)
104+
nokogiri (1.6.7.2)
105+
mini_portile2 (~> 2.0.0.rc2)
106+
nokogiri (1.6.7.2-x64-mingw32)
107+
mini_portile2 (~> 2.0.0.rc2)
108+
octokit (4.3.0)
109+
sawyer (~> 0.7.0, >= 0.5.3)
110+
public_suffix (1.5.3)
48111
rb-fsevent (0.9.7)
49-
rb-inotify (0.9.5)
112+
rb-inotify (0.9.7)
50113
ffi (>= 0.5.0)
51-
redcarpet (3.3.4)
114+
rdiscount (2.1.8)
115+
redcarpet (3.3.3)
52116
rouge (1.10.1)
53117
safe_yaml (1.0.4)
54-
sass (3.4.21)
55-
sawyer (0.6.0)
56-
addressable (~> 2.3.5)
118+
sass (3.4.22)
119+
sawyer (0.7.0)
120+
addressable (>= 2.3.5, < 2.5)
57121
faraday (~> 0.8, < 0.10)
58-
titlecase (0.1.1)
122+
terminal-table (1.5.2)
123+
thread_safe (0.3.5)
124+
typhoeus (0.8.0)
125+
ethon (>= 0.8.0)
126+
tzinfo (1.2.2)
127+
thread_safe (~> 0.1)
128+
wdm (0.1.1)
59129

60130
PLATFORMS
61131
ruby
132+
x64-mingw32
62133

63134
DEPENDENCIES
64-
jekyll (~> 3.0)
65-
jekyll-gist
66-
jekyll-sitemap
67-
octopress
135+
github-pages
136+
wdm (~> 0.1.0)
68137

69138
BUNDLED WITH
70139
1.11.2

Gruntfile.js

Lines changed: 0 additions & 88 deletions
This file was deleted.

0 commit comments

Comments
 (0)