Serendipity 0.8-beta4 released!

Post Reply
garvinhicking
Core Developer
Posts: 30022
Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:

Serendipity 0.8-beta4 released!

Post by garvinhicking »

I can only repeat the last statement once again: Thanks to lots of usable feedback and positive criticism, we were once again able to improve several issues within Serendipity. Those changes are worth a new beta milestone (beta3 was a non-public interrim release):

- Fix variable name problem with all markup plugins. Those were formerly using language localized variable names and could create trouble in multilangual system setups.

- Fix to properly detect Internal Server Errors (500) during installation

- Fix wordfilter for spamblock plugin

- Fix wrong date on entries monthly archive view

- Do not emit HTTP headers in embedded installations after headers could have been sent in the embedded framework

- Introduce a new CSS styling class called "div.container_X" for all plugins, whereas "X" can be replaced with the plugin class name. This allows more individual styling of sidebar plugins.

- Fix certain bugs with the "Newspaper" template. If you have custom themes based on it, please synchronize your layout.php with the new one (or migrate to Smarty templating)

- Offer ability to hide email addresses from RSS feeds
- Bundled Tom Sommers 'Kubrick' template port

More (minor) Changes can be found in our docs/NEWS file of the release bundle.

Upgrading is easy as always: Download, unpack, go to your Admin panel, hit the upgrade button - You're done.

And please keep your feedback coming in! :-)
Last edited by garvinhicking on Fri Apr 08, 2005 2:39 pm, edited 1 time in total.
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
Marcel
Regular
Posts: 22
Joined: Sun Feb 27, 2005 2:56 pm

Re: Serendipity 0.8-beta4 released!

Post by Marcel »

garvinhicking wrote:Upgrading is easy as always: Download, unpack, go to your Admin panel, hit the upgrade button - You're done.
I must be blind from reading blogs all the time :shock: I can't see any upgrade button in my admin panel (neither in English nor in German)!! :(

Any hint?
Thanks a lot!
verbatim
Regular
Posts: 43
Joined: Sat Mar 12, 2005 10:53 pm

Post by verbatim »

you just extract it to what ever location it is currently in, then go to the homepage of your blog and it will walk you through it.

upgrade button at the bottom on the left.
Martin
Regular
Posts: 90
Joined: Mon Sep 27, 2004 1:30 am
Location: Oslo
Contact:

Post by Martin »

Is this upgrade possible to do without uploading /templates/default/index.tpl and lang/serendipity/serendipity_lang_en.inc.php?

If so I'm going for it. :) I soooo want to style my sidebar plugs.

-m
garvinhicking
Core Developer
Posts: 30022
Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:

Post by garvinhicking »

Martin - I think the index.tpl has not changed.

However the english language files did get new constants. If you modified your file, you'll need to create diff and implement the new constants. They are usually all kept at the end, so you could easily compare them?

Regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
bandajo
Posts: 3
Joined: Sun Dec 21, 2003 7:06 pm
Location: Germany
Contact:

Post by bandajo »

verbatim wrote:you just extract it to what ever location it is currently in, then go to the homepage of your blog and it will walk you through it.

upgrade button at the bottom on the left.
No button, no upgrade. The databases has changed, and nothing runs longer. First is Unknown column 'a.realname' in 'field list. What i have to do?
garvinhicking
Core Developer
Posts: 30022
Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:

Post by garvinhicking »

Bandajo - edit your serendipity_config_local.inc.php and set $serendipity['versionInstalled'] to the version you previously had installed (like '0.7.1' or '0.8-alpha10' or so. If you don'T remember exactly, use '0.8-alpha11'.

Or you run this SQL code via phpMyAdmin on your database

Code: Select all

ALTER TABLE serendipity_authors ADD realname VARCHAR( 255 ) NOT NULL FIRST;
UPDATE serendipity_authors SET realname = username;
Regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
bandajo
Posts: 3
Joined: Sun Dec 21, 2003 7:06 pm
Location: Germany
Contact:

Post by bandajo »

garvinhicking wrote:Bandajo - edit your
Or you run this SQL code via phpMyAdmin on your database

Code: Select all

ALTER TABLE serendipity_authors ADD realname VARCHAR( 255 ) NOT NULL FIRST;
UPDATE serendipity_authors SET realname = username;
Thanx runs fine now
Post Reply