Skip to content

Commit

Permalink
Elden Ring Seamless Co-op support
Browse files Browse the repository at this point in the history
  • Loading branch information
noxifoxi committed Nov 25, 2023
1 parent 4827487 commit 5cb4321
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 13 deletions.
9 changes: 3 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
[![Build Status](https://travis-ci.org/Kahmul/SpeedSouls-Save-Organizer.svg?branch=master)](https://travis-ci.org/Kahmul/SpeedSouls-Save-Organizer)
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/0f60ad59931c4b6e9dc237286a386e36)](https://www.codacy.com/app/kahmul78/SpeedSouls-Save-Organizer?utm_source=github.com&utm_medium=referral&utm_content=Kahmul/SpeedSouls-Save-Organizer&utm_campaign=Badge_Grade)

# <img src="https://github.com/Kahmul/SpeedSouls-Save-Organizer/blob/master/src/com/speedsouls/organizer/resources/SpeedSoulsIcon.png"/> SpeedSouls - Save Organizer
# <img src="src/com/speedsouls/organizer/resources/SpeedSoulsIcon.png"> SpeedSouls - Save Organizer

The SpeedSouls - Save Organizer is a tool designed to manage savefiles for Dark Souls, Dark Souls II, Dark Souls II: Scholar of the First Sin, Dark Souls III and Sekiro: Shadows Die Twice.

## Functionality

<p align="center">
<img src="https://github.com/Kahmul/SpeedSouls-Save-Organizer/blob/master/docs/images/SaveOrganizerFeatures.png"/>
<img src="docs/images/SaveOrganizerFeatures.png">
</p>

**1.** Choose your game.
Expand All @@ -35,7 +32,7 @@ The SpeedSouls - Save Organizer is a tool designed to manage savefiles for Dark

## Download

[Latest Release](https://github.com/Kahmul/SpeedSouls-Save-Organizer/releases)
[Latest Release](https://github.com/noxifoxi/SpeedSouls-Save-Organizer/releases)


## Getting Started
Expand Down
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>SpeedSouls</groupId>
<artifactId>SaveOrganizer</artifactId>
<version>1.4.2</version>
<version>1.4.4</version>

<dependencies>
<dependency>
Expand Down Expand Up @@ -113,12 +113,12 @@
<minVersion>1.8</minVersion>
</jre>
<versionInfo>
<fileVersion>1.4.2.0</fileVersion>
<txtFileVersion>1.4.2.0</txtFileVersion>
<fileVersion>1.4.4.0</fileVersion>
<txtFileVersion>1.4.4.0</txtFileVersion>
<fileDescription>${project.name}</fileDescription>
<copyright>N/A</copyright>
<productVersion>1.4.2.0</productVersion>
<txtProductVersion>1.4.2.0</txtProductVersion>
<productVersion>1.4.4.0</productVersion>
<txtProductVersion>1.4.4.0</txtProductVersion>
<productName>${project.name}</productName>
<internalName>${project.name}</internalName>
<originalFilename>${project.name}.exe</originalFilename>
Expand Down
2 changes: 1 addition & 1 deletion src/com/speedsouls/organizer/data/OrganizerManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
public class OrganizerManager
{

public static final String VERSION = "1.4.2";
public static final String VERSION = "1.4.4";

/**
* Constants defining various URLs.
Expand Down
3 changes: 2 additions & 1 deletion src/com/speedsouls/organizer/games/Game.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ public enum Game
DARK_SOULS_II_SOTFS("Dark Souls II: SotFS", "DS2SOTFS", "DS2SOFS0000.sl2"),
DARK_SOULS_III("Dark Souls III", "DS3", "DS30000.sl2"),
SEKIRO_SHADOWS_DIE_TWICE("Sekiro: Shadows Die Twice", "SSDT", "S0000.sl2"),
ELDEN_RING("ELDEN RING", "ER", "ER0000.sl2");
ELDEN_RING("ELDEN RING", "ER", "ER0000.sl2"),
ELDEN_RING_CO("ELDEN RING Seamless Co-op", "ER", "ER0000.co2");

private String caption;
private String abbr;
Expand Down

0 comments on commit 5cb4321

Please sign in to comment.