Difference between revisions of "Modding:Mod compatibility/entry"

From Stardew Valley Wiki
Jump to navigation Jump to search
(split 'broke in' into separate column for easier skimming)
(merge 'broken' and 'soon' statuses (use source argument to distinguish messages))
Line 7: Line 7:
 
! broke in
 
! broke in
 
! &nbsp;</noinclude>
 
! &nbsp;</noinclude>
|- id="{{{name}}}" data-status="{{{status|ok}}}" {{#if:{{{source|}}}|data-has-source}} style="line-height: 1em; {{#switch:{{{status|ok}}} |ok=background: #9F9; |workaround=background: #CF9; |broken|soon|soon-official=background: #F99; |obsolete=background: #999}}"
+
|- id="{{{name}}}" data-status="{{{status|ok}}}" {{#if:{{{source|}}}|data-has-source}} style="line-height: 1em; {{#switch:{{{status|ok}}} |ok=background: #9F9; |workaround=background: #CF9; |broken|soon-official=background: #F99; |obsolete=background: #999}}"
 
| {{#if:{{{url|}}}|[{{{url}}} {{{name}}}]|{{{name}}}}}{{#if:{{{name2|}}}|<br /><small style="font-size:0.75em;">(aka {{{name2}}})</small>}}
 
| {{#if:{{{url|}}}|[{{{url}}} {{{name}}}]|{{{name}}}}}{{#if:{{{name2|}}}|<br /><small style="font-size:0.75em;">(aka {{{name2}}})</small>}}
 
| {{{author}}}{{#if:{{{author2|}}}|<br /><small style="font-size:0.75em;">(aka {{{author2}}})</small>}}
 
| {{{author}}}{{#if:{{{author2|}}}|<br /><small style="font-size:0.75em;">(aka {{{author2}}})</small>}}
| {{#switch:{{{status|ok}}} |ok=✓ |workaround=⚠ |soon|soon-official=↻ |broken|obsolete=✖}} {{#switch:{{{status|ok}}}
+
| {{#switch:{{{status|ok}}} |ok=✓ |workaround=⚠ |soon-official=↻ |broken={{#if:{{{source|}}}|↻|✖}}|obsolete=✖}} {{#switch:{{{status|ok}}}
 
   |ok      = {{#if:{{{summary|}}}|{{{summary}}}|use latest version.}}
 
   |ok      = {{#if:{{{summary|}}}|{{{summary}}}|use latest version.}}
   |#default = broken{{#if:{{{summary|}}}|, {{{summary}}}|{{#switch:{{{status|ok}}}|broken={{#if:{{{source|}}}|, needs update from the author|, not open-source}}|soon=, update coming soon|soon-official=, author will update it soon}}.}}
+
   |#default = broken{{#if:{{{summary|}}}|, {{{summary}}}|{{#switch:{{{status|ok}}}|broken={{#if:{{{source|}}}|, not updated yet|, not open-source}}|soon-official=, author will update it soon}}.}}
 
}}
 
}}
 
| <small>{{{broke in|}}}</small>
 
| <small>{{{broke in|}}}</small>
Line 57: Line 57:
 
| The mod isn't compatible, but the player can fix it or there's a good alternative.
 
| The mod isn't compatible, but the player can fix it or there's a good alternative.
 
|  
 
|  
|-
 
| <code>soon</code>
 
| The mod isn't compatible, but it's open-source so an unofficial update will be prepared soon (if the author doesn't update it first).
 
| ''update coming soon.''
 
 
|-
 
|-
 
| <code>soon-official</code>
 
| <code>soon-official</code>
Line 67: Line 63:
 
|-
 
|-
 
| <code>broken</code>
 
| <code>broken</code>
| The mod isn't compatible, isn't open-source (or requires significant refactoring from the author), and there's no indication that the author will update it yet.
+
| The mod isn't compatible. The message depends on whether the <code>source</code> link is set.
| ''broken, not open-source.''<br />''broken, needs update from the author.''
+
| ''broken, not updated yet.''<br />''broken, not open-source.''
 
|-
 
|-
 
| <code>obsolete</code>
 
| <code>obsolete</code>

Revision as of 04:12, 17 April 2018

Usage

For a compatible mod:

{{/entry
  |name     = Lookup Anything
  |author   = Pathoschild
  |url      = http://www.nexusmods.com/stardewvalley/mods/541
  |source   = https://github.com/Pathoschild/StardewMods
}}

For a mod with a non-OK status:

{{/entry
  |name     = Lookup Anything
  |author   = Pathoschild
  |url      = http://www.nexusmods.com/stardewvalley/mods/541
  |source   = https://github.com/Pathoschild/StardewMods
  |status   = broken
  |summary  = 
  |broke in = Stardew Valley 1.2
  |links    = <!-- any comma-separated URLs to pull requests, discussions, etc -->
}}

Valid statuses:

status meaning default summary
ok The mod is compatible. This is the default and doesn't need to be specified. use latest version.
workaround The mod isn't compatible, but the player can fix it or there's a good alternative.
soon-official The mod isn't compatible, but the author has said they'll update it. author will update it soon.
broken The mod isn't compatible. The message depends on whether the source link is set. broken, not updated yet.
broken, not open-source.
obsolete The mod is no longer needed and should be removed.

Other fields:

  • |name2=name and |author2=name add also-known-as lines for the mod name & author respectively.
  • |hide-url=URL (replacing |url=) moves the URL into a superscript link. Mainly useful for broken mods with a workaround, so players don't automatically click through to the old mod.
  • |links=URLs adds superscript links (comma-separated). Mainly useful for linking to pull requests.

Script

This script generates the template call when run from a Nexus or Chucklefish mod page.

switch(location.host)
{
	case "www.nexusmods.com":
		var url = location.origin + location.pathname.replace(/\/*$/, '');
		var name = $(".header-name").text();
		var author = $(".uploader a").text();
		var author2 = $(".header-author strong").text();
		break;

	case "community.playstarbound.com":
		var url = location.origin + location.pathname.replace(/\/*$/, '');
		var name = $.trim($("h1:first").contents().first().text());
		var author = $(".primaryContent[data-author]:first").attr("data-author");
		break;

	default:
		throw `Unknown domain: ${location.host}`;
}

var template = `
{{/entry
  |name    = ${name}
  |author  = ${author}`;
if(author2 && author2 != author)
   template += '\n' + `  |author2 = ${author2}`;
template += `
  |url     = ${url}
  |status  = ok
  |summary = 
  |source  = 
}}
`;