From 27a440a568c320d1a458b206bd93b566dcacc667 Mon Sep 17 00:00:00 2001 From: Carson McManus Date: Wed, 11 Apr 2018 19:20:01 -0400 Subject: [PATCH] reimplement confirmation descriptions for usability --- Program.cs | 8 ++++---- SteamAuth | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Program.cs b/Program.cs index d8114c6..65ac3b5 100644 --- a/Program.cs +++ b/Program.cs @@ -661,7 +661,7 @@ namespace SteamGuard Console.ForegroundColor = t == selected ? colorSelected : itemColor; - Console.WriteLine($" [{t}] [{tradeActions[t]}] {trades[t].ConfType} {trades[t].Creator}"); + Console.WriteLine($" [{t}] [{tradeActions[t]}] {trades[t].ConfType} {trades[t].Creator} {trades[t].Description}"); } var key = Console.ReadKey(); switch (key.Key) @@ -704,15 +704,15 @@ namespace SteamGuard switch (tradeActions[t]) { case TradeAction.Accept: - if (Verbose) Console.Write($"Accepting {trades[t].ConfType} {trades[t].Creator}..."); + if (Verbose) Console.Write($"Accepting {trades[t].ConfType} {trades[t].Creator} {trades[t].Description}..."); success = account.AcceptConfirmation(trades[t]); break; case TradeAction.Deny: - if (Verbose) Console.Write($"Denying {trades[t].ConfType} {trades[t].Creator}..."); + if (Verbose) Console.Write($"Denying {trades[t].ConfType} {trades[t].Creator} {trades[t].Description}..."); success = account.DenyConfirmation(trades[t]); break; case TradeAction.Ignore: - if (Verbose) Console.Write($"Ignoring {trades[t].ConfType} {trades[t].Creator}..."); + if (Verbose) Console.Write($"Ignoring {trades[t].ConfType} {trades[t].Creator} {trades[t].Description}..."); success = true; break; default: diff --git a/SteamAuth b/SteamAuth index 9810731..2f9f8b9 160000 --- a/SteamAuth +++ b/SteamAuth @@ -1 +1 @@ -Subproject commit 98107316db1a8e0e789e066b4627ecd9689d80a0 +Subproject commit 2f9f8b92cd365414196b90cae3ab25ff430a4fab