apostrophe 2.220.7 → 2.220.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## 2.220.9 (2022-02-04)
4
+
5
+ ## Fixes
6
+
7
+ * Worked around bug preventing proper translation of the "Selected" message in certain modal operations. Thanks to [stepanjakl](https://github.com/stepanjakl).
8
+
9
+ ## 2.220.8 (2022-01-20)
10
+
11
+ ## Fixes
12
+
13
+ * Fixes overflowing issue in the editor modals when adding multiple options to an area. This used to cause a scroll to appear and the user had to scroll to see all the options.
14
+ * In the editor modal if there was an area with multiple items added (enough to make the page scrollable) when the user wanted to add another item another scroll bar would appear besides the already existing one and the user had to scroll to see all the options.
15
+ * Fixes i18n processing of a login throttling error message.
16
+
3
17
  ## 2.220.7 (2021-10-13)
4
18
 
5
19
  ## Fixes
@@ -455,7 +455,7 @@ module.exports = {
455
455
  }
456
456
 
457
457
  self.getThrottleLoginErr = function (req, minutes) {
458
- return req.__ns_n(
458
+ return req.__ns(
459
459
  'apostrophe',
460
460
  'Too many login attempts. You may try again in %s minute(s).',
461
461
  minutes
@@ -47,7 +47,6 @@
47
47
  width: 75%;
48
48
  @media @apos-breakpoint-desktop-xl { width: 75%; }
49
49
  height: 100%;
50
- overflow: auto;
51
50
  .apos-scrollbar;
52
51
  }
53
52
 
@@ -8,7 +8,7 @@
8
8
  <select name="batch-operation" class="apos-field-input apos-field-input--small apos-field-input-select apos-manage-batch-operations-select">
9
9
  {% for operation in operations %}
10
10
  <option value="{{ operation.name }}">
11
- {{ __ns('apostrophe', '%s Selected', operation.label) }} (0)
11
+ {{ __ns('apostrophe', ' %s Selected', operation.label) }} (0)
12
12
  </option>
13
13
  {% endfor %}
14
14
  </select>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "apostrophe",
3
- "version": "2.220.7",
3
+ "version": "2.220.9",
4
4
  "description": "The Apostrophe Content Management System.",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/test/package.json CHANGED
@@ -9,13 +9,13 @@
9
9
  "body-parser": "^1.19.0",
10
10
  "cheerio": "^1.0.0-rc.10",
11
11
  "chokidar": "^3.5.1",
12
- "cli-progress": "^3.9.1",
12
+ "cli-progress": "^2.1.1",
13
13
  "connect-flash": "^0.1.1",
14
14
  "connect-multiparty": "^2.2.0",
15
15
  "cookie-parser": "^1.4.5",
16
16
  "credential": "^2.0.0",
17
17
  "cuid": "^1.3.8",
18
- "deep-get-set": "^1.1.1",
18
+ "deep-get-set": "^0.1.1",
19
19
  "diff": "^4.0.1",
20
20
  "emulate-mongo-2-driver": "^1.2.3",
21
21
  "express": "^4.17.1",
@@ -57,7 +57,7 @@
57
57
  "tinycolor2": "^1.4.1",
58
58
  "uglify-js": "^2.8.29",
59
59
  "underscore.string": "^3.3.5",
60
- "uploadfs": "^1.18.4",
60
+ "uploadfs": "^1.17.2",
61
61
  "xregexp": "^2.0.0",
62
62
  "yargs": "^3.32.0",
63
63
  "apostrophe": "^2.0.0"