CompSciLauren / stardew-valley-daily-screenshot-mod

:honeybee: A Stardew Valley mod that automatically takes a screenshot of your entire farm at the start of each day
https://www.nexusmods.com/stardewvalley/mods/4779
MIT License
10 stars 9 forks source link

Add remaining config options to Generic Mod Config Menu #48

Closed CompSciLauren closed 10 months ago

CompSciLauren commented 3 years ago

Is your feature request related to a problem? Please describe. In #46 we added the Generic Mod Config Menu dependency. However, we have not added all the config options to it yet. This task is for adding the remaining config options to the Config Menu that can now be viewed in-game.

Describe the solution you'd like Add remaining config options to the Generic Mod Config Menu.

Default config.json file contents:

{
  "auditoryEffects": true,
  "visualEffects": true,
  "screenshotNotifications": true,
  "SnapshotRules": [
    {
      "Name": "Unnamed Rule 1",
      "ZoomLevel": 0.25,
      "Directory": "Default",
      "FileName": "Default",
      "Trigger": {
        "Days": "Daily",
        "Weather": "Any",
        "Location": "Farm",
        "Key": "None",
        "StartTime": 600,
        "EndTime": 2600
      }
    }
  ]
}

Current items in Config Menu in-game:

  "auditoryEffects": true,
  "visualEffects": true,
  "screenshotNotifications": true,

Items to add to Config Menu in-game:

  "SnapshotRules": [
    {
      "Name": "Unnamed Rule 1",
      "ZoomLevel": 0.25,
      "Directory": "Default",
      "FileName": "Default",
      "Trigger": {
        "Days": "Daily",
        "Weather": "Any",
        "Location": "Farm",
        "Key": "None",
        "StartTime": 600,
        "EndTime": 2600
      }
    }
  ]
CompSciLauren commented 11 months ago

Progress update:

This is being worked on branch DS-48.

CompSciLauren commented 10 months ago

This is now completed and has been added as part of the 3.0 release! See MR #56. Closing.