refinerycms 0.9.7.10 → 0.9.7.11
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile +9 -9
- data/bin/refinery-upgrade-096-to-097 +1 -1
- data/changelog.md +180 -158
- data/features/refinery/create_inquiries.feature +5 -7
- data/features/refinery/dashboard.feature +28 -16
- data/features/refinery/manage_files.feature +14 -19
- data/features/refinery/manage_images.feature +13 -26
- data/features/refinery/manage_inquiries.feature +6 -8
- data/features/refinery/manage_pages.feature +6 -0
- data/features/refinery/manage_users.feature +26 -0
- data/features/refinery/search.feature +37 -0
- data/features/refinery/site_bar.feature +1 -1
- data/features/step_definitions/refinery/file_steps.rb +4 -0
- data/features/step_definitions/refinery/image_steps.rb +4 -0
- data/features/step_definitions/refinery/inquiry_steps.rb +12 -0
- data/features/step_definitions/refinery/page_steps.rb +6 -2
- data/features/support/paths.rb +9 -0
- data/public/images/refinery/carousel-left.png +0 -0
- data/public/images/refinery/carousel-right.png +0 -0
- data/public/javascripts/jquery/jquery.jcarousel.js +896 -0
- data/public/javascripts/refinery/admin.js +50 -17
- data/public/javascripts/wymeditor/lang/da.js +47 -0
- data/public/stylesheets/refinery/refinery.css +20 -1
- data/vendor/plugins/images/app/controllers/admin/images_controller.rb +8 -8
- data/vendor/plugins/images/app/views/admin/images/_existing_image.html.erb +1 -1
- data/vendor/plugins/images/app/views/admin/images/_grid_view.html.erb +2 -1
- data/vendor/plugins/images/app/views/admin/images/_list_view_image.html.erb +2 -1
- data/vendor/plugins/images/app/views/admin/images/insert.html.erb +1 -1
- data/vendor/plugins/inquiries/app/controllers/admin/inquiries_controller.rb +2 -6
- data/vendor/plugins/inquiries/app/views/admin/inquiries/_inquiry.html.erb +2 -1
- data/vendor/plugins/inquiries/app/views/admin/inquiries/show.html.erb +2 -1
- data/vendor/plugins/inquiries/config/locales/pt-BR.yml +2 -0
- data/vendor/plugins/pages/app/views/admin/pages/_form_new_page_parts.html.erb +2 -2
- data/vendor/plugins/pages/app/views/admin/pages/_form_page_parts.html.erb +3 -3
- data/vendor/plugins/pages/app/views/admin/pages/_page.html.erb +1 -0
- data/vendor/plugins/pages/app/views/admin/pages/_sortable_list.html.erb +3 -1
- data/vendor/plugins/pages/app/views/admin/pages/index.html.erb +2 -6
- data/vendor/plugins/pages/config/locales/en.yml +2 -0
- data/vendor/plugins/pages/config/locales/pt-BR.yml +2 -0
- data/vendor/plugins/refinery/app/views/admin/_head.html.erb +6 -4
- data/vendor/plugins/refinery/app/views/shared/_head.html.erb +4 -3
- data/vendor/plugins/refinery/app/views/shared/_html5_for_ie.js.erb +5 -0
- data/vendor/plugins/refinery/app/views/shared/admin/_form_actions.html.erb +4 -1
- data/vendor/plugins/refinery/app/views/shared/admin/_search.html.erb +1 -1
- data/vendor/plugins/refinery/app/views/shared/admin/_sortable_list.html.erb +4 -4
- data/vendor/plugins/refinery/lib/crud.rb +62 -29
- data/vendor/plugins/refinery/lib/generators/refinery_plugin/templates/rails/init.rb +1 -1
- data/vendor/plugins/refinery/lib/generators/refinery_plugin/templates/views/admin/_sortable_list.html.erb +3 -1
- data/vendor/plugins/refinery/lib/generators/refinery_plugin/templates/views/admin/index.html.erb +1 -3
- data/vendor/plugins/refinery/lib/refinery.rb +1 -1
- data/vendor/plugins/refinery/lib/tasks/refinery.rake +5 -0
- data/vendor/plugins/refinery/plugins.md +1 -1
- data/vendor/plugins/refinery_dialogs/app/views/layouts/admin_dialog.html.erb +1 -0
- data/vendor/plugins/resources/app/controllers/admin/resources_controller.rb +2 -5
- data/vendor/plugins/resources/app/views/admin/resources/_resource.html.erb +2 -1
- metadata +15 -5
- data/app/controllers/application.rb +0 -3
data/Gemfile
CHANGED
@@ -17,16 +17,16 @@ gem 'sqlite3-ruby', :require => 'sqlite3' #db_adapter=sqlite3
|
|
17
17
|
# gem 'aws-s3'
|
18
18
|
|
19
19
|
#===REFINERY REQUIRED GEMS===
|
20
|
-
gem 'acts_as_indexed',
|
21
|
-
gem 'authlogic',
|
22
|
-
gem 'friendly_id',
|
23
|
-
gem 'rails',
|
24
|
-
gem 'rmagick',
|
25
|
-
gem 'truncate_html',
|
26
|
-
gem 'will_paginate',
|
20
|
+
gem 'acts_as_indexed', '= 0.6.3', :require => 'acts_as_indexed'
|
21
|
+
gem 'authlogic', '= 2.1.5', :require => 'authlogic'
|
22
|
+
gem 'friendly_id', '= 3.0.6', :require => 'friendly_id'
|
23
|
+
gem 'rails', '= 2.3.8'
|
24
|
+
gem 'rmagick', '~> 2.12.0'
|
25
|
+
gem 'truncate_html', '= 0.3.2', :require => 'truncate_html'
|
26
|
+
gem 'will_paginate', '= 2.3.14', :require => 'will_paginate'
|
27
27
|
|
28
28
|
group :test do
|
29
|
-
gem 'json_pure',
|
29
|
+
gem 'json_pure', '=1.4.5', :require => 'json/pure'
|
30
30
|
gem 'factory_girl'
|
31
31
|
gem 'test-unit', '= 1.2.3'
|
32
32
|
gem 'capybara'
|
@@ -45,7 +45,7 @@ end
|
|
45
45
|
|
46
46
|
#===REQUIRED FOR REFINERY GEM INSTALL===
|
47
47
|
# Leave the gem below disabled (commented out) if you're not using the gem install method.
|
48
|
-
# gem 'refinerycms', '= 0.9.7.
|
48
|
+
# gem 'refinerycms', '= 0.9.7.11'
|
49
49
|
#===END OF REFINERY GEM INSTALL REQUIREMENTS===
|
50
50
|
|
51
51
|
# Bundle gems for certain environments:
|
@@ -3,7 +3,7 @@ require 'pathname'
|
|
3
3
|
require 'fileutils'
|
4
4
|
require 'yaml'
|
5
5
|
|
6
|
-
refinery_root = if defined?(REFINERY_ROOT) and
|
6
|
+
refinery_root = if defined?(REFINERY_ROOT) and REFINERY_ROOT.is_a?(Pathname)
|
7
7
|
REFINERY_ROOT
|
8
8
|
else
|
9
9
|
Pathname.new(File.expand_path(File.dirname(__FILE__) << "/.."))
|
data/changelog.md
CHANGED
@@ -1,420 +1,442 @@
|
|
1
|
+
## 0.9.7.11 [07 August 2010]
|
2
|
+
* Removed ``app/controllers/application.rb`` due to its serious deprecation. Fixed deprecations in how we use acts_as_indexed. [Philip Arndt](http://github.com/parndt)
|
3
|
+
* Added passing cucumber features for search for: [Uģis Ozols](http://github.com/ugisozols)
|
4
|
+
- Images
|
5
|
+
- Files
|
6
|
+
- Inquiries
|
7
|
+
- Pages
|
8
|
+
* Moved HTML5 enabling script to a partial so that IE always runs it first. [Philip Arndt](http://github.com/parndt)
|
9
|
+
* Fixed some invalid HTML. [Bo Frederiksen](http://github.com/bofrede)
|
10
|
+
* Added Danish translation for WYMeditor. [Bo Frederiksen](http://github.com/bofrede)
|
11
|
+
* Fixes for Tooltips [Philip Arndt](http://github.com/parndt)
|
12
|
+
- Tooltips were not showing in dialogues, they now are.
|
13
|
+
- Tooltips would not position properly above links, they now do.
|
14
|
+
- The Tooltips' nibs (the arrow) would not sit properly centered above the element if the tooltip had to move for the browser window size, they now do.
|
15
|
+
* Lots of fixes for translations. [Uģis Ozols](http://github.com/ugisozols)
|
16
|
+
* Fix XSS vulnerability on page meta information by escaping the relevant fields properly [David Jones](http://github.com/djones)
|
17
|
+
* Ensure that the generator script grabs the first attribute that is a string, not just the first attribute, when choosing the field for Dashboard activity. [Joe Sak](http://github.com/joemsak)
|
18
|
+
* Updated ``json-pure`` to ``1.4.5``, now using the actual gem [Philip Arndt](http://github.com/parndt)
|
19
|
+
* [See full list](http://github.com/resolve/refinerycms/compare/0.9.7.10...master)
|
20
|
+
|
21
|
+
|
1
22
|
## 0.9.7.10 [02 August 2010]
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
23
|
+
* Added options to site_bar partial to allow particular components to be disabled (CSS, JS, jQuery or cornering script) so that they don't interfere with these already being included in the theme. [Philip Arndt](http://github.com/parndt)
|
24
|
+
* Fixed the schema file as it was invalid somehow. [Steven Heidel](http://github.com/stevenheidel)
|
25
|
+
* Made search more consistent and added it to Spam/Ham. [Uģis Ozols](http://github.com/ugisozols)
|
26
|
+
* Fixed a bug with adding new resources. [Steven Heidel](http://github.com/stevenheidel)
|
27
|
+
* Fixed a range of issues with translation keys and grammar between different languages. [Uģis Ozols](http://github.com/ugisozols)
|
28
|
+
* [See full list](http://github.com/resolve/refinerycms/compare/0.9.7.9...0.9.7.10)
|
7
29
|
|
8
30
|
## 0.9.7.9 [30 July 2010]
|
9
31
|
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
32
|
+
* Added a theme generator to create the basic file structure of a new theme. [David Jones](http://github.com/djones) and [Levi Cole](http://github.com/levicole)
|
33
|
+
* Renamed ``script/generate refinery`` to ``script/generate refinery_plugin``. [David Jones](http://github.com/djones)
|
34
|
+
* Add deprecation notice to ``script/generate refinery``. [David Jones](http://github.com/djones)
|
35
|
+
* Updated documentation to reflect new generator changes. [David Jones](http://github.com/djones)
|
36
|
+
* Added tests for both plugin and theme generators. [David Jones](http://github.com/djones) and [Levi Cole](http://github.com/levicole)
|
37
|
+
* Refactored the ``refinerycms`` & ``refinery-upgrade-097-to-097`` tasks to make better use of Pathname. [Philip Arndt](http://github.com/parndt)
|
38
|
+
* Added more cucumber features and tagged existing ones. [Philip Arndt](http://github.com/parndt), [James Fiderlick](http://github.com/jamesfid) and [Steven Heidel](http://github.com/stevenheidel)
|
39
|
+
* Removed mysterious ``page_translations`` table if you had it. [Philip Arndt](http://github.com/parndt)
|
40
|
+
* Added workaround for tests that involve dialogues. [Uģis Ozols](http://github.com/ugisozols)
|
41
|
+
* Added as default the ability for forms to know whether they are inside a modal / dialog. [Philip Arndt](http://github.com/parndt)
|
42
|
+
* [See full list](http://github.com/resolve/refinerycms/compare/0.9.7.8...0.9.7.9)
|
21
43
|
|
22
44
|
## 0.9.7.8 [23 July 2010]
|
23
45
|
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
46
|
+
* Refactored Amazon S3 and gem installation to make it easier to install on Heroku. [Steven Heidel](http://github.com/stevenheidel)
|
47
|
+
* Made project more testable. Renamed rake refinery:test_all to rake test:refinery [Philip Arndt](http://github.com/parndt)
|
48
|
+
* Documentation improved [David Jones](http://github.com/djones), [Philip Arndt](http://github.com/parndt) and [Steven Heidel](http://github.com/stevenheidel)
|
49
|
+
* Installed spork for use with systems that support forking for performance improvements. Doesn't run on Windows. [Philip Arndt](http://github.com/parndt) and [James Fiderlick](http://github.com/jamesfid)
|
50
|
+
* Improvements and new translations for Norsk Bokmål localisation. [Ken Paulsen](http://github.com/ken-guru)
|
51
|
+
* Ensured that RefinerySetting restrictions work properly using a before_save handler. [Joe Sak](http://github.com/joemsak)
|
52
|
+
* Updated jquery-html5-placeholder-shim to latest version. [Amanda Wagener](http://github.com/awagener)
|
53
|
+
* [See full list](http://github.com/resolve/refinerycms/compare/0.9.7.7...0.9.7.8)
|
32
54
|
|
33
55
|
## 0.9.7.7 [20 July 2010]
|
34
56
|
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
57
|
+
* Fixed an issue in the plugin generator that saw locales being created with singular_name not the interpreted version. [Philip Arndt](http://github.com/parndt) and [Joe Sak](http://github.com/joemsak)
|
58
|
+
* Fixed an issue with non-MySQL databases. [Lee Irving](http://github.com/magpieuk)
|
59
|
+
* Refactored versioning and .gitignore file so that both are easier to follow and use. [Steven Heidel](http://github.com/stevenheidel)
|
60
|
+
* Added rake refinery:test_all command to run all tests Refinery has. [Steven Heidel](http://github.com/stevenheidel)
|
61
|
+
* Fixed deprecation warnings with translate rake tasks. [Steven Heidel](http://github.com/stevenheidel)
|
62
|
+
* Bugfixes, some IE compatibility. [Philip Arndt](http://github.com/parndt)
|
63
|
+
* Fix syntax errors in existing resource dialog. [David Jones](http://github.com/djones)
|
64
|
+
* Identified and fixed a positioning bug in dialogues [Joe Sak](http://github.com/joemsak) and [Philip Arndt](http://github.com/parndt)
|
65
|
+
* Fixed issue that was causing Refinery to load in rake tasks twice if they lived under ``"#{Rails.root}/vendor/plugins"``. [David Jones](http://github.com/djones) and [Philip Arndt](http://github.com/parndt)
|
66
|
+
* [See full list](http://github.com/resolve/refinerycms/compare/0.9.7.6...0.9.7.7)
|
45
67
|
|
46
68
|
## 0.9.7.6 [15 July 2010]
|
47
69
|
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
70
|
+
* Bugfixes, fixed some failing tests. [Philip Arndt](http://github.com/parndt)
|
71
|
+
* More pt-BR translation keys translated. [Kivanio Barbosa](http://github.com/kivanio)
|
72
|
+
* Locked gems using ``Gemfile.lock``. [David Jones](http://github.com/djones)
|
73
|
+
* Changed 'refinery' task to 'refinerycms' as that is our gem's name. [Steven Heidel](http://github.com/stevenheidel)
|
74
|
+
* Fixed bug where settings were still considered restricted if NULL. [Steven Heidel](http://github.com/stevenheidel)
|
75
|
+
* Ensures that bundler is available before creating an application from a gem. [Philip Arndt](http://github.com/parndt)
|
76
|
+
* Application generator (from gem) and application upgrade bin task. (from 0.9.6) is now Ruby 1.9.2 compatible. [Philip Arndt](http://github.com/parndt)
|
77
|
+
* bin/refinery-upgrade-from-096-to-097 will no longer allow you to run it if Gemfile is present and thus signifying an upgraded app. [Philip Arndt](http://github.com/parndt)
|
78
|
+
* Cleaned up syntax, changed CSS involving dialogues. [Philip Arndt](http://github.com/parndt)
|
79
|
+
* [See full list](http://github.com/resolve/refinerycms/compare/0.9.7.5...0.9.7.6)
|
58
80
|
|
59
81
|
## 0.9.7.5 [08 July 2010]
|
60
82
|
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
83
|
+
* Wrote an upgrade task for migrating from 0.9.6.x releases of RefineryCMS. Just run refinery-update-096-to-097 inside your application's directory. [Philip Arndt](http://github.com/parndt)
|
84
|
+
* Improved code used to include gem rake tasks and script/generate tasks into the Refinery application to fix issue with these tasks not being found. [Philip Arndt](http://github.com/parndt)
|
85
|
+
* Fixed a broken migration that would mean pages were missing upon upgrading. [Jesper Hvirring Henriksen](http://github.com/hvirring)
|
86
|
+
* More pt-BR translation keys translated. [Kivanio Barbosa](http://github.com/kivanio)
|
87
|
+
* [See full list](http://github.com/resolve/refinerycms/compare/0.9.7.4...0.9.7.5)
|
66
88
|
|
67
89
|
## 0.9.7.4 [07 July 2010]
|
68
90
|
|
69
|
-
|
70
|
-
|
91
|
+
* Fixed critical issue in the i18n routing pattern that was matching prefixes like /news/ as a locale incorrectly. [Philip Arndt](http://github.com/parndt)
|
92
|
+
* [See full list](http://github.com/resolve/refinerycms/compare/0.9.7.3...0.9.7.4)
|
71
93
|
|
72
94
|
## 0.9.7.3 [07 July 2010]
|
73
95
|
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
96
|
+
* Falls back to default locale when a translation key can not be located in the current locale, only in production mode. [Philip Arndt](http://github.com/parndt)
|
97
|
+
* Fixed issue creating a Refinery site using bin/refinery where directory paths contained spaces. [Philip Arndt](http://github.com/parndt)
|
98
|
+
* Fixed issue when using script/generate refinery surrounding the migration incorrectly using the plugin's title. [Philip Arndt](http://github.com/parndt)
|
99
|
+
* Added verbose=true option when running rake refinery:update that prints out everything it's doing. [Philip Arndt](http://github.com/parndt)
|
100
|
+
* [See full list](http://github.com/resolve/refinerycms/compare/0.9.7.2...0.9.7.3)
|
79
101
|
|
80
102
|
## 0.9.7.2 [06 July 2010]
|
81
103
|
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
104
|
+
* Bugfixes with users and roles. [Philip Arndt](http://github.com/parndt) and [Amanda Wagener](http://github.com/awagener)
|
105
|
+
* Fixed the rake translate:lost_in_translation LOCALE=en and rake translate:lost_in_translation_all tasks so that they accurately reflect the missing i18n translation keys. [Philip Arndt](http://github.com/parndt)
|
106
|
+
* Refactored routing of i18n to allow different default frontend and backend locales. [Philip Arndt](http://github.com/parndt)
|
107
|
+
* Added better grammar support for some i18n. [Halan Pinheiro](http://github.com/halan)
|
108
|
+
* Improved output of rake refinery:update task and removed bin/refinery-update-core task. [Steven Heidel](http://github.com/stevenheidel)
|
109
|
+
* Set config.ru to run in production RAILS_ENV by default. [Philip Arndt](http://github.com/parndt)
|
110
|
+
* [See full list](http://github.com/resolve/refinerycms/compare/0.9.7.1...0.9.7.2)
|
89
111
|
|
90
112
|
## 0.9.7.1 [03 July 2010]
|
91
113
|
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
114
|
+
* Bugfixes in the gem installation method process. [Philip Arndt](http://github.com/parndt)
|
115
|
+
* Made installing from gem faster. [Philip Arndt](http://github.com/parndt)
|
116
|
+
* Provided example files for sqlite3, mysql and postgresql. [Philip Arndt](http://github.com/parndt)
|
117
|
+
* Created option for specifying a database adapter (sqlite3, mysql or postgresql) when creating from Gem. [Philip Arndt](http://github.com/parndt)
|
118
|
+
* Other bugfixes including UI consistency around signup. [Philip Arndt](http://github.com/parndt)
|
119
|
+
* [See full list](http://github.com/resolve/refinerycms/compare/0.9.7...0.9.7.1)
|
98
120
|
|
99
121
|
## 0.9.7 [02 July 2010]
|
100
122
|
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
123
|
+
* Full backend internationalisation (i18n) support and frontend i18n routing. [Maarten Hoogendoorn](http://github.com/moretea) and [Philip Arndt](http://github.com/parndt) and many others
|
124
|
+
* Marketable URLs, such as "/contact". [Joshua Davey](http://github.com/jgdavey) and [Joe Sak](http://github.com/joemsak).
|
125
|
+
* Switched to bundler and rack. [Alex Coles](http://github.com/myabc) and [Philip Arndt](http://github.com/parndt)
|
126
|
+
* Added options to Refinery Settings :restricted, :scoping, :callback_proc_as_string. [Steven Heidel](http://github.com/stevenheidel) and [Philip Arndt](http://github.com/parndt)
|
127
|
+
* Added caching abilities to frontend and to RefinerySetting to drastically speed up the application under certain conditions. [Philip Arndt](http://github.com/parndt)
|
128
|
+
* Added spam filtering to contact form. [David Jones](http://github.com/djones)
|
129
|
+
* Full Refinery UI redesign. [Resolve Digital](http://github.com/resolve)
|
130
|
+
* User Role support. [Amanda Wagener](http://github.com/awagener) and [Philip Arndt](http://github.com/parndt)
|
131
|
+
* [See full list](http://github.com/resolve/refinerycms/compare/0.9.6.34...0.9.7)
|
132
|
+
* [See blog post](http://refinerycms.com/blog/refinery-cms-0-9-7-released)
|
111
133
|
|
112
134
|
## 0.9.6.34 [09 May 2010]
|
113
135
|
|
114
|
-
|
136
|
+
* Bugfixes.
|
115
137
|
|
116
138
|
## 0.9.6.33 [06 May 2010]
|
117
139
|
|
118
|
-
|
140
|
+
* Bugfixes.
|
119
141
|
|
120
142
|
## 0.9.6.32 [05 May 2010]
|
121
143
|
|
122
|
-
|
144
|
+
* Bugfixes.
|
123
145
|
|
124
146
|
## 0.9.6.31 [19 April 2010]
|
125
147
|
|
126
|
-
|
148
|
+
* Bugfixes.
|
127
149
|
|
128
150
|
## 0.9.6.30 [15 April 2010]
|
129
151
|
|
130
|
-
|
152
|
+
* Bugfixes.
|
131
153
|
|
132
154
|
## 0.9.6.29 [14 April 2010]
|
133
155
|
|
134
|
-
|
156
|
+
* Bugfixes.
|
135
157
|
|
136
158
|
## 0.9.6.28 [12 April 2010]
|
137
159
|
|
138
|
-
|
160
|
+
* Bugfixes.
|
139
161
|
|
140
162
|
## 0.9.6.27 [12 April 2010]
|
141
163
|
|
142
|
-
|
164
|
+
* Bugfixes.
|
143
165
|
|
144
166
|
## 0.9.6.26 [07 April 2010]
|
145
167
|
|
146
|
-
|
168
|
+
* Bugfixes.
|
147
169
|
|
148
170
|
## 0.9.6.25 [01 April 2010]
|
149
171
|
|
150
|
-
|
172
|
+
* Bugfixes.
|
151
173
|
|
152
174
|
## 0.9.6.24 [26 March 2010]
|
153
175
|
|
154
|
-
|
176
|
+
* Bugfixes.
|
155
177
|
|
156
178
|
## 0.9.6.23 [26 March 2010]
|
157
179
|
|
158
|
-
|
180
|
+
* Bugfixes.
|
159
181
|
|
160
182
|
## 0.9.6.22 [26 March 2010]
|
161
183
|
|
162
|
-
|
184
|
+
* Bugfixes.
|
163
185
|
|
164
186
|
## 0.9.6.21 [23 March 2010]
|
165
187
|
|
166
|
-
|
188
|
+
* Bugfixes.
|
167
189
|
|
168
190
|
## 0.9.6.19 [03 March 2010]
|
169
191
|
|
170
|
-
|
192
|
+
* Bugfixes.
|
171
193
|
|
172
194
|
## 0.9.6.18 [02 March 2010]
|
173
195
|
|
174
|
-
|
196
|
+
* Bugfixes.
|
175
197
|
|
176
198
|
## 0.9.6.17 [02 March 2010]
|
177
199
|
|
178
|
-
|
200
|
+
* Bugfixes.
|
179
201
|
|
180
202
|
## 0.9.6.16 [02 March 2010]
|
181
203
|
|
182
|
-
|
204
|
+
* Bugfixes.
|
183
205
|
|
184
206
|
## 0.9.6.15 [01 March 2010]
|
185
207
|
|
186
|
-
|
208
|
+
* Bugfixes.
|
187
209
|
|
188
210
|
## 0.9.6.14 [24 February 2010]
|
189
211
|
|
190
|
-
|
212
|
+
* Bugfixes.
|
191
213
|
|
192
214
|
## 0.9.6.13 [23 February 2010]
|
193
215
|
|
194
|
-
|
216
|
+
* Bugfixes.
|
195
217
|
|
196
218
|
## 0.9.6.12 [16 February 2010]
|
197
219
|
|
198
|
-
|
220
|
+
* Bugfixes.
|
199
221
|
|
200
222
|
## 0.9.6.11 [16 February 2010]
|
201
223
|
|
202
|
-
|
224
|
+
* Bugfixes.
|
203
225
|
|
204
226
|
## 0.9.6.10 [15 February 2010]
|
205
227
|
|
206
|
-
|
228
|
+
* Bugfixes.
|
207
229
|
|
208
230
|
## 0.9.6.9 [15 February 2010]
|
209
231
|
|
210
|
-
|
232
|
+
* Bugfixes.
|
211
233
|
|
212
234
|
## 0.9.6.8 [14 February 2010]
|
213
235
|
|
214
|
-
|
236
|
+
* Bugfixes.
|
215
237
|
|
216
238
|
## 0.9.6.7 [10 February 2010]
|
217
239
|
|
218
|
-
|
240
|
+
* Bugfixes.
|
219
241
|
|
220
242
|
## 0.9.6.6 [10 February 2010]
|
221
243
|
|
222
|
-
|
244
|
+
* Bugfixes.
|
223
245
|
|
224
246
|
## 0.9.6.5 [08 February 2010]
|
225
247
|
|
226
|
-
|
248
|
+
* Bugfixes.
|
227
249
|
|
228
250
|
## 0.9.6.4 [07 February 2010]
|
229
251
|
|
230
|
-
|
252
|
+
* Bugfixes.
|
231
253
|
|
232
254
|
## 0.9.6.3 [07 February 2010]
|
233
255
|
|
234
|
-
|
256
|
+
* Bugfixes.
|
235
257
|
|
236
258
|
## 0.9.6.2 [04 February 2010]
|
237
259
|
|
238
|
-
|
260
|
+
* Bugfixes.
|
239
261
|
|
240
262
|
## 0.9.6.1 [04 February 2010]
|
241
263
|
|
242
|
-
|
264
|
+
* Bugfixes.
|
243
265
|
|
244
266
|
## 0.9.6 [04 February 2010]
|
245
267
|
|
246
|
-
|
268
|
+
* Minor release.
|
247
269
|
|
248
270
|
## 0.9.5.31 [27 January 2010]
|
249
271
|
|
250
|
-
|
272
|
+
* Bugfixes.
|
251
273
|
|
252
274
|
## 0.9.5.30 [24 January 2010]
|
253
275
|
|
254
|
-
|
276
|
+
* Bugfixes.
|
255
277
|
|
256
278
|
## 0.9.5.29 [23 December 2009]
|
257
279
|
|
258
|
-
|
280
|
+
* Bugfixes.
|
259
281
|
|
260
282
|
## 0.9.5.28 [17 December 2009]
|
261
283
|
|
262
|
-
|
284
|
+
* Bugfixes.
|
263
285
|
|
264
286
|
## 0.9.5.27 [16 December 2009]
|
265
287
|
|
266
|
-
|
288
|
+
* Bugfixes.
|
267
289
|
|
268
290
|
## 0.9.5.26 [13 December 2009]
|
269
291
|
|
270
|
-
|
292
|
+
* Bugfixes.
|
271
293
|
|
272
294
|
## 0.9.5.25 [09 December 2009]
|
273
295
|
|
274
|
-
|
296
|
+
* Bugfixes.
|
275
297
|
|
276
298
|
## 0.9.5.24 [08 December 2009]
|
277
299
|
|
278
|
-
|
300
|
+
* Bugfixes.
|
279
301
|
|
280
302
|
## 0.9.5.23 [07 December 2009]
|
281
303
|
|
282
|
-
|
304
|
+
* Bugfixes.
|
283
305
|
|
284
306
|
## 0.9.5.22 [07 December 2009]
|
285
307
|
|
286
|
-
|
308
|
+
* Bugfixes.
|
287
309
|
|
288
310
|
## 0.9.5.21 [06 December 2009]
|
289
311
|
|
290
|
-
|
312
|
+
* Bugfixes.
|
291
313
|
|
292
314
|
## 0.9.5.20 [03 December 2009]
|
293
315
|
|
294
|
-
|
316
|
+
* Bugfixes.
|
295
317
|
|
296
318
|
## 0.9.5.19 [30 November 2009]
|
297
319
|
|
298
|
-
|
320
|
+
* Bugfixes.
|
299
321
|
|
300
322
|
## 0.9.5.18 [29 November 2009]
|
301
323
|
|
302
|
-
|
324
|
+
* Bugfixes.
|
303
325
|
|
304
326
|
## 0.9.5.16 [26 November 2009]
|
305
327
|
|
306
|
-
|
328
|
+
* Bugfixes.
|
307
329
|
|
308
330
|
## 0.9.5.15 [22 November 2009]
|
309
331
|
|
310
|
-
|
332
|
+
* Bugfixes.
|
311
333
|
|
312
334
|
## 0.9.5.14 [19 November 2009]
|
313
335
|
|
314
|
-
|
336
|
+
* Bugfixes.
|
315
337
|
|
316
338
|
## 0.9.5.13 [18 November 2009]
|
317
339
|
|
318
|
-
|
340
|
+
* Bugfixes.
|
319
341
|
|
320
342
|
## 0.9.5.12 [18 November 2009]
|
321
343
|
|
322
|
-
|
344
|
+
* Bugfixes.
|
323
345
|
|
324
346
|
## 0.9.5.11 [18 November 2009]
|
325
347
|
|
326
|
-
|
348
|
+
* Bugfixes.
|
327
349
|
|
328
350
|
## 0.9.5.10 [17 November 2009]
|
329
351
|
|
330
|
-
|
352
|
+
* Bugfixes.
|
331
353
|
|
332
354
|
## 0.9.5.9 [16 November 2009]
|
333
355
|
|
334
|
-
|
356
|
+
* Bugfixes.
|
335
357
|
|
336
358
|
## 0.9.5.8 [15 November 2009]
|
337
359
|
|
338
|
-
|
360
|
+
* Bugfixes.
|
339
361
|
|
340
362
|
## 0.9.5.7 [09 November 2009]
|
341
363
|
|
342
|
-
|
364
|
+
* Bugfixes.
|
343
365
|
|
344
366
|
## 0.9.5.6 [09 November 2009]
|
345
367
|
|
346
|
-
|
368
|
+
* Bugfixes.
|
347
369
|
|
348
370
|
## 0.9.5.5 [08 November 2009]
|
349
371
|
|
350
|
-
|
372
|
+
* Bugfixes.
|
351
373
|
|
352
374
|
## 0.9.5.4 [04 November 2009]
|
353
375
|
|
354
|
-
|
376
|
+
* Bugfixes.
|
355
377
|
|
356
378
|
## 0.9.5.3 [04 November 2009]
|
357
379
|
|
358
|
-
|
380
|
+
* Bugfixes.
|
359
381
|
|
360
382
|
## 0.9.5.2 [04 November 2009]
|
361
383
|
|
362
|
-
|
384
|
+
* Bugfixes.
|
363
385
|
|
364
386
|
## 0.9.5.1 [03 November 2009]
|
365
387
|
|
366
|
-
|
388
|
+
* Bugfixes.
|
367
389
|
|
368
390
|
## 0.9.5 [03 November 2009]
|
369
391
|
|
370
|
-
|
392
|
+
* Minor release.
|
371
393
|
|
372
394
|
## 0.9.4.4 [29 October 2009]
|
373
395
|
|
374
|
-
|
396
|
+
* Bugfixes.
|
375
397
|
|
376
398
|
## 0.9.4.3 [19 October 2009]
|
377
399
|
|
378
|
-
|
400
|
+
* Bugfixes.
|
379
401
|
|
380
402
|
## 0.9.4.2 [19 October 2009]
|
381
403
|
|
382
|
-
|
404
|
+
* Bugfixes.
|
383
405
|
|
384
406
|
## 0.9.4 [15 October 2009]
|
385
407
|
|
386
|
-
|
408
|
+
* Minor release.
|
387
409
|
|
388
410
|
## 0.9.3 [11 October 2009]
|
389
411
|
|
390
|
-
|
391
|
-
|
412
|
+
* Optimise loading of WYM Editors.
|
413
|
+
* Supported more plugins' menu matches.
|
392
414
|
|
393
415
|
## 0.9.2.2 [08 October 2009]
|
394
416
|
|
395
|
-
|
417
|
+
* Bugfixes.
|
396
418
|
|
397
419
|
## 0.9.2.1 [08 October 2009]
|
398
420
|
|
399
|
-
|
421
|
+
* Fix bug with using instance_methods vs using methods to detect whether friendly_id is present.
|
400
422
|
|
401
423
|
## 0.9.2 [08 October 2009]
|
402
424
|
|
403
|
-
|
425
|
+
* Update rails gem requirement to 2.3.4.
|
404
426
|
|
405
427
|
## 0.9.1.2 [07 October 2009]
|
406
428
|
|
407
|
-
|
429
|
+
* Updated JS libraries and added lots of convenience methods.
|
408
430
|
|
409
431
|
## 0.9.1.1 [05 October 2009]
|
410
432
|
|
411
|
-
|
433
|
+
* HTML & CSS changes.
|
412
434
|
|
413
435
|
## 0.9.1 [04 October 2009]
|
414
436
|
|
415
|
-
|
416
|
-
|
437
|
+
* Bugfixes.
|
438
|
+
* Renamed project from Refinery to refinerycms and released as a gem.
|
417
439
|
|
418
440
|
## 0.9 [29 May 2009]
|
419
441
|
|
420
|
-
|
442
|
+
* Initial public release.
|