Updated version.cpp to say 1.11.

Hack to allow loading files with mixed V4 and V4+ style sections.

Originally committed to SVN as r526.
This commit is contained in:
Niels Martin Hansen 2006-08-24 00:38:49 +00:00
parent da0da02ac0
commit 4b8d7b4dc8
2 changed files with 13 additions and 5 deletions

View File

@ -67,13 +67,21 @@ void ASSSubtitleFormat::ReadFile(wxString filename,wxString encoding) {
wxbuffer = file.ReadLineFromFile();
// Convert v4 styles to v4+ styles
// Ugly hacks to allow intermixed v4 and v4+ style sections
if (wxbuffer.Lower() == _T("[v4 styles]")) {
wxbuffer = _T("[V4+ Styles]");
}
// Set group
if (wxbuffer[0] == _T('[')) {
curgroup = wxbuffer;
IsSSA = true;
}
else if (wxbuffer.Lower() == _T("[v4+ styles]")) {
curgroup = wxbuffer;
IsSSA = false;
}
// Not-so-special case for other groups, just set it
else if (wxbuffer[0] == _T('[')) {
curgroup = wxbuffer;
// default from extension in all other sections
IsSSA = filename.Right(4).Lower() == _T(".ssa");
}
// Add line

View File

@ -78,7 +78,7 @@ struct VersionInfoStruct {
wxString SCMStr, VersionStr;
// Update this whenever a new version is release
VersionNumber = _T("v1.10");
VersionNumber = _T("v1.11");
#ifdef _DEBUG
IsDebug = true;
#else