A community-maintained documentation project for the Summertime Saga Save Compatibility Checker.
This repository contains the compatibility rules, structured datasets, and supporting documentation used by the Save Compatibility Checker available on SummersagaHub. Its purpose is to help players understand whether updating between supported game versions may affect their existing save files.
The repository is intended to be transparent, easy to maintain, and simple to extend as new game versions become available.
Note: SummersagaHub is an independent informational website and is not affiliated with or endorsed by the developers of Summertime Saga.
Project Website
https://summersagahub.com/summertime-saga-save-compatibility-checker/
- Save compatibility reference
- Official release compatibility guidance
- Supported mod compatibility guidance
- Windows compatibility notes
- macOS compatibility notes
- Android compatibility notes
- Structured JSON datasets
- Version comparison reference
- Expandable compatibility database
- Documentation explaining compatibility decisions
Compatibility guidance is currently available for:
- Windows
- macOS
- Android
This repository includes:
- Compatibility documentation
- Version metadata
- Compatibility rules
- Structured JSON datasets
- Example compatibility results
- Contribution guidelines
This repository does not modify, repair, migrate, or analyze save files directly. It documents known compatibility behavior between supported game versions.
Each version comparison returns one of the following outcomes.
| Status | Description |
|---|---|
| Fully Compatible | Saves are generally expected to continue working between the selected versions. |
| Partially Compatible | Saves may work, but additional precautions or testing are recommended. |
| New Game Required | Existing saves are not recommended for the selected update path. |
| Unsupported Version | There is not enough documented information to determine compatibility. |
Compatibility guidance is based on documented version changes and publicly available information about game updates.
| Current Version | Target Version | Result |
|---|---|---|
| 0.20.16 | 0.20.17 | Fully Compatible |
| 0.20.15 | 0.20.17 | Partially Compatible |
| 0.19.x | 0.20.17 | New Game Required |
| Unknown Mod | Official Release | Unsupported Version |
save-compatibility-tool/
├── README.md
├── LICENSE
├── CHANGELOG.md
├── CONTRIBUTING.md
├── CODE_OF_CONDUCT.md
├── SECURITY.md
│
├── docs/
│ ├── installation.md
│ ├── compatibility-rules.md
│ ├── version-history.md
│ └── faq.md
│
├── data/
│ ├── compatibility.json
│ ├── versions.json
│ └── platforms.json
│
├── examples/
│ └── sample-results.json
│
├── images/
│ ├── screenshot.png
│ ├── compatibility-example.png
│ └── mobile-layout.png
│
├── src/
│
└── .github/
├── ISSUE_TEMPLATE.md
└── PULL_REQUEST_TEMPLATE.md
The Save Compatibility Checker compares:
- Your current game version
- The version you plan to update to
- Known compatibility information between those versions
Some updates only introduce additional content and remain compatible with existing saves. Others modify story progression, internal variables, or game logic in ways that may affect older saves.
Because save behavior can vary depending on update history, installation method, and mod usage, compatibility guidance should be treated as a reference rather than a guarantee.
Creating a backup before updating is always recommended.
Compatibility information is stored as structured JSON for readability and future maintenance.
Example:
{
"currentVersion": "0.20.16",
"targetVersion": "0.20.17",
"status": "Fully Compatible",
"reason": "No documented compatibility issues between these versions."
}Additional documentation is available in the docs directory.
- Installation Guide
- Compatibility Rules
- Version History
- Frequently Asked Questions
Place screenshots inside the images/ directory.
Recommended files:
| File | Description |
|---|---|
| screenshot.png | Main Save Compatibility Checker interface |
| compatibility-example.png | Example compatibility result |
| mobile-layout.png | Mobile view of the checker |
Future improvements may include:
- Additional version coverage
- Expanded compatibility datasets
- Improved platform documentation
- Historical compatibility records
- Community-reviewed compatibility updates
Community contributions are welcome.
You can help by:
- Documenting newly released versions
- Improving compatibility information
- Correcting documentation
- Reporting issues
- Submitting pull requests
Please read CONTRIBUTING.md before opening a pull request.
- SummersagaHub Homepage
- Save Compatibility Checker
- Version History
- Installation Guide
- iOS Support Guide
This repository is maintained by SummersagaHub as an informational resource for the community.
It is not affiliated with, endorsed by, or maintained by the developers or publishers of Summertime Saga.
Compatibility guidance is provided for reference only. Save behavior may vary depending on game version, installation method, and mod configuration. Always create a backup of your save files before updating.
This project is released under the MIT License.
See the LICENSE file for details.