Skip to content

Commit 06cb496

Browse files
committed
Updated CHANGELOG with all changes since 0.3.4
1 parent 265f424 commit 06cb496

File tree

1 file changed

+45
-3
lines changed

1 file changed

+45
-3
lines changed

CHANGELOG.md

Lines changed: 45 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,27 +11,48 @@ since we've changed both the CSS and JS files.
1111
`config.allow_comments = true`. Use the new namespace specific configurations
1212
to allow or disallow configuration within a specific namespace.
1313

14+
### New Features
15+
16+
* Namespace specific configurations in the initializer ([@gregbell][])
17+
* [#624][]: Set an image as the site title using `config.site_title_image` in the
18+
Active Admin initializer. ([@mattvague][])
19+
* [#758][]: Create a standalone page in Active Admin using
20+
`ActiveAdmin.register_page` ([@pcreux][])
21+
1422
### Enhancements
1523

1624
* [#428][]: Paginated Collection now supports `:param_name` and `:download_links`.
1725
These two additions allow you to use the `paginated_collection` component multiple
1826
times on show screens. ([@samvincent][])
19-
* Namespace specific configurations in the initializer ([@gregbell][])
20-
* [#741][]: Default media type of css is now "all" instead of "screen" ([@sftsang][])
27+
* [#527][]: Refactored all form helpers to use Formtastic 2([@ebeigarts][])
28+
* [#551][]: Dashboards can now be conditionally displayed using `:if` ([@samvincent][])
29+
* [#555][]: scopes now accept `:if`. They only get displayed if the proc returns true ([@macfanatic][])
30+
* [#601][]: Breadcrumbs are internationalized ([@vairix][]-ssierra)
31+
* [[#605][]]: Validations on ActiveAdmin::Comment should work with
32+
`accepts_nested_attributes_for` ([@DMajrekar ][])
33+
* [#623][]: Index table can sort on any table using `:sort => 'table.column'` ([@ZequeZ][])
34+
* [#638][]: Add `:label` option to `status_tag` component ([@fbuenemann][])
35+
* [#644][]: Added proper I18n support to pagination ([@fbuenemann][])
36+
* [#689][]: Scopes preserve title when provided as a string ([@macfanatic][])
2137
* [#711][]: Styles update. Now sexier and more refined design. Redesigned Scopes. Split
2238
css into smaller files. ([@mattvague][])
39+
* [#741][]: Default media type of css is now "all" instead of "screen" ([@sftsang][])
40+
* [#751][]: Pagination numbers work with a custom `[@per_page][]` ([@DMajrekar][])
41+
* `default_actions` in an index table only display implemented actions ([@watson][])
2342

2443
### Bug Fixes
2544

45+
* [#590][]: Comments now work in the default namespace ([@jbarket][])
2646
* [#780][]: Fix stack level too deep exception when logout path is setup to use
2747
`:logout_path` named route. ([@george][])
48+
* [#637][]: Fix scope all I18n ([@fbuenemann][])
2849

2950
### Dependencies
3051

31-
* [#527][]: Active Admin now requires Formtastic 2.0 or greater ([@ebeigarts][])
3252
* [#468][]: Removed vendored jQuery. Now depends on the jquery-rails gem. If you're
3353
running Rails 3.0.x (no asset pipeline), make sure to run
3454
`rails generate active_admin:assets` to generate the correct files. ([@gregbell][])
55+
* [#527][]: Active Admin now requires Formtastic 2.0 or greater ([@ebeigarts][])
3556
* [#711][]: Active admin now depends on Bourbon > 1.0.0. If you're using Rails
3657
3.0.x, make sure to run `rails generate active_admin:assets` to ensure you
3758
have the correct css files ([@mattvague][])
@@ -326,24 +347,45 @@ of the highlights. 250 commits. Enough said.
326347
[#468]: https://github.com/gregbell/active_admin/issues/468
327348
[#505]: https://github.com/gregbell/active_admin/issues/505
328349
[#527]: https://github.com/gregbell/active_admin/issues/527
350+
[#551]: https://github.com/gregbell/active_admin/issues/551
351+
[#555]: https://github.com/gregbell/active_admin/issues/555
352+
[#590]: https://github.com/gregbell/active_admin/issues/590
353+
[#601]: https://github.com/gregbell/active_admin/issues/601
354+
[#605]: https://github.com/gregbell/active_admin/issues/605
355+
[#623]: https://github.com/gregbell/active_admin/issues/623
356+
[#624]: https://github.com/gregbell/active_admin/issues/624
357+
[#637]: https://github.com/gregbell/active_admin/issues/637
358+
[#638]: https://github.com/gregbell/active_admin/issues/638
359+
[#644]: https://github.com/gregbell/active_admin/issues/644
360+
[#689]: https://github.com/gregbell/active_admin/issues/689
329361
[#711]: https://github.com/gregbell/active_admin/issues/711
330362
[#741]: https://github.com/gregbell/active_admin/issues/741
363+
[#751]: https://github.com/gregbell/active_admin/issues/751
364+
[#758]: https://github.com/gregbell/active_admin/issues/758
331365
[#780]: https://github.com/gregbell/active_admin/issues/780
366+
[@DMajrekar]: https://github.com/DMajrekar
367+
[@ZequeZ]: https://github.com/ZequeZ
332368
[@dhiemstra]: https://github.com/dhiemstra
333369
[@doug316]: https://github.com/doug316
334370
[@ebeigarts]: https://github.com/ebeigarts
335371
[@emzeq]: https://github.com/emzeq
336372
[@fabiokr]: https://github.com/fabiokr
373+
[@fbuenemann]: https://github.com/fbuenemann
337374
[@george]: https://github.com/george
338375
[@gregbell]: https://github.com/gregbell
376+
[@jbarket]: https://github.com/jbarket
339377
[@knoopx]: https://github.com/knoopx
340378
[@krug]: https://github.com/krug
379+
[@macfanatic]: https://github.com/macfanatic
341380
[@mattvague]: https://github.com/mattvague
342381
[@mwindwer]: https://github.com/mwindwer
343382
[@page_title]: https://github.com/page_title
344383
[@pcreux]: https://github.com/pcreux
384+
[@per_page]: https://github.com/per_page
345385
[@rolfb]: https://github.com/rolfb
346386
[@samvincent]: https://github.com/samvincent
347387
[@sftsang]: https://github.com/sftsang
348388
[@shayfrendt]: https://github.com/shayfrendt
349389
[@tricknotes]: https://github.com/tricknotes
390+
[@vairix]: https://github.com/vairix
391+
[@watson]: https://github.com/watson

0 commit comments

Comments
 (0)