motor-admin 0.2.87 → 0.3.0

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: 581e66a6d3d4a1c56dd3aa4e422ac5026be74dccccf72e6873b1856d1f83b292
4
- data.tar.gz: 946e05f6c69f295c454d5ddd4a2098a395007c4f382dc3f496ba823a01db65f0
3
+ metadata.gz: 1a15345e4f0be22dda572c79266ae05e856362e2725850cd15e94689b2ce47f8
4
+ data.tar.gz: 523971a3051bc7fb09597187cc30cd1c643ae64307208d8391ea33915c858745
5
5
  SHA512:
6
- metadata.gz: 5c9b4c98d66efce3bdc12d40b065ff01b12afb2861474f883da4aa564a16a6b5b031850a56294ec98fe0cd125480f11df4643100a808e16a217d68754279a3bb
7
- data.tar.gz: bda487aab5a06c7a25d38e579faaa6a94cbbdf8119d2b90128d3c40f21593ab79814b154b98eff2f06a0a7b351921851a9be90156e13549157b4b7be911bb06b
6
+ metadata.gz: a1e695cbcba7f1d0b3d5eac466b3b3c56f2a69ee4a1a1cf0f0f335fa7db5bf3ee16c4e9a7db4e3914fa90a65c16bd2951914f1d9e1f6aa777f869d5864495f82
7
+ data.tar.gz: 22e36131c24fbd2a97cc7650a10a7158546a857b6b2ecfcf391c471176e5d827d23469815ae65ebdfe58cbfe02cafa7b26122b69176c889e9e6115fcdf49ca16
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/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/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/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:
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.87'
4
+ VERSION = '0.3.0'
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-3c1a4d089c244e3b8d3c.css.gz": "main-3c1a4d089c244e3b8d3c.css.gz",
3965
- "main-3c1a4d089c244e3b8d3c.js.LICENSE.txt": "main-3c1a4d089c244e3b8d3c.js.LICENSE.txt",
3966
- "main-3c1a4d089c244e3b8d3c.js.gz": "main-3c1a4d089c244e3b8d3c.js.gz",
3967
- "main.css": "main-3c1a4d089c244e3b8d3c.css",
3968
- "main.js": "main-3c1a4d089c244e3b8d3c.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.87
4
+ version: 0.3.0
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-17 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-3c1a4d089c244e3b8d3c.css.gz
2218
- - ui/dist/main-3c1a4d089c244e3b8d3c.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