Skip to content

Commit e17bae5

Browse files
authored
Merge pull request #75 from kakawait/develop
Releasing 0.2.0-ALPHA
2 parents 9705473 + 812ca0f commit e17bae5

File tree

78 files changed

+2180
-844
lines changed

Some content is hidden

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

78 files changed

+2180
-844
lines changed

.bowerrc

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

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
.idea
2+
*~
3+
.DS_Store
14
.sass-cache
25
assets
36
node_modules

CHANGELOG.md

Lines changed: 111 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,113 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [0.2.0-ALPHA](https://github.com/kakawait/hugo-tranquilpeak-theme/milestone/2) - 4 dec 2016
6+
7+
- *De-bundlize* every external scripts/css ([#66](https://github.com/kakawait/hugo-tranquilpeak-theme/pull/66)) for many reasons:
8+
- To use browser cache
9+
- To reduce git repo size
10+
- To easily upgrade dependencies without installing dev env
11+
- First iteration for i18n support ([#9](https://github.com/kakawait/hugo-tranquilpeak-theme/issues/9)), theme currently support following language:
12+
- `en-us`
13+
- `fr-fr`
14+
- `es-es`
15+
- `ja`
16+
- `pt-br`
17+
- `ru`
18+
- `zh-cn`
19+
- `zh-tw`
20+
- `vi` (thank you [@Kiennh](https://github.com/Kiennh))
21+
- `de-de` (thank you [@Martin1001](https://github.com/Martin1001))
22+
- Allow some customization on *copyright* section ([#48](https://github.com/kakawait/hugo-tranquilpeak-theme/issues/48))
23+
24+
using
25+
26+
```toml
27+
[params.footer]
28+
copyright = ...
29+
```
30+
31+
like
32+
33+
```toml
34+
[params.footer]
35+
copyright = "<a href=\"https://github.com/kakawait\">kakawait</a>"
36+
```
37+
38+
- Add fallback to `monospace` when `Menlo` font is not installed ([#68](https://github.com/kakawait/hugo-tranquilpeak-theme/pull/68))
39+
- Update fontawesome to 4.7.0 ([#58](https://github.com/kakawait/hugo-tranquilpeak-theme/issues/58))
40+
- Add horizontal scrolling for scrollblock ([#71](https://github.com/kakawait/hugo-tranquilpeak-theme/pull/71)) (thank you [@jeremywho](https://github.com/jeremywho))
41+
- Fix missing blog post title when using caption ([#65](https://github.com/kakawait/hugo-tranquilpeak-theme/issues/65))
42+
- Fix vertical scrolling page opening on Firefox ([#69](https://github.com/kakawait/hugo-tranquilpeak-theme/issues/69))
43+
44+
### Breaking changes
45+
46+
Replace
47+
48+
```toml
49+
[author]
50+
gravatar_email = "[email protected]"
51+
google_plus = "+YourGooglePlus"
52+
```
53+
54+
to
55+
56+
```toml
57+
[author]
58+
gravatarEmail = "[email protected]"
59+
googlePlus = "+YourGooglePlus"
60+
```
61+
62+
Replace
63+
64+
```toml
65+
[params]
66+
clear_reading = ...
67+
hierarchical_categories = ...
68+
sidebar_behavior = ...
69+
cover_image = ...
70+
image_gallery = ...
71+
thumbnail_image = ...
72+
thumbnail_image_position = ...
73+
auto_thumbnail_image = ...
74+
fb_admin_ids = ...
75+
fb_app_id = ...
76+
category_pagination = ...
77+
archive_pagination = ...
78+
tag_pagination = ...
79+
```
80+
81+
to
82+
83+
```toml
84+
[params]
85+
clearReading = ...
86+
hierarchicalCategories = ...
87+
sidebarBehavior = ...
88+
coverImage = ...
89+
imageGallery = ...
90+
thumbnailImage = ...
91+
thumbnailImagePosition = ...
92+
autoThumbnailImage = ...
93+
fbAdminIds = ...
94+
fbAppId = ...
95+
categoryPagination = ...
96+
archivePagination = ...
97+
tagPagination = ...
98+
```
99+
100+
Replace
101+
102+
```
103+
[params.header.right_link]
104+
```
105+
106+
to
107+
108+
```
109+
[params.header.rightLink]
110+
```
111+
5112
## [0.1.4-ALPHA](https://github.com/kakawait/hugo-tranquilpeak-theme/milestone/9) - 16 nov 2016
6113

7114
- Remove migration scripts ([#45](https://github.com/kakawait/hugo-tranquilpeak-theme/issues/45))
@@ -15,15 +122,15 @@ All notable changes to this project will be documented in this file.
15122
- Fix *archives* pages generation by creating `archive` taxonomy ([#31](https://github.com/kakawait/hugo-tranquilpeak-theme/issues/31))
16123
- Use `slug` instead of `title` for *permalink* urls ([#33](https://github.com/kakawait/hugo-tranquilpeak-theme/pull/33))
17124

18-
### Migration
125+
### Breaking changes
19126

20127
- [archive page return 404](https://github.com/kakawait/hugo-tranquilpeak-theme/issues/31)
21128

22129
Add
23130

24131
```toml
25132
[taxonomies]
26-
archive = "archives"
133+
archive = "archives"
27134
```
28135

29136
## [0.1.1-ALPHA](https://github.com/kakawait/hugo-tranquilpeak-theme/milestone/6) - 13 nov 2016
@@ -32,15 +139,15 @@ Add
32139
- **[Breaking changes]** Changes *Google Analytics* config key from `params.google_analytics_id` to official `googleAnalytics` ([#21](https://github.com/kakawait/hugo-tranquilpeak-theme/issues/21))
33140
- Add parameter to choose between sync/async loading of *Google Analytics* `params.ga.async` ([#21](https://github.com/kakawait/hugo-tranquilpeak-theme/issues/21))
34141

35-
### Migration
142+
### Breaking changes
36143

37144
- [Migrate google analytics](https://github.com/kakawait/hugo-tranquilpeak-theme/issues/21)
38145

39146
Replace
40147

41148
```toml
42149
[params]
43-
google_analytics_id = "UA-XXX-X"
150+
google_analytics_id = "UA-XXX-X"
44151
```
45152

46153
to (top level)

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Please all the credit should be attributed to [original *Hexo* version](https://
3434
## General
3535

3636
- **Authors**: [Louis Barranqueiro (LouisBarranqueiro)](https://github.com/LouisBarranqueiro) and [Thibaud Leprêtre (kakawait)](https://github.com/kakawait)
37-
- **Version**: 0.1.4-ALPHA (based on Hexo version 1.9.1)
37+
- **Version**: 0.2.0-ALPHA (based on Hexo version 1.9.1)
3838
- **Compatibility**: Hugo v0.17
3939

4040
## Features
@@ -49,7 +49,7 @@ Please all the credit should be attributed to [original *Hexo* version](https://
4949
- Beautiful about page
5050
- Support Open Graph protocol
5151
- Easily customizable (fonts, colors, layout elements, code coloration, etc..)
52-
- Documentations
52+
- Support internationalization (i18)
5353

5454
**Posts features:**
5555

@@ -72,11 +72,10 @@ Please all the credit should be attributed to [original *Hexo* version](https://
7272

7373
### Missing features from original *Hexo* version
7474

75-
- [ ] Support internationalization (i18) (https://github.com/kakawait/hugo-tranquilpeak-theme/issues/9)
7675
- [ ] Duoshuo
7776
- [ ] Baidu analytics
7877
- [ ] Algolia (https://github.com/kakawait/hugo-tranquilpeak-theme/issues/8)
79-
- [ ] Pagination custumization `tag_pagination`, `category_pagination` and `archive_pagination` (https://github.com/kakawait/hugo-tranquilpeak-theme/issues/17)
78+
- [ ] Pagination custumization `tagPagination`, `categoryPagination` and `archivePagination` (https://github.com/kakawait/hugo-tranquilpeak-theme/issues/17)
8079

8180
**ATTENTION** following features will not be possible due to *Hugo* limitations
8281

bower.json

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

docs/developer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ If you want to report a bug or ask a question, [create an issue](https://github.
2828
## General ##
2929

3030
- **Author** : Thibaud Leprêtre
31-
- **Version** : 0.1.4-ALPHA (based on Hexo version 1.9.1)
31+
- **Version** : 0.2.0-ALPHA (based on Hexo version 1.9.1)
3232
- **Compatibility** : Hugo v0.17
3333

3434
## Requirements ##

0 commit comments

Comments
 (0)