🐛 Fix Markdown formatting
This commit is contained in:
parent
72dde4ac0b
commit
8f0014162f
1 changed files with 8 additions and 6 deletions
14
README.md
14
README.md
|
@ -1,10 +1,12 @@
|
||||||
|
# ssn-installer
|
||||||
|
|
||||||
`ssn-installer` is a command line application that can be used to extract a single file from the disk files (.z01, .z02 etc.). This tool is very low-level and assumes that you have already read the .zip file and know the location, size and decryption keys of the specific file you want to extract.
|
`ssn-installer` is a command line application that can be used to extract a single file from the disk files (.z01, .z02 etc.). This tool is very low-level and assumes that you have already read the .zip file and know the location, size and decryption keys of the specific file you want to extract.
|
||||||
|
|
||||||
If this is not a `-1to0` patch, the disk file may only contain the differences to the previous release. In this case, you can supply the location of this file's previous version, and this tool will generate the new version using VCDIFF/xdelta3.
|
If this is not a `-1to0` patch, the disk file may only contain the differences to the previous release. In this case, you can supply the location of this file's previous version, and this tool will generate the new version using VCDIFF/xdelta3.
|
||||||
|
|
||||||
If a target location is specified, the extracted file is saved to that location, otherwise it is written to stdout. From there, you can either dump it to disk or process it in memory.
|
If a target location is specified, the extracted file is saved to that location, otherwise it is written to stdout. From there, you can either dump it to disk or process it in memory.
|
||||||
|
|
||||||
# Installation
|
## Installation
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# Download repository
|
# Download repository
|
||||||
|
@ -15,7 +17,7 @@ cd ssn-installer
|
||||||
npm install
|
npm install
|
||||||
```
|
```
|
||||||
|
|
||||||
# Usage
|
## Usage
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# Download disk
|
# Download disk
|
||||||
|
@ -30,7 +32,7 @@ rm assets_swtor_main_-1to0.z08
|
||||||
|
|
||||||
For a description of the command line arguments, see [this file](src/errorAndExit.c).
|
For a description of the command line arguments, see [this file](src/errorAndExit.c).
|
||||||
|
|
||||||
# License
|
## License
|
||||||
|
|
||||||
Copyright (C) 2018 Jedipedia.net
|
Copyright (C) 2018 Jedipedia.net
|
||||||
|
|
||||||
|
@ -47,9 +49,9 @@ GNU Affero General Public License for more details.
|
||||||
You should have received a copy of the GNU Affero General Public License
|
You should have received a copy of the GNU Affero General Public License
|
||||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
# Dependencies
|
## Dependencies
|
||||||
|
|
||||||
## [Miniz](https://github.com/richgel999/miniz)
|
### [Miniz](https://github.com/richgel999/miniz)
|
||||||
|
|
||||||
Copyright 2013-2014 RAD Game Tools and Valve Software
|
Copyright 2013-2014 RAD Game Tools and Valve Software
|
||||||
|
|
||||||
|
@ -75,7 +77,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
THE SOFTWARE.
|
THE SOFTWARE.
|
||||||
|
|
||||||
## [Xdelta3](https://github.com/jmacd/xdelta)
|
### [Xdelta3](https://github.com/jmacd/xdelta)
|
||||||
|
|
||||||
Copyright 2016 Joshua MacDonald
|
Copyright 2016 Joshua MacDonald
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue