summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2019-02-09 15:20:35 -0500
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2019-02-24 18:37:12 -0500
commit4baad0ec8d568217aa2708afc15ba9672b0a2daf (patch)
treeb8656ae85b0a1c6f692e04f3dcbb19b749671714
parentf5d1bd8984a423bf5949040416035f23a73e13dc (diff)
downloadSMAPI-4baad0ec8d568217aa2708afc15ba9672b0a2daf.tar.gz
SMAPI-4baad0ec8d568217aa2708afc15ba9672b0a2daf.tar.bz2
SMAPI-4baad0ec8d568217aa2708afc15ba9672b0a2daf.zip
cross out mod links on compat page if outdated to prevent confusion
-rw-r--r--docs/release-notes.md9
-rw-r--r--src/SMAPI.Web/wwwroot/Content/css/mods.css10
2 files changed, 13 insertions, 6 deletions
diff --git a/docs/release-notes.md b/docs/release-notes.md
index d61c7990..a4a037e8 100644
--- a/docs/release-notes.md
+++ b/docs/release-notes.md
@@ -1,10 +1,15 @@
# Release notes
## 2.11-beta
+Currently in beta for Stardew Valley 1.3.35-beta only. **Not compatible with non-beta versions of the game.**
+
* For players:
- * Updated for Stardew Valley 1.3.35 beta. **Not compatible with non-beta versions of the game.**
+ * Updated for Stardew Valley 1.3.35 beta.
+
+* For the web UI:
+ * Mod compatibility page now crosses out mod links if they're outdated to prevent confusion.
## 2.10.2
-Released 08 January 2019 for Stardew Valley 1.3.32–33.
+Released 09 January 2019 for Stardew Valley 1.3.32–33.
* For players:
* SMAPI now keeps the first save backup created for the day, instead of the last one.
diff --git a/src/SMAPI.Web/wwwroot/Content/css/mods.css b/src/SMAPI.Web/wwwroot/Content/css/mods.css
index 730bfc2e..f42800da 100644
--- a/src/SMAPI.Web/wwwroot/Content/css/mods.css
+++ b/src/SMAPI.Web/wwwroot/Content/css/mods.css
@@ -128,8 +128,10 @@ table.wikitable > caption {
opacity: 0.7;
}
-#mod-list .mod-closed-source {
- color: red;
- font-size: 0.8em;
- opacity: 0.5;
+#mod-list tr[data-status="abandoned"] .mod-page-links,
+#mod-list tr[data-status="broken"] .mod-page-links,
+#mod-list tr[data-status="obsolete"] .mod-page-links,
+#mod-list tr[data-status="unofficial"] .mod-page-links,
+#mod-list tr[data-status="workaround"] .mod-page-links {
+ text-decoration: line-through;
}