Skip to content

Commit ceb4aff

Browse files
authored
Release 💎 v0.10.0 (#586)
1 parent 62515d3 commit ceb4aff

File tree

4 files changed

+15
-2
lines changed

4 files changed

+15
-2
lines changed

Diff for: README.md

+13
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,19 @@ jekyll_admin:
4242
- configuration
4343
```
4444

45+
### Customizing collection label in Sidebar
46+
47+
The plugin allows you to customize the name of a collection that is displayed in the sidebar by defining it in the collection's
48+
metadata in the config file. For example, if your source's *posts* are actually *news-items* on the deployed site, then it can
49+
be distracting to see the label `Posts` in the admin's sidebar. This situation can be resolved with the following configuration:
50+
51+
```yaml
52+
collections:
53+
posts:
54+
output: true
55+
sidebar_label: News
56+
```
57+
4558
## Contributing
4659
4760
Interested in contributing to Jekyll Admin? We’d love your help. Jekyll Admin is an open source project, built one contribution at a time by users like you. See [the contributing instructions](.github/CONTRIBUTING.md), and [the development docs](https://jekyll.github.io/jekyll-admin/development/) for more information.

Diff for: lib/jekyll-admin/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module JekyllAdmin
4-
VERSION = "0.9.0"
4+
VERSION = "0.10.0"
55
end

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jekyll-admin",
3-
"version": "0.9.0",
3+
"version": "0.10.0",
44
"description": "Admin Panel for Jekyll",
55
"private": true,
66
"scripts": {

Diff for: screenshot.png

-310 KB
Loading

0 commit comments

Comments
 (0)