Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for Armored Core VI #1

Open
wants to merge 43 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
d76012c
Fix travis
mckunda Jun 17, 2020
4d73a30
Merge pull request #1 from mckunda/develop
mckunda Jun 17, 2020
30ab63a
Add Sekiro support
mckunda Jun 17, 2020
9f13318
Merge pull request #2 from mckunda/develop
mckunda Jun 17, 2020
e67f938
Extend travis support
mckunda Jun 17, 2020
84a1ed6
Fix travis
mckunda Jun 17, 2020
00856b8
Fix jdk version in travis
mckunda Jun 17, 2020
3e65080
Create maven-buil.yml
mckunda Jun 17, 2020
b87db3f
Rename maven-buil.yml to maven-build.yml
mckunda Jun 17, 2020
a617f73
Create maven-publish.yml
mckunda Jun 17, 2020
d00d774
Update maven-publish.yml
mckunda Jun 17, 2020
f4ecd0a
Create tagging.yml
mckunda Jun 17, 2020
bb48643
Update and rename maven-build.yml to maven-pr.yml
mckunda Jun 17, 2020
f1eec31
Update tagging.yml
mckunda Jun 17, 2020
fd8416f
Update tagging.yml
mckunda Jun 17, 2020
3714b25
Update tagging.yml
mckunda Jun 17, 2020
042f86a
Update tagging.yml
mckunda Jun 17, 2020
ba42d0e
Update tagging.yml
mckunda Jun 17, 2020
c27da0f
Update tagging.yml
mckunda Jun 17, 2020
51bd36c
Update tagging.yml
mckunda Jun 17, 2020
0cde0fe
Update version to v1.4.2
mckunda Jun 17, 2020
7cec0bf
Merge remote-tracking branch 'origin/master' into develop
mckunda Jun 17, 2020
bef846e
Remove travis
mckunda Jun 17, 2020
b1688df
Update maven-pr.yml
mckunda Jun 17, 2020
91ea782
Update maven-publish.yml
mckunda Jun 17, 2020
4febb39
Extend travis support
github-actions[bot] Jun 17, 2020
528c8df
Update readme
mckunda Jun 17, 2020
735fdbf
Update readme
github-actions[bot] Jun 17, 2020
e0b2f8a
Update tagging.yml
mckunda Jun 17, 2020
0de43a2
Fix actions
mckunda Jun 17, 2020
bb23414
Fix actions
mckunda Jun 17, 2020
6b2a5ea
Update maven-publish.yml
mckunda Jun 17, 2020
4a5d460
Update maven-publish.yml
mckunda Jun 17, 2020
9e3e92b
Update maven-publish.yml
mckunda Jun 17, 2020
d07f6c5
Update maven-publish.yml
mckunda Jun 17, 2020
a40f527
Fix deploy
mckunda Jun 17, 2020
256eb99
Fix icon
mckunda Jun 17, 2020
9b92bd8
Fix deploy
mckunda Jun 17, 2020
e5bc946
Update maven-publish.yml
mckunda Jun 17, 2020
6c0ea45
Add ELDEN RING
noxifoxi Dec 12, 2021
4827487
fix er
noxifoxi Dec 12, 2021
5cb4321
Elden Ring Seamless Co-op support
noxifoxi Nov 25, 2023
a058ab9
Add support for Armored Core VI
hashpling Dec 10, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions .github/workflows/maven-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven

name: Maven Pull Request build and merge

on:
pull_request:
branches: [ master ]

jobs:
build:
runs-on: windows-latest
steps:
- name: Configure git
run: "git config --global core.autocrlf false"
shell: bash
- uses: actions/checkout@v2
- name: Set up JDK 12
uses: actions/setup-java@v1
with:
java-version: 12
- name: Build with Maven
shell: bash
run: mvn -B package --file pom.xml
merge:
needs: build
name: Merge me!
runs-on: ubuntu-latest
steps:
- name: Merge me!
uses: ridedott/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.MEH }}
GITHUB_LOGIN: mckunda
MERGE_METHOD: MERGE

52 changes: 52 additions & 0 deletions .github/workflows/maven-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
# This workflow will build a package using Maven and then publish it to GitHub packages when a release is created
# For more information see: https://github.com/actions/setup-java#apache-maven-with-a-settings-path

name: Maven Package Release

on:
push:
tags:
- v*

jobs:
build:
runs-on: windows-latest
steps:
- name: Configure git
run: "git config --global core.autocrlf false"
shell: bash
- name: Checkout code
uses: actions/checkout@v2
- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
shell: bash
- name: Set up JDK 12
uses: actions/setup-java@v1
with:
java-version: 12
- name: Build with Maven
shell: bash
run: mvn -B package --file pom.xml
- name: Create Zip File
run: 7z a -tzip SaveOrganizer-${{ steps.get_version.outputs.VERSION }}.zip .\target\SaveOrganizer.exe
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.MEH }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false
- name: Upload Release Asset
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.MEH }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
asset_path: ./SaveOrganizer-${{ steps.get_version.outputs.VERSION }}.zip
asset_name: SaveOrganizer-${{ steps.get_version.outputs.VERSION }}.zip
asset_content_type: application/zip
48 changes: 48 additions & 0 deletions .github/workflows/tagging.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# This is a basic workflow to help you get started with Actions

name: Add tag

# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [ master ]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
tag:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2

# Runs a single command using the runners shell
- name: YAML/JSON/XML Converter Action
id: xml2json
uses: fabasoad/[email protected]
with:
# Path to the file
path: pom.xml
# Format of a file. Possible values: json, xml, yaml.
from: xml
# Format of a file as a result. Possible values: json, xml, yaml.
to: json

- name: Get JSON paths
id: jsondata
uses: gr2m/[email protected]
with:
# JSON string
json: ${{ steps.xml2json.outputs.data }}
version: "project._.version"

- name: Commit tagger
uses: tvdias/[email protected]
with:
# The GITHUB_TOKEN secret
repo-token: ${{ secrets.MEH }}
# Tag text
tag: v${{ steps.jsondata.outputs.version }}
9 changes: 0 additions & 9 deletions .travis.yml

This file was deleted.

11 changes: 4 additions & 7 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="src/com/speedsouls/organizer/resources/SpeedSoulsIcon.png"> SpeedSouls - Save Organizer

# <img src="https://github.com/Kahmul/SpeedSouls-Save-Organizer/blob/master/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 and Dark Souls III.
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
Loading