-
-
Notifications
You must be signed in to change notification settings - Fork 267
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
27 changed files
with
463 additions
and
196 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
using System.Reflection; | ||
|
||
[assembly: AssemblyProduct("SMAPI")] | ||
[assembly: AssemblyVersion("2.10.1")] | ||
[assembly: AssemblyFileVersion("2.10.1")] | ||
[assembly: AssemblyVersion("2.10.2")] | ||
[assembly: AssemblyFileVersion("2.10.2")] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
{ | ||
"Name": "Console Commands", | ||
"Author": "SMAPI", | ||
"Version": "2.10.1", | ||
"Version": "2.10.2", | ||
"Description": "Adds SMAPI console commands that let you manipulate the game.", | ||
"UniqueID": "SMAPI.ConsoleCommands", | ||
"EntryDll": "ConsoleCommands.dll", | ||
"MinimumApiVersion": "2.10.1" | ||
"MinimumApiVersion": "2.10.2" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
{ | ||
"Name": "Save Backup", | ||
"Author": "SMAPI", | ||
"Version": "2.10.1", | ||
"Version": "2.10.2", | ||
"Description": "Automatically backs up all your saves once per day into its folder.", | ||
"UniqueID": "SMAPI.SaveBackup", | ||
"EntryDll": "SaveBackup.dll", | ||
"MinimumApiVersion": "2.10.1" | ||
"MinimumApiVersion": "2.10.2" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,15 +4,16 @@ | |
ViewData["Title"] = "SMAPI mod compatibility"; | ||
} | ||
@section Head { | ||
<link rel="stylesheet" href="~/Content/css/mods.css?r=20181122" /> | ||
<link rel="stylesheet" href="~/Content/css/mods.css?r=20190125" /> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.min.js" crossorigin="anonymous"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js" crossorigin="anonymous"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/jquery.tablesorter.combined.min.js" crossorigin="anonymous"></script> | ||
<script src="~/Content/js/mods.js?r=20181122"></script> | ||
<script src="~/Content/js/mods.js?r=20190125"></script> | ||
<script> | ||
$(function() { | ||
var data = @Json.Serialize(Model.Mods, new JsonSerializerSettings { Formatting = Formatting.None }); | ||
smapi.modList(data); | ||
var enableBeta = @Json.Serialize(Model.BetaVersion != null); | ||
smapi.modList(data, enableBeta); | ||
}); | ||
</script> | ||
} | ||
|
@@ -39,7 +40,7 @@ | |
<label for="show-advanced">show advanced info and options</label> | ||
<div id="filters" v-show="showAdvanced"> | ||
<div v-for="(filterGroup, key) in filters"> | ||
{{key}}: <span v-for="filter in filterGroup" v-bind:class="{ active: filter.value }"><input type="checkbox" v-bind:id="filter.id" v-model="filter.value" v-on:change="applyFilters" /> <label v-bind:for="filter.id">{{filter.label}}</label></span> | ||
{{filterGroup.label}}: <span v-for="filter in filterGroup.value" v-bind:class="{ active: filter.value }"><input type="checkbox" v-bind:id="filter.id" v-model="filter.value" v-on:change="applyFilters" /> <label v-bind:for="filter.id">{{filter.label}}</label></span> | ||
</div> | ||
</div> | ||
</div> | ||
|
@@ -93,12 +94,10 @@ | |
<span v-else class="mod-closed-source">no source</span> | ||
</td> | ||
<td v-show="showAdvanced"> | ||
<template v-if="mod.LatestCompatibility.Status == 'ok' || mod.LatestCompatibility.Status == 'unofficial' || mod.Smapi3Status == 'ok' || mod.Smapi3Status == 'soon'"> | ||
<small v-if="mod.Smapi3Status == 'ok'">✓</small> | ||
<small v-else-if="mod.Smapi3Status == 'broken'">✖</small> | ||
<small v-else-if="mod.Smapi3Status == 'soon' && mod.Smapi3Url"><a v-bind:href="mod.Smapi3Url">↻ soon</a></small> | ||
<small v-else>↻ {{mod.Smapi3Status}}</small> | ||
</template> | ||
<small v-if="mod.LatestCompatibility.Status == 'ok' || mod.LatestCompatibility.Status == 'unofficial' || mod.Smapi3Status == 'ok' || mod.Smapi3Status == 'soon' || mod.Smapi3Url"> | ||
<a v-if="mod.Smapi3Url" v-bind:href="mod.Smapi3Url">{{mod.Smapi3DisplayText}}</a> | ||
<template v-else>{{mod.Smapi3DisplayText}}</template> | ||
</small> | ||
</td> | ||
<td> | ||
<small><a v-bind:href="'#' + mod.Slug">#</a></small> | ||
|
Oops, something went wrong.