Compare commits

...

6 commits

Author SHA1 Message Date
TheMitoSan 9320fdf6fc
Update README.md 2024-04-12 17:03:35 -03:00
themitosan 6344e02458 Readme: Reorganize some stuff, Linux: misc. changes on installer 2024-04-12 16:53:57 -03:00
themitosan bd1903656f Linux: reset .gitkeep file 2024-04-12 16:39:37 -03:00
themitosan 1b35fbd15b Linux: small hotfix 2024-04-12 16:37:51 -03:00
themitosan 722a1a204a Linux: fix install.sh 2024-04-12 16:32:15 -03:00
themitosan 3b20d34062 Linux: Add install script 2024-04-12 15:33:13 -03:00
6 changed files with 89 additions and 12 deletions

View file

@ -3,7 +3,7 @@
fpPS4 Temmie's Launcher
</h1>
Created by TheMitoSan _(Previously known as TemmieHeartz)_, This is a simple launcher created for [fpPS4](https://github.com/red-prig/fpPS4) compatibility layer.
Created by [TheMitoSan](https://github.com/themitosan) <sup>_(Previously known as **Temmie**Heartz)_</sup>, This is a simple launcher created for [fpPS4](https://github.com/red-prig/fpPS4) compatibility layer.
<p align="center">
<img src="App/img/banner.jpg" width="750">
@ -17,21 +17,14 @@ Created by TheMitoSan _(Previously known as TemmieHeartz)_, This is a simple lau
- Download latest release _(you can get it [here](https://github.com/themitosan/fpPS4-Temmie-s-Launcher/releases))_
- Extract all files on your desired location
- Run `Launcher.exe`
- Run `launcher.exe`
#### Latest Features (recommended)
- [Download / Clone this repo](https://github.com/themitosan/fpPS4-Temmie-s-Launcher/archive/refs/heads/main.zip)
- Download [nw.js](https://dl.nwjs.io/v0.70.1/nwjs-sdk-v0.70.1-win-x64.zip) version `0.70.1`
- Extract all files from `nw` on `Nwjs` folder
- Run `Launcher.bat`
If you want to update launcher and have `git` installed, run these commands below:
```
git reset --hard
git pull origin main
```
- Run `launcher.bat`
### Linux [WIP]
@ -39,11 +32,30 @@ git pull origin main
[Click here to know how to install Wine](https://wiki.winehq.org/Download)
### Simple Method
- [Download / Clone this repo](https://github.com/themitosan/fpPS4-Temmie-s-Launcher/archive/refs/heads/main.zip)
- To run installer script, run `chmod +x install.sh && ./install.sh`
### Manual Installation
- [Download / Clone this repo](https://github.com/themitosan/fpPS4-Temmie-s-Launcher/archive/refs/heads/main.zip)
- Download [nw.js](https://dl.nwjs.io/v0.70.1/nwjs-sdk-v0.70.1-linux-x64.tar.gz) version `0.70.1`
- Extract all files from `nw` on `Nwjs` folder
- Open terminal on main project path and run `chmod +x ./Launcher.sh`
- To start, run `./Launcher.sh`
- Open terminal on main project path and run `chmod +x ./launcher.sh`
In order to start, run `./launcher.sh`
### General Tips
- You can add `launcher.sh` as a *non-steam game* in your **Steam**!
- You can hide a specific title to show on list by appending `!` before folder name _(Example: `!Apollo Save Tool`)_
- If you want to update launcher and have `git` installed, run these commands below:
```
git reset --hard
git pull origin main
```
### How to import your dumps
You can see all required procedures on main [fpPS4 discord server](https://discord.gg/up9qatpX7M).

65
install.sh Executable file
View file

@ -0,0 +1,65 @@
clear
echo
echo " #===========================================================#"
echo
echo " fpPS4 Temmie's Launcher - Install Script"
echo " Written by @themitosan"
echo
echo " IMPORTANT: This script requires internet connection and"
echo " curl / tar packages installed to work!"
echo
echo " #===========================================================#"
echo
echo "=== Removing previous files"
rm nwjs.tar.gz
rm -rf nwjs-sdk-v0.86.0-linux-x64
echo Done!
echo
echo "=== Downloading nwjs"
curl https://dl.nwjs.io/v0.86.0/nwjs-sdk-v0.86.0-linux-x64.tar.gz -o nwjs.tar.gz
echo Done!
echo
echo "=== Extracting nwjs"
tar -xvzf nwjs.tar.gz
echo Done!
echo
echo "=== Prepare nwjs folder"
cd Nwjs
rm -rf *
echo "" > .gitkeep
cd ..
echo Done!
echo
echo "=== Moving files"
mv -f nwjs-sdk-v0.86.0-linux-x64/* Nwjs/
echo Done!
echo
echo "=== Removing leftover files"
rm nwjs.tar.gz
rm -rf nwjs-sdk-v0.86.0-linux-x64
echo Done!
echo
echo "=== Updating permissions for running / updating launcher (chmod)"
chmod +x launcher.sh
chmod +x update.sh
chmod +x Nwjs/nw
echo Done!
echo
echo "==== Process Complete! ===="
echo '---> In order to start Launcher, run "./launcher.sh"'
echo '---> To update, run "./update.sh"'
echo
echo 'TIP: You can add "launcher.sh" as a non-steam game on your Steam!'
echo
echo Also - You will need wine to run fpPS4 on non-windows systems!
echo The installation process may change depending of which distro you are running.
echo
read -p "Press [ENTER] to exit"

0
Update.sh → update.sh Normal file → Executable file
View file