decidim 0.27.3 → 0.27.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bb090ecf569c1cce660f745262388352502e1df3ea49bf33745cd957b381fe70
4
- data.tar.gz: 30f7314c8359e5c05d52e77b3bb12f9bb27adee7429295a721206efcd30551fd
3
+ metadata.gz: a553c90f53fe9b62fc17e5ca6c517a70cdbe081770fb57cbe62902857851b9bd
4
+ data.tar.gz: c170de943e2de54214b8366ef790ccb55b7aa9fca40b0a80b53bc0ca56989a2b
5
5
  SHA512:
6
- metadata.gz: ebd2a4b855cddf769aa6361238ab4f861cce7d05238d1973441b1452ce4af81468da38f0253d7e71d5cc52cf848bf7c0cef3f643b0b45e92a5fc363d32a6eb4d
7
- data.tar.gz: 05c94d34a2160c8660cf834b52d70ba73e7e7387a5aee96c52038cc51ce43193474add009932a1532ec6d315e0cd2683344ee13ccf5a9a76100112d3f4a2c82d
6
+ metadata.gz: ee13797e9d59f44f718b1b9554a060bc11b01a9c1c627d673661b416c81a96cc0c5c4d5ed30ecf5ff766edb75641b7fc362868d1343359d5457ef6f2c9997055
7
+ data.tar.gz: 9034324d42469daf1bcac24d5b57fe265ecdfbb8f9d160a07a12c6d674a64042a53c9d7ce9555a28499118e0ae7b974e4f47ec7ad391f20a7c1775a1845f632d
data/babel.config.json CHANGED
@@ -20,9 +20,6 @@
20
20
  "corejs": false
21
21
  }
22
22
  ],
23
- [ "@babel/plugin-transform-regenerator", { "async": false }],
24
- [ "@babel/plugin-proposal-private-property-in-object", { "loose": true }],
25
- ["@babel/plugin-proposal-private-methods", { "loose": true }],
26
- ["@babel/plugin-proposal-class-properties", { "loose": true }]
23
+ ["@babel/plugin-transform-regenerator", { "async": false }]
27
24
  ]
28
25
  }
@@ -12,7 +12,7 @@ In order to develop on decidim, you'll need:
12
12
 
13
13
  We're starting with an Ubuntu 22.04.1 LTS. This is an opinionated guide, so you're free to use the technology that you are most comfortable. If you have any doubts and you're blocked you can go and ask on https://matrix.to/#/#decidimdevs:matrix.org[our Matrix.org chat room for developers].
14
14
 
15
- We recommend to have at least some basic proficiency in Ruby on Rails (a good starting point is http://guides.rubyonrails.org/getting_started.html[Getting Started with Ruby on Rails]) and have some knowledge on how gems work.
15
+ We recommend to have at least some basic proficiency in GNU/Linux (i.e. how to use the command-line, packages, etc), networking knowledge, server administration, development in general, and some basic knowledge about software package managers. It would be great to have Ruby on Rails development basics (a good starting point is http://guides.rubyonrails.org/getting_started.html[Getting Started with Ruby on Rails]) and have some knowledge on how package libraries are working (we use `bundler` for handling ruby packages, and `npm`/`yarn` for handling javascript).
16
16
 
17
17
  In this guide, we'll see how to install rbenv, PostgreSQL, Node.js and, Decidim, and how to configure everything together for a development environment. Mind that if you want to make a production deployment with real users this guide isn't enough, you should configure a web server (like nginx), backups, monitoring, etc. This is out of the scope of this guide, but you can follow the https://platoniq.github.io/decidim-install/[Platoniq guide].
18
18
 
@@ -1,6 +1,14 @@
1
1
  = Maps and geocoding
2
2
 
3
3
  Decidim has the ability to geocode proposals and meetings and display them on a map.
4
+
5
+ [CAUTION]
6
+ ====
7
+ It is important to notice that you cannot use the OpenStreetMap service from openstreetmap.org. As they mention in their https://operations.osmfoundation.org/policies/tiles/[tile usage policy]:
8
+
9
+ > OpenStreetMap data is free for everyone to use. Our tile servers are not.
10
+ ====
11
+
4
12
  Decidim has built-in support for the following map service providers:
5
13
 
6
14
  * http://here.com[HERE Maps] (Recommended)
@@ -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.27.3"
6
+ "0.27.5"
7
7
  end
8
8
  end