Page 1 of 3

Bludit v1.1 "The Dig"

Posted: Thu Feb 18, 2016 5:09 am
by diego
Bludit
Version: 1.1
Codename: The Dig
Release date: 2016-02-19

Changelog and more information here: https://blog.bludit.com/en/post/bludit-v1-1-the-dig

I want to announce with great pleasure the new version of Bludit v1.1, with new features, improves and bug fixes.
Bludit is open source and free, that why we need user's collaboration, here is a list of what you can do for Bludit.

How to collaborate
- Make a Theme. https://docs.bludit.com/en/themes/theme-basics
- Make a Plugin.
- Translate Bludit.
- Translate the plugins. https://docs.bludit.com/en/languages/translate-plugins
- Translate the themes. https://docs.bludit.com/en/languages/translate-themes
- Translate or improve the documentation. https://github.com/dignajar/bludit-documentation
- Help the users on the forum. https://forum.bludit.org
- Share Bludit with your friends, on Twitter or Facebook.
- Vote Bludit
* Bitnami https://bitnami.com/stack/bludit
* Softaculous https://www.softaculous.com/apps/cms/Bludit
* CMSGuide http://www.cmsguide.info/guide/directory/blogs/bludit
- Make a review.
- Make a video and upload on Youtube or Vimeo.
- Make a donation, to pay the server, domains, and future projects. There is a button on https://www.bludit.com

Re: Bludit v1.1 "The Dig"

Posted: Thu Feb 18, 2016 10:22 am
by Herk
You are the great developer!!!

Re: Bludit v1.1 "The Dig"

Posted: Thu Feb 18, 2016 2:36 pm
by Bazim
Please fix changelog it says 404 not found.

Re: Bludit v1.1 "The Dig"

Posted: Thu Feb 18, 2016 5:39 pm
by kaaleth
Thanks.

PS New homepage, I like it!

Re: Bludit v1.1 "The Dig"

Posted: Thu Feb 18, 2016 10:18 pm
by DarrenDriven
I LOVE this script and also that you are constantly improving it!

Could I get some clarity as to what is now going on with the sidebar menu on the left?

I'm still running 0.8x? (not sure where to find version) on my main site and when I upgraded to 1.0x the sidebar got shoved way over to the left.

Check it out:
0.8x: http://idrewyourcar.com/
1.1: http://darrendriven.com/bludit/


Image
0.8x?

Image
1.1

Re: Bludit v1.1 "The Dig"

Posted: Thu Feb 18, 2016 10:57 pm
by diego
DarrenDriven wrote:I LOVE this script and also that you are constantly improving it!

Could I get some clarity as to what is now going on with the sidebar menu on the left?

I'm still running 0.8x? (not sure where to find version) on my main site and when I upgraded to 1.0x the sidebar got shoved way over to the left.

Check it out:
0.8x: http://idrewyourcar.com/
1.1: http://darrendriven.com/bludit/


Image
0.8x?

Image
1.1
You can see the version on the admin panel->settings->about

I think the problem with the themes is the CSS, remove this line from bl-themes/asset/css/bludit.css

Code: Select all

img {
	max-width: 100%;
}

Re: Bludit v1.1 "The Dig"

Posted: Fri Feb 19, 2016 5:36 am
by DarrenDriven
I was running 0.7.2.

That didn't fix it, but I'll dig around and see if I can figure it out.

Re: Bludit v1.1 "The Dig"

Posted: Fri Feb 19, 2016 6:47 pm
by diego
Could you post the bludit.css from the theme of the version 1.1 ?

I was looking for and it the CSS for img.

try with this:

Code: Select all

.plugin ul {
	list-style: none !important;
	padding: 0 !important;
}

.plugin li {
	padding: 0 !important;
}

.plugin-pages ul.children {
	margin-left: 10px;
}

/* Just for Plugin tags */
.plugin-tags li {
	text-transform: capitalize;
}

img {
	width: 100%;
}

Re: Bludit v1.1 "The Dig"

Posted: Fri Feb 19, 2016 7:18 pm
by DarrenDriven
That fixed it. Thanks!

Re: Bludit v1.1 "The Dig"

Posted: Fri Feb 19, 2016 9:23 pm
by DarrenDriven
Changing img max-width: 100%; to width: 100%; solved it!

Another thing that I noticed is that when you click through to the second page of the blog posts the URL shows page=1. It's a little strange since page one should be the front page. The second page should probably say page=2 in the URL. Very minor, I know.