cryptum 0.0.460 → 0.0.461
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/cryptum/ui/order/execute.rb +2 -6
- data/lib/cryptum/ui/order/plan.rb +2 -6
- data/lib/cryptum/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 10abd4e7f80f002de751e2a1661690e56b97156966d0b1d5a30836f0ddd5aaf2
|
|
4
|
+
data.tar.gz: d793e208254d9fb2bdfdbab7240a8c3aaeff1e782d94bdf282830ac57bea787d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 25921b3757374d3580b181788de254141b8b9c8a847b5eff799ff7244fe36d1dc01f39f406aa433793107e22b48069aef5e5a431f23ab632771c5001397cbc02
|
|
7
|
+
data.tar.gz: 88cb03ecf88aa02b33b1a937ec32ffb60d49fdad92a081eb486dcb4983f1e3f2a4c03b88787a03bc9cd43bccaf67ff96b9570476df98f5c3931ab3854481cd57
|
|
@@ -454,20 +454,17 @@ module Cryptum
|
|
|
454
454
|
|
|
455
455
|
# ROW 1
|
|
456
456
|
out_line_no = 0
|
|
457
|
-
line_color = :white
|
|
458
457
|
header_color = :white
|
|
459
458
|
header_style = :bold
|
|
460
459
|
style = :bold
|
|
461
460
|
if event_history.order_execute_win_active
|
|
462
|
-
line_color = :blue
|
|
463
461
|
header_color = :blue
|
|
464
462
|
header_style = :reverse
|
|
465
463
|
end
|
|
466
464
|
|
|
467
465
|
Cryptum::UI.line(
|
|
468
466
|
ui_win: order_execute_win,
|
|
469
|
-
out_line_no: out_line_no
|
|
470
|
-
color: line_color
|
|
467
|
+
out_line_no: out_line_no
|
|
471
468
|
)
|
|
472
469
|
|
|
473
470
|
# ROW 2
|
|
@@ -662,8 +659,7 @@ module Cryptum
|
|
|
662
659
|
out_line_no += 1
|
|
663
660
|
Cryptum::UI.line(
|
|
664
661
|
ui_win: order_execute_win,
|
|
665
|
-
out_line_no: out_line_no
|
|
666
|
-
color: line_color
|
|
662
|
+
out_line_no: out_line_no
|
|
667
663
|
)
|
|
668
664
|
|
|
669
665
|
order_execute_win.refresh
|
|
@@ -227,20 +227,17 @@ module Cryptum
|
|
|
227
227
|
|
|
228
228
|
# ROW 1
|
|
229
229
|
out_line_no = 0
|
|
230
|
-
line_color = :white
|
|
231
230
|
header_color = :white
|
|
232
231
|
header_style = :bold
|
|
233
232
|
style = :bold
|
|
234
233
|
if event_history.order_plan_win_active
|
|
235
|
-
line_color = :blue
|
|
236
234
|
header_color = :blue
|
|
237
235
|
header_style = :reverse
|
|
238
236
|
end
|
|
239
237
|
|
|
240
238
|
Cryptum::UI.line(
|
|
241
239
|
ui_win: order_plan_win,
|
|
242
|
-
out_line_no: out_line_no
|
|
243
|
-
color: line_color
|
|
240
|
+
out_line_no: out_line_no
|
|
244
241
|
)
|
|
245
242
|
|
|
246
243
|
# ROW 2
|
|
@@ -453,8 +450,7 @@ module Cryptum
|
|
|
453
450
|
out_line_no += 1
|
|
454
451
|
Cryptum::UI.line(
|
|
455
452
|
ui_win: order_plan_win,
|
|
456
|
-
out_line_no: out_line_no
|
|
457
|
-
color: line_color
|
|
453
|
+
out_line_no: out_line_no
|
|
458
454
|
)
|
|
459
455
|
|
|
460
456
|
order_plan_win.refresh
|
data/lib/cryptum/version.rb
CHANGED