Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MunifTanjim/minimo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMunifTanjim <muniftanjim@gmail.com>2018-02-27 18:19:02 +0300
committerMunifTanjim <muniftanjim@gmail.com>2018-02-27 18:23:36 +0300
commitd1c2e4b6d592c634fa2b4b57c8816629dedaafeb (patch)
tree5fe1e3d8184d8b7dc711911d7ce525bbbefb50ee
parent6f830dcac4d629fe8fe80d6819624d0489cb2bab (diff)
release [minor]: v2.1.0v2.1.0
-rw-r--r--CHANGELOG.md28
-rw-r--r--exampleSite/content/docs/emoji-support.md37
-rw-r--r--exampleSite/content/docs/mathjax-support.md2
-rw-r--r--package.json5
4 files changed, 69 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9c231c5..7f00e84 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,31 @@
- ...
+## [2.1.0] - 2018-02-27
+
+### Added
+
+- `archive` layout for `page` type
+- Social Menu widget ( `social_menu` )
+- Colorful emoji support
+- MathJax support
+
+### Changed
+
+- Change, Fix & Refactor stylesheets
+- Codes stylesheet enhancement
+- Move Widget areas' configuration to `config.toml` ( `.Site.Params.widgets` )
+- Refactor Widgets' configuration structure
+- Update linkedin, google_scholar, gitlab SVG icons
+- Social Menu converted to widget
+- Update project dependencies ( `package.json` )
+- Split scripts into multiple chunks
+
+### Fixed
+
+- relURL for logo in `about` widget
+- Shuffle option for `taxonomy_cloud` widget
+
## [2.0.0] - 2018-02-08
### Added
@@ -134,7 +159,8 @@
- Initial stable release
-[Unreleased]: https://github.com/MunifTanjim/minimo/compare/v2.0.0...HEAD
+[Unreleased]: https://github.com/MunifTanjim/minimo/compare/v2.1.0...HEAD
+[2.1.0]: https://github.com/MunifTanjim/minimo/compare/v2.0.0...v2.1.0
[2.0.0]: https://github.com/MunifTanjim/minimo/compare/v1.6.0...v2.0.0
[1.6.0]: https://github.com/MunifTanjim/minimo/compare/v1.5.0...v1.6.0
[1.5.0]: https://github.com/MunifTanjim/minimo/compare/v1.4.0...v1.5.0
diff --git a/exampleSite/content/docs/emoji-support.md b/exampleSite/content/docs/emoji-support.md
new file mode 100644
index 0000000..8087bbd
--- /dev/null
+++ b/exampleSite/content/docs/emoji-support.md
@@ -0,0 +1,37 @@
+---
+date: 2018-02-27T21:00:00+06:00
+title: Emoji Support
+authors: ["muniftanjim"]
+categories:
+ - features
+tags:
+ - config
+emoji: true
+---
+First of all, if you really want emojis, set the `enableEmoji` setting to `true` in your `config.toml` file:
+
+```toml
+enableEmoji = true
+```
+
+This will enable Hugo to find Emoji Shorthands in your content files and render them as Unicode Emoji Characters.
+
+For example:
+
+{{% center %}}
+<code>:smiley:</code> will become 😃
+{{%/ center %}}
+
+No, it'll probably not be that colorful! Unless your device's operating system natively supports colorful emojis, you will see a black & white one instead. :fire:
+
+:pencil2: For getting that colorful look, you will have to add this to your content's frontmatter:
+
+```yaml
+---
+emoji: true
+---
+```
+
+And where can you find these Emoji Shorthands :question:
+
+:tada: Go take a look at: **[Emoji Cheat Sheet](http://www.emoji-cheat-sheet.com/)**
diff --git a/exampleSite/content/docs/mathjax-support.md b/exampleSite/content/docs/mathjax-support.md
index a44c3af..ecb4b25 100644
--- a/exampleSite/content/docs/mathjax-support.md
+++ b/exampleSite/content/docs/mathjax-support.md
@@ -13,7 +13,9 @@ mathjax: true
For enabling MathJax, add this to your content's frontmatter:
```yaml
+---
mathjax: true
+---
```
## MathJax Syntax for Markdown
diff --git a/package.json b/package.json
index 2b65974..6eb0365 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "minimo",
"description": "Minimalist theme for Hugo",
- "version": "2.0.0",
+ "version": "2.1.0",
"author": {
"name": "Munif Tanjim",
"url": "https://muniftanjim.com"
@@ -10,7 +10,8 @@
"license": "MIT",
"scripts": {
"build": "NODE_ENV=production webpack",
- "start": "hugo server --source=exampleSite --themesDir=../.. --disableFastRender",
+ "start":
+ "hugo server --source=exampleSite --themesDir=../.. --disableFastRender",
"watch": "webpack --watch --progress --colors"
},
"devDependencies": {