Updated manifest and improved mail dialogue scrape.
This commit is contained in:
parent
917e169cea
commit
704a15ad4d
|
@ -75,6 +75,9 @@ EndProject
|
|||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AdvancedSaveBackup", "AdvancedSaveBackup\AdvancedSaveBackup.csproj", "{12984468-2B79-4B3B-B045-EE917301DEE0}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Vocalization", "Vocalization\Vocalization\Vocalization.csproj", "{1651701C-DB36-43C7-B66D-2700171DD9A9}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{7B1E9A54-ED9E-47AA-BBAA-98A6E7CB527A} = {7B1E9A54-ED9E-47AA-BBAA-98A6E7CB527A}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
|
|
|
@ -3770,6 +3770,16 @@ namespace Vocalization
|
|||
splicedText = splicedText.Replace("\"", "");
|
||||
}
|
||||
|
||||
if (splicedText.Contains("+"))
|
||||
{
|
||||
splicedText = splicedText.Replace("+", "");
|
||||
}
|
||||
|
||||
if (splicedText.Contains("\n"))
|
||||
{
|
||||
splicedText = splicedText.Replace("\n", "");
|
||||
}
|
||||
|
||||
return splicedText;
|
||||
|
||||
}
|
||||
|
|
|
@ -7,5 +7,8 @@
|
|||
"EntryDll": "Vocalization.dll",
|
||||
"MinimumApiVersion": "2.0",
|
||||
"UpdateKeys": [],
|
||||
"Dependencies": [ "Omegasis.SimpleSoundManager" ]
|
||||
"Dependencies": [
|
||||
"Omegasis.SimpleSoundManager",
|
||||
"Omegasis.StardustCore"
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue