diff --git a/README.md b/README.md index 96fca86..7e11c16 100644 --- a/README.md +++ b/README.md @@ -49,6 +49,7 @@ Licenses sit in the `/_licenses` folder. Each license has YAML front matter desc #### Optional fields +* `featured` - Whether the license should be featured on the main page (defaults to false) * `note` - Additional information about the licenses * `using` - A list of notable projects using the license in the form of `project_name: "url"` * `redirect_from` - Relative path(s) to redirect to the license from, to prevent breaking old URLs @@ -84,7 +85,7 @@ The license properties (rules) are stored as a bulleted list within the licenses #### Conditions * `include-copyright` - Include a copy of the license and copyright notice with the code. -* `document-changes` - Indicate significant changes made to the code. +* `document-changes` - Indicate changes made to the code. * `disclose-source` - Source code must be made available when distributing the software. * `network-use-disclose` - Users who interact with the software via network are given the right to receive a copy of the corresponding source code. * `same-license` - Modifications must be released under the same license when distributing the software. In some cases a similar or related license may be used. diff --git a/_config.yml b/_config.yml index 19edbe1..8da0521 100644 --- a/_config.yml +++ b/_config.yml @@ -41,7 +41,6 @@ gems: - jekyll-coffeescript sass: - sass_dir: _sass style: :compressed twitter: diff --git a/_data/meta.yml b/_data/meta.yml index 41d0c5c..11b61f7 100644 --- a/_data/meta.yml +++ b/_data/meta.yml @@ -31,6 +31,10 @@ # Optional fields +- name: featured + description: Whether the license should be featured on the main page (defaults to false) + required: false + - name: note description: Additional information about the licenses required: false diff --git a/_data/rules.yml b/_data/rules.yml index 0b56dff..1eee415 100644 --- a/_data/rules.yml +++ b/_data/rules.yml @@ -2,7 +2,7 @@ conditions: - description: Include a copy of the license and copyright notice with the code. label: License and Copyright Notice tag: include-copyright -- description: Indicate significant changes made to the code. +- description: Indicate changes made to the code. label: State Changes tag: document-changes - description: Source code must be made available when distributing the software. diff --git a/_includes/sidebar.html b/_includes/sidebar.html index 07f8fb9..fc174ba 100644 --- a/_includes/sidebar.html +++ b/_includes/sidebar.html @@ -1,23 +1,7 @@