UseBB Community

UseBB support, discussion and development

New features in UseBB 0.3

Post Reply

Page: < 1 2

Author Post
Member
Registered: Apr 2004
Posts: 21
Location: Cleveland, Ohio, USA
I'd like a PM system. Although the hack I wrote works well, it'd be nice to see it as an out-of-the-box feature.
_______________
Jake Wehner
Member
Registered: Apr 2004
Posts: 21
Location: Cleveland, Ohio, USA
The new skin is beautiful by the way. Can we have a screen of the topic view? I think the current one could use a revamp.
_______________
Jake Wehner
Developer
Registered: Apr 2004
Posts: 2248
Well, because many people have requested a PM system, there's a big change there will be one built-in in some future version (not 0.3 though). The forum administrator should be able to disable the whole PM system for his board if he wishes.

The new skin is still very under development. At this moment, it has been very bad written (merge between old HTML/CSS and new one from the new website). I'll post a bunch of new screens in a week or 2.
Member
Registered: Aug 2004
Posts: 7
all sounds great so far :) cant wait for any new updates
Member
Registered: Dec 2004
Posts: 11
Location: Denmark
Took a little time getting a hang of the way you configure and run UseBB but once I learned that everything is managed form the Database it didn't take me long before I started playing around with UseBB.

I like it and I wish it the best future since I see something big coming along here …
Member
Registered: Aug 2004
Posts: 7
i agree lennilg i also think that useBB is going to be big!
Developer
Registered: Apr 2004
Posts: 2248
Unfortunately for some, things will be less database powered when 0.3 is released. Templates, translations and configuration will be moved out of the database. This gives faster loading times and increases portability and working with CVS a lot.

UseBB will not be big, it's designed as a lightweight bulletin board, and will not compete with packages such as IPB, vB, WBB, ... but more like PunBB, MyBB, etc...
Developer
Registered: Apr 2004
Posts: 2248
While the development continues, this is what the forum view looks like in UseBB 0.3. Note the major changes in global layout, the forum's name above the topic list and the page links (which is a new feature).

https://sourceforge.net/project/screenshots.php?group_id=93103&ssid=4414
Member
Registered: Apr 2004
Posts: 15
Location: Pgh, PA
Just curious as to whether or not it's possible to limit the size of user avatars. If not, would it be possible to implement CSS clipping or something of that nature in future releases?
_______________
"Feed me a stray cat." - ATM Machine, American Psycho
View My Game Collection
Member
Registered: Nov 2004
Posts: 53
thats what i like, i dont want this forum to be big in features, just simple and very fast and optimized.
Member
Registered: Nov 2004
Posts: 53
which it already is lol.
Developer
Registered: Apr 2004
Posts: 2248
The CVS version of UseBB 0.3 here has been updated. You can now see a big part of the new 0.3 version, altough some things have not been implemented yet: editing and deleting posts, search, active topics, ...

Give me your opinions!
Developer
Registered: Apr 2004
Posts: 2248
kevinski wrote
Just curious as to whether or not it's possible to limit the size of user avatars. If not, would it be possible to implement CSS clipping or something of that nature in future releases?

There's no built-in function to do this (might be one later maybe), I also don't think you can do that with CSS...
Member
Registered: May 2004
Posts: 64
Location: Australia
You can do it with CSS :)

Wrap the image in a div tag of the required size, say 50px, and set the overflow property of the div to hidden, like so:
div.avatar { width : 50px; height : 50px; overflow : hidden; }

This will limit the display area of the image to 50px, although it still loads the full things its a sure way to stop your layout from being barfed.

Tested in Gecko, IE6 and Opera.
Developer
Registered: Apr 2004
Posts: 2248
Yes but if the avatar is smaller dan 50x50 it will be resized too...
Member
Registered: May 2004
Posts: 64
Location: Australia
The image isn't resized...
Developer
Registered: Apr 2004
Posts: 2248
Oh yes, I see what you mean. That might be a solution indeed.
Developer
Registered: Apr 2004
Posts: 2248
In short, the solution is:

Replace this:
table.maintable td.posterinfo .avatar {
margin-top: 10px;
}


With this:
table.maintable td.posterinfo .avatar {
margin-top: 10px;
width: 50px;
height: 50px;
text-align: center;
overflow: hidden;
}


In templates/default/global.tpl.php (only present in UseBB 0.3).
Member
Registered: Mar 2005
Posts: 90
Location: Rethymno, Crete, Greece
The Wolf wrote
The image isn't resized...
I dont wanna sound bad... bad this will enable me to url a 1000000px by 100000000px image ...
_______________
Yep I know me,.. thats that guy ..
> Lets script :: The PtokaX Lua Board :: The PtokaX Script Database
Developer
Registered: Apr 2004
Posts: 2248
Will fix this later.

This thread is closed now. We are already working on 0.4.

Post Reply

Page: < 1 2

UseBB Community is powered by UseBB 1 Forum Software