Skip to content

Commit

Permalink
Release 0.18.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ngld committed Apr 12, 2022
1 parent de88de8 commit f1a7e21
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion HtmlRenderer/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@
// すべての値を指定するか、下のように '*' を使ってビルドおよびリビジョン番号を
// 既定値にすることができます:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.18.0.0")]
[assembly: AssemblyVersion("0.18.1.0")]
2 changes: 1 addition & 1 deletion OverlayPlugin.Common/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@
// すべての値を指定するか、下のように '*' を使ってビルドおよびリビジョン番号を
// 既定値にすることができます:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.18.0.0")]
[assembly: AssemblyVersion("0.18.1.0")]
20 changes: 10 additions & 10 deletions OverlayPlugin.Core/EventSources/MiniParseEventSource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@ private List<KeyValuePair<CombatantData, Dictionary<string, string>>> GetCombata
stopwatch.Start();
#endif

var varStopwatch = new Stopwatch();
//var varStopwatch = new Stopwatch();

var combatantList = new List<KeyValuePair<CombatantData, Dictionary<string, string>>>();
Parallel.ForEach(allies, (ally) =>
Expand All @@ -746,8 +746,8 @@ private List<KeyValuePair<CombatantData, Dictionary<string, string>>> GetCombata
{
try
{
varStopwatch.Reset();
varStopwatch.Start();
/*varStopwatch.Reset();
varStopwatch.Start();*/
// NAME タグには {NAME:8} のようにコロンで区切られたエクストラ情報が必要で、
// プラグインの仕組み的に対応することができないので除外する
Expand All @@ -767,14 +767,14 @@ private List<KeyValuePair<CombatantData, Dictionary<string, string>>> GetCombata
if (!ally.Items[CombatantData.DamageTypeDataOutgoingDamage].Items.ContainsKey("All"))
{
valueDict.Add(exportValuePair.Key, "");
Log(LogLevel.Debug, $"Combatant: {exportValuePair.Key}: {varStopwatch.ElapsedMilliseconds}ms");
//Log(LogLevel.Debug, $"Combatant: {exportValuePair.Key}: {varStopwatch.ElapsedMilliseconds}ms");
continue;
}
}
var value = exportValuePair.Value.GetExportString(ally, "");
valueDict.Add(exportValuePair.Key, value);
Log(LogLevel.Debug, $"Combatant: {exportValuePair.Key}: {varStopwatch.ElapsedMilliseconds}ms");
// Log(LogLevel.Debug, $"Combatant: {exportValuePair.Key}: {varStopwatch.ElapsedMilliseconds}ms");
}
catch (Exception e)
{
Expand Down Expand Up @@ -805,15 +805,15 @@ private Dictionary<string, string> GetEncounterDictionary(List<CombatantData> al
stopwatch.Start();
#endif

var varStopwatch = new Stopwatch();
/// var varStopwatch = new Stopwatch();

var encounterDict = new Dictionary<string, string>();
foreach (var exportValuePair in EncounterData.ExportVariables)
{
try
{
varStopwatch.Reset();
varStopwatch.Start();
/*varStopwatch.Reset();
varStopwatch.Start();*/

// ACT_FFXIV_Plugin が提供する LastXXDPS は、
// ally.Items[CombatantData.DamageTypeDataOutgoingDamage].Items に All キーが存在しない場合に、
Expand All @@ -826,7 +826,7 @@ private Dictionary<string, string> GetEncounterDictionary(List<CombatantData> al
if (!allies.All((ally) => ally.Items[CombatantData.DamageTypeDataOutgoingDamage].Items.ContainsKey("All")))
{
encounterDict.Add(exportValuePair.Key, "");
Log(LogLevel.Debug, $"Encounter: {exportValuePair.Key}: {varStopwatch.ElapsedMilliseconds}ms");
// Log(LogLevel.Debug, $"Encounter: {exportValuePair.Key}: {varStopwatch.ElapsedMilliseconds}ms");
continue;
}
}
Expand All @@ -838,7 +838,7 @@ private Dictionary<string, string> GetEncounterDictionary(List<CombatantData> al
//lock (encounterDict)
//{
encounterDict.Add(exportValuePair.Key, value);
Log(LogLevel.Debug, $"Encounter: {exportValuePair.Key}: {varStopwatch.ElapsedMilliseconds}ms");
//Log(LogLevel.Debug, $"Encounter: {exportValuePair.Key}: {varStopwatch.ElapsedMilliseconds}ms");
//}
}
catch (Exception e)
Expand Down
2 changes: 1 addition & 1 deletion OverlayPlugin.Core/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@
// すべての値を指定するか、下のように '*' を使ってビルドおよびリビジョン番号を
// 既定値にすることができます:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.18.0.0")]
[assembly: AssemblyVersion("0.18.1.0")]
2 changes: 1 addition & 1 deletion OverlayPlugin.Updater/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.18.0.0")]
[assembly: AssemblyVersion("0.18.1.0")]
2 changes: 1 addition & 1 deletion OverlayPlugin/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@
// すべての値を指定するか、下のように '*' を使ってビルドおよびリビジョン番号を
// 既定値にすることができます:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.18.0.0")]
[assembly: AssemblyVersion("0.18.1.0")]

0 comments on commit f1a7e21

Please sign in to comment.