File tree Expand file tree Collapse file tree 6 files changed +24
-4
lines changed
Expand file tree Collapse file tree 6 files changed +24
-4
lines changed Original file line number Diff line number Diff line change 1- v1.4.9.4811 -Stable
1+ v1.4.10.3814 -Stable
Original file line number Diff line number Diff line change 559559 * [Minor] sharlayan のローカルキャッシュのクリアを修正した
560560 </description >
561561 </note >
562+
563+ <note >
564+ <version >1.4.10.3814</version >
565+ <channel >Stable</channel >
566+ <timestamp >2020-04-14T14:31:31.1375768+09:00</timestamp >
567+ <uri >https://github.com/anoyetta/RINGS/releases/download/v1.4.10.3814-Stable/RINGS_v1_4_10_3814_Stable.zip</uri >
568+ <description >
569+ * [Minor] sharlayan からのログの出力を追加した
570+ </description >
571+ </note >
562572</release_notes >
Original file line number Diff line number Diff line change @@ -9,6 +9,12 @@ public static class ChatLogger
99 {
1010 private static readonly Lazy < Logger > LazyLogger = new Lazy < Logger > ( ( ) => LogManager . GetLogger ( "RINGSChatLogger" ) ) ;
1111
12+ public static void WriteRaw (
13+ string raw )
14+ {
15+ LazyLogger . Value . Trace ( raw ) ;
16+ }
17+
1218 public static void Write (
1319 string channel ,
1420 string speaker ,
Original file line number Diff line number Diff line change @@ -342,7 +342,11 @@ private void SubscribeChatLog()
342342 if ( isExistLogs )
343343 {
344344 var models = targetLogs
345- . Select ( x => ChatLogModel . FromXIVLog ( x , this . currentPlayerNames ) )
345+ . Select ( x =>
346+ {
347+ ChatLogger . WriteRaw ( x . Raw ) ;
348+ return ChatLogModel . FromXIVLog ( x , this . currentPlayerNames ) ;
349+ } )
346350 . ToArray ( ) ;
347351
348352 WPFHelper . Dispatcher . Invoke ( ( ) =>
Original file line number Diff line number Diff line change @@ -660,8 +660,8 @@ public static ChatLogModel FromXIVLog(
660660 if ( i < 0 )
661661 {
662662 // sharlayan がパッチに対応していないときの回避策
663- i = xivLog . Line . IndexOf ( "." ) ;
664663 speakerSafix = "." ;
664+ i = xivLog . Line . IndexOf ( speakerSafix ) ;
665665 }
666666
667667 if ( i >= 0 )
Original file line number Diff line number Diff line change 11using System . Reflection ;
22
3- [ assembly: AssemblyVersion ( "1.4.9.4811 " ) ]
3+ [ assembly: AssemblyVersion ( "1.4.10.3814 " ) ]
44[ assembly: AssemblyConfiguration ( "Stable" ) ]
You can’t perform that action at this time.
0 commit comments