Added LF to CR-LF conversion, and warnings
This commit is contained in:
parent
5f289a0bef
commit
9b34c5119f
5 changed files with 126 additions and 32 deletions
|
@ -1,13 +1,17 @@
|
|||
Changelog
|
||||
|
||||
???:
|
||||
- Added LF to CR-LF conversion for *.xml.append, *.xml, and *.txt
|
||||
- Added a Validate warning for text files with LF line endings
|
||||
|
||||
1.0:
|
||||
- Changed mod list to a table with checkboxes
|
||||
- Instead of extracting to temp, mod data is transferred directly into dats
|
||||
- Added a GUI progress bar during patching
|
||||
- Added a Validate warning for paths with non-ASCII chars
|
||||
- Added support for windows-1252 ANSI and UTF-16 text in mods
|
||||
|
||||
Changes shared with Grognaks Mod Manager 1.8:
|
||||
- Added support for windows-1252 ANSI and UTF-16 text in mods
|
||||
- Added periodic updates to the catalog of mod metadata
|
||||
- Added ini setting: update_catalog
|
||||
- Added a log warning during patching if a mod gets clobbered
|
||||
|
|
|
@ -30,17 +30,22 @@ The Append Extension
|
|||
to your pleasure by writing an event of the same name. Whenever multiple
|
||||
tags share the same name, only the last one counts.
|
||||
|
||||
When you're not overriding something, try to use unique names, so that
|
||||
it won't clobber another mod and vice versa.
|
||||
|
||||
|
||||
General
|
||||
|
||||
When developing a mod, save your text files as ANSI/ASCII, or UTF-8.
|
||||
UTF-16 is tolerated. If all else fails, Slipstream will try decoding
|
||||
text as Windows-1252 ANSI.
|
||||
Slipstream will tolerate UTF-16 and Windows-1252 ANSI.
|
||||
|
||||
Unless you're overriding something, try to use unique names in your xml
|
||||
so that it won't clobber another mod and vice versa. File and directory
|
||||
names must be plain ASCII (no accents). That restriction isn't confirmed
|
||||
for the game, but the mod manager enforces it just to be safe.
|
||||
Dos style (CR-LF) line endings are preferred. The game only partially
|
||||
accepts the unix style (LF): fine for xml, crashing for layout.txt.
|
||||
Slipstream will convert both to CR-LF as it patches.
|
||||
|
||||
File and directory names must be plain ASCII (no accents). That
|
||||
restriction isn't confirmed for the game, but the mod manager enforces
|
||||
it just to be safe.
|
||||
|
||||
Images should be 32bit PNGs (24bit color + 8bit alpha transparency).
|
||||
Things that *should* be opaque rectangles like backgrounds may vary,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue