Package not found. Please check the package name and try again.

udongo 6.6.1 → 6.6.2

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
  SHA1:
3
- metadata.gz: 58d7e86ed4fcca4035545ed995d25206fd7555e4
4
- data.tar.gz: d6ffcfb06e0e6e90af96dcc4b1dbfbc04edf01d5
3
+ metadata.gz: 62f391451e71d53545f02c5f637b3b17882f4c11
4
+ data.tar.gz: 44c8f5dd1f9297bcfa581b43e5e90a391bde6062
5
5
  SHA512:
6
- metadata.gz: 3720366d3db8a601b6e5535b13fd282b1335e9e134a2f2ac4267413d4329b777f6a0bf9b1d7044cdf9db44ffbe5a6309f9a73cf230a14486a22c4013f8e2f47c
7
- data.tar.gz: 55e926e15fdb5b422236075a32797253448c4ab6ec654193464b1bfdcdf4ec646abf6706a8585f7a833426cb333b0ff6bbdac48ce4edc2cc7393726103f75fc8
6
+ metadata.gz: 3bf6416eabea1de304fc7e3cd01185c4c9dcf16d4937f3a38a909ff77c3f19484f80b1a8e878ee144aa3d867fa6b47f4aba174474c524d12a783b84474cee753
7
+ data.tar.gz: 105290d2f0c718567c0ec430ef488f261f2b112c4f184bd969b21b8dd10a694d91893e5161304e226a19a260131a23c1aa69e0a7c5cd5cf1ac0db39c7d0fbb99
@@ -33,7 +33,7 @@ class Backend::Content::Rows::ColumnsController < Backend::BaseController
33
33
  def destroy
34
34
  @column.destroy
35
35
 
36
- path = "edit_translation_backend_#{@column.row.rowable.class.to_s.downcase}_path"
36
+ path = "edit_translation_backend_#{@column.row.rowable.class.to_s.underscore}_path"
37
37
  redirect_to send(path, @column.row.rowable, @column.row.locale, anchor: "content-row-#{@column.row.id}")
38
38
  end
39
39
 
@@ -55,7 +55,7 @@ class Backend::Content::RowsController < Backend::BaseController
55
55
  end
56
56
 
57
57
  def content_path(instance, locale, anchor)
58
- path = "edit_translation_backend_#{instance.class.to_s.downcase}_path"
58
+ path = "edit_translation_backend_#{instance.class.to_s.underscore}_path"
59
59
  send(path, instance, locale, anchor: anchor)
60
60
  end
61
61
 
@@ -8,7 +8,7 @@ class Backend::Forms::SubmissionsController < Backend::Forms::BaseController
8
8
  end
9
9
 
10
10
  def index
11
- @submissions = paginate(@form.submissions)
11
+ @submissions = paginate(@form.submissions.order('id DESC'))
12
12
  end
13
13
 
14
14
  def destroy
data/changelog.md CHANGED
@@ -1,3 +1,10 @@
1
+ 6.6.2 - 2017-07-25
2
+ --
3
+ * Bugfix: using models with multiple words like 'LandingPage' no longer break
4
+ the flexible content.
5
+ * Ehancement: show the newest form submissions on top in the backend.
6
+
7
+
1
8
  6.6.1 - 2017-07-04
2
9
  --
3
10
  * Enhancement: show the submission date in the overview of form submissions.
@@ -56,6 +56,7 @@ nl:
56
56
  synonyms: Synoniemen
57
57
  title: Titel
58
58
  user_id: Gebruiker
59
+ value: Waarde
59
60
  visible: Zichtbaar?
60
61
  width: Breedte
61
62
  url: URL
@@ -1,3 +1,3 @@
1
1
  module Udongo
2
- VERSION = '6.6.1'
2
+ VERSION = '6.6.2'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: udongo
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.6.1
4
+ version: 6.6.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Davy Hellemans
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2017-07-04 00:00:00.000000000 Z
12
+ date: 2017-07-25 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails