decidim 0.29.3 → 0.30.0.rc1

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.
Files changed (37) hide show
  1. checksums.yaml +4 -4
  2. data/decidim.gemspec +1 -1
  3. data/docs/antora.yml +1 -1
  4. data/docs/modules/configure/assets/images/system-dashboard.png +0 -0
  5. data/docs/modules/configure/assets/images/system-log_in.png +0 -0
  6. data/docs/modules/configure/pages/environment_variables.adoc +25 -1
  7. data/docs/modules/configure/pages/initializer.adoc +27 -1
  8. data/docs/modules/configure/pages/system.adoc +145 -0
  9. data/docs/modules/customize/pages/menu.adoc +1 -1
  10. data/docs/modules/customize/pages/oauth.adoc +1 -1
  11. data/docs/modules/develop/assets/images/taxonomies.png +0 -0
  12. data/docs/modules/develop/pages/ai_tools/lang_detection_formatter.adoc +9 -0
  13. data/docs/modules/develop/pages/ai_tools/spam_detection_analyzer.adoc +20 -0
  14. data/docs/modules/develop/pages/ai_tools/spam_detection_service.adoc +25 -0
  15. data/docs/modules/develop/pages/ai_tools/spam_detection_strategy.adoc +43 -0
  16. data/docs/modules/develop/pages/ai_tools/spam_detection_trainer.adoc +83 -0
  17. data/docs/modules/develop/pages/ai_tools.adoc +12 -0
  18. data/docs/modules/develop/pages/classes/models.adoc +4 -3
  19. data/docs/modules/develop/pages/commentable.adoc +127 -0
  20. data/docs/modules/develop/pages/endorsable.adoc +6 -15
  21. data/docs/modules/develop/pages/share_tokens.adoc +153 -11
  22. data/docs/modules/develop/pages/taxonomies.adoc +476 -0
  23. data/docs/modules/install/pages/manual.adoc +4 -4
  24. data/docs/modules/services/pages/aitools.adoc +164 -0
  25. data/docs/modules/services/pages/index.adoc +1 -0
  26. data/docs/modules/services/pages/maps.adoc +3 -3
  27. data/lib/decidim/version.rb +1 -1
  28. data/package-lock.json +300 -167
  29. data/packages/browserslist-config/package.json +1 -1
  30. data/packages/core/package.json +4 -2
  31. data/packages/dev/package.json +1 -1
  32. data/packages/eslint-config/package.json +1 -1
  33. data/packages/prettier-config/package.json +1 -1
  34. data/packages/stylelint-config/package.json +1 -1
  35. data/packages/webpacker/package.json +1 -1
  36. data/packages/webpacker/src/override-config.js +11 -1
  37. metadata +55 -42
@@ -60,7 +60,7 @@ Use the following configuration for HERE Maps:
60
60
  config.maps = {
61
61
  provider: :here,
62
62
  api_key: Rails.application.secrets.maps[:api_key],
63
- static: { url: "https://image.maps.hereapi.com/mia/v3/base/mc/overlay" }
63
+ static: { url: "https://image.maps.ls.hereapi.com/mia/1.6/mapview" }
64
64
  }
65
65
  ----
66
66
 
@@ -241,8 +241,8 @@ As of April 2017, only proposals and meetings have maps and geocoding.
241
241
 
242
242
  === Proposals
243
243
 
244
- In order to enable geocoding for proposals you will need to edit the component configuration and turn on "Geocoding enabled" configuration.
245
- This works for that specific component, so you can have geocoding enabled for proposals in a participatory process, and disabled for another proposals component in the same participatory process.
244
+ In order to enable maps for proposals you will need to edit the component configuration and turn on "Maps enabled" configuration.
245
+ This works for that specific component, so you can have maps enabled for proposals in a participatory process, and disabled for another proposals component in the same participatory process.
246
246
 
247
247
  === Meetings
248
248
 
@@ -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.29.3"
6
+ "0.30.0.rc1"
7
7
  end
8
8
  end