The compiler fucked itself

This commit is contained in:
Downforce Agent 2024-10-07 16:21:39 -05:00
parent b5c9928827
commit 7195f1ae8b
5 changed files with 46 additions and 14 deletions

View File

@ -5,7 +5,7 @@
<element id="directory" name="META-INF">
<element id="file-copy" path="$PROJECT_DIR$/META-INF/MANIFEST.MF" />
</element>
<element id="module-output" name="vitality4j" />
<element id="module-output" name="net.screwgravity.vitality4j" />
</root>
</artifact>
</component>

View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

View File

@ -9,11 +9,10 @@
<option name="autoReloadType" value="SELECTIVE" />
</component>
<component name="ChangeListManager">
<list default="true" id="cf74c012-cc69-4732-ac79-9ddfcbf803ee" name="Changes" comment="shut up">
<list default="true" id="cf74c012-cc69-4732-ac79-9ddfcbf803ee" name="Changes" comment="start i/o logic, CLI is partial atm">
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/net/screwgravity/vitality4j/June.java" beforeDir="false" afterPath="$PROJECT_DIR$/net/screwgravity/vitality4j/tools.java" afterDir="false" />
<change beforePath="$PROJECT_DIR$/net/screwgravity/vitality4j/Scotty.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/net/screwgravity/vitality4j/standalone.java" beforeDir="false" afterPath="$PROJECT_DIR$/net/screwgravity/vitality4j/standalone.java" afterDir="false" />
<change beforePath="$PROJECT_DIR$/net/screwgravity/vitality4j/standalone.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/net/screwgravity/vitality4j/standalone.java" afterDir="false" />
<change beforePath="$PROJECT_DIR$/net/screwgravity/vitality4j/tools.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/net/screwgravity/vitality4j/tools.java" afterDir="false" />
</list>
<option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" />
@ -46,9 +45,10 @@
"RunOnceActivity.ShowReadmeOnStart": "true",
"git-widget-placeholder": "master",
"kotlin-language-version-configured": "true",
"project.structure.last.edited": "Artifacts",
"project.structure.last.edited": "Modules",
"project.structure.proportion": "0.15",
"project.structure.side.proportion": "0.2"
"project.structure.side.proportion": "0.2",
"settings.editor.selected.configurable": "preferences.lookFeel"
}
}]]></component>
<component name="RecentsManager">
@ -59,9 +59,21 @@
<component name="RunManager">
<configuration name="Default CLI" type="Application" factoryName="Application">
<option name="ALTERNATIVE_JRE_PATH" value="17" />
<option name="ALTERNATIVE_JRE_PATH_ENABLED" value="true" />
<option name="MAIN_CLASS_NAME" value="net.screwgravity.vitality4j.standalone" />
<module name="vitality4j" />
<module name="net.screwgravity.vitality4j" />
<method v="2">
<option name="Make" enabled="true" />
</method>
</configuration>
<configuration default="true" type="JetRunConfigurationType">
<module name="net.screwgravity.vitality4j" />
<method v="2">
<option name="Make" enabled="true" />
</method>
</configuration>
<configuration default="true" type="KotlinStandaloneScriptRunConfigurationType">
<module name="net.screwgravity.vitality4j" />
<option name="filePath" />
<method v="2">
<option name="Make" enabled="true" />
</method>
@ -140,7 +152,15 @@
<option name="project" value="LOCAL" />
<updated>1723524380202</updated>
</task>
<option name="localTasksCounter" value="9" />
<task id="LOCAL-00009" summary="start i/o logic, CLI is partial atm">
<option name="closed" value="true" />
<created>1723527352761</created>
<option name="number" value="00009" />
<option name="presentableId" value="LOCAL-00009" />
<option name="project" value="LOCAL" />
<updated>1723527352761</updated>
</task>
<option name="localTasksCounter" value="10" />
<servers />
</component>
<component name="VcsManagerConfiguration">
@ -152,6 +172,7 @@
<MESSAGE value="back from taco hell" />
<MESSAGE value="cli args handling WIP" />
<MESSAGE value="shut up" />
<option name="LAST_COMMIT_MESSAGE" value="shut up" />
<MESSAGE value="start i/o logic, CLI is partial atm" />
<option name="LAST_COMMIT_MESSAGE" value="start i/o logic, CLI is partial atm" />
</component>
</project>

View File

@ -221,9 +221,9 @@ public class standalone {
"Creating a new PSARC:\n" +
" -b <size> Sets the blocksize in bytes when creating a new archive. (default = 64 KB)\n" +
" -g <none|zlib|lzma> Sets the compression algorithm used. (default = zlib)\n" +
" -u Makes the PSARC uncompressed. Shorthand for \"-a none\".\n" +
" -z Compresses the PSARC with zlib. Shorthand for \"-a zlib\".\n" +
" -l Compresses the PSARC with LZMA. Shorthand for \"-a lzma\".\n" +
" -u Makes the PSARC uncompressed. Shorthand for \"-g none\".\n" +
" -z Compresses the PSARC with zlib. Shorthand for \"-g zlib\".\n" +
" -l Compresses the PSARC with LZMA. Shorthand for \"-g lzma\".\n" +
" -s <strength> Sets the intensity of the compression from 0 to 9. (default = 9)\n" +
" -r Makes all paths in the PSARC relative. (Default)\n" +
" -a Makes all paths in the PSARC absolute. Required for WipEout, Ratchet and Clank, God of War...\n" +