From 159211140813ebbfa855a86d0d04cca45370436a Mon Sep 17 00:00:00 2001 From: Jake <505e06b2@gmail.com> Date: Sat, 19 Feb 2022 13:26:06 +0000 Subject: [PATCH 1/3] Spruce up readme --- README.md | 24 ++++++++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 2c684be..654a9ae 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,23 @@ # UnionPatcher -A tool for LittleBigPlanet that patches the server urls to a custom url. +A commandline tool that will take the official EBOOT of a LittleBIGPlanet title and replace the server URLs with the ones specified -# Downloading -You can download UnionPatcher by going [here](https://github.com/LBPUnion/UnionPatcher/actions), clicking the top link, and choosing a download for your platform at the bottom. -Mac will have to be self-compiled for now, but it does work. +## Prerequisites +* For running the console application, you will need the [.NET 6 Runtime](https://dotnet.microsoft.com/en-us/download/dotnet/6.0/runtime?utm_source=getdotnetcore&utm_medium=referral) +* You will need to know the server URL you wish to use +* Basic commandline knowledge + +## Getting the latest build +Access the [CI builds for UnionPatcher](https://github.com/LBPUnion/UnionPatcher/actions), then, in the "workflow runs" grid, select the first in the list with a green check mark (✔️). Scroll to the bottom of this build and find the correct zip for your platform + +## Building manually (Required for MacOS) +You will need the [.NET 6 SDK](https://dotnet.microsoft.com/en-us/download/dotnet/6.0) + +```bash +git clone https://github.com/LBPUnion/UnionPatcher +cd UnionPatcher +dotnet build UnionPatcher.sln +#Running +cd UnionPatcher/bin/Debug/net6.0/ +./LBPUnion.UnionPatcher +``` From 402e02b2c56db5c334cf4cfb6810a264f818ddae Mon Sep 17 00:00:00 2001 From: Jake <505e06b2@gmail.com> Date: Sat, 19 Feb 2022 13:27:21 +0000 Subject: [PATCH 2/3] Better formatting of download instructions --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 654a9ae..ec9e252 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,9 @@ A commandline tool that will take the official EBOOT of a LittleBIGPlanet title * Basic commandline knowledge ## Getting the latest build -Access the [CI builds for UnionPatcher](https://github.com/LBPUnion/UnionPatcher/actions), then, in the "workflow runs" grid, select the first in the list with a green check mark (✔️). Scroll to the bottom of this build and find the correct zip for your platform +1. Access the [CI builds for UnionPatcher](https://github.com/LBPUnion/UnionPatcher/actions) +2. In the "workflow runs" grid, select the first in the list with a green check mark (✔️) +3. Scroll to the bottom of this build and find the correct zip for your platform ## Building manually (Required for MacOS) You will need the [.NET 6 SDK](https://dotnet.microsoft.com/en-us/download/dotnet/6.0) From 57374ad8b32e43f8781d2fb20896cb0471c40bc9 Mon Sep 17 00:00:00 2001 From: Jake <505e06b2@gmail.com> Date: Sat, 19 Feb 2022 19:52:37 +0000 Subject: [PATCH 3/3] Removed commandline references --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index ec9e252..247e60a 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,10 @@ # UnionPatcher -A commandline tool that will take the official EBOOT of a LittleBIGPlanet title and replace the server URLs with the ones specified +A tool that will take the official EBOOT of a LittleBIGPlanet title and replace the server URLs with a custom one ## Prerequisites * For running the console application, you will need the [.NET 6 Runtime](https://dotnet.microsoft.com/en-us/download/dotnet/6.0/runtime?utm_source=getdotnetcore&utm_medium=referral) * You will need to know the server URL you wish to use -* Basic commandline knowledge ## Getting the latest build 1. Access the [CI builds for UnionPatcher](https://github.com/LBPUnion/UnionPatcher/actions)