da_funk 3.24.4 → 3.28.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6d190ea42757a9e1a847740dc4321adcc7bf2bf356f90185fdd8c8b7de3c2398
4
- data.tar.gz: b116514238c4c9b2d0458b08231619cbeaa8533ba264491716d5685fd64bbf13
3
+ metadata.gz: 489f56230d69c2a02818b0e7ca0b33e9a5c425281c79def3a8c5c2361f213c95
4
+ data.tar.gz: e135956873a9b50834d1672409fa9a3366647348b1da50859285a5c2289eff6a
5
5
  SHA512:
6
- metadata.gz: 0bedf7264f973b4f96e7de1f8e70a599e47e026cc5c00a1b2418674ab6ed32a32a178b41fa6d4d8ecb5ed5a23ec46bfd894a5b087e71d26997b8326c10d26f56
7
- data.tar.gz: c3d53db9952a1e942ba42308491726700809ad5435c1d66d7b8c9dd67099b737063b540e9f0a64f8aede8aed718c1aefcca456ba3658c12f575b4c18d8956305
6
+ metadata.gz: 26fa00576ee5e90f59da9391bd13eaaf46cad4aa513d2d679f8e1de23d4190ba269c734a40b443ee954360436932f66d1a6ac691e5de72d2c58c838a50108f72
7
+ data.tar.gz: 1c5de9a5fd5da14b6ee2c2d92a5af01f8227ff5e17bd4129fe4d6fecebbded54a9553502a17115e75c1237f8574f147f3d0aad7653ee7b8718e85e4d95a98c02
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- da_funk (3.24.4)
4
+ da_funk (3.28.0)
5
5
  archive-zip (~> 0.5)
6
6
  bundler
7
7
  cloudwalk_handshake
@@ -18,7 +18,7 @@ GEM
18
18
  cloudwalk (1.15.0)
19
19
  bundler
20
20
  rake
21
- cloudwalk_handshake (1.14.0)
21
+ cloudwalk_handshake (1.20.0)
22
22
  funky-simplehttp (~> 0.6)
23
23
  funky-emv (1.4.1)
24
24
  funky-tlv (~> 0.2)
@@ -35,17 +35,17 @@ GEM
35
35
  rake (13.0.1)
36
36
  regexp_parser (1.7.1)
37
37
  rexml (3.2.4)
38
- rubocop (0.86.0)
38
+ rubocop (0.90.0)
39
39
  parallel (~> 1.10)
40
- parser (>= 2.7.0.1)
40
+ parser (>= 2.7.1.1)
41
41
  rainbow (>= 2.2.2, < 4.0)
42
42
  regexp_parser (>= 1.7)
43
43
  rexml
44
- rubocop-ast (>= 0.0.3, < 1.0)
44
+ rubocop-ast (>= 0.3.0, < 1.0)
45
45
  ruby-progressbar (~> 1.7)
46
46
  unicode-display_width (>= 1.4.0, < 2.0)
47
- rubocop-ast (0.0.3)
48
- parser (>= 2.7.0.1)
47
+ rubocop-ast (0.4.0)
48
+ parser (>= 2.7.1.4)
49
49
  ruby-progressbar (1.10.1)
50
50
  unicode-display_width (1.7.0)
51
51
  yard (0.9.25)
@@ -1,5 +1,29 @@
1
1
  # DaFunk
2
2
 
3
+ ### 3.28.0 - 2020-09-25
4
+
5
+ - Check if system update file is present after device restart in order to continue with system update process;
6
+ - Implemented block to write and break line if message has '\n'.
7
+
8
+ ### 3.27.0 - 2020-09-25
9
+
10
+ - Print bitmap if exists on DaFunk::ParamsDat#restart;
11
+ - Add main application version on config.dat file.
12
+
13
+ ### 3.26.0 - 2020-09-14
14
+
15
+ - Fixed error on virtual keyboard, chars y and Y were duplicated;
16
+ - Update cloudwalk_handshake (1.20.0).
17
+
18
+ ### 3.25.1 - 2020-08-28
19
+
20
+ - Set DaFunk::Helper::StatusBar#connected as false on system update process so it will cache again.
21
+
22
+ ### 3.25.0 - 2020-08-18
23
+
24
+ - Added switch_http_enabled setting;
25
+ - Removed infinitepay_authorizer and infinitepay_api settings.
26
+
3
27
  ### 3.24.4 - 2020-08-07
4
28
 
5
29
  - Add defensive code to gsub calls.
@@ -1,8 +1,13 @@
1
1
  module DaFunk
2
2
  class Engine
3
3
  def self.check
4
- DaFunk::EventListener.check
5
- ThreadScheduler.keep_alive
4
+ if Device::Setting.boot == '1'
5
+ DaFunk::EventListener.check(:file_exists) #to check if system update is in progress
6
+ Device::Setting.boot = '0'
7
+ else
8
+ DaFunk::EventListener.check
9
+ ThreadScheduler.keep_alive
10
+ end
6
11
  end
7
12
 
8
13
  def self.app_loop(&block)
@@ -90,25 +90,28 @@ module DaFunk
90
90
  if File.exists?('./shared/system_update')
91
91
  PAX::Display.print_status_bar(SLOT_UPDATE, "./shared/system_update_download.png")
92
92
  PAX::Display.print_status_bar(3, nil)
93
+ self.connected = false
93
94
  else
94
95
  change_message
95
96
  end
96
97
  end
97
98
 
98
99
  def self.change_message
99
- connected = Device::Network.connected?
100
+ unless File.exists?('./shared/system_update')
101
+ connected = Device::Network.connected?
100
102
 
101
- if connected != self.connected
102
- self.connected = connected
103
+ if connected != self.connected
104
+ self.connected = connected
103
105
 
104
- slot_message_1 = SLOT_MESSAGE_CONNECTION[self.connected][:slot1]
105
- slot_message_2 = SLOT_MESSAGE_CONNECTION[self.connected][:slot2]
106
+ slot_message_1 = SLOT_MESSAGE_CONNECTION[self.connected][:slot1]
107
+ slot_message_2 = SLOT_MESSAGE_CONNECTION[self.connected][:slot2]
106
108
 
107
- message_1 = SLOT_MESSAGE_CONNECTION[self.connected][:message1]
108
- message_2 = SLOT_MESSAGE_CONNECTION[self.connected][:message2]
109
+ message_1 = SLOT_MESSAGE_CONNECTION[self.connected][:message1]
110
+ message_2 = SLOT_MESSAGE_CONNECTION[self.connected][:message2]
109
111
 
110
- Device::Display.print_status_bar(slot_message_1, message_1)
111
- Device::Display.print_status_bar(slot_message_2, message_2)
112
+ Device::Display.print_status_bar(slot_message_1, message_1)
113
+ Device::Display.print_status_bar(slot_message_2, message_2)
114
+ end
112
115
  end
113
116
  end
114
117
 
@@ -73,7 +73,11 @@ class I18n
73
73
 
74
74
  def self.pt(symbol, options = {})
75
75
  if options[:line] || options[:column]
76
- Device::Display.print_line(t(symbol, options), options[:line] || 0, options[:column] || 0)
76
+ line = options[:line] || 0
77
+ t(symbol, options).split("\n").each do |message|
78
+ Device::Display.print_line(message, line, options[:column] || 0)
79
+ line+=1
80
+ end
77
81
  else
78
82
  puts(t(symbol, options))
79
83
  end
@@ -151,10 +151,14 @@ module DaFunk
151
151
 
152
152
  def self.restart
153
153
  Device::Display.clear
154
- I18n.pt(:admin_main_update_message)
155
- 3.times do |i|
156
- Device::Display.print("REBOOTING IN #{3 - i}",3,3)
157
- sleep(1)
154
+ if File.exists?('./shared/init_reboot.bmp')
155
+ Device::Display.print_bitmap('./shared/init_reboot.bmp')
156
+ else
157
+ I18n.pt(:admin_main_update_message)
158
+ 3.times do |i|
159
+ Device::Display.print("REBOOTING IN #{3 - i}",3,3)
160
+ sleep(1)
161
+ end
158
162
  end
159
163
  Device::System.restart
160
164
  end
@@ -1,4 +1,4 @@
1
1
  module DaFunk
2
- VERSION="3.24.4"
2
+ VERSION="3.28.0"
3
3
  end
4
4
 
@@ -60,15 +60,15 @@ class Device
60
60
  "metadata_timestamp" => "",
61
61
  "payment_channel_attempts" => "0",
62
62
  "payment_channel_date" => "",
63
- "infinitepay_authorizer" => "1",
64
- "infinitepay_api" => "0",
65
63
  "infinitepay_cw_endpoint" => "1",
66
64
  "infinitepay_google_endpoint" => "0",
65
+ "switch_http_enabled" => "0",
67
66
  "transaction_http_enabled" => "1",
68
67
  "transaction_http_host" => HTTP_HOST_PRODUCTION,
69
68
  "transaction_http_port" => HTTP_PORT,
70
69
  "emv_contactless_amount" => "0",
71
- "network_init" => ""
70
+ "network_init" => "",
71
+ "main_app_version" => ""
72
72
  }
73
73
 
74
74
  class << self
@@ -28,7 +28,7 @@ class Device
28
28
  { x: 0..201, y: 223..241, char: 'k' },
29
29
  { x: 0..230, y: 223..241, char: 'l' },
30
30
  { x: 0..30, y: 223..273, char: :keyboard_uppercase },
31
- { x: 0..56, y: 223..273, char: 'y' },
31
+ { x: 0..56, y: 223..273, char: 'z' },
32
32
  { x: 0..82, y: 223..273, char: 'x' },
33
33
  { x: 0..109, y: 223..273, char: 'c' },
34
34
  { x: 0..130, y: 223..273, char: 'v' },
@@ -65,7 +65,7 @@ class Device
65
65
  { x: 0..201, y: 223..241, char: 'K' },
66
66
  { x: 0..230, y: 223..241, char: 'L' },
67
67
  { x: 0..30, y: 223..273, char: :keyboard_capital },
68
- { x: 0..56, y: 223..273, char: 'Y' },
68
+ { x: 0..56, y: 223..273, char: 'Z' },
69
69
  { x: 0..82, y: 223..273, char: 'X' },
70
70
  { x: 0..109, y: 223..273, char: 'C' },
71
71
  { x: 0..130, y: 223..273, char: 'V' },
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: da_funk
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.24.4
4
+ version: 3.28.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thiago Scalone
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-08-07 00:00:00.000000000 Z
11
+ date: 2020-09-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake