Skip to content

Commit

Permalink
release: v1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kitian616 committed Nov 19, 2017
1 parent 7774659 commit 2f1400b
Show file tree
Hide file tree
Showing 9 changed files with 185 additions and 114 deletions.
56 changes: 53 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -128,10 +128,60 @@ typings/
!.vscode/extensions.json


*.gem
*.rbc
/.config
/coverage/
/InstalledFiles
/pkg/
/spec/reports/
/spec/examples.txt
/test/tmp/
/test/version_tmp/
/tmp/

# Used by dotenv library to load environment variables.
# .env

## Specific to RubyMotion:
.dat*
.repl_history
build/
*.bridgesupport
build-iPhoneOS/
build-iPhoneSimulator/

## Specific to RubyMotion (use of CocoaPods):
#
# We recommend against adding the Pods directory to your .gitignore. However
# you should judge for yourself, the pros and cons are mentioned at:
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
#
# vendor/Pods/

## Documentation cache and generated files:
/.yardoc/
/_yardoc/
/doc/
/rdoc/

## Environment normalization:
/.bundle/
/vendor/bundle
/lib/bundler/man/

# for a library or gem, you might want to ignore these files since the code is
# intended to run in multiple environments; otherwise, check them in:
# Gemfile.lock
# .ruby-version
# .ruby-gemset

# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
.rvmrc

# jekyll
_site/
.sass-cache/
.jekyll-metadata

/_posts/

jekyll-text-theme-*.gem
/_posts/
22 changes: 16 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
# Change Log

## [1.3.0](https://github.com/kitian616/jekyll-TeXt-theme/releases/tag/v1.3.0)
## 1.4.0 (2017-11-19)

### Enhancements

- Multi-language support

### Bug Fixes

- Table overflow-x smooth on iOS

## 1.3.0 (2017-11-11)

### Enhancements

Expand All @@ -12,7 +22,7 @@

- Styles change (table, code, blockquote)

## [1.2.2](https://github.com/kitian616/jekyll-TeXt-theme/releases/tag/v1.2.2)
## 1.2.2 (2017-11-04)

### Enhancements

Expand All @@ -30,7 +40,7 @@

- Fix table responsive style error

## [1.2.1](https://github.com/kitian616/jekyll-TeXt-theme/releases/tag/v1.2.1)
## 1.2.1 (2017-10-27)

### Enhancements

Expand All @@ -42,7 +52,7 @@

- Email url error

## [1.2.0](https://github.com/kitian616/jekyll-TeXt-theme/releases/tag/v1.2.0)
## 1.2.0 (2017-10-22)

### Enhancements

Expand All @@ -56,15 +66,15 @@

- Fix footer social buttons not in the center bug

## [1.1.0](https://github.com/kitian616/jekyll-TeXt-theme/releases/tag/v1.1.0)
## 1.1.0 (2017-10-19)

### Enhancements

- Color variables

- More color themes (dark, forest, ocean)

## [1.0.0](https://github.com/kitian616/jekyll-TeXt-theme/releases/tag/v1.0.0)
## 1.0.0 (2017-10-17)

### Enhancements

Expand Down
2 changes: 1 addition & 1 deletion _layouts/all.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ <h2 class="year-title" id="year-{{ post.date | date: "%Y" }}">{{ currentdate }}<
{% assign __path = post.url %}
{% include snippets/prepend-baseurl.html %}
{% assign href = __return %}
{% assign __locale = site.data.locale.ARTICLE_LIST_DATE_FORMAT } %}
{% assign __locale = site.data.locale.ARTICLE_LIST_DATE_FORMAT %}
{% include snippets/locale-to-string.html %}
<li class="js-post-block" data-tag="{{ _tags }}">
<span class="post-date">{{ post.date | date: __return }}</span>
Expand Down
2 changes: 1 addition & 1 deletion jekyll-text-theme.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Gem::Specification.new do |spec|
spec.name = "jekyll-text-theme"
spec.version = "1.3.0"
spec.version = "1.4.0"
spec.authors = ["kitian616"]
spec.email = ["[email protected]"]

Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
{
"name": "jekyll-text-theme",
"version": "1.3.0",
"version": "1.4.0",
"description": "A text first theme for Jekyll.",
"scripts": {
"build": "bundle exec jekyll build",
"serve": "bundle exec jekyll serve -H 0.0.0.0",
"default": "bundle exec jekyll serve -H 0.0.0.0 -t",
"dev": "bundle exec jekyll serve -H 0.0.0.0 -t --config ./_config.dev.yml",
"demo": "bundle exec jekyll serve -H 0.0.0.0 -t --config ./_config.demo.yml",
"posts-cp": "mkdir ./_posts && cp -Rfv ./test/_posts/** ./_posts",
"posts-rm": "rm -Rfv ./_posts/**",
"favicon": "gulp favicon",
"icons": "gulp icons",
"artwork": "gulp artwork",
"gem-build": "gem build jekyll-text-theme.gemspec",
"gem-build": "rm -fv jekyll-text-theme-*.gem && gem build jekyll-text-theme.gemspec",
"gem-push": "gem push jekyll-text-theme-*.gem"
},
"repository": {
Expand Down
86 changes: 0 additions & 86 deletions test/Gemfile.lock

This file was deleted.

40 changes: 29 additions & 11 deletions test/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,19 @@ theme: jekyll-text-theme
# | | \ --. / .'. \ | |
# `--' `----''--' '--' `--'

# Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely need to edit after that.
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'jekyll serve'. If you change this file, please restart the server process.

# ,--------. ,--. ,--. ,--.
# '--. .--',---. \ `.' /,-' '-.
# | | | .-. : .' \ '-. .-'
# | | \ --. / .'. \ | |
# `--' `----''--' '--' `--'

## Base settings ##
# url: #!the base hostname & protocol for your site e.g. https://www.someone.com (!!required!!)
baseurl: /
Expand All @@ -31,9 +44,14 @@ nav_lists:
zh-Hant: 關於
url: /about.html

paths:
home: /
all: /all.html
rss: /feed.xml

## GitHub repository (if the site is hosted by GitHub) ##
# repository: e.g. someone/someone.github.io
# repository_tree: e.g. master
repository: someone/someone.github.io
repository_tree: master

## Language & timezone ##
lang: en #the language of your site, eg: en(English), zh(简体中文), zh-Hans(简体中文), zh-Hant(繁體中文)
Expand All @@ -42,14 +60,14 @@ timezone: Asia/Shanghai
## Author & social ##
author:
name: Someone
# email: #your Email address e.g. [email protected]
# facebook: #your Facebook username
# twitter: #your Twitter username
# github: #your GitHub username
# googleplus: #your Google+ username
# weibo: #your Weibo username
# douban: #your Douban username
# linkedin: #your Linkedin username
email: [email protected] #your Email address e.g. [email protected]
facebook: someone #your Facebook username
twitter: someone #your Twitter username
github: someone #your GitHub username
googleplus: someone #your Google+ username
weibo: someone #your Weibo username
douban: someone #your Douban username
linkedin: someone #your Linkedin username

## Comment system (Disqus) ##
disqus:
Expand All @@ -72,7 +90,7 @@ paginate_path: /blog/page:num

## Post excerpts ##
excerpt_separator: <!--more-->
excerpt_type: text ## text | html
excerpt_type: html ## text | html

## Build ##
markdown: kramdown
Expand Down
Loading

0 comments on commit 2f1400b

Please sign in to comment.