decidim 0.31.4 → 0.31.6

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: 05447a80f5b3b31825ee7e0a7cab0cde10e44ec9f1e91c912c91f8d6ebe1314e
4
- data.tar.gz: bc6b7208a5167cb826027564915b6c60db828a2a6a74004eeb682db6f09e3a47
3
+ metadata.gz: 2ed96b651953da062775045e0dfb4938e462ea09d9f3c21670c0bba7ce3d11d5
4
+ data.tar.gz: 4bc5f8c2a32ff07c7e3bf94efa04532c727c77282b8df924843da2be2955de24
5
5
  SHA512:
6
- metadata.gz: 5d6b0a259edfb95b132428ec8c40748a09bdbefbe40c15629d5a39beac2a8109d9175ef62be47fcd29577cbc57b326c6b86d604be872e0f613d987f3e093a145
7
- data.tar.gz: 2da2dd145b8485010e5be157addfb7909ff38f51f2170ed4d283401990b145038a15576eccf9cbe1152c56f76aa531a769cac73880e1a4be5e7b4c7fdfc5c27a
6
+ metadata.gz: f0622fc2bdebc211047b3d1d81aea4d6f85a24271d725dd5ad1cfa8e609bd06e5f406671aa1875d0024c4afe53e24be4c27df0bf4c8d34ed36779306b32d0a32
7
+ data.tar.gz: 0411c210f71f8514eac81fab6b3f8c2c253351bedde9dbc152b5932d16d929cb1e5c9111b9ce0d53ab2532a8e4c0fbbad1db95ecc267f978b493748f7f1e9f45
@@ -690,13 +690,13 @@ A content processor is a concept to refer to a set of two classes:
690
690
 
691
691
  |*DECIDIM_ENABLE_MACHINE_TRANSLATION*
692
692
  | Whether the Decidim attempt to automatically translate missing translations.
693
- Read more about this at xref:services:machine_translation.adoc[Machine Translation] service page.
693
+ Read more about this at xref:services:machine_translations.adoc[Machine Translations] service page.
694
694
  | false
695
695
  | No
696
696
 
697
697
  |*DECIDIM_MACHINE_TRANSLATION_SERVICE*
698
698
  | The name of the class to translate user content.
699
- Read more about this at xref:services:machine_translation.adoc[Machine Translation] service page.
699
+ Read more about this at xref:services:machine_translations.adoc[Machine Translations] service page.
700
700
  | nil
701
701
  | No
702
702
 
@@ -127,7 +127,7 @@ in multi tenant mode. To learn more, check this https://developer.mozilla.org/en
127
127
  ==== Allow participants to register and login
128
128
 
129
129
  Most of the installations use this setting. Means that everyone can register a participant account and login, without restrictions, only with an email account confirmation.
130
- You can disable that confirmation also if you want to through xref:configure:environment_variables.adoc.adoc[Decidim's environment variables], although we do not recommend doing that,
130
+ You can disable that confirmation also if you want to through xref:configure:environment_variables.adoc[Decidim's environment variables], although we do not recommend doing that,
131
131
  as it is a measure for stopping spam accounts. For additional details, read about `DECIDIM_UNCONFIRMED_ACCESS_FOR` environment variable.
132
132
 
133
133
  ==== Do not allow participants to register, but allow existing participants to login
@@ -4,7 +4,7 @@ In order to develop on decidim, you will need:
4
4
 
5
5
  * *Git* 2.34+
6
6
  * *PostgreSQL* 17.4+
7
- * *Ruby* 3.3.0
7
+ * *Ruby* 3.3.4
8
8
  * *NodeJS* 22.14.x
9
9
  * *Npm* 10.9.x
10
10
  * *ImageMagick*
@@ -33,8 +33,8 @@ echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc
33
33
  echo 'eval "$(rbenv init -)"' >> ~/.bashrc
34
34
  source ~/.bashrc
35
35
  git clone https://github.com/rbenv/ruby-build.git ~/.rbenv/plugins/ruby-build
36
- rbenv install 3.3.0
37
- rbenv global 3.3.0
36
+ rbenv install 3.3.4
37
+ rbenv global 3.3.4
38
38
  ----
39
39
 
40
40
  == 2. Installing PostgreSQL
@@ -6,6 +6,7 @@ There are multiple services that can be enabled in a Decidim installation. It is
6
6
  * xref:services:activestorage.adoc[Active Storage]
7
7
  * xref:services:aitools.adoc[AI tools]
8
8
  * xref:services:etherpad.adoc[Etherpad]
9
+ * xref:services:machine_translations.adoc[Machine Translations]
9
10
  * xref:services:maps.adoc[Maps]
10
11
  * xref:services:sms.adoc[SMS]
11
12
  * xref:services:smtp.adoc[SMTP]
@@ -3,6 +3,6 @@
3
3
  # This holds the decidim version and the faker version it uses.
4
4
  module Decidim
5
5
  def self.version
6
- "0.31.4"
6
+ "0.31.6"
7
7
  end
8
8
  end