Skip to content

Commit 1209ab1

Browse files
committed
Add reason to blacklist entries on page
Closes OctoPrint#151
1 parent 6f0ff49 commit 1209ab1

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

_data/blacklist.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
#- plugin: identifier of affected plugin, mandatory
22
# versions: list of affected versions (e.g. ["0.1.0"]), optional (all versions if left out)
33
# octoversions: affected OctoPrint versions (e.g. [">=1.2.9,<1.3.0",">=1.3.2"], all versions if left out)
4+
# reason: Human readble reason for blacklisting, may contain Markdown
45
- plugin: tplinksmartplug
56
versions:
67
- 0.7.0
78
- 0.7.1
89
octoversions:
910
- "<1.3.6"
11+
reason: "[Issue that can render the UI completely non-functional](https://github.com/jneilliii/OctoPrint-TPLinkSmartplug/issues/19)."

assets/css/site.css

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/less/site.less

+7
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,13 @@ footer {
212212
width: 25%;
213213
text-align: center;
214214
}
215+
216+
.blacklist-reason {
217+
p:first-child::before {
218+
content: 'Reason: ';
219+
font-weight: bold;
220+
}
221+
}
215222
}
216223

217224
// Carbon ads

blacklist/index.html

+3
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@
3535
{% else %}
3636
<code>{{ item.plugin | xml_escape }}</code>
3737
{% endif %}
38+
{% if item.reason %}
39+
<div class="blacklist-reason">{{ item.reason | markdownify }}</div>
40+
{% endif %}
3841
</td>
3942
<td class="blacklist-versions">
4043
{% if item.versions %}{{ item.versions | join: ", " | xml_escape }}{% else %}all{% endif %}

0 commit comments

Comments
 (0)