Skip to content

Commit e12bb0b

Browse files
committed
Introduce v6.0.0
1 parent 2dd5c63 commit e12bb0b

File tree

290 files changed

+25515
-1
lines changed

Some content is hidden

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

290 files changed

+25515
-1
lines changed

.bowerrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"directory": "source/lib"
3+
}

.editorconfig

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

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
source/lib/* linguist-vendored
2+
scripts/merge.js linguist-vendored

.github/CONTRIBUTING.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Before submitting an issue, please search for the issue [here](https://github.com/theme-next/hexo-theme-next/issues?utf8=%E2%9C%93&q=) to find if the issue is already reported.
2+
3+
Also, you can search for answers on the [«NexT» Documentation Site](https://theme-next.org):
4+
5+
- FAQs (Work in progress)

.github/ISSUE_TEMPLATE.md

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
<!-- ATTENTION!
2+
IF YOU DON'T FILL OUT THE FOLLOWING INFORMATION WE MIGHT CLOSE YOUR ISSUE WITHOUT INVESTIGATING.
3+
如果你不填充下面的内容,我们可能会直接关闭你的 issue。
4+
5+
If you want to fast resolve your issue, WRITE IT IN ENGLISH, please. Not all contributors/collaborators know Chinese language and Google translate can't always give true translates on issues. Thanks!
6+
You may delete this recomendations and use template which is placed below.
7+
-->
8+
9+
### I agree and want to create new issue <!-- (我确认我已经查看了) -->
10+
11+
<!-- Check all with "x" (使用 "x" 选择) -->
12+
- [] Yes, I was on [Hexo Docs page](https://hexo.io/docs/), especially on [Templates](https://hexo.io/docs/templates.html), [Variables](https://hexo.io/docs/variables.html), [Helpers](https://hexo.io/docs/helpers.html) and [Troubleshooting](https://hexo.io/docs/troubleshooting.html).
13+
- [] Yes, I was on [NexT Documentation Site](http://theme-next.org).
14+
- [] And yes, I already searched for current [issues](https://github.com/theme-next/hexo-theme-next/issues?utf8=%E2%9C%93&q=is%3Aissue) and this is not help to me.
15+
16+
***
17+
18+
### Expected behavior <!-- (预期行为) -->
19+
20+
21+
### Actual behavior <!-- (实际行为) -->
22+
23+
24+
### Steps to reproduce the behavior <!-- (重现步骤) -->
25+
1. N/A
26+
2. N/A
27+
3. N/A
28+
29+
* Link to demo site with this issue: N/A
30+
* Link(s) to source code or any usefull link(s): N/A
31+
32+
### Node.js and NPM Information
33+
<!-- Paste info from `node -v && npm -v` (粘貼信息 `node -v && npm -v`) -->
34+
```
35+
36+
```
37+
38+
### Hexo Information
39+
<!-- Paste info from `hexo -v` (粘貼信息 `hexo -v`) -->
40+
```
41+
42+
```
43+
44+
### Package dependencies Information
45+
<!-- Paste info from `cat package.json` (粘貼信息 `cat package.json`) -->
46+
```
47+
48+
```
49+
50+
### NexT Information
51+
52+
**NexT Version:**
53+
<!-- Check one with "x" (使用 "x" 选择) -->
54+
```
55+
[] Latest Master branch.
56+
[] Latest Release version.
57+
[] Old version -
58+
```
59+
60+
**NexT Scheme:**
61+
<!-- Check one with "x" (使用 "x" 选择) -->
62+
```
63+
[] All schemes
64+
[] Muse
65+
[] Mist
66+
[] Pisces
67+
[] Gemini
68+
```
69+
70+
### Other Information <!-- (Like Browser, System, Screenshots) -->

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
<!-- ATTENTION!
2+
3+
1. Please, write pulls readme in English. Not all contributors/collaborators know Chinese language and Google translate can't always give true translates on issues. Thanks!
4+
5+
2. If your pull is short and simple, recommended to use "Usual pull template".
6+
If your pull is big and include many separated changes, recommended to use "BIG pull template".
7+
8+
3. Always remember what NexT include 4 schemes. And if on one of them all worked fine after changes, on another scheme this changes can be broken. Muse and Mist have similar structure, but Pisces is very difference from them. Gemini is a mirror of Pisces with some styles and layouts remakes. So, please, make the tests at least on two schemes (Muse or Mist and Pisces or Gemini).
9+
-->
10+
11+
<!-- Usual pull template -->
12+
13+
## PR Checklist
14+
**Please check if your PR fulfills the following requirements:**
15+
16+
- [ ] The commit message follows [our guidelines](https://github.com/theme-next/hexo-theme-next/blob/master/.github/CONTRIBUTING.md).
17+
- [ ] Tests for the changes have been added (for bug fixes / features).
18+
- [ ] Muse | Mist have been tested.
19+
- [ ] Pisces | Gemini have been tested.
20+
- [ ] Docs have been added / updated (for bug fixes / features).
21+
22+
## PR Type
23+
**What kind of change does this PR introduce?** <!-- (Check one with "x") -->
24+
25+
- [ ] Bugfix.
26+
- [ ] Feature.
27+
- [ ] Code style update (formatting, local variables).
28+
- [ ] Refactoring (no functional changes, no api changes).
29+
- [ ] Build related changes.
30+
- [ ] CI related changes.
31+
- [ ] Documentation content changes.
32+
- [ ] Other... Please describe:
33+
34+
## What is the current behavior?
35+
<!-- Please describe the current behavior that you are modifying, or link to a relevant issue. -->
36+
37+
Issue Number(s): N/A
38+
39+
## What is the new behavior?
40+
Description about this pull, in several words...
41+
42+
* Screens with this changes: N/A
43+
* Link to demo site with this changes: N/A
44+
45+
### How to use?
46+
In NexT `_config.yml`:
47+
```yml
48+
...
49+
```
50+
51+
## Does this PR introduce a breaking change?
52+
- [ ] Yes.
53+
- [ ] No.
54+
55+
<!-- If this PR contains a breaking change, please describe the impact and migration path for existing applications below. -->
56+
57+
<!-- BIG pull template -->
58+
<!--
59+
1. xxxxxxx - commit link on modified file. Just copy this below your pull request readme.
60+
2. You can paste any image directly from your clipboard. Just press **Print Scr** and paste it into pull readme - link on image will generate and paste automaticly.
61+
-->
62+
<!--
63+
## PART X. Title of fixes and/or enhancements.
64+
Short description in several words here.
65+
66+
Issue Number(s): #xxxx.
67+
68+
### Files modified:
69+
1. Short description of modified file [1]. xxxxxxx
70+
2. Short description of modified file [2]. xxxxxxx
71+
3. Short description of modified file [3]. xxxxxxx
72+
73+
### Global code changes:
74+
* ADD: `newFunction` in `utils.js`.
75+
* DEL: `oldFunction` from `utils.js`
76+
77+
### How it looks?
78+
![image](https://user-images.githubusercontent.com/xxxxxxxx/xxxxxxxx-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx.png)
79+
80+
Live demo [here](http://site.com/).
81+
82+
### How to use?
83+
In Next `_config.yml`:
84+
```yml
85+
...
86+
```
87+
-->

.github/browserstack_logo.png

6.98 KB
Loading

.gitignore

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
.DS_Store
2+
.idea/
3+
*.log
4+
*.iml
5+
yarn.lock
6+
package-lock.json
7+
node_modules/
8+
9+
# Ignore optional external libraries
10+
source/lib/*
11+
12+
# Track internal libraries & Ignore unused verdors files
13+
source/lib/font-awesome/less/
14+
source/lib/font-awesome/scss/
15+
!source/lib/font-awesome/*
16+
17+
!source/lib/jquery/
18+
19+
source/lib/ua-parser-js/*
20+
!source/lib/ua-parser-js/dist/
21+
22+
!source/lib/velocity/

.hound.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
javascript:
2+
enabled: true
3+
config_file: .jshintrc
4+
ignore_file: .javascript_ignore

.javascript_ignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
source/vendors/*
2+
source/lib/*
3+
source/js/src/affix.js
4+
source/js/src/scrollspy.js
5+
source/js/src/js.cookie.js

0 commit comments

Comments
 (0)