livechat 0.5.3 → 0.5.4

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dc46d42a6edb5b7dcc86f0413d4217b995db0d67987b816fb268d3e7af354f33
4
- data.tar.gz: 3eba21895af24b8fd33ba0057d0f552ea1357b9cacc977d023c13a9c90a14765
3
+ metadata.gz: 4f04a8c3aee0c2e7c9f4f3eff556bf450f4f81844750d8ebfb80d058ac49e180
4
+ data.tar.gz: 0f62d39bd16d1e02836fe8dbd8a777652e466db06406c60108a3ef75c3321161
5
5
  SHA512:
6
- metadata.gz: 4d020b2a8fb601de456bf233ce8d53897755b7ddb0523ea9357ce524a6d601ebc85c4e334fcdc771ed13076abc0888907b36cc8ac07f7b7b68cc39f284632950
7
- data.tar.gz: 06d192dab7cfcdafc4c248aeda63e5492cfb717f6f802035c9e063badd1d9868fdbbe0c7b020d5ddc7d1aed541a57e6b8e3a88b3ae90da980075e903c66a3bd6
6
+ metadata.gz: 2c3cbfefe5b627c5e919b9306ea72509026e107d28e5a69c5e83923286d6bf7e360ee5c8bfb5b0481883267dbf61630e1cfae40819d31760e0121463602e2cc6
7
+ data.tar.gz: b1c8c7782956dd04291838094131f904970011cfb92ed08473a359ad02046af18c88fc04b38d3c0e917361db5e7de3b79871fcb15c49a13d1d666d94a751a248
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.5.4
4
+
5
+ - Balanced the recording controls visually: the stop/finish square now uses
6
+ the same icon box as the cancel control, so the actions read with equal
7
+ weight in the composer.
8
+
3
9
  ## 0.5.3
4
10
 
5
11
  - Refined the audio recording controls. While recording, the composer now
@@ -161,8 +161,8 @@
161
161
  stop.setAttribute("aria-label", labels.stopRecording);
162
162
  stop.title = labels.stopRecording;
163
163
  stop.innerHTML =
164
- '<svg viewBox="0 0 24 24" width="14" height="14" aria-hidden="true">' +
165
- '<rect x="7" y="7" width="10" height="10" rx="1.5" fill="currentColor"/></svg>';
164
+ '<svg viewBox="0 0 24 24" width="18" height="18" aria-hidden="true">' +
165
+ '<rect x="5" y="5" width="14" height="14" rx="2" fill="currentColor"/></svg>';
166
166
  actions.appendChild(cancel);
167
167
  actions.appendChild(stop);
168
168
  bar.appendChild(actions);
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Livechat
4
- VERSION = '0.5.3'
4
+ VERSION = '0.5.4'
5
5
  end
@@ -420,8 +420,8 @@
420
420
  stop.setAttribute("aria-label", config.labels.stopRecording);
421
421
  stop.title = config.labels.stopRecording;
422
422
  stop.innerHTML =
423
- '<svg viewBox="0 0 24 24" width="14" height="14" aria-hidden="true">' +
424
- '<rect x="7" y="7" width="10" height="10" rx="1.5" fill="currentColor"/></svg>';
423
+ '<svg viewBox="0 0 24 24" width="18" height="18" aria-hidden="true">' +
424
+ '<rect x="5" y="5" width="14" height="14" rx="2" fill="currentColor"/></svg>';
425
425
  stop.addEventListener("click", stopRecording);
426
426
  actions.appendChild(cancel);
427
427
  actions.appendChild(stop);
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: livechat
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.3
4
+ version: 0.5.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yaroslav Shmarov