nuntius 1.3.8 → 1.3.9

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: af9d9733e3d00160f1bc577fcfebcf92ce187f5ec1c24f0275234db388c73a6e
4
- data.tar.gz: fedc019067d2fa07b1d870efc98c37201b38994246f2458a8d6fa9b42f54f0c9
3
+ metadata.gz: 9b8c06436ff50243ea78fd29e0e315aacfdab4260635a0412dcdf78b5b6b9c87
4
+ data.tar.gz: 9c64d408b5d449cf7f2f289a7f1a5db7c6490e7208e4322c2531711739a7a9e8
5
5
  SHA512:
6
- metadata.gz: 3df6eee0f723825cdbfa9d6b32ed96e5f51eb95169022138f0dd51cd1ae930eb3e6855ae8cb3c2d958d9720ac5edae2868c12693107bff7b7ebda893665e7c72
7
- data.tar.gz: ac2e65dad9eba341791de05f4f921b4568924c8fc5e14d2b832c114cb8625e19868a29b60ac9414ba698a93595349fc0630f39b2ebedf59ccdc0dba39226efaf
6
+ metadata.gz: 63b1e50d17f3228e6d45b8d664fabc793708cb3ef6cf2c3c0ff33cda6020dd737951b889a6428b4f78c29bdb081ce66c97bc581f4cad09d791fa05dc61b6cfdd
7
+ data.tar.gz: f97c503e53cafad4c36fdf2b092f0c609810969b06ba525149184a2c0d0b12a2e6f1e9183eeb396e5129937fe7b546a0092870ab369b7d87b6c3c806410d17b9
data/README.md CHANGED
@@ -210,7 +210,13 @@ See [Create Incoming Webhooks](https://learn.microsoft.com/en-us/microsoftteams/
210
210
 
211
211
  SMS just support the `from` (name or phone number), `to` (the phone) and `text` attribute.
212
212
 
213
- Only MessageBird allows for names when sending SMS messages. Messagebird does not support a hypen in the name, just alphabetical characters (A-Za-z).
213
+ #### Twilio
214
+
215
+ #### MessageBird (now Bird)
216
+
217
+ Only MessageBird allows for names when sending SMS messages. Messagebird does not support a hypen in the name, just alphabetical characters (A-Za-z).
218
+
219
+ The MessageBird API we use (REST) is now considered legacy by Bird, new signups are no longer possible. We don't recommend using MessageBird (Bird).
214
220
 
215
221
  ### Voice
216
222
 
@@ -24,7 +24,7 @@ module Nuntius
24
24
  # FIXME: next unless campaign.can_publish?
25
25
  show ->(campaign) { campaign.transport != "sms" && campaign.can_publish? }
26
26
  link { |campaign| campaign.can_publish? ? nuntius.publish_admin_campaign_path(campaign) : nil }
27
- icon "fa fa-paper-plane"
27
+ icon "fa-regular fa-paper-plane"
28
28
  link_attributes data: {"turbo-confirm": "Are you sure you want to send out this campaign?", "turbo-method": :post}
29
29
  end
30
30
 
@@ -16,7 +16,7 @@ module Nuntius
16
16
 
17
17
  action :delete do
18
18
  link { |layout| nuntius.admin_layout_url(layout) }
19
- icon "fa fa-trash"
19
+ icon "fa-regular fa-trash"
20
20
  link_attributes data: {"turbo-confirm": "Are you sure you want to delete the layout?", "turbo-method": :delete}
21
21
  end
22
22
 
@@ -31,7 +31,7 @@ module Nuntius
31
31
  html do |template|
32
32
  color = Nuntius.config.flow_color(template.id)&.light_color || "green"
33
33
  content_tag(:span, class: "traffic-signal-#{color.downcase}") do
34
- content_tag(:i, nil, class: "fa fa-circle fa-xl")
34
+ content_tag(:i, nil, class: "fa-regular fa-circle fa-xl")
35
35
  end
36
36
  end
37
37
  end
@@ -39,7 +39,7 @@ module Nuntius
39
39
 
40
40
  action :delete do
41
41
  link { |template| nuntius.admin_template_path(template) }
42
- icon "fa fa-trash"
42
+ icon "fa-regular fa-trash"
43
43
  link_attributes data: {"turbo-confirm": "Are you sure you want to delete the template?", "turbo-method": :delete}
44
44
  end
45
45
 
@@ -8,10 +8,10 @@
8
8
  = info.with_item :from, content: @message.from, class: "sm:col-span-1"
9
9
  - if @message.transport == 'mail'
10
10
  = info.with_item :subject, content: @message.subject, class: "sm:col-span-4"
11
- = info.with_item :attachments, class: "sm:col-span-4"
11
+ = info.with_item :attachments, class: "sm:col-span-4"
12
12
  - @message.attachments.each do |attachment|
13
13
  = link_to(main_app.rails_blob_path(attachment, disposition: "attachment"), title: attachment.filename) do
14
- i.far.fa-paperclip
14
+ i.fa-regular.fa-paperclip
15
15
  span=attachment.filename
16
16
  br
17
17
  - if @message.transport == 'sms'
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Nuntius
4
- VERSION = "1.3.8"
4
+ VERSION = "1.3.9"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nuntius
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.8
4
+ version: 1.3.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tom de Grunt
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-06-28 00:00:00.000000000 Z
11
+ date: 2024-07-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: apnotic
@@ -338,14 +338,14 @@ dependencies:
338
338
  requirements:
339
339
  - - "~>"
340
340
  - !ruby/object:Gem::Version
341
- version: '5'
341
+ version: 7.0.2
342
342
  type: :runtime
343
343
  prerelease: false
344
344
  version_requirements: !ruby/object:Gem::Requirement
345
345
  requirements:
346
346
  - - "~>"
347
347
  - !ruby/object:Gem::Version
348
- version: '5'
348
+ version: 7.0.2
349
349
  - !ruby/object:Gem::Dependency
350
350
  name: slim-rails
351
351
  requirement: !ruby/object:Gem::Requirement