decidim-meetings 0.30.2 → 0.30.3

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: cf2072be155206477263a0700986dfa59596a56848676dd71241e0ad753f30ab
4
- data.tar.gz: 54738277914bbc88d29beb0cee291bc4f6a797fe7a7562c7189ea11113008ec4
3
+ metadata.gz: ee5d579992e1366aaa49bd82d16b6a0383a4693f55dcaf3790a1404885c2a5f2
4
+ data.tar.gz: 71adcac004b5b8294d4e5506e9ca2a559279bbcdac17e3bb3013ea3229809fde
5
5
  SHA512:
6
- metadata.gz: 84fbedc3e1da611dc83bba0ead74349ab8574e8be2517fb32444d67ab4f455788b35ea8819a96dc54bf2cb32e6dd90cc850b02c502fbc66da6b0484199447d03
7
- data.tar.gz: 89ebd88a8ce1cdb192d6e52a185feb94c7232637262ce817b1a3d19ced1fb9257617f5d327c79e2de4067ec0e7a8957d300fc9f574abe93f91a69c0a77a9b237
6
+ metadata.gz: 720e0bfa87dece64fa9611d343a597ec668a6e74db08d29bc50781d67fc16459a29a99d8eceb8995d57d8052ae0b425943879e2ac8aa234ae0c9681b0e1afd93
7
+ data.tar.gz: 268471a8f3ea27cb3dd52af18c9179666d7c63a5337fd86719436032ff3c60bcb0d54ba8bea3f85b1ed643e92eabe009fd64103a6a042510ff89d5e2c1b8bd51
@@ -32,7 +32,15 @@
32
32
  <td>
33
33
  <%= present(meeting).taxonomy_names.join(", ") %>
34
34
  </td>
35
- <td class="table-list__actions">
35
+ <td class="table-list__state" data-label="<%= t("models.meeting.fields.published", scope: "decidim.meetings") %>">
36
+ <% if meeting.published? %>
37
+ <span class="label success !text-sm"><%= t("admin.meetings.index.published", scope: "decidim.meetings") %></span>
38
+ <% else %>
39
+ <span class="label alert !text-sm"><%= t("admin.meetings.index.unpublished", scope: "decidim.meetings") %></span>
40
+ <% end %>
41
+ </td>
42
+
43
+ <td class="table-list__actions" data-label="<%= t("actions.title", scope: "decidim.meetings") %>">
36
44
  <% if is_linked %>
37
45
  <%= t("index.linked_meeting_warning_html", href: edit_meeting_path(meeting), name: present(meeting).space_title, scope: "decidim.meetings.admin.meetings") %>
38
46
  <% else %>
@@ -21,6 +21,9 @@
21
21
  <th>
22
22
  <%= sort_link(query, :scope_name, t("models.meeting.fields.taxonomies", scope: "decidim.meetings") ) %>
23
23
  </th>
24
+ <th>
25
+ <%= t("models.meeting.fields.published", scope: "decidim.meetings") %>
26
+ </th>
24
27
  <th><%= t("actions.title", scope: "decidim.meetings") %></th>
25
28
  </tr>
26
29
  </thead>
@@ -24,7 +24,7 @@
24
24
  <%= render "decidim/meetings/admin/poll/answer_option_template", form: question_form, editable: true, template_id: "answer-option-template-dummy" %>
25
25
  <% end %>
26
26
 
27
- <div class="questionnaire-questions-list flex flex-col py-6 gap-6 last:pb-0">
27
+ <div class="questionnaire-questions-list flex flex-col py-6 gap-6 last:pb-0" data-draggable-table data-sort-url="#" id="questionnaire-questions-list">
28
28
  <% @form.questions.each_with_index do |question, index| %>
29
29
  <%= fields_for "questionnaire[questions][]", question do |question_form| %>
30
30
  <%= render "decidim/meetings/admin/poll/question",
@@ -44,6 +44,35 @@
44
44
 
45
45
  <script>
46
46
  document.addEventListener("DOMContentLoaded", function () {
47
- window.Decidim.createEditableForm()
47
+ window.Decidim.createEditableForm();
48
+
49
+ // Function to initialize the sortable functionality
50
+ function initializeSortable() {
51
+ const container = document.querySelector("#questionnaire-questions-list");
52
+ const questionCards = container?.querySelectorAll(".card.questionnaire-question");
53
+
54
+ if (!container || !questionCards?.length) return;
55
+
56
+ questionCards.forEach(card => {
57
+ card.setAttribute("draggable", "true");
58
+ card.setAttribute("role", "option");
59
+ card.setAttribute("aria-grabbed", "false");
60
+ });
61
+
62
+ window.Decidim?.createSortableList?.("#questionnaire-questions-list");
63
+ }
64
+
65
+ // Initialize on load and when new options such as questions etc are added
66
+ initializeSortable();
67
+
68
+ const observer = new MutationObserver(() => {
69
+ clearTimeout(observer.timer);
70
+ observer.timer = setTimeout(initializeSortable, 500);
71
+ });
72
+
73
+ const container = document.querySelector("#questionnaire-questions-list");
74
+ if (container) {
75
+ observer.observe(container, { childList: true, subtree: true });
76
+ }
48
77
  })
49
78
  </script>
@@ -24,16 +24,6 @@
24
24
  </span>
25
25
  </button>
26
26
 
27
- <button class="button button__sm button__transparent-secondary small alert move-up-question button--title">
28
- <%= icon "arrow-up-line" %>
29
- <span><%= t("up", scope: "decidim.forms.admin.questionnaires.question") %></span>
30
- </button>
31
-
32
- <button class="button button__sm button__transparent-secondary small alert move-down-question button--title">
33
- <%= icon "arrow-down-line" %>
34
- <span><%= t("down", scope: "decidim.forms.admin.questionnaires.question") %></span>
35
- </button>
36
-
37
27
  <% if editable %>
38
28
  <button class="button button__sm button__transparent-secondary small alert remove-question button--title">
39
29
  <%= t("remove", scope: "decidim.forms.admin.questionnaires.question") %>
@@ -254,7 +254,7 @@ ca-IT:
254
254
  attended_meetings:
255
255
  conditions:
256
256
  - Inscriu-te a les trobades a les que vols assistir
257
- description: Aquest distintiu s'aconsegueix assistint a diverses reunions presencials.
257
+ description: Aquesta ensenya s'aconsegueix assistint a diverses reunions presencials.
258
258
  description_another: Aquesta participant ha assistit a %{score} trobades.
259
259
  description_own: Has assistit a %{score} trobades.
260
260
  name: Trobades a les que has assistit
@@ -365,7 +365,9 @@ ca-IT:
365
365
  select_an_iframe_access_level: Si us plau, selecciona el nivell d'accés a l'iframe
366
366
  index:
367
367
  linked_meeting_warning_html: Aquesta reunió s'ha d'editar des de <br><a href="%{href}">%{name}</a>
368
+ published: Publicada
368
369
  title: Trobades
370
+ unpublished: Despublicada
369
371
  linked_spaces:
370
372
  assign: Assignar
371
373
  link_a_space: Vincular un espai
@@ -637,6 +639,7 @@ ca-IT:
637
639
  id: ID
638
640
  map: Mapa
639
641
  official_meeting: Trobada oficial
642
+ published: Publicada
640
643
  start_time: Data d'inici
641
644
  taxonomies: Taxonomies
642
645
  title: Títol
@@ -254,7 +254,7 @@ ca:
254
254
  attended_meetings:
255
255
  conditions:
256
256
  - Inscriu-te a les trobades a les que vols assistir
257
- description: Aquest distintiu s'aconsegueix assistint a diverses reunions presencials.
257
+ description: Aquesta ensenya s'aconsegueix assistint a diverses reunions presencials.
258
258
  description_another: Aquesta participant ha assistit a %{score} trobades.
259
259
  description_own: Has assistit a %{score} trobades.
260
260
  name: Trobades a les que has assistit
@@ -365,7 +365,9 @@ ca:
365
365
  select_an_iframe_access_level: Si us plau, selecciona el nivell d'accés a l'iframe
366
366
  index:
367
367
  linked_meeting_warning_html: Aquesta reunió s'ha d'editar des de <br><a href="%{href}">%{name}</a>
368
+ published: Publicada
368
369
  title: Trobades
370
+ unpublished: Despublicada
369
371
  linked_spaces:
370
372
  assign: Assignar
371
373
  link_a_space: Vincular un espai
@@ -637,6 +639,7 @@ ca:
637
639
  id: ID
638
640
  map: Mapa
639
641
  official_meeting: Trobada oficial
642
+ published: Publicada
640
643
  start_time: Data d'inici
641
644
  taxonomies: Taxonomies
642
645
  title: Títol
@@ -373,7 +373,9 @@ cs:
373
373
  select_an_iframe_access_level: Vyberte prosím úroveň přístupu iframe
374
374
  index:
375
375
  linked_meeting_warning_html: Tato schůzka musí být upravena od <br><a href="%{href}">%{name}</a>
376
+ published: Publikováno
376
377
  title: Setkání
378
+ unpublished: Nezveřejněno
377
379
  linked_spaces:
378
380
  assign: Přiřadit
379
381
  link_a_space: Propojit prostor
@@ -651,6 +653,7 @@ cs:
651
653
  id: ID
652
654
  map: Mapa
653
655
  official_meeting: Oficiální schůzka
656
+ published: Zveřejněno
654
657
  start_time: Datum zahájení
655
658
  taxonomies: Taxonomie
656
659
  title: Titul
@@ -365,7 +365,9 @@ en:
365
365
  select_an_iframe_access_level: Please select an iframe access level
366
366
  index:
367
367
  linked_meeting_warning_html: This meeting must be edited from <br><a href="%{href}">%{name}</a>
368
+ published: Published
368
369
  title: Meetings
370
+ unpublished: Unpublished
369
371
  linked_spaces:
370
372
  assign: Assign
371
373
  link_a_space: Link a space
@@ -637,6 +639,7 @@ en:
637
639
  id: ID
638
640
  map: Map
639
641
  official_meeting: Official meeting
642
+ published: Published
640
643
  start_time: Start date
641
644
  taxonomies: Taxonomies
642
645
  title: Title
@@ -365,7 +365,9 @@ es-MX:
365
365
  select_an_iframe_access_level: Por favor, seleccione un nivel de acceso iframe
366
366
  index:
367
367
  linked_meeting_warning_html: Esta reunión debe ser editada desde <br><a href="%{href}">%{name}</a>
368
+ published: Publicado
368
369
  title: Encuentros
370
+ unpublished: Despublicado
369
371
  linked_spaces:
370
372
  assign: Asignar
371
373
  link_a_space: Vincular un espacio
@@ -637,6 +639,7 @@ es-MX:
637
639
  id: ID
638
640
  map: Mapa
639
641
  official_meeting: Encuentro oficial
642
+ published: Publicado
640
643
  start_time: Fecha de inicio
641
644
  taxonomies: Taxonomías
642
645
  title: Título
@@ -365,7 +365,9 @@ es-PY:
365
365
  select_an_iframe_access_level: Por favor, seleccione un nivel de acceso iframe
366
366
  index:
367
367
  linked_meeting_warning_html: Esta reunión debe ser editada desde <br><a href="%{href}">%{name}</a>
368
+ published: Publicado
368
369
  title: Encuentros
370
+ unpublished: Despublicado
369
371
  linked_spaces:
370
372
  assign: Asignar
371
373
  link_a_space: Vincular un espacio
@@ -637,6 +639,7 @@ es-PY:
637
639
  id: ID
638
640
  map: Mapa
639
641
  official_meeting: Encuentro oficial
642
+ published: Publicado
640
643
  start_time: Fecha de inicio
641
644
  taxonomies: Taxonomías
642
645
  title: Título
@@ -365,7 +365,9 @@ es:
365
365
  select_an_iframe_access_level: Por favor, seleccione un nivel de acceso iframe
366
366
  index:
367
367
  linked_meeting_warning_html: Esta reunión debe ser editada desde <br><a href="%{href}">%{name}</a>
368
+ published: Publicado
368
369
  title: Encuentros
370
+ unpublished: Despublicado
369
371
  linked_spaces:
370
372
  assign: Asignar
371
373
  link_a_space: Vincular un espacio
@@ -637,6 +639,7 @@ es:
637
639
  id: ID
638
640
  map: Mapa
639
641
  official_meeting: Encuentro oficial
642
+ published: Publicado
640
643
  start_time: Fecha de inicio
641
644
  taxonomies: Taxonomías
642
645
  title: Título
@@ -148,7 +148,7 @@ eu:
148
148
  success: Topaketa zuzen bikoiztu da.
149
149
  new:
150
150
  copy: Kopiatu
151
- title: Bikoiztu topaketa
151
+ title: Topaketa bikoiztu
152
152
  components:
153
153
  meetings:
154
154
  actions:
@@ -214,7 +214,7 @@ eu:
214
214
  email_subject: '"%{resource_title}" topaketa itxi egin da'
215
215
  notification_title: <a href="%{resource_path}">%{resource_title}</a> topaketa itxi egin da.
216
216
  meeting_created:
217
- button_text: Eman izena bileran
217
+ button_text: Eman izena topaketan
218
218
  email_intro: '"%{resource_title}" topaketa jarraitzen duzun "%{participatory_space_title}" espazioan gehitu da.'
219
219
  email_outro: Jakinarazpen hau jaso duzu "%{participatory_space_title}" prozesua jarraitzen ari zarelako. Aureko estekan utzi ahal diozu jarraitzeari.
220
220
  email_subject: 'Beste topaketa bat gehituta honi: %{participatory_space_title}'
@@ -319,7 +319,7 @@ eu:
319
319
  invite_join_meeting_mailer:
320
320
  invite:
321
321
  decline: Deuseztatu gonbidapena
322
- invited_you_to_join_a_meeting: "%{invited_by}-k gonbidatu zaitu %{application} topaketan parte hartzera. Beheko estekan onartu dezakezu."
322
+ invited_you_to_join_a_meeting: "%{invited_by} k %{application} topaketan parte hartzera gonbidatu zaitu. Beheko estekan onar dezakezu gobidapena."
323
323
  join: Erregistratu '%{meeting_title}' topaketa
324
324
  invites:
325
325
  create:
@@ -339,7 +339,7 @@ eu:
339
339
  meeting_closes:
340
340
  edit:
341
341
  close: Itxi
342
- title: Itxi topaketa
342
+ title: Topaketa itxi
343
343
  meetings:
344
344
  close:
345
345
  invalid: Arazo bat egon da topaketa hau ixtean.
@@ -350,7 +350,7 @@ eu:
350
350
  invalid: Arazo bat egon da topaketa hau sortzean.
351
351
  success: Topaketa zuzen sortu da. Kontuan hartu oraindik ez dela argitaratu, eskuz argitaratu beharko duzu.
352
352
  edit:
353
- title: Editatu bilera
353
+ title: Topaketa editatu
354
354
  update: Eguneratu
355
355
  form:
356
356
  address_help: 'Helbidea: Geocoderrek erabiltzen du kokapena aurkitzeko'
@@ -365,7 +365,9 @@ eu:
365
365
  select_an_iframe_access_level: Mesedez, hautatu iframe maila bat
366
366
  index:
367
367
  linked_meeting_warning_html: 'Topaketa hau hemendik editatu behar da: <br><a href="%{href}">%{name}</a>'
368
+ published: Argitaratua
368
369
  title: Topaketa-zerrenda
370
+ unpublished: Desargitaratua
369
371
  linked_spaces:
370
372
  assign: Esleitu
371
373
  link_a_space: Lotu espazioa
@@ -472,7 +474,7 @@ eu:
472
474
  export_calendar: Esportatu egutegia
473
475
  close_meeting_reminder_mailer:
474
476
  close_meeting_reminder:
475
- body: <a href="%{meeting_path}">"%{meeting_title}"</a> bilera ixteko dago. Mesedez, gehitu bilerari buruzko txosten bat "Itxi bilera" botoia erabiliz.
477
+ body: <a href="%{meeting_path}">"%{meeting_title}"</a> topaketa ixteko dago. Mesedez, gehitu topaketari buruzko txosten bat "Itxi topaketa" botoia erabiliz.
476
478
  greetings: Agur, <br/>%{organization_name}<br/><a href="%{organization_url}">%{organization_url}</a>
477
479
  hello: Kaixo %{username},
478
480
  subject: Zuk orain "%{meeting_title}" topaketa itxi ahal duzu txosten batekin
@@ -637,6 +639,7 @@ eu:
637
639
  id: ID
638
640
  map: Mapa
639
641
  official_meeting: Topaketa ofiziala
642
+ published: Argitaratua
640
643
  start_time: Hasiera-data
641
644
  taxonomies: Taxonomiak
642
645
  title: Titulua
@@ -732,7 +735,7 @@ eu:
732
735
  user_group: Iruzkin hau egin duen parte-hartzaile taldearen izena (hala badagokio)
733
736
  meetings:
734
737
  address: Topaketaren helbidea, baldin eta aurrez aurre badago eta kokapen fisikoa badu
735
- attachments: Bilera honetako atxikipen kopurua
738
+ attachments: Topaketa honetako atxikipen kopurua
736
739
  attendees: Zenbat jende bildu da topaketa honetan?
737
740
  attending_organizations: Topaketan izan diren erakundeak
738
741
  audio_url: Topaketaren audiograbazioa
@@ -365,7 +365,9 @@ fi-pl:
365
365
  select_an_iframe_access_level: Valitse iframe-upotusten käyttöoikeustaso
366
366
  index:
367
367
  linked_meeting_warning_html: Tätä tapaamista tulee muokata kohteesta <br><a href="%{href}">%{name}</a>
368
+ published: Julkaistu
368
369
  title: Tapahtumat
370
+ unpublished: Julkaisematon
369
371
  linked_spaces:
370
372
  assign: Määritä
371
373
  link_a_space: Liitä osallistumistila
@@ -637,6 +639,7 @@ fi-pl:
637
639
  id: ID
638
640
  map: Kartta
639
641
  official_meeting: Virallinen tapahtuma
642
+ published: Julkaistu
640
643
  start_time: Alkamispäivä
641
644
  taxonomies: Luokittelut
642
645
  title: Otsikko
@@ -365,7 +365,9 @@ fi:
365
365
  select_an_iframe_access_level: Valitse iframe-upotusten käyttöoikeustaso
366
366
  index:
367
367
  linked_meeting_warning_html: Tätä tapaamista tulee muokata kohteesta <br><a href="%{href}">%{name}</a>
368
+ published: Julkaistu
368
369
  title: Tapaamiset
370
+ unpublished: Julkaisematon
369
371
  linked_spaces:
370
372
  assign: Määritä
371
373
  link_a_space: Liitä osallistumistila
@@ -637,6 +639,7 @@ fi:
637
639
  id: ID
638
640
  map: Kartta
639
641
  official_meeting: Virallinen tapaaminen
642
+ published: Julkaistu
640
643
  start_time: Alkamispäivä
641
644
  taxonomies: Luokittelut
642
645
  title: Otsikko
@@ -360,7 +360,9 @@ fr-CA:
360
360
  select_an_iframe_access_level: Veuillez sélectionner un niveau d'accès iframe
361
361
  index:
362
362
  linked_meeting_warning_html: Cette rencontre doit être modifiée à partir de <br><a href="%{href}">%{name}</a>
363
+ published: Publiée
363
364
  title: Rencontres
365
+ unpublished: Non publiées
364
366
  linked_spaces:
365
367
  assign: Assigner
366
368
  link_a_space: Lier un espace
@@ -632,6 +634,7 @@ fr-CA:
632
634
  id: ID
633
635
  map: Carte
634
636
  official_meeting: Réunion officielle
637
+ published: Publiée
635
638
  start_time: Date de début
636
639
  taxonomies: Taxonomies
637
640
  title: Titre
@@ -360,7 +360,9 @@ fr:
360
360
  select_an_iframe_access_level: Veuillez sélectionner un niveau d'accès iframe
361
361
  index:
362
362
  linked_meeting_warning_html: Cette rencontre doit être modifiée à partir de <br><a href="%{href}">%{name}</a>
363
+ published: Publiée
363
364
  title: Rencontres
365
+ unpublished: Non publiées
364
366
  linked_spaces:
365
367
  assign: Assigner
366
368
  link_a_space: Lier un espace
@@ -632,6 +634,7 @@ fr:
632
634
  id: ID
633
635
  map: Carte
634
636
  official_meeting: Rencontre officielle
637
+ published: Publiée
635
638
  start_time: Date de début
636
639
  taxonomies: Taxonomies
637
640
  title: Titre
@@ -361,7 +361,9 @@ ja:
361
361
  select_an_iframe_access_level: Iframeアクセスレベルを選択してください
362
362
  index:
363
363
  linked_meeting_warning_html: このミーティングは <br><a href="%{href}">%{name}</a> から編集する必要があります.
364
+ published: 公開済み
364
365
  title: ミーティング
366
+ unpublished: 未公開
365
367
  linked_spaces:
366
368
  assign: 割り当て
367
369
  link_a_space: スペースをリンク
@@ -630,6 +632,7 @@ ja:
630
632
  id: ID
631
633
  map: 地図
632
634
  official_meeting: 公式ミーティング
635
+ published: 公開済み
633
636
  start_time: 開始日
634
637
  taxonomies: タクソノミー
635
638
  title: タイトル
@@ -351,7 +351,9 @@ sv:
351
351
  select_an_iframe_access_level: Välj vem som får tillgång till iframe
352
352
  index:
353
353
  linked_meeting_warning_html: Mötet måste redigeras från <br><a href="%{href}">%{name}</a>
354
+ published: Publicerad
354
355
  title: Möten
356
+ unpublished: Opublicerad
355
357
  linked_spaces:
356
358
  assign: Tilldela
357
359
  link_a_space: Länka en process
@@ -623,6 +625,7 @@ sv:
623
625
  id: ID
624
626
  map: Karta
625
627
  official_meeting: Officiellt möte
628
+ published: Publicerad
626
629
  start_time: Startdatum
627
630
  taxonomies: Kategorisering
628
631
  title: Titel
@@ -4,7 +4,7 @@ module Decidim
4
4
  # This holds the decidim-meetings version.
5
5
  module Meetings
6
6
  def self.version
7
- "0.30.2"
7
+ "0.30.3"
8
8
  end
9
9
  end
10
10
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: decidim-meetings
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.30.2
4
+ version: 0.30.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Josep Jaume Rey Peroy
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2025-09-23 00:00:00.000000000 Z
13
+ date: 2025-10-28 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: decidim-core
@@ -18,28 +18,28 @@ dependencies:
18
18
  requirements:
19
19
  - - '='
20
20
  - !ruby/object:Gem::Version
21
- version: 0.30.2
21
+ version: 0.30.3
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
25
25
  requirements:
26
26
  - - '='
27
27
  - !ruby/object:Gem::Version
28
- version: 0.30.2
28
+ version: 0.30.3
29
29
  - !ruby/object:Gem::Dependency
30
30
  name: decidim-forms
31
31
  requirement: !ruby/object:Gem::Requirement
32
32
  requirements:
33
33
  - - '='
34
34
  - !ruby/object:Gem::Version
35
- version: 0.30.2
35
+ version: 0.30.3
36
36
  type: :runtime
37
37
  prerelease: false
38
38
  version_requirements: !ruby/object:Gem::Requirement
39
39
  requirements:
40
40
  - - '='
41
41
  - !ruby/object:Gem::Version
42
- version: 0.30.2
42
+ version: 0.30.3
43
43
  - !ruby/object:Gem::Dependency
44
44
  name: icalendar
45
45
  requirement: !ruby/object:Gem::Requirement
@@ -60,56 +60,56 @@ dependencies:
60
60
  requirements:
61
61
  - - '='
62
62
  - !ruby/object:Gem::Version
63
- version: 0.30.2
63
+ version: 0.30.3
64
64
  type: :development
65
65
  prerelease: false
66
66
  version_requirements: !ruby/object:Gem::Requirement
67
67
  requirements:
68
68
  - - '='
69
69
  - !ruby/object:Gem::Version
70
- version: 0.30.2
70
+ version: 0.30.3
71
71
  - !ruby/object:Gem::Dependency
72
72
  name: decidim-assemblies
73
73
  requirement: !ruby/object:Gem::Requirement
74
74
  requirements:
75
75
  - - '='
76
76
  - !ruby/object:Gem::Version
77
- version: 0.30.2
77
+ version: 0.30.3
78
78
  type: :development
79
79
  prerelease: false
80
80
  version_requirements: !ruby/object:Gem::Requirement
81
81
  requirements:
82
82
  - - '='
83
83
  - !ruby/object:Gem::Version
84
- version: 0.30.2
84
+ version: 0.30.3
85
85
  - !ruby/object:Gem::Dependency
86
86
  name: decidim-dev
87
87
  requirement: !ruby/object:Gem::Requirement
88
88
  requirements:
89
89
  - - '='
90
90
  - !ruby/object:Gem::Version
91
- version: 0.30.2
91
+ version: 0.30.3
92
92
  type: :development
93
93
  prerelease: false
94
94
  version_requirements: !ruby/object:Gem::Requirement
95
95
  requirements:
96
96
  - - '='
97
97
  - !ruby/object:Gem::Version
98
- version: 0.30.2
98
+ version: 0.30.3
99
99
  - !ruby/object:Gem::Dependency
100
100
  name: decidim-participatory_processes
101
101
  requirement: !ruby/object:Gem::Requirement
102
102
  requirements:
103
103
  - - '='
104
104
  - !ruby/object:Gem::Version
105
- version: 0.30.2
105
+ version: 0.30.3
106
106
  type: :development
107
107
  prerelease: false
108
108
  version_requirements: !ruby/object:Gem::Requirement
109
109
  requirements:
110
110
  - - '='
111
111
  - !ruby/object:Gem::Version
112
- version: 0.30.2
112
+ version: 0.30.3
113
113
  description: A meetings component for decidim's participatory spaces.
114
114
  email:
115
115
  - josepjaume@gmail.com