Modding:Mod compatibility/barchart

From Stardew Valley Wiki
< Modding:Mod compatibility
Revision as of 03:05, 19 July 2017 by Pathoschild (talk | contribs) (combine ok + workaround, tweak text)
Jump to navigation Jump to search
 
0% are compatible or have a working alternative.
 
0% have an update coming soon.
 
0% are broken and not open-source.
(Many of these broke in Stardew Valley 1.1 or 1.2. Some may be updated by their authors.)

Usage

List the percentage values for each group:

{{/barchart
  |ok         = 52
  |workaround = 23
  |soon       = 10
  |broken     = 15
}}

Script

This tiny script generates the template call when run from the parent page.

var ok = $("#mod-list tr[data-status='ok']").length;
var workaround = $("#mod-list tr[data-status='workaround']").length;
var soon = $("#mod-list tr[data-status='soon']").length;
var broken = $("#mod-list tr[data-status='broken']").length;

`
{{/barchart
  |ok         = ${ok}
  |workaround = ${workaround}
  |soon       = ${soon}
  |broken     = ${broken}
}}
`