English: Sakura Gozen · Japanese: 桜御前 · DLsite: RJ01187104 https://www.dlsite.com/maniax/work/=/product_id/RJ01187104.html
Find a file
2025-02-03 17:34:28 -06:00
data Smol fixes 2025-02-03 17:34:28 -06:00
glossary bonus chapter, remaining terms, fixed development room text 2025-02-03 10:25:30 -06:00
img fixed incorrect number on shopkeeper 2025-01-31 17:16:04 -06:00
js bonus chapter, remaining terms, fixed development room text 2025-02-03 10:25:30 -06:00
.gitignore DEF Dango to DEX, TL a missed clone image 2025-01-23 13:49:04 -06:00
GameUpdate.bat Initial Commit 2025-01-14 14:06:54 -06:00
GameUpdate_linux.sh Initial Commit 2025-01-14 14:06:54 -06:00
icudtl.dat Initial Commit 2025-01-14 14:06:54 -06:00
package.json Initial Commit 2025-01-14 14:06:54 -06:00
patch-config.txt Update config 2025-01-16 16:37:50 -06:00
patch.bat Initial Commit 2025-01-14 14:06:54 -06:00
patch.sh Initial Commit 2025-01-14 14:06:54 -06:00
README.md Initial Commit 2025-01-14 14:06:54 -06:00

Apply Patch

  1. Click Code
  2. Click Download ZIP
  3. Extract to game folder and Replace All.

Future Patching

  1. Run GAMEUPDATE.bat to auto patch.

Troubleshooting

GAMEUPDATE.bat doesn't update and closes immediately

  1. Make sure your path doesn't contain any Japanese characters or lots of whitespace.
  2. Make sure you actually have permissions in the folder

Edit/Contribute

TLDR 3 steps.

Fork the repository.
Make the changes.
Submit a merge request.

If everything looks good and doesn't break things I'll merge it in.

Longer Version:

Required Software:

  • VSCode Make sure you check all the boxes for context menus.
  • Git (Use the default for everything. Just keep clicking Next)

Guide to contributing

1. Fork the Repository

  • Go to the repository you want to fork.
  • Click the "Fork" button.

2. Clone Your Fork

  • Clone your forked repository to your local machine.
    git clone https://gitgud.io/YOUR_USERNAME/REPO_NAME.git
    

3. Make Your Changes (In VSCode)

  • Edit the files locally on your new branch using VSCode.
  • Add and commit your changes.
    git add .
    git commit -m "Description of your changes"
    

4. Push Your Changes

  • Push your changes to your fork on GitGud.io.
    git push origin your-feature-branch
    

5. Create a Merge Request

  • Go to your fork on GitGud.io.
  • Click on "Merge Requests" in the sidebar.
  • Click the "New merge request" button.
  • Select the branch you made changes to and the target project (the original repo).
  • Provide a title and description for your merge request and submit it.

Example

Assuming you want to fork a repository named example-project:

1. Fork the Repo

  • Navigate to https://gitgud.io/original_user/example-project and click "Fork".

2. Clone Your Fork

```sh
git clone https://gitgud.io/YOUR_USERNAME/example-project.git
```

3. Make Changes and Commit

```sh
# Make changes to the files
git add .
git commit -m "Add new feature to example project"
```

4. Push Changes

```sh
git push origin add-new-feature
```

5. Create a Merge Request

  • Go to https://gitgud.io/YOUR_USERNAME/example-project/merge_requests and click on "New merge request".
  • Choose the source branch add-new-feature and target branch (default: main or master).
  • Fill in the details and submit the merge request.