Skip to content

Commit

Permalink
Tidy up, hook into search css for english, set production mode in con…
Browse files Browse the repository at this point in the history
…fig.ru by default and increment version number.
  • Loading branch information
parndt committed Jul 6, 2010
1 parent e635062 commit 281271d
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Expand Up @@ -42,7 +42,7 @@ end

#===REQUIRED FOR REFINERY GEM INSTALL===
# Leave the gem below disabled (commented out) if you're not using the gem install method.
#gem 'refinerycms', '= 0.9.7.1'
#gem 'refinerycms', '= 0.9.7.2'
#===END OF REFINERY GEM INSTALL REQUIREMENTS===

# Bundle gems for certain environments:
Expand Down
13 changes: 13 additions & 0 deletions changelog.md
@@ -1,10 +1,21 @@
## 0.9.7.2 [06 July 2010]

- Bugfixes with users and roles [Philip Arndt and Amanda Wagener]
- 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]
- Refactored routing of i18n to allow different default frontend and backend locales. [Philip Arndt]
- Added better grammar support for some i18n [Halan Pinheiro]
- Improved output of rake refinery:update task and removed bin/refinery-update-core task. [Steven Heidel]
- Set config.ru to run in production RAILS_ENV by default [Philip Arndt]
- [See full list](http://github.com/resolve/refinerycms/compare/0.9.7.1...0.9.7.2)

## 0.9.7.1 [03 July 2010]

- Bugfixes in the gem installation method process. [Philip Arndt]
- Made installing from gem faster. [Philip Arndt]
- Provided example files for sqlite3, mysql and postgresql. [Philip Arndt]
- Created option for specifying a database adapter (sqlite3, mysql or postgresql) when creating from Gem. [Philip Arndt]
- Other bugfixes including UI consistency around signup. [Philip Arndt]
- [See full list](http://github.com/resolve/refinerycms/compare/0.9.7...0.9.7.1)

## 0.9.7 [02 July 2010]

Expand All @@ -16,6 +27,8 @@
- Added spam filtering to contact form. [djones]
- Full Refinery UI redesign. [Resolve Digital]
- User Role support. [Amanda Wagener and Philip Arndt]
- [See full list](http://github.com/resolve/refinerycms/compare/0.9.6.34...0.9.7)
- [See blog post](http://refinerycms.com/blog/refinery-cms-0-9-7-released)

## 0.9.6.34 [09 May 2010]

Expand Down
2 changes: 2 additions & 0 deletions config.ru
@@ -1,5 +1,7 @@
ENV["RAILS_ENV"] ||= "production"
require File.expand_path("../config/application", __FILE__)

use Rails::Rack::LogTailer
use Rails::Rack::Static

run ActionController::Dispatcher.new
3 changes: 3 additions & 0 deletions public/stylesheets/refinery/refinery.css
Expand Up @@ -977,6 +977,9 @@ ul#menu.reordering_menu li a {
.pt-BR #search {
width: 187px;
}
.en #search {
width: 210px;
}
.search_form {
position: relative;
}
Expand Down
2 changes: 1 addition & 1 deletion refinerycms.gemspec
@@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = %q{refinerycms}
s.version = %q{0.9.7.1}
s.version = %q{0.9.7.2}
s.description = %q{A beautiful open source Ruby on Rails content manager for small business. Easy to extend, easy to use, lightweight and all wrapped up in a super slick UI.}
s.date = %q{2010-07-06}
s.summary = %q{A beautiful open source Ruby on Rails content manager for small business.}
Expand Down
3 changes: 1 addition & 2 deletions vendor/plugins/refinery/app/views/layouts/admin.html.erb
@@ -1,8 +1,7 @@
<!DOCTYPE html>
<html>
<%= render :partial => "/admin/head" %>
<% i18n_class = RefinerySetting.find_by_name('i18n_translation_current_locale').value.to_s %>
<body<%= " class='login #{i18n_class}'" unless logged_in? %><%= " class='splash #{i18n_class}'" if logged_in? and action_name == "index" %>>
<body<%= " class='login #{::Refinery::I18n.current_locale}'" unless logged_in? %><%= " class='splash #{::Refinery::I18n.current_locale}'" if logged_in? and action_name == "index" %>>
<%= render :partial => '/shared/site_bar' %>
<div id='tooltip_container'></div>
<div id='header'>
Expand Down
2 changes: 1 addition & 1 deletion vendor/plugins/refinery/lib/refinery.rb
Expand Up @@ -27,7 +27,7 @@ class Version
MAJOR = 0
MINOR = 9
TINY = 7
BUILD = 1
BUILD = 2

STRING = [MAJOR, MINOR, TINY, BUILD].compact.join('.')

Expand Down

0 comments on commit 281271d

Please sign in to comment.