0 of 0

File information

Last updated

Original upload

Created by

SmallFire

Uploaded by

435201823

Virus scan

Safe to use

About this mod

Replace the high-definition portrait frame module, making it more friendly to version control.
替换高清肖像图框架模组,对版本管理更加友好。

Requirements
Permissions and credits
Donations
This is a mod specifically designed to replace the HD portraits in the game. It is an upgraded version developed based on the Portraiture mod.
The original version can be found in the following GitHub repository: https://github.com/Platonymous/Stardew-Valley-Mods/tree/master/Portraiture
Original Nexus page: https://www.nexusmods.com/stardewvalley/mods/999

I was not satisfied with the way the Portraiture mod imported images, so I made improvements to ensure that each portrait mod can exist independently without relying on the Portraiture mod's folder. Additionally, each portrait mod should include a separate manifest file for better version management. Next, let me introduce how to use and develop this mod.

Usage Guide:

1. First, make sure you have installed the prerequisite mod in your Mods folder.
2. When you need to install a new portrait mod, remember not to put it in the Portraiture mod's folder. Instead, create a separate folder for each portrait mod. If the portrait mod does not have a manifest.json file, you can create one yourself, similar to the following:

{
"Name": "My Portrait Mod",
"Author": "Me",
"Version": "1.3",
"Description": "My Portraits",
"UniqueID": "My.Portraits",
"UpdateKeys": ["Nexus:00000"],
"ContentPackFor": {
"UniqueID": "Platonymous.Portraiture"
},
"Dependencies": [{
"UniqueID": "Platonymous.Portraiture",
"IsRequired": true
}]
}



3.  If you are a Chinese player, you can use the Firesvm Mod Manager to install portrait mods with one click, without performing the previous two steps. You just need to select the portrait you want to install, and the manager will help you install the prerequisites, write the manifest.json configuration file, and manage portrait updates. (This feature is expected to be available on July 20, 2024)

Developer Notes:

1. If you intend to develop a portrait mod, you can refer to the Portraiture mod as a starting point.
2. To ensure that your portrait mod is correctly recognized and updated by SMAPI, it is essential to include a manifest.json file for your mod.

GITHUB:
https://github.com/435201823/Stardew-Valley-Mods

中文说明:

这是一个专为替换游戏中的高清肖像而设计的模组,它是基于Portraiture模组进行二次开发的升级版。


原版可在以下GitHub仓库找到:https://github.com/Platonymous/Stardew-Valley-Mods/tree/master/Portraiture
原版Nexus页面: https://www.nexusmods.com/stardewvalley/mods/999


我对Portraiture模组导入图像的方式并不满意,因此我进行了改进,确保每个肖像模组都能独立存在,不再依赖于Portraiture模组的文件夹。此外,每个肖像模组都应该添加单独的manifest文件,以便更好地进行版本管理。接下来,让我向你介绍如何使用和开发这一模组。


使用指南:
1. 首先,请确保在你的Mods文件夹中安装了此前置模组。
2. 当你需要安装一个新的肖像模组时,记得不要将其放入Portraiture模组的文件夹中,而是应该为每个肖像模组创建独立的文件夹。如果这个肖像模组没有manifest.json文件你可以自己创建一个,类似下面这样。


```
{
"Name": "My Portrait Mod",
"Author": "Me",
"Version": "1.3",
"Description": "My Portraits",
"UniqueID": "My.Portraits",
"UpdateKeys": ["Nexus:00000"],
"ContentPackFor": {
"UniqueID": "Platonymous.Portraiture"
},
"Dependencies": [{
"UniqueID": "Platonymous.Portraiture",
"IsRequired": true
}]
}
```
3. 如果你是一个一名中国玩家,你可以使用小火星露谷管理器,来对肖像模组进行一键安装,不需要执行前面两个步骤。你只需要选择你想安装的肖像,管理器会帮助你安装好前置,以及写好manifest.json配置文件,并对肖像的更新进行管理。(该功能预计2024年7月20日上线)


开发者须知:
1. 如果你有意开发一个肖像模组,可以参照Portraiture模组作为起点。
2. 为了确保你的肖像模组能被SMAPI正确识别并进行更新,请务必为你的模组添加一个manifest.json文件。

GITHUB:
https://github.com/435201823/Stardew-Valley-Mods