Alexey Pyltsyn
38bb8c4ced
v2.0.0-alpha.48
2020-03-09 01:46:10 +03:00
Alexey Pyltsyn
1dc1f21e91
v2.0.0-alpha.47
2020-03-08 23:40:44 +03:00
Alexey Pyltsyn
9d45993da2
v2.0.0-alpha.46
2020-03-08 23:29:42 +03:00
Alexey Pyltsyn
bbb465be02
v2.0.0-alpha.45
2020-03-08 23:07:13 +03:00
Yangshun Tay
1e09feb2db
v2.0.0-alpha.44
2020-03-08 23:45:30 +08:00
Joe Previte
590de95234
fix(v1): check repo url before using on Users page ( #2331 )
...
* fix: check repoUrl before rendering edit link in users
* refactor: prettier
2020-02-27 01:59:04 +03:00
Yangshun Tay
32c1a92b17
chore: yearless copyright headers for source code ( #2320 )
...
* chore: yearless copyright headers for source code
* update snapshots
2020-02-25 23:12:28 +08:00
Yangshun Tay
b945e76814
chore: prepare for v1.14.4 release ( #2211 )
2020-01-13 00:11:23 +08:00
James McShane
e4eb9194fa
fix(v1): update blog href value to match navbar href ( #2204 )
2020-01-11 13:19:01 +08:00
Dan Abramov
632e2dc437
fix(v1): fix JSX highlighting by passing language to Prism ( #2196 )
...
* Fix JSX highlighting by passing language to Prism
* Make Prettier happy
* Keep guessing what Prettier wants because CI doesn't tell me
2020-01-08 00:42:47 +08:00
endiliey
dad50823b6
v2.0.0-alpha.40
2019-12-25 16:41:52 +07:00
Nick McCurdy
ba7c38cf0f
docs(v1): fix path to sidebars.json in generated readme ( #2108 )
...
* docs(v1): fix path to sidebars.json in generated readme
* test(v1): fix path to sidebars.json in test
2019-12-09 15:57:59 -08:00
Yangshun Tay
55e676cb25
misc: add command to run prettier on docs ( #2102 )
...
* misc: add command to run prettier on docs
* Fix GH issue template
* Fix tests
* Add prettier-docs command to precommit
2019-12-07 21:56:30 -08:00
endiliey
cfc313d7c7
v2.0.0-alpha.39
2019-12-07 13:18:13 +07:00
endiliey
3bb251904b
v2.0.0-alpha.38
2019-12-06 14:15:48 +07:00
KYY
381ed59416
fix(v1): add key to versions.map in versions.js ( #2087 )
2019-12-05 00:02:37 -08:00
KYY
e0425358ee
refactor(v1): fix props for ProjectTitle ( #2083 )
...
* v1 website index.js fix props for ProjectTitle
* Update index.js
2019-12-03 21:51:00 -08:00
endiliey
464d8e529a
v2.0.0-alpha.37
2019-12-01 20:29:59 +07:00
Endi
070a49e679
chore: prepare 1.14.3 release ( #2073 )
2019-12-01 20:20:00 +07:00
Huáng Jùnliàng
34e942e835
fix(v1): convert scripts to ES5 syntax for IE 10 ( #2063 )
2019-11-28 11:44:11 -08:00
endiliey
bd5bdb91f7
chore: add missing facebook copyright header
2019-11-27 16:50:20 +07:00
Endi
9862a6821a
feat(v2): allow non sidebar category to be first item of sidebar ( #2032 )
...
* feat(v2): allow non sidebar category to be first item of sidebar
* better error messages
* edit the react component
* Update website/docs/sidebar.md
* nits
* add @babel/plugin-transform-runtime
2019-11-23 20:08:19 -08:00
Endi
2d15fadf16
chore(v2): bump deps and remove unused deps ( #2029 )
...
* chore(v2): deps bump
* remove unused deps
2019-11-22 17:55:22 +07:00
endiliey
c413cff212
v2.0.0-alpha.36
2019-11-22 12:41:22 +07:00
endiliey
d2a095bec0
1.14.2
2019-11-22 12:24:03 +07:00
Yangshun Tay
0984dfcde5
fix(v1): apply negative margin to docs heading only ( #2028 )
2019-11-22 12:14:31 +07:00
endiliey
5b3405bf56
v1.14.1
2019-11-21 12:43:37 +07:00
Endi
bd68dce667
fix(v1): markdown content and toc should render the same ( #2022 )
...
* fix(v1): autogenerated_toc and sidebar toc should render the same
* revert test docs
* yarn.lock
2019-11-21 12:04:07 +07:00
Endi
de2954352a
fix(v1): docusaurus-start should work even if path contain 'pages' word ( #2020 )
2019-11-20 23:52:19 +07:00
Endi
e544dc960a
fix(v1): consistent slug & hash-link generation ( #2019 )
2019-11-20 23:35:47 +07:00
Endi
088606653d
chore: bump & remove unused deps ( #2015 )
2019-11-19 16:04:23 +07:00
PA
1bf590ea2b
fix(v1): fix page title render issue when referred by search result ( #1869 )
...
* fix(v1): Fix page title render issue when referred by search result
When Algolia DocSearch query finds a match for a page's title, it attempts to generate
a permalink. Because the page title element (`h1`) does not have an `id`, Algolia
generates uses the `id` from closes parent element. Because of this, the page title
scrolls to a position that is slightly overlayed by the fixed top navigation bar.
This fix sets an `id` for the page title so that the search result is able to generate
a more accurate permalink.
* Adjust css for handling post title to be on the top when referred by an anchor
The post title can sometimes be referred by an anchor using the "id" of that element.
In that case the title will be automatically be the first element within the viewport.
Since we have a header fixed at the top of the view port, the title becomes hidden or
not visible. That's why some css adjustments are needed so that if any user ends up
with a link to a page that is referring to the post title (i.e. auto generated anchor
link by algolia DocSearch).
The css code uses pseudo element `:before` to make the adjustments. Details on this
can be found in the following article:
https://css-tricks.com/hash-tag-links-padding/
* Adjust CSS so that different selectors are on separate lines
2019-11-18 11:07:02 -08:00
endiliey
6204d9a9ec
v2.0.0-alpha.35
2019-11-17 16:51:57 +07:00
Endi
cf4037ef91
chore(v2): update dependencies ( #1985 )
...
* chore(v2): update dependencies
* use forked ideal image deps. omgg
2019-11-13 23:04:13 +07:00
Eric Carboni
b027db1b34
docs(v1): remove exclusive language ( #1961 )
...
* Initial commit to replace easy, easily, simple, just, of course
* Revert ordered list change
2019-11-11 14:06:54 -08:00
endiliey
f1180d0eb6
v2.0.0-alpha.34
2019-11-11 21:35:03 +07:00
Endi
3be2e86546
chore: bump dev dependencies ( #1955 )
...
* chore: bump devdeps
* upd infima url
2019-11-11 17:44:26 +07:00
endiliey
e6b077410c
v2.0.0-alpha.33
2019-11-08 13:27:03 +07:00
Endi
384e83a737
chore(v2): upgrade deps ( #1945 )
...
* chore(v2): upgrade dependencies
* revert TS 3.7 optional chaining
2019-11-07 13:32:55 +07:00
endiliey
cd9e2f2346
v2.0.0-alpha.32
2019-11-04 12:45:05 +07:00
Endi
2d13fe2e0f
chore: downgrade imagemin ( #1933 )
2019-11-03 23:20:47 +08:00
Jiawen Geng
33718b6f8f
misc(v1): use Node.js lts version ( #1920 )
...
This is much stable and more performant
2019-11-03 22:57:51 +08:00
endiliey
ab1520548d
chore: bump dependencies
2019-11-01 01:25:10 +07:00
Jacob Sarnowski
421598eb65
fix(v1): mobile safari search input misalignment in header ( #1895 )
2019-10-27 13:19:52 -07:00
blitz137
f14b6eee39
misc(v1): use primary color for hovered items in table of contents ( #1871 )
...
* fix issue#1752
when element in side nav is hovered over the color changes.
* Update main.css
2019-10-27 13:17:30 -07:00
endiliey
d4342dcbf3
v2.0.0-alpha.31
2019-10-26 14:12:15 +07:00
endiliey
b65c1b2242
v2.0.0-alpha.30
2019-10-22 12:23:55 +07:00
endiliey
b56adb7ca1
v2.0.0-alpha.29
2019-10-21 19:28:36 +07:00
endiliey
87866c1d1d
v2.0.0-alpha.28
2019-10-21 12:28:12 +07:00
Endi
1844c2bdd6
chore(v2): upgrade dependencies ( #1865 )
...
* chore(v2): upgrade dependencies
* nits
2019-10-21 12:25:30 +07:00