just-the-docs 0.4.0.rc2 → 0.4.0.rc4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +461 -113
- data/README.md +36 -13
- data/_includes/components/aux_nav.html +15 -0
- data/_includes/components/breadcrumbs.html +15 -0
- data/_includes/components/children_nav.html +9 -0
- data/_includes/components/footer.html +34 -0
- data/_includes/components/header.html +11 -0
- data/_includes/components/mermaid.html +5 -0
- data/_includes/components/search_footer.html +7 -0
- data/_includes/components/search_header.html +9 -0
- data/_includes/components/sidebar.html +69 -0
- data/_includes/css/just-the-docs.scss.liquid +2 -1
- data/_includes/head.html +16 -15
- data/_includes/icons/code_copy.html +15 -0
- data/_includes/icons/document.html +6 -0
- data/_includes/icons/expand.html +6 -0
- data/_includes/icons/icons.html +13 -0
- data/_includes/icons/link.html +6 -0
- data/_includes/icons/menu.html +6 -0
- data/_includes/icons/search.html +6 -0
- data/_includes/nav.html +174 -110
- data/_includes/toc_heading_custom.html +1 -0
- data/_includes/vendor/anchor_headings.html +46 -18
- data/_layouts/default.html +11 -196
- data/_layouts/minimal.html +60 -0
- data/_sass/base.scss +15 -10
- data/_sass/buttons.scss +1 -4
- data/_sass/code.scss +85 -26
- data/_sass/labels.scss +1 -4
- data/_sass/layout.scss +1 -2
- data/_sass/navigation.scss +4 -14
- data/_sass/search.scss +9 -20
- data/_sass/tables.scss +1 -4
- data/assets/js/just-the-docs.js +44 -1
- data/assets/js/vendor/lunr.min.js +58 -3
- metadata +21 -4
- data/_includes/favicon.html +0 -1
data/CHANGELOG.md
CHANGED
|
@@ -1,27 +1,246 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: CHANGELOG
|
|
3
|
+
layout: default
|
|
4
|
+
---
|
|
5
|
+
|
|
1
6
|
# CHANGELOG
|
|
2
7
|
|
|
3
|
-
All notable changes to this project are documented in this file.
|
|
8
|
+
All notable user-facing changes to this project are documented in this file.
|
|
4
9
|
|
|
5
|
-
|
|
10
|
+
{: .highlight }
|
|
11
|
+
The project underwent a major maintenance shift in March 2022.
|
|
6
12
|
|
|
7
13
|
## HEAD
|
|
8
14
|
|
|
9
|
-
|
|
15
|
+
{: .note }
|
|
16
|
+
This website is built from the `HEAD` of the `main` branch of the theme repository.
|
|
17
|
+
|
|
18
|
+
{: .warning }
|
|
19
|
+
This website includes docs for some new features that are not available in `v0.4.0.rc4` and `v0.3.3`!
|
|
20
|
+
|
|
21
|
+
Changes to `main` that are *not* in the latest pre-release:
|
|
22
|
+
|
|
23
|
+
- n/a
|
|
24
|
+
|
|
25
|
+
## Pre-release v0.4.0.rc4
|
|
26
|
+
|
|
27
|
+
Happy new year! We're celebrating with another pre-release, with features that should help theme users better adapt to changes moving forward. **We aim to re-release this as `v0.4.0`, with only few changes**.
|
|
28
|
+
|
|
29
|
+
Notable new additions include:
|
|
30
|
+
|
|
31
|
+
- modular site components, which split up the site into smaller reusable components; advanced theme users can then remix layouts quickly without duplication
|
|
32
|
+
- a "copy code" button to code blocks
|
|
33
|
+
- fixing bugs in generated TOCs and navigation from previous prereleases
|
|
34
|
+
- various cleanups of CSS and HTML markup
|
|
35
|
+
|
|
36
|
+
The roadmap to `v0.4.0` is small. We are only looking to:
|
|
37
|
+
|
|
38
|
+
- finish a migration guide, so users can easily upgrade from `v0.3.3` to `v0.4.0`
|
|
39
|
+
- fix one last bug relating to callouts and custom colors
|
|
40
|
+
- fix any new bugs introduced by this pre-release
|
|
41
|
+
|
|
42
|
+
Have any questions, thoughts, or concerns? We'd love to hear from you! Please [open an issue](https://github.com/just-the-docs/just-the-docs/issues) or [start a discussion](https://github.com/just-the-docs/just-the-docs/discussions) and let us know!
|
|
43
|
+
|
|
44
|
+
### Trying out pre-release `v0.4.0.rc4`
|
|
45
|
+
|
|
46
|
+
Simlar to the prior release, `v0.4.0.rc4` is a **release candidate** for the theme (i.e., a pre-release) with release `v0.4.0` coming soon. We want your help in testing the changes! As of now, the gem on RubyGems and the repository are updated to `v0.4.0.rc4`.
|
|
47
|
+
|
|
48
|
+
To use this RC explicitly as a remote theme:
|
|
49
|
+
|
|
50
|
+
```yml
|
|
51
|
+
remote_theme: just-the-docs/just-the-docs@v0.4.0.rc4
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
To use this RC explicitly as a gem-based theme, pin the version in your `Gemfile` and re-run `bundle install` or `bundle update just-the-docs`:
|
|
55
|
+
|
|
56
|
+
```Ruby
|
|
57
|
+
gem "just-the-docs", "0.4.0.rc4"
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
By default, **users will not be upgraded to `0.4.0.rc4`**. To enforce that explicitly, either:
|
|
61
|
+
|
|
62
|
+
1. pin your gem version in your `Gemfile`, like so
|
|
63
|
+
```Ruby
|
|
64
|
+
gem "just-the-docs", "0.3.3"
|
|
65
|
+
```
|
|
66
|
+
2. freeze the `remote_theme`, like so
|
|
67
|
+
```yml
|
|
68
|
+
remote_theme: just-the-docs/just-the-docs@v0.3.3
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
### New Features
|
|
72
|
+
|
|
73
|
+
- Added: support multiple Google Analytics tracking IDs, document UA -> GA4 switch by [@MichelleBlanchette] in [#1029]
|
|
74
|
+
- Added: copy code button to code snippets by [@simonebortolin] in [#945]
|
|
75
|
+
- Added: restore simple configuration of `favicon.ico` via `site.static_files` by [@pdmosses] in [#1095]
|
|
76
|
+
- Added: modularize site components by [@mattxwang] in [#1058]
|
|
77
|
+
|
|
78
|
+
### Bugfixes and Maintenance
|
|
79
|
+
|
|
80
|
+
- Fixed: incorrect disambiguation in generated TOCs by [@pdmosses] in [#999]
|
|
81
|
+
- Fixed: duplicated external links in collections by [@pdmosses] in [#1001]
|
|
82
|
+
- Fixed: import order of `custom.scss`; puts at end by [@deseo] in [#1010]
|
|
83
|
+
- Fixed: top-level active link styling by [@pdmosses] in [#1015]
|
|
84
|
+
- Fixed: external links for sites with no pages by [@pdmosses] in [#1021]
|
|
85
|
+
- Fixed: duplicate `title` if `jekyll-seo-tag` not in users's plugins by [@Tom-Brouwer] in [#1040]
|
|
86
|
+
- Fixed: removes (duplicate) `favicon.html`, shifts content to `head_custom.html` by [@mattxwang] in [#1027]
|
|
87
|
+
- Fixed: add `reversed`, deprecate `desc` for nav `child_nav_order` by [@jmertic] in [#1061]
|
|
88
|
+
- Fixed: `child.child_nav_order` to `node.child_nav_order` by [@mattxwang] in [#1065]
|
|
89
|
+
- Fixed: remove all uses of `/` as SASS division by [@mattxwang] in [#1074]
|
|
90
|
+
- note: this was originally merged as [#1074] with a bug; it was reverted in [#1076], and then reimplemented in [#1077]
|
|
91
|
+
- Fixed: skip nav collection generation when site has no pages by [@pdmosses] in [#1092]
|
|
92
|
+
- Fixed: standardize SCSS with `declaration-block-no-redundant-longhand-properties` by [@simonebortolin] in [#1102]
|
|
93
|
+
- Fixed: incorrect `padding` property value pair in `labels.scss` by [@SConaway] in [#1104]
|
|
94
|
+
- Fixed: various bugs with copy code button by [@simonebortolin] in [#1096]
|
|
95
|
+
- Fixed: replace inline styling for `<svg>` icons by [@captn3m0] in [#1110]
|
|
96
|
+
- Vendor: update `jekyll-anchor-headings`, `lunr.js` by [@mattxwang] in [#1071]
|
|
97
|
+
|
|
98
|
+
### Docs
|
|
99
|
+
|
|
100
|
+
- Docs: fix typo in changelog links [@koppor] in [#1000]
|
|
101
|
+
- Docs: update homepage (focus: new features, conciseness, deduplication) by [@pdmosses] in [#1018]
|
|
102
|
+
- Docs: update README (focus: new features, conciseness, deduplication) by [@pdmosses] in [#1019]
|
|
103
|
+
- Docs: fix two bugs in "Customization" (custom favicon, new annotation) by [@mattxwang] in [#1090]
|
|
104
|
+
- Docs: Add warning about mandatory `_`-prefix for collections by [@max06] in [#1091]
|
|
105
|
+
- Docs: remove Google Analytics on main site by [@mattxwang] in [#1113]
|
|
106
|
+
|
|
107
|
+
### New Contributors
|
|
108
|
+
|
|
109
|
+
- [@koppor] made their first contribution in [#1000]
|
|
110
|
+
- [@deseo] made their first contribution in [#1010]
|
|
111
|
+
- [@Tom-Brouwer] made their first contribution in [#1040]
|
|
112
|
+
- [@simonebortolin] made their first contribution in [#945]
|
|
113
|
+
- [@SConaway] made their first contribution in [#1104]
|
|
114
|
+
- [@captn3m0] made their first contribution in [#1110]
|
|
115
|
+
|
|
116
|
+
**Full Changelog**: https://github.com/just-the-docs/just-the-docs/compare/v0.4.0.rc3...v0.4.0.rc4
|
|
117
|
+
|
|
118
|
+
[#945]: https://github.com/just-the-docs/just-the-docs/pull/945
|
|
119
|
+
[#999]: https://github.com/just-the-docs/just-the-docs/pull/999
|
|
120
|
+
[#1000]: https://github.com/just-the-docs/just-the-docs/pull/1000
|
|
121
|
+
[#1001]: https://github.com/just-the-docs/just-the-docs/pull/1001
|
|
122
|
+
[#1010]: https://github.com/just-the-docs/just-the-docs/pull/1010
|
|
123
|
+
[#1015]: https://github.com/just-the-docs/just-the-docs/pull/1015
|
|
124
|
+
[#1018]: https://github.com/just-the-docs/just-the-docs/pull/1018
|
|
125
|
+
[#1019]: https://github.com/just-the-docs/just-the-docs/pull/1019
|
|
126
|
+
[#1021]: https://github.com/just-the-docs/just-the-docs/pull/1021
|
|
127
|
+
[#1027]: https://github.com/just-the-docs/just-the-docs/pull/1027
|
|
128
|
+
[#1029]: https://github.com/just-the-docs/just-the-docs/pull/1029
|
|
129
|
+
[#1040]: https://github.com/just-the-docs/just-the-docs/pull/1040
|
|
130
|
+
[#1058]: https://github.com/just-the-docs/just-the-docs/pull/1058
|
|
131
|
+
[#1061]: https://github.com/just-the-docs/just-the-docs/pull/1061
|
|
132
|
+
[#1065]: https://github.com/just-the-docs/just-the-docs/pull/1065
|
|
133
|
+
[#1071]: https://github.com/just-the-docs/just-the-docs/pull/1071
|
|
134
|
+
[#1074]: https://github.com/just-the-docs/just-the-docs/pull/1074
|
|
135
|
+
[#1076]: https://github.com/just-the-docs/just-the-docs/pull/1076
|
|
136
|
+
[#1077]: https://github.com/just-the-docs/just-the-docs/pull/1077
|
|
137
|
+
[#1090]: https://github.com/just-the-docs/just-the-docs/pull/1090
|
|
138
|
+
[#1091]: https://github.com/just-the-docs/just-the-docs/pull/1091
|
|
139
|
+
[#1092]: https://github.com/just-the-docs/just-the-docs/pull/1092
|
|
140
|
+
[#1095]: https://github.com/just-the-docs/just-the-docs/pull/1095
|
|
141
|
+
[#1096]: https://github.com/just-the-docs/just-the-docs/pull/1096
|
|
142
|
+
[#1102]: https://github.com/just-the-docs/just-the-docs/pull/1102
|
|
143
|
+
[#1104]: https://github.com/just-the-docs/just-the-docs/pull/1104
|
|
144
|
+
[#1110]: https://github.com/just-the-docs/just-the-docs/pull/1110
|
|
145
|
+
[#1113]: https://github.com/just-the-docs/just-the-docs/pull/1113
|
|
146
|
+
|
|
147
|
+
[@captn3m0]: https://github.com/captn3m0
|
|
148
|
+
[@deseo]: https://github.com/deseo
|
|
149
|
+
[@koppor]: https://github.com/koppor
|
|
150
|
+
[@MichelleBlanchette]: https://github.com/MichelleBlanchette
|
|
151
|
+
[@simonebortolin]: https://github.com/simonebortolin
|
|
152
|
+
[@SConaway]: https://github.com/SConaway
|
|
153
|
+
[@Tom-Brouwer]: https://github.com/Tom-Brouwer
|
|
154
|
+
|
|
155
|
+
## Pre-release v0.4.0.rc3
|
|
156
|
+
|
|
157
|
+
Hi there! This is (actually) hopefully the last prerelease before `v0.4.0`; in particular, if we find that this prerelease is stable, we'll re-release it as `v0.4.0`.
|
|
158
|
+
|
|
159
|
+
In general, this is a more mature pre-release; there are few new features. However, we'll highlight [@pdmosses]'s work in [#992] to better optimize nav generation for large sites (ex 100+ pages). We don't expect this to affect most users; however, **it is technically a breaking change**, and we suggest testing your site before upgrading to this prerelease.
|
|
160
|
+
|
|
161
|
+
We want your feedback! Please [open an issue](https://github.com/just-the-docs/just-the-docs/issues) or [start a discussion](https://github.com/just-the-docs/just-the-docs/discussions) and let us know!
|
|
162
|
+
|
|
163
|
+
As soon as we get stable test results from major downstream users, we'll push out a `v0.4.0` ASAP - closing out almost 2 years of backlogged work!
|
|
164
|
+
|
|
165
|
+
### Trying out pre-release `v0.4.0.rc3`
|
|
166
|
+
|
|
167
|
+
Simlar to the prior release, `v0.4.0.rc3` is a **release candidate** for the theme (i.e., a pre-release) with release `v0.4.0` coming soon. We want your help in testing the changes! As of now, the gem on RubyGems and the repository are updated to `v0.4.0.rc3`.
|
|
168
|
+
|
|
169
|
+
To use this RC explicitly as a remote theme:
|
|
170
|
+
|
|
171
|
+
```yml
|
|
172
|
+
remote_theme: just-the-docs/just-the-docs@v0.4.0.rc3
|
|
173
|
+
```
|
|
174
|
+
|
|
175
|
+
To use this RC explicitly as a gem-based theme, pin the version in your `Gemfile` and re-run `bundle install` or `bundle update just-the-docs`:
|
|
176
|
+
|
|
177
|
+
```Ruby
|
|
178
|
+
gem "just-the-docs", "0.4.0.rc3"
|
|
179
|
+
```
|
|
180
|
+
|
|
181
|
+
By default, **users will not be upgraded to `0.4.0.rc3`**. To enforce that explicitly, either:
|
|
182
|
+
|
|
183
|
+
1. pin your gem version in your `Gemfile`, like so
|
|
184
|
+
```Ruby
|
|
185
|
+
gem "just-the-docs", "0.3.3"
|
|
186
|
+
```
|
|
187
|
+
2. freeze the `remote_theme`, like so
|
|
188
|
+
```yml
|
|
189
|
+
remote_theme: just-the-docs/just-the-docs@v0.3.3
|
|
190
|
+
```
|
|
191
|
+
|
|
192
|
+
### Features
|
|
193
|
+
|
|
194
|
+
Broadly, this prerelease is feature-light!
|
|
195
|
+
|
|
196
|
+
- Added: styling for `<blockquote>` by [@mattxwang] in [#965]
|
|
197
|
+
- Added: custom include for TOC heading by [@pdmosses] in [#980]
|
|
198
|
+
|
|
199
|
+
### Bugfixes and Experimental Features
|
|
200
|
+
|
|
201
|
+
*Note*: experimental nav optimization may be unstable. Please give us feedback!
|
|
202
|
+
|
|
203
|
+
- Added: experimental nav optimization for simple cases by [@pdmosses] in [#992]
|
|
204
|
+
- Fixed: spacing issue when search is disabled by [@henryiii] in [#960]
|
|
205
|
+
- Fixed: active grandchild link class by [@pdmosses] in [#962]
|
|
206
|
+
- Fixed: HTML validation issues (W3C validator) by [@mattxwang] in [#964]
|
|
207
|
+
- Fixed: link styling now uses `text-decoration` values by [@mattxwang] in [#967]
|
|
208
|
+
- Fixed: cleaning up Jekyll excludes by [@pdmosses] in [#985]
|
|
209
|
+
- Fixed: docs, narrow styling for code highlighting with line numbers by [@pdmosses] in [#974]
|
|
210
|
+
- Fixed: default syntax highlighting in custom color schemes [@pdmosses] in [#986]
|
|
211
|
+
|
|
212
|
+
[#965]: https://github.com/just-the-docs/just-the-docs/pull/965
|
|
213
|
+
[#960]: https://github.com/just-the-docs/just-the-docs/pull/960
|
|
214
|
+
[#962]: https://github.com/just-the-docs/just-the-docs/pull/962
|
|
215
|
+
[#964]: https://github.com/just-the-docs/just-the-docs/pull/964
|
|
216
|
+
[#967]: https://github.com/just-the-docs/just-the-docs/pull/967
|
|
217
|
+
[#974]: https://github.com/just-the-docs/just-the-docs/pull/974
|
|
218
|
+
[#980]: https://github.com/just-the-docs/just-the-docs/pull/980
|
|
219
|
+
[#985]: https://github.com/just-the-docs/just-the-docs/pull/985
|
|
220
|
+
[#986]: https://github.com/just-the-docs/just-the-docs/pull/986
|
|
221
|
+
[#992]: https://github.com/just-the-docs/just-the-docs/pull/992
|
|
222
|
+
|
|
223
|
+
[@henryiii]: https://github.com/henryiii
|
|
224
|
+
|
|
225
|
+
**Full Changelog**: https://github.com/just-the-docs/just-the-docs/compare/v0.4.0.rc2...v0.4.0.rc3
|
|
10
226
|
|
|
11
227
|
## Pre-release v0.4.0.rc2
|
|
12
228
|
|
|
229
|
+
{: .warning }
|
|
230
|
+
This website includes docs for some new features that are not available in `v0.4.0.rc1` and `v0.3.3`!
|
|
231
|
+
|
|
13
232
|
Hey there! This is likely the last pre-release before releasing `v0.4.0`, which we plan on doing soon (i.e. before the end of the month) - very exciting! Some new additions to highlight:
|
|
14
233
|
|
|
15
|
-
- significant improvement on build time of navigation panel by @pdmosses
|
|
234
|
+
- significant improvement on build time of navigation panel by [@pdmosses]
|
|
16
235
|
- this is big: for a community member with over 300 pages, we shortened the build time from 3 minutes to 30 seconds!
|
|
17
|
-
- improved accessibility features led by @JPrevost
|
|
236
|
+
- improved accessibility features led by [@JPrevost]
|
|
18
237
|
- more docs!
|
|
19
238
|
|
|
20
|
-
The intention of this release candidate is to gather even more feedback on a potential `v0.4.0`. As it stands, we have not encountered any breaking changes with early adopters of `v0.4.0.rc1`. If you encounter any - for either of our
|
|
239
|
+
The intention of this release candidate is to gather even more feedback on a potential `v0.4.0`. As it stands, we have not encountered any breaking changes with early adopters of `v0.4.0.rc1`. If you encounter any - for either of our pre-releases - please let us know!
|
|
21
240
|
|
|
22
241
|
### Trying out pre-release `v0.4.0.rc2`
|
|
23
242
|
|
|
24
|
-
Simlar to the prior release, `v0.4.0.rc2` is a **release candidate** for the theme (i.e., a pre-release) with release `v0.4.0` coming soon. We want your help in testing the changes! As of now, the gem on RubyGems and the repository are updated to `v0.4.0.rc2
|
|
243
|
+
Simlar to the prior release, `v0.4.0.rc2` is a **release candidate** for the theme (i.e., a pre-release) with release `v0.4.0` coming soon. We want your help in testing the changes! As of now, the gem on RubyGems and the repository are updated to `v0.4.0.rc2`.
|
|
25
244
|
|
|
26
245
|
To use this RC explicitly as a remote theme:
|
|
27
246
|
|
|
@@ -48,27 +267,47 @@ remote_theme: just-the-docs/just-the-docs@v0.3.3
|
|
|
48
267
|
|
|
49
268
|
### Features
|
|
50
269
|
|
|
51
|
-
- Added: accessible titles to nested page nav toggle by @JPrevost in
|
|
52
|
-
- Added: better title styling for AsciiDoc examples by @alyssais in
|
|
53
|
-
- Added: docs for custom search placeholder by @mattxwang in
|
|
54
|
-
- Added: provide ability to skip to main content by @JPrevost in
|
|
55
|
-
- Fixed: exclude `vendor/` in Jekyll config by @manuelhenke in
|
|
56
|
-
- Fixed: improve build time of navigation panel by @pdmosses in
|
|
270
|
+
- Added: accessible titles to nested page nav toggle by [@JPrevost] in [#950]
|
|
271
|
+
- Added: better title styling for AsciiDoc examples by [@alyssais] in [#944]
|
|
272
|
+
- Added: docs for custom search placeholder by [@mattxwang] in [#939]
|
|
273
|
+
- Added: provide ability to skip to main content by [@JPrevost] in [#949]
|
|
274
|
+
- Fixed: exclude `vendor/` in Jekyll config by [@manuelhenke] in [#941]
|
|
275
|
+
- Fixed: improve build time of navigation panel by [@pdmosses] in [#956]
|
|
276
|
+
|
|
277
|
+
[#950]: https://github.com/just-the-docs/just-the-docs/pull/950
|
|
278
|
+
[#944]: https://github.com/just-the-docs/just-the-docs/pull/944
|
|
279
|
+
[#939]: https://github.com/just-the-docs/just-the-docs/pull/939
|
|
280
|
+
[#949]: https://github.com/just-the-docs/just-the-docs/pull/949
|
|
281
|
+
[#941]: https://github.com/just-the-docs/just-the-docs/pull/941
|
|
282
|
+
[#956]: https://github.com/just-the-docs/just-the-docs/pull/956
|
|
283
|
+
|
|
284
|
+
[@alyssais]: https://github.com/alyssais
|
|
57
285
|
|
|
58
286
|
### Documentation and Maintenance
|
|
59
287
|
|
|
60
|
-
- Added: docs load mermaid.js by default by @mattxwang in
|
|
61
|
-
- Fixed: table of contents on search docs by @robinpokorny in
|
|
62
|
-
- Fixed: broken docs link (custom footer) by @olgarithms in
|
|
63
|
-
- Fixed: clarify version docs by @pdmosses in
|
|
64
|
-
- Deleted: unused script directory by @mattxwang in
|
|
288
|
+
- Added: docs load mermaid.js by default by [@mattxwang] in [#935]
|
|
289
|
+
- Fixed: table of contents on search docs by [@robinpokorny] in [#940]
|
|
290
|
+
- Fixed: broken docs link (custom footer) by [@olgarithms] in [#951]
|
|
291
|
+
- Fixed: clarify version docs by [@pdmosses] in [#955]
|
|
292
|
+
- Deleted: unused script directory by [@mattxwang] in [#937]
|
|
293
|
+
|
|
294
|
+
[#935]: https://github.com/just-the-docs/just-the-docs/pull/935
|
|
295
|
+
[#940]: https://github.com/just-the-docs/just-the-docs/pull/940
|
|
296
|
+
[#951]: https://github.com/just-the-docs/just-the-docs/pull/951
|
|
297
|
+
[#955]: https://github.com/just-the-docs/just-the-docs/pull/955
|
|
298
|
+
[#937]: https://github.com/just-the-docs/just-the-docs/pull/937
|
|
65
299
|
|
|
66
300
|
### New Contributors
|
|
67
301
|
|
|
68
|
-
* @robinpokorny made their first contribution in
|
|
69
|
-
* @olgarithms made their first contribution in
|
|
70
|
-
* @manuelhenke made their first contribution in
|
|
71
|
-
* @JPrevost made their first contribution in
|
|
302
|
+
* [@robinpokorny] made their first contribution in [#940]
|
|
303
|
+
* [@olgarithms] made their first contribution in [#951]
|
|
304
|
+
* [@manuelhenke] made their first contribution in [#941]
|
|
305
|
+
* [@JPrevost] made their first contribution in [#950]
|
|
306
|
+
|
|
307
|
+
[@robinpokorny]: https://github.com/robinpokorny
|
|
308
|
+
[@olgarithms]: https://github.com/olgarithms
|
|
309
|
+
[@manuelhenke]: https://github.com/manuelhenke
|
|
310
|
+
[@JPrevost]: https://github.com/JPrevost
|
|
72
311
|
|
|
73
312
|
## Pre-release v0.4.0.rc1
|
|
74
313
|
|
|
@@ -89,7 +328,7 @@ We want your feedback! Are these changes helpful? Are our docs easy to understan
|
|
|
89
328
|
|
|
90
329
|
### Trying out pre-release `v0.4.0.rc1`
|
|
91
330
|
|
|
92
|
-
Due to the massive scope of these changes, we're making `v0.4.0.rc1` avaialble as a **release candidate** for the theme (i.e., a pre-release) with release `v0.4.0` coming soon. We want your help in testing the changes! As of now, the gem on RubyGems and the repository are updated to `v0.4.0.rc1
|
|
331
|
+
Due to the massive scope of these changes, we're making `v0.4.0.rc1` avaialble as a **release candidate** for the theme (i.e., a pre-release) with release `v0.4.0` coming soon. We want your help in testing the changes! As of now, the gem on RubyGems and the repository are updated to `v0.4.0.rc1`.
|
|
93
332
|
|
|
94
333
|
To use this RC explicitly as a remote theme:
|
|
95
334
|
|
|
@@ -118,13 +357,20 @@ gem "just-the-docs", "0.3.3"
|
|
|
118
357
|
remote_theme: just-the-docs/just-the-docs@v0.3.3
|
|
119
358
|
```
|
|
120
359
|
|
|
121
|
-
|
|
360
|
+
{: .warning }
|
|
361
|
+
Use of branches for closed PRs (e.g., [#466], [#578]) is now deprecated, as those branches have been (directly or indirectly) merged, and they may be deleted after the pre-release of `v0.4.0.rc1`.
|
|
122
362
|
|
|
123
363
|
### Maintenance
|
|
124
364
|
|
|
125
|
-
Internally, our maintainer team has expanded: [Patrick Marsceill]
|
|
365
|
+
Internally, our maintainer team has expanded: [Patrick Marsceill][@pmarsceill], the original maintainer, has stepped down from an active role after almost 4 years! We're very thankful for the work that he's done to create and maintain one of the most popular Jekyll themes. Please join us in giving him thanks!
|
|
366
|
+
|
|
367
|
+
The new core team currently consists of [@mattxwang], [@pdmosses], [@skullface], [@dougaitken], and [@max06]. Over the past six months, we've been triaging and merging in PRs, as well as contributing our own fixes. We'll continue to address open issues, merge in PRs from the community, and plan out the future of Just the Docs. If you'd like to contribute, now is a great time!
|
|
126
368
|
|
|
127
|
-
|
|
369
|
+
[@mattxwang]: https://github.com/mattxwang
|
|
370
|
+
[@pdmosses]: https://github.com/pdmosses
|
|
371
|
+
[@skullface]: https://github.com/skullface
|
|
372
|
+
[@dougaitken]: https://github.com/dougaitken
|
|
373
|
+
[@max06]: https://github.com/max06
|
|
128
374
|
|
|
129
375
|
### Roadmap
|
|
130
376
|
|
|
@@ -133,114 +379,216 @@ In the short-term, we're committed to tidying up everything for a `v0.4.0` relea
|
|
|
133
379
|
We're also scoping out medium and long-term projects, and want to keep you in the loop. These include:
|
|
134
380
|
|
|
135
381
|
- upgrading to Jekyll 4, and stopping support for Jekyll 3
|
|
136
|
-
- versioned docs - issue [#728]
|
|
137
|
-
- improved accessibility - issues [#566]
|
|
138
|
-
- internationalization (i18n) - issue [#59]
|
|
139
|
-
- recursive/multi-level navigation - PR [#462]
|
|
140
|
-
- toggleable dark mode - issue [#234]
|
|
382
|
+
- versioned docs - issue [#728]
|
|
383
|
+
- improved accessibility - issues [#566], [#870]
|
|
384
|
+
- internationalization (i18n) - issue [#59]
|
|
385
|
+
- recursive/multi-level navigation - PR [#462]
|
|
386
|
+
- toggleable dark mode - issue [#234]
|
|
141
387
|
|
|
142
388
|
as well as DX improvements like better regression tests, CI, and tooling. If you're interested in any of these, please join us [on GitHub](https://github.com/just-the-docs/just-the-docs) - any contribution (raising an issue, writing docs, or submitting a PR) is welcome!
|
|
143
389
|
|
|
390
|
+
[#728]: https://github.com/just-the-docs/just-the-docs/issues/728
|
|
391
|
+
[#566]: https://github.com/just-the-docs/just-the-docs/issues/566
|
|
392
|
+
[#870]: https://github.com/just-the-docs/just-the-docs/issues/870
|
|
393
|
+
[#59]: https://github.com/just-the-docs/just-the-docs/issues/59
|
|
394
|
+
[#462]: https://github.com/just-the-docs/just-the-docs/pull/462
|
|
395
|
+
[#234]: https://github.com/just-the-docs/just-the-docs/issues/234
|
|
396
|
+
|
|
144
397
|
### Features
|
|
145
398
|
|
|
146
|
-
* Added: Combination by @pdmosses in
|
|
147
|
-
- Added: dark highlighting in
|
|
148
|
-
- Added: pages and collections in
|
|
149
|
-
- Added: callouts in
|
|
150
|
-
- Fixed: breadcrumb behaviour … by @AdityaTiwari2102 in
|
|
151
|
-
- Fixed: prevent rake command corrupting search data in
|
|
152
|
-
- Fixed: nested lists in
|
|
153
|
-
- Fixed: set color for search input in
|
|
399
|
+
* Added: Combination by [@pdmosses] in [#578]
|
|
400
|
+
- Added: dark highlighting in [#463]
|
|
401
|
+
- Added: pages and collections in [#448]
|
|
402
|
+
- Added: callouts in [#466]
|
|
403
|
+
- Fixed: breadcrumb behaviour … by [@AdityaTiwari2102] in [#477]
|
|
404
|
+
- Fixed: prevent rake command corrupting search data in [#495] (also listed below)
|
|
405
|
+
- Fixed: nested lists in [#496]
|
|
406
|
+
- Fixed: set color for search input in [#498] (also listed below)
|
|
154
407
|
- Fixed: sites with no child pages (no PR)
|
|
155
|
-
- Fixed: TOC/breadcrumbs for multiple collections in
|
|
408
|
+
- Fixed: TOC/breadcrumbs for multiple collections in [#494]
|
|
156
409
|
- Added: collection configuration option `nav_fold` (no PR)
|
|
157
410
|
- Fixed: indentation and color for folded collection navigation (no PR)
|
|
158
|
-
- Fixed: scroll navigation to show the link to the current page in
|
|
159
|
-
- Fixed: Replace all uses of `absolute_url` by `relative_url`, by @svrooij in
|
|
160
|
-
* Added: custom favicon `_includes` by @burner1024 in
|
|
161
|
-
* Added: set color for search input by @pdmosses in
|
|
162
|
-
* Added: search placeholder configuration by @mattxwang in
|
|
163
|
-
* Added: 'child_nav_order' front matter to be able to sort navigation pages in reverse by @jmertic in
|
|
164
|
-
* Added: `nav_footer_custom` include by @nathanjessen in
|
|
165
|
-
* Added: style fixes for jekyll-asciidoc by @alyssais in
|
|
166
|
-
* Added: mermaid.js support by @nascosto in
|
|
167
|
-
* Added: support for external navigation links by @SPGoding in
|
|
168
|
-
* Added: refactor `mermaid` config to use `mermaid_config.js` include, only require `mermaid.version` in `_config.yml` by @mattxwang in
|
|
169
|
-
* Fixed: prepend `site.collections_dir` if exists by @alexsegura in
|
|
170
|
-
* Fixed: nested task lists (#517) by @pdmosses in
|
|
171
|
-
* Fixed: suppress Liquid processing in CSS comments by @pdmosses in
|
|
172
|
-
* Fixed: prevent rake command from corrupting search data by @pdmosses in
|
|
173
|
-
* Fixed: anchor heading links should be visible on focus by @jacobhq in
|
|
174
|
-
* Fixed: add `overflow-x: auto` to `figure.highlight` by @iridazzle in
|
|
175
|
-
* Fixed: add `overflow-wrap: word-break` to `body` by @iridazzle in
|
|
176
|
-
* Fixed: vertical alignment for consecutive labels by @Eisverygoodletter in
|
|
177
|
-
* Fixed: allow links to wrap by @pdmosses in
|
|
178
|
-
* Fixed: nav scroll feature and absolute/relative URLs by @pdmosses in
|
|
411
|
+
- Fixed: scroll navigation to show the link to the current page in [#639]
|
|
412
|
+
- Fixed: Replace all uses of `absolute_url` by `relative_url`, by [@svrooij] in [#544]
|
|
413
|
+
* Added: custom favicon `_includes` by [@burner1024] in [#364]
|
|
414
|
+
* Added: set color for search input by [@pdmosses] in [#498]
|
|
415
|
+
* Added: search placeholder configuration by [@mattxwang] in [#613]
|
|
416
|
+
* Added: 'child_nav_order' front matter to be able to sort navigation pages in reverse by [@jmertic] in [#726]
|
|
417
|
+
* Added: `nav_footer_custom` include by [@nathanjessen] in [#474]
|
|
418
|
+
* Added: style fixes for jekyll-asciidoc by [@alyssais] in [#829]
|
|
419
|
+
* Added: mermaid.js support by [@nascosto] in [#857]
|
|
420
|
+
* Added: support for external navigation links by [@SPGoding] in [#876]
|
|
421
|
+
* Added: refactor `mermaid` config to use `mermaid_config.js` include, only require `mermaid.version` in `_config.yml` by [@mattxwang] in [#909]
|
|
422
|
+
* Fixed: prepend `site.collections_dir` if exists by [@alexsegura] in [#519]
|
|
423
|
+
* Fixed: nested task lists (#517) by [@pdmosses] in [#855]
|
|
424
|
+
* Fixed: suppress Liquid processing in CSS comments by [@pdmosses] in [#686]
|
|
425
|
+
* Fixed: prevent rake command from corrupting search data by [@pdmosses] in [#495]
|
|
426
|
+
* Fixed: anchor heading links should be visible on focus by [@jacobhq] in [#846]
|
|
427
|
+
* Fixed: add `overflow-x: auto` to `figure.highlight` by [@iridazzle] in [#727]
|
|
428
|
+
* Fixed: add `overflow-wrap: word-break` to `body` by [@iridazzle] in [#889]
|
|
429
|
+
* Fixed: vertical alignment for consecutive labels by [@Eisverygoodletter] in [#893]
|
|
430
|
+
* Fixed: allow links to wrap by [@pdmosses] in [#905]
|
|
431
|
+
* Fixed: nav scroll feature and absolute/relative URLs by [@pdmosses] in [#898]
|
|
432
|
+
|
|
433
|
+
[#578]: https://github.com/just-the-docs/just-the-docs/pull/578
|
|
434
|
+
[#463]: https://github.com/just-the-docs/just-the-docs/pull/463
|
|
435
|
+
[#448]: https://github.com/just-the-docs/just-the-docs/pull/448
|
|
436
|
+
[#466]: https://github.com/just-the-docs/just-the-docs/pull/466
|
|
437
|
+
[#477]: https://github.com/just-the-docs/just-the-docs/pull/477
|
|
438
|
+
[#495]: https://github.com/just-the-docs/just-the-docs/pull/495
|
|
439
|
+
[#496]: https://github.com/just-the-docs/just-the-docs/pull/496
|
|
440
|
+
[#498]: https://github.com/just-the-docs/just-the-docs/pull/498
|
|
441
|
+
[#494]: https://github.com/just-the-docs/just-the-docs/pull/494
|
|
442
|
+
[#639]: https://github.com/just-the-docs/just-the-docs/pull/639
|
|
443
|
+
[#544]: https://github.com/just-the-docs/just-the-docs/pull/544
|
|
444
|
+
[#364]: https://github.com/just-the-docs/just-the-docs/pull/364
|
|
445
|
+
[#498]: https://github.com/just-the-docs/just-the-docs/pull/498
|
|
446
|
+
[#613]: https://github.com/just-the-docs/just-the-docs/pull/613
|
|
447
|
+
[#726]: https://github.com/just-the-docs/just-the-docs/pull/726
|
|
448
|
+
[#474]: https://github.com/just-the-docs/just-the-docs/pull/474
|
|
449
|
+
[#829]: https://github.com/just-the-docs/just-the-docs/pull/829
|
|
450
|
+
[#857]: https://github.com/just-the-docs/just-the-docs/pull/857
|
|
451
|
+
[#876]: https://github.com/just-the-docs/just-the-docs/pull/876
|
|
452
|
+
[#909]: https://github.com/just-the-docs/just-the-docs/pull/909
|
|
453
|
+
[#519]: https://github.com/just-the-docs/just-the-docs/pull/519
|
|
454
|
+
[#855]: https://github.com/just-the-docs/just-the-docs/pull/855
|
|
455
|
+
[#686]: https://github.com/just-the-docs/just-the-docs/pull/686
|
|
456
|
+
[#495]: https://github.com/just-the-docs/just-the-docs/pull/495
|
|
457
|
+
[#846]: https://github.com/just-the-docs/just-the-docs/pull/846
|
|
458
|
+
[#727]: https://github.com/just-the-docs/just-the-docs/pull/727
|
|
459
|
+
[#889]: https://github.com/just-the-docs/just-the-docs/pull/889
|
|
460
|
+
[#893]: https://github.com/just-the-docs/just-the-docs/pull/893
|
|
461
|
+
[#905]: https://github.com/just-the-docs/just-the-docs/pull/905
|
|
462
|
+
[#898]: https://github.com/just-the-docs/just-the-docs/pull/898
|
|
179
463
|
|
|
180
464
|
### Documentation
|
|
181
465
|
|
|
182
|
-
* Added: docs on how to break an `ol` by @pdmosses in
|
|
183
|
-
* Added: docs for custom includes by @nathanjessen in
|
|
184
|
-
* Added: document caveat about variable dependencies by @waldyrious in
|
|
185
|
-
* Added: docs on how to use `custom_head` to add a custom favicon by @UnclassedPenguin in
|
|
186
|
-
* Fixed: `ol` on `index.md` by @pmarsceill in
|
|
187
|
-
* Fixed: image link in Markdown kitchen sink by @JeffGuKang in
|
|
188
|
-
* Fixed: images in Markdown kitchen sink by @dougaitken in
|
|
189
|
-
* Fixed: clearer label of link to Jekyll quickstart by @waldyrious in
|
|
190
|
-
* Fixed: remove extra spaces in component docs by @MichelleBlanchette in
|
|
191
|
-
* Fixed: double "your" typo in `index.md` by @sehilyi in
|
|
192
|
-
* Fixed: "you" -> "your" typo in `index.md` by @nathanjessen in
|
|
193
|
-
* Fixed: spacing in toc example by @henryiii in
|
|
194
|
-
* Fixed: typo in `README` on `_config.yml` by @ivanskodje in
|
|
195
|
-
* Fixed: missing code fence in navigation structure docs by @mattxwang in
|
|
466
|
+
* Added: docs on how to break an `ol` by [@pdmosses] in [#856]
|
|
467
|
+
* Added: docs for custom includes by [@nathanjessen] in [#806]
|
|
468
|
+
* Added: document caveat about variable dependencies by [@waldyrious] in [#555]
|
|
469
|
+
* Added: docs on how to use `custom_head` to add a custom favicon by [@UnclassedPenguin] in [#814]
|
|
470
|
+
* Fixed: `ol` on `index.md` by [@pmarsceill] in [#778]
|
|
471
|
+
* Fixed: image link in Markdown kitchen sink by [@JeffGuKang] in [#221]
|
|
472
|
+
* Fixed: images in Markdown kitchen sink by [@dougaitken] in [#782]
|
|
473
|
+
* Fixed: clearer label of link to Jekyll quickstart by [@waldyrious] in [#549]
|
|
474
|
+
* Fixed: remove extra spaces in component docs by [@MichelleBlanchette] in [#554]
|
|
475
|
+
* Fixed: double "your" typo in `index.md` by [@sehilyi] in [#499]
|
|
476
|
+
* Fixed: "you" -> "your" typo in `index.md` by [@nathanjessen] in [#473]
|
|
477
|
+
* Fixed: spacing in toc example by [@henryiii] in [#835]
|
|
478
|
+
* Fixed: typo in `README` on `_config.yml` by [@ivanskodje] in [#891]
|
|
479
|
+
* Fixed: missing code fence in navigation structure docs by [@mattxwang] in [#906]
|
|
480
|
+
|
|
481
|
+
[#856]: https://github.com/just-the-docs/just-the-docs/pull/856
|
|
482
|
+
[#806]: https://github.com/just-the-docs/just-the-docs/pull/806
|
|
483
|
+
[#555]: https://github.com/just-the-docs/just-the-docs/pull/555
|
|
484
|
+
[#814]: https://github.com/just-the-docs/just-the-docs/pull/814
|
|
485
|
+
[#778]: https://github.com/just-the-docs/just-the-docs/pull/778
|
|
486
|
+
[#221]: https://github.com/just-the-docs/just-the-docs/pull/221
|
|
487
|
+
[#782]: https://github.com/just-the-docs/just-the-docs/pull/782
|
|
488
|
+
[#549]: https://github.com/just-the-docs/just-the-docs/pull/549
|
|
489
|
+
[#554]: https://github.com/just-the-docs/just-the-docs/pull/554
|
|
490
|
+
[#499]: https://github.com/just-the-docs/just-the-docs/pull/499
|
|
491
|
+
[#473]: https://github.com/just-the-docs/just-the-docs/pull/473
|
|
492
|
+
[#835]: https://github.com/just-the-docs/just-the-docs/pull/835
|
|
493
|
+
[#891]: https://github.com/just-the-docs/just-the-docs/pull/891
|
|
494
|
+
[#906]: https://github.com/just-the-docs/just-the-docs/pull/906
|
|
196
495
|
|
|
197
496
|
### Maintenance
|
|
198
497
|
|
|
199
|
-
* Added: VScode devcontainer by @max06 in
|
|
200
|
-
* Added: `webrick` to `Gemfile` by @mattxwang in
|
|
201
|
-
* Added: 'This site is powered by Netlify.' to the footer by @mattxwang in
|
|
202
|
-
* Updated: new repo path by @pmarsceill in
|
|
203
|
-
* Updated: rename `master` -> `main` by @pmarsceill in
|
|
204
|
-
* Updated: README by @pmarsceill in
|
|
205
|
-
* Updated: Code of Conduct to Contributor Covenant v2.1 by @mattxwang in
|
|
206
|
-
* Updated: CI files, Ruby & Node Versions by @mattxwang in
|
|
207
|
-
* Updated: Stylelint to v14, extend SCSS plugins, remove primer-* configs, resolve issues by @mattxwang in
|
|
498
|
+
* Added: VScode devcontainer by [@max06] in [#783]
|
|
499
|
+
* Added: `webrick` to `Gemfile` by [@mattxwang] in [#799]
|
|
500
|
+
* Added: 'This site is powered by Netlify.' to the footer by [@mattxwang] in [#797]
|
|
501
|
+
* Updated: new repo path by [@pmarsceill] in [#775]
|
|
502
|
+
* Updated: rename `master` -> `main` by [@pmarsceill] in [#776]
|
|
503
|
+
* Updated: README by [@pmarsceill] in [#777]
|
|
504
|
+
* Updated: Code of Conduct to Contributor Covenant v2.1 by [@mattxwang] in [#790]
|
|
505
|
+
* Updated: CI files, Ruby & Node Versions by [@mattxwang] in [#820]
|
|
506
|
+
* Updated: Stylelint to v14, extend SCSS plugins, remove primer-* configs, resolve issues by [@mattxwang] in [#821]
|
|
507
|
+
|
|
508
|
+
[#783]: https://github.com/just-the-docs/just-the-docs/pull/783
|
|
509
|
+
[#799]: https://github.com/just-the-docs/just-the-docs/pull/799
|
|
510
|
+
[#797]: https://github.com/just-the-docs/just-the-docs/pull/797
|
|
511
|
+
[#775]: https://github.com/just-the-docs/just-the-docs/pull/775
|
|
512
|
+
[#776]: https://github.com/just-the-docs/just-the-docs/pull/776
|
|
513
|
+
[#777]: https://github.com/just-the-docs/just-the-docs/pull/777
|
|
514
|
+
[#790]: https://github.com/just-the-docs/just-the-docs/pull/790
|
|
515
|
+
[#820]: https://github.com/just-the-docs/just-the-docs/pull/820
|
|
516
|
+
[#821]: https://github.com/just-the-docs/just-the-docs/pull/821
|
|
208
517
|
|
|
209
518
|
### Dependencies
|
|
210
|
-
|
|
211
|
-
*
|
|
212
|
-
* [Security] Bump
|
|
213
|
-
* [Security] Bump
|
|
214
|
-
* [Security] Bump
|
|
215
|
-
* Bump
|
|
216
|
-
* Bump
|
|
217
|
-
* Bump
|
|
218
|
-
* Bump prettier from 2.
|
|
219
|
-
* Bump prettier from 2.
|
|
519
|
+
|
|
520
|
+
* Upgrade to GitHub-native Dependabot by @dependabot-preview in [#627]
|
|
521
|
+
* [Security] Bump y18n from 3.2.1 to 3.2.2 by @dependabot-preview in [#606]
|
|
522
|
+
* [Security] Bump hosted-git-info from 2.7.1 to 2.8.9 by @dependabot-preview in [#641]
|
|
523
|
+
* [Security] Bump lodash from 4.17.19 to 4.17.21 by @dependabot-preview in [#640]
|
|
524
|
+
* [Security] Bump ini from 1.3.5 to 1.3.8 by @dependabot-preview in [#511]
|
|
525
|
+
* Bump path-parse from 1.0.6 to 1.0.7 by @dependabot in [#699]
|
|
526
|
+
* Bump ajv from 6.10.0 to 6.12.6 by @dependabot in [#766]
|
|
527
|
+
* Bump prettier from 2.1.2 to 2.5.1 by @dependabot in [#787]
|
|
528
|
+
* Bump prettier from 2.5.1 to 2.6.2 by @dependabot in [#809]
|
|
529
|
+
* Bump prettier from 2.6.2 to 2.7.1 by @dependabot in [#864]
|
|
530
|
+
|
|
531
|
+
[#627]: https://github.com/just-the-docs/just-the-docs/pull/627
|
|
532
|
+
[#606]: https://github.com/just-the-docs/just-the-docs/pull/606
|
|
533
|
+
[#641]: https://github.com/just-the-docs/just-the-docs/pull/641
|
|
534
|
+
[#640]: https://github.com/just-the-docs/just-the-docs/pull/640
|
|
535
|
+
[#511]: https://github.com/just-the-docs/just-the-docs/pull/511
|
|
536
|
+
[#699]: https://github.com/just-the-docs/just-the-docs/pull/699
|
|
537
|
+
[#766]: https://github.com/just-the-docs/just-the-docs/pull/766
|
|
538
|
+
[#787]: https://github.com/just-the-docs/just-the-docs/pull/787
|
|
539
|
+
[#809]: https://github.com/just-the-docs/just-the-docs/pull/809
|
|
540
|
+
[#864]: https://github.com/just-the-docs/just-the-docs/pull/864
|
|
220
541
|
|
|
221
542
|
### New Contributors
|
|
222
|
-
|
|
223
|
-
* @
|
|
224
|
-
* @
|
|
225
|
-
* @
|
|
226
|
-
* @
|
|
227
|
-
* @
|
|
228
|
-
* @
|
|
229
|
-
* @
|
|
230
|
-
* @
|
|
231
|
-
* @
|
|
232
|
-
* @
|
|
233
|
-
* @
|
|
234
|
-
* @
|
|
235
|
-
* @
|
|
236
|
-
* @
|
|
237
|
-
* @
|
|
238
|
-
* @
|
|
239
|
-
* @
|
|
240
|
-
* @
|
|
543
|
+
|
|
544
|
+
* [@AdityaTiwari2102] made their first contribution in [#477]
|
|
545
|
+
* [@svrooij] made their first contribution in [#544]
|
|
546
|
+
* [@alexsegura] made their first contribution in [#519]
|
|
547
|
+
* [@burner1024] made their first contribution in [#364]
|
|
548
|
+
* [@JeffGuKang] made their first contribution in [#221]
|
|
549
|
+
* [@dougaitken] made their first contribution in [#782]
|
|
550
|
+
* [@max06] made their first contribution in [#783]
|
|
551
|
+
* [@sehilyi] made their first contribution in [#499]
|
|
552
|
+
* [@nathanjessen] made their first contribution in [#473]
|
|
553
|
+
* [@waldyrious] made their first contribution in [#549]
|
|
554
|
+
* [@MichelleBlanchette] made their first contribution in [#554]
|
|
555
|
+
* [@henryiii] made their first contribution in [#835]
|
|
556
|
+
* [@jmertic] made their first contribution in [#726]
|
|
557
|
+
* [@jacobhq] made their first contribution in [#846]
|
|
558
|
+
* [@UnclassedPenguin] made their first contribution in [#814]
|
|
559
|
+
* [@alyssais] made their first contribution in [#829]
|
|
560
|
+
* [@nascosto] made their first contribution in [#857]
|
|
561
|
+
* [@SPGoding] made their first contribution in [#876]
|
|
562
|
+
* [@iridazzle] made their first contribution in [#727]
|
|
563
|
+
* [@ivanskodje] made their first contribution in [#891]
|
|
564
|
+
* [@Eisverygoodletter] made their first contribution in [#893]
|
|
565
|
+
|
|
566
|
+
[@AdityaTiwari2102]: https://github.com/AdityaTiwari2102
|
|
567
|
+
[@svrooij]: https://github.com/svrooij
|
|
568
|
+
[@alexsegura]: https://github.com/alexsegura
|
|
569
|
+
[@burner1024]: https://github.com/burner1024
|
|
570
|
+
[@JeffGuKang]: https://github.com/JeffGuKang
|
|
571
|
+
[@dougaitken]: https://github.com/dougaitken
|
|
572
|
+
[@max06]: https://github.com/max06
|
|
573
|
+
[@sehilyi]: https://github.com/sehilyi
|
|
574
|
+
[@nathanjessen]: https://github.com/nathanjessen
|
|
575
|
+
[@waldyrious]: https://github.com/waldyrious
|
|
576
|
+
[@MichelleBlanchette]: https://github.com/MichelleBlanchette
|
|
577
|
+
[@henryiii]: https://github.com/henryiii
|
|
578
|
+
[@jmertic]: https://github.com/jmertic
|
|
579
|
+
[@jacobhq]: https://github.com/jacobhq
|
|
580
|
+
[@UnclassedPenguin]: https://github.com/UnclassedPenguin
|
|
581
|
+
[@alyssais]: https://github.com/alyssais
|
|
582
|
+
[@nascosto]: https://github.com/nascosto
|
|
583
|
+
[@SPGoding]: https://github.com/SPGoding
|
|
584
|
+
[@iridazzle]: https://github.com/iridazzle
|
|
585
|
+
[@ivanskodje]: https://github.com/ivanskodje
|
|
586
|
+
[@Eisverygoodletter]: https://github.com/Eisverygoodletter
|
|
241
587
|
|
|
242
588
|
**Full Changelog**: https://github.com/just-the-docs/just-the-docs/compare/v0.3.3...v0.4.0.rc1
|
|
243
589
|
|
|
590
|
+
[@pmarsceill]: https://github.com/pmarsceill
|
|
591
|
+
|
|
244
592
|
## v0.3.3
|
|
245
593
|
|
|
246
594
|
### 🚀 Features
|