motor-admin 0.2.88 → 0.3.1

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: 2356e052b9dc931feac6938de52858405677b3ec77a9622ce7c8638d6d6e065e
4
- data.tar.gz: f67baed680f9f946e754ca50133608f4a65b04b18af7a05401699e29b8e64e85
3
+ metadata.gz: 06b1fd64e0fbf089820c31f81a32a51b83322aef9c402001acebc32fd4d5599f
4
+ data.tar.gz: 5b30706be8e0a505fadcbab04b591f12a89733ca365e1570753757a6ec68839f
5
5
  SHA512:
6
- metadata.gz: f93af476df527f59502e0b2e0066768de83cd3899f54724c41ffaa97f7a4ecc2b76c1b4989140ef14f1b87570b6834d2908fffb1a902ca7e3304128694b2a1bc
7
- data.tar.gz: 1a5ed68a0045b3cff015e81ec850ab1f749e445b6434fc908baf4551a631cbd7925ea88b7343e3113c96f62db36720daf1452645d5710065123650ebe016fc87
6
+ metadata.gz: add8941a7c206d6331428029fa075a30e1f4ed10fdd35c11047302e5322771f3bf555112b4431002392172ee5ed524b5afe35fcfc88b2cd65cfc79478d9e05a0
7
+ data.tar.gz: 4d9a8058d8aa3688f3915554ac01dc40e8c28192f91f09c8db45784e6d5ddebd78d3e623d94e991269c293be66d35e8a209c78202206e86861f14d7b12e884ea
data/README.md CHANGED
@@ -1,8 +1,13 @@
1
- # ⚡ Motor Admin ⚡
1
+ <div align="center">
2
+
3
+ [![Motor Admin](https://user-images.githubusercontent.com/5418788/140520844-a947845d-b579-4b3f-9b49-c539ad3cf580.png)](https://www.getmotoradmin.com)
4
+
5
+ # Motor Admin
2
6
 
3
7
  Low-code Admin panel and Business intelligence Rails engine **(no DSL - configurable from the UI)**.
4
8
 
5
- 🤓 [Demo App](https://motor-admin.herokuapp.com/demo) | 👀 [Features overview](https://www.youtube.com/watch?v=ngVoci8Hll4&list=PLu7llEMh0KcOkR3Uy_RJT0cXPZQKAYVsq&index=1) | ⭐ [Pro](https://www.getmotoradmin.com/pro)
9
+ 🤓 [Demo App](https://motor-admin.herokuapp.com/demo) | 👀 [Features overview](https://www.youtube.com/watch?v=ngVoci8Hll4&list=PLu7llEMh0KcOkR3Uy_RJT0cXPZQKAYVsq&index=1) | ⭐ [Pro](https://www.getmotoradmin.com/ruby-on-rails)
10
+ </div>
6
11
 
7
12
  [![Admin Panel](https://user-images.githubusercontent.com/5418788/119318538-1f30e300-bc82-11eb-94a4-107c31c93b13.png)](https://motor-admin.herokuapp.com/demo)
8
13
 
@@ -40,18 +45,17 @@ $ rails motor:install && rake db:migrate
40
45
  * [Configurations sync between environments](#configurations-sync)
41
46
  * [Authentication](#authentication)
42
47
 
43
- ## [Pro](https://www.getmotoradmin.com/pro)
48
+ ## [Pro](https://www.getmotoradmin.com/ruby-on-rails)
44
49
 
45
50
  * Multiple databases support
46
51
  * Audit log
47
- * Live collaboration
52
+ * Live collaboration notes
48
53
  * Multi-factor authentication
49
54
  * Custom styling
50
55
  * Personalized report alerts via Slack
51
56
  * Full-text search
52
- * Stripe integration
53
57
  * Shareable forms and reports
54
- * [learn more](https://www.getmotoradmin.com/pro)
58
+ * [learn more](https://www.getmotoradmin.com/ruby-on-rails)
55
59
 
56
60
  ### Customizable CRUD
57
61
 
@@ -125,7 +129,7 @@ Sender address can be specified using `MOTOR_ALERTS_FROM_ADDRESS` environment va
125
129
 
126
130
  ![Intelligence search](https://user-images.githubusercontent.com/5418788/119266559-eea26800-bbf3-11eb-8cb3-d0538aa386a9.png)
127
131
 
128
- Intelligence search can be opened via the top right corner button or using <kbd>Cmd</kbd> + <kbd>P</kbd> shortcut.
132
+ Intelligence search can be opened via the top right corner button or using <kbd>Cmd</kbd> + <kbd>K</kbd> shortcut.
129
133
 
130
134
  ### Authorization
131
135
 
@@ -14,6 +14,7 @@ module Motor
14
14
  '.js' => 'application/javascript',
15
15
  '.css' => 'text/css',
16
16
  '.svg' => 'image/svg+xml',
17
+ '.png' => 'image/png',
17
18
  '.woff2' => 'font/woff2'
18
19
  }.freeze
19
20
 
@@ -310,6 +310,7 @@ el:
310
310
  total: Total
311
311
  radar_chart: Radar chart
312
312
  show_on_table: Show on table
313
+ map: Map
313
314
  i:
314
315
  locale: el
315
316
  select:
@@ -315,3 +315,4 @@ en:
315
315
  total: Total
316
316
  radar_chart: Radar chart
317
317
  show_on_table: Show on table
318
+ map: Map
@@ -310,6 +310,7 @@ es:
310
310
  total: Total
311
311
  radar_chart: Radar chart
312
312
  show_on_table: Show on table
313
+ map: Map
313
314
  i:
314
315
  locale: es
315
316
  select:
@@ -306,6 +306,7 @@ pt:
306
306
  total: Total
307
307
  radar_chart: Radar chart
308
308
  show_on_table: Show on table
309
+ map: Map
309
310
  i:
310
311
  locale: pt
311
312
  select:
@@ -26,6 +26,10 @@ module Motor
26
26
 
27
27
  key += Motor::DefineArModels.defined_models_schema_md5.to_s if defined?(Motor::DefineArModels)
28
28
 
29
+ if Rails.env.development?
30
+ key += Digest::MD5.hexdigest(ActiveRecord::Base.descendants.map(&:object_id).sort.join)
31
+ end
32
+
29
33
  key
30
34
  end
31
35
 
data/lib/motor/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Motor
4
- VERSION = '0.2.88'
4
+ VERSION = '0.3.1'
5
5
  end
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -3961,9 +3961,14 @@
3961
3961
  "icons/zoom-pan.svg.gz": "icons/zoom-pan.svg.gz",
3962
3962
  "icons/zoom-question.svg": "icons/zoom-question.svg",
3963
3963
  "icons/zoom-question.svg.gz": "icons/zoom-question.svg.gz",
3964
- "main-c7de9cfab5b4c3373cd8.css.gz": "main-c7de9cfab5b4c3373cd8.css.gz",
3965
- "main-c7de9cfab5b4c3373cd8.js.LICENSE.txt": "main-c7de9cfab5b4c3373cd8.js.LICENSE.txt",
3966
- "main-c7de9cfab5b4c3373cd8.js.gz": "main-c7de9cfab5b4c3373cd8.js.gz",
3967
- "main.css": "main-c7de9cfab5b4c3373cd8.css",
3968
- "main.js": "main-c7de9cfab5b4c3373cd8.js"
3964
+ "images/layers-2x.png": "images/layers-2x.png",
3965
+ "images/layers.png": "images/layers.png",
3966
+ "images/marker-icon-2x.png": "images/marker-icon-2x.png",
3967
+ "images/marker-icon.png": "images/marker-icon.png",
3968
+ "images/marker-shadow.png": "images/marker-shadow.png",
3969
+ "main-66147fbe72d9936a1243.css.gz": "main-66147fbe72d9936a1243.css.gz",
3970
+ "main-66147fbe72d9936a1243.js.LICENSE.txt": "main-66147fbe72d9936a1243.js.LICENSE.txt",
3971
+ "main-66147fbe72d9936a1243.js.gz": "main-66147fbe72d9936a1243.js.gz",
3972
+ "main.css": "main-66147fbe72d9936a1243.css",
3973
+ "main.js": "main-66147fbe72d9936a1243.js"
3969
3974
  }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: motor-admin
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.88
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pete Matsyburka
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-07-18 00:00:00.000000000 Z
11
+ date: 2022-07-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord-filter
@@ -2214,8 +2214,13 @@ files:
2214
2214
  - ui/dist/icons/zoom-out.svg.gz
2215
2215
  - ui/dist/icons/zoom-pan.svg.gz
2216
2216
  - ui/dist/icons/zoom-question.svg.gz
2217
- - ui/dist/main-c7de9cfab5b4c3373cd8.css.gz
2218
- - ui/dist/main-c7de9cfab5b4c3373cd8.js.gz
2217
+ - ui/dist/images/layers-2x.png
2218
+ - ui/dist/images/layers.png
2219
+ - ui/dist/images/marker-icon-2x.png
2220
+ - ui/dist/images/marker-icon.png
2221
+ - ui/dist/images/marker-shadow.png
2222
+ - ui/dist/main-66147fbe72d9936a1243.css.gz
2223
+ - ui/dist/main-66147fbe72d9936a1243.js.gz
2219
2224
  - ui/dist/manifest.json
2220
2225
  homepage:
2221
2226
  licenses:
@@ -2226,9 +2231,10 @@ metadata:
2226
2231
  source_code_uri: https://github.com/motor-admin/motor-admin-rails
2227
2232
  documentation_uri: https://github.com/motor-admin/motor-admin-rails/tree/master/guides
2228
2233
  rubygems_mfa_required: 'true'
2229
- post_install_message: "\n ==================\n Run `rails g motor:upgrade &&
2230
- rake db:migrate`\n to perform data migration and enable the latest features'\n
2231
- \ ==================\n "
2234
+ post_install_message: "\n ==================\n Run `rails g motor:install &&
2235
+ rake db:migrate`\n to configure and start using Motor Admin\n\n Run `rails
2236
+ g motor:upgrade && rake db:migrate`\n to perform data migration and enable the
2237
+ latest features\n ==================\n "
2232
2238
  rdoc_options: []
2233
2239
  require_paths:
2234
2240
  - lib