Compare commits
4 Commits
b9743ee456
...
beta-1
| Author | SHA1 | Date | |
|---|---|---|---|
| 886ef3089d | |||
| 28d710a815 | |||
| a1f41584a4 | |||
| e2229afe70 |
10
README.md
10
README.md
@@ -2,14 +2,16 @@
|
|||||||
|
|
||||||
Firestar is a mod manager for WipEout 2048 which automatically handles sorting mods by priority and repacking game assets based on selected add-on packs. It runs on a desktop/laptop computer and aims to allow easy installation of mods for users who have only a surface level understanding of hacking the PSVita.
|
Firestar is a mod manager for WipEout 2048 which automatically handles sorting mods by priority and repacking game assets based on selected add-on packs. It runs on a desktop/laptop computer and aims to allow easy installation of mods for users who have only a surface level understanding of hacking the PSVita.
|
||||||
|
|
||||||
# about 75% complete (config I/O in progress, basic systems functional)
|
# about 85% complete
|
||||||
**What works:**
|
**What works:**
|
||||||
- Repacking mods
|
- Importing mods
|
||||||
|
- Repacking (installing) mods
|
||||||
|
- config loading
|
||||||
- Cross-platform support
|
- Cross-platform support
|
||||||
|
|
||||||
**What doesn't work yet:**
|
**What doesn't work yet:**
|
||||||
- config loading
|
- managing mods within the program (delete, change priority, toggle)
|
||||||
- managing mods within the program
|
- settings screen
|
||||||
- misc. tools (pack creator, soundtrack mod generator...)
|
- misc. tools (pack creator, soundtrack mod generator...)
|
||||||
|
|
||||||

|

|
||||||
|
|||||||
@@ -25,7 +25,7 @@ import javax.swing.JOptionPane;
|
|||||||
|
|
||||||
public class Main {
|
public class Main {
|
||||||
// Build Information
|
// Build Information
|
||||||
public static final String vstr = "PREALPHA";
|
public static final String vstr = "Beta 1";
|
||||||
public static final String vcode = "Natasha";
|
public static final String vcode = "Natasha";
|
||||||
public static final int vint = 0;
|
public static final int vint = 0;
|
||||||
|
|
||||||
|
|||||||
@@ -47,12 +47,13 @@ public class Rowlf {
|
|||||||
picLabel.setIcon(new ImageIcon(logo));picLabel.setText("");
|
picLabel.setIcon(new ImageIcon(logo));picLabel.setText("");
|
||||||
|
|
||||||
informationText.getDocument().putProperty("filterNewlines", Boolean.FALSE);
|
informationText.getDocument().putProperty("filterNewlines", Boolean.FALSE);
|
||||||
informationText.setText("Created by bonkmaykr\n" +
|
informationText.setHorizontalAlignment(JTextField.CENTER);
|
||||||
"a.k.a. \"Downforce Agent\"\n" +
|
informationText.setText("Created by bonkmaykr, a.k.a. \"Downforce Agent\"\n" +
|
||||||
"\n" +
|
"\n" +
|
||||||
"Special thanks to:\n" +
|
"Special thanks to:\n" +
|
||||||
"ThatOneBonk, for almost beating me to it\n" +
|
"ThatOneBonk, for Thallium and for modding help\n" +
|
||||||
"Wirlaburla, for web hosting and code help\n" +
|
"Wirlaburla, for web hosting and being awesome\n" +
|
||||||
|
"Psygnosis, for making our favorite game ever\n" +
|
||||||
"and to all the PSVita hackers who made this possible");
|
"and to all the PSVita hackers who made this possible");
|
||||||
informationText.setHighlighter(null);
|
informationText.setHighlighter(null);
|
||||||
informationText.getCaret().setVisible(false);
|
informationText.getCaret().setVisible(false);
|
||||||
|
|||||||
Reference in New Issue
Block a user