cryptum 0.0.314 → 0.0.315
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_execution.rb +19 -1
- data/lib/cryptum/ui/order_plan.rb +1 -1
- 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: 5782ff4633552d6cde3f64425b5b51f03582a75d6c11554583468c8f63250720
|
|
4
|
+
data.tar.gz: 9f2dd4006140a57225b7cfbf6ea4a58bce3953de8ffd2ddc408e65699ed89bb9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1bb9a76cd89fdecda6135b5e68371b062a71b565e8e786f330361a2b21e9cf5a65f4b29cd2bfa496ac7ac3acd28883686779af458be1e92588b273d9e8b5ccfa
|
|
7
|
+
data.tar.gz: 6b581cb215d04766cbdc1d20cbeda2b34bc577ad9c8bd6b407b74184a376a958f2a7f718de4dc4e956bba39ced88ea27bae602d98346bb041c65eaba2d4d5804
|
|
@@ -378,7 +378,7 @@ module Cryptum
|
|
|
378
378
|
style = :bold
|
|
379
379
|
if event_history.order_execute_win_active
|
|
380
380
|
line_color = :blue
|
|
381
|
-
header_color = :
|
|
381
|
+
header_color = :blue
|
|
382
382
|
header_style = :reverse
|
|
383
383
|
end
|
|
384
384
|
|
|
@@ -412,6 +412,15 @@ module Cryptum
|
|
|
412
412
|
string: header_str
|
|
413
413
|
)
|
|
414
414
|
|
|
415
|
+
order_execute_win.setpos(out_line_no, Cryptum::UI.col_fourth)
|
|
416
|
+
order_execute_win.clrtoeol
|
|
417
|
+
Cryptum::UI.colorize(
|
|
418
|
+
ui_win: order_execute_win,
|
|
419
|
+
color: header_color,
|
|
420
|
+
style: header_style,
|
|
421
|
+
string: ''.ljust(col_just4, ' ')
|
|
422
|
+
)
|
|
423
|
+
|
|
415
424
|
# ROWS 3-10
|
|
416
425
|
remaining_blank_rows = 0
|
|
417
426
|
remaining_blank_rows = max_rows_to_display if order_history_meta.empty?
|
|
@@ -538,6 +547,15 @@ module Cryptum
|
|
|
538
547
|
string: header_str
|
|
539
548
|
)
|
|
540
549
|
|
|
550
|
+
order_execute_win.setpos(out_line_no, Cryptum::UI.col_fourth)
|
|
551
|
+
order_execute_win.clrtoeol
|
|
552
|
+
Cryptum::UI.colorize(
|
|
553
|
+
ui_win: order_execute_win,
|
|
554
|
+
color: header_color,
|
|
555
|
+
style: header_style,
|
|
556
|
+
string: ''.ljust(col_just4, ' ')
|
|
557
|
+
)
|
|
558
|
+
|
|
541
559
|
# ROW 11
|
|
542
560
|
out_line_no += 1
|
|
543
561
|
Cryptum::UI.line(
|
data/lib/cryptum/version.rb
CHANGED