About Alfred versions:
The issue with ranks should be solved but i dont know if there are others especially in functionality.
About upgrade from an old newbb version:
Being able to correctly upgrade from older versions, is the most important process in testing modules.
It is especially important for newbb as a very old and great module.
Therefore It would be highly appreciated if you could test upgrade from older newbb versions (your old database) to the latest one and
report issues or bugs. So please do not give up and do not copy/paste posts or topics manually but try to upgrade instead.
If something goes wrong just let us know your Xoops,php,mysql and importantly your old newbb version.
Quote:
Will you be continuing to update the buttons? I like those new blue buttons, but they aren't everywhere yet (Preview, Submit, Cancel)
those (Preview, Submit, Cancel) buttons in forms are part of the xoops core. you can change the style in YOURSITE/xoops.css
it is just some css3 codes i copy pasted from somewhere:
input[type=submit], input[type=reset], input[type=button], .xo-formbuttons, .formButton, button {
background: #407DC7;
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#407DC7), to(#4279B8));
background-image: -webkit-linear-gradient(top, #407DC7, #4279B8);
background-image: -moz-linear-gradient(top, #407DC7, #4279B8);
background-image: -ms-linear-gradient(top, #407DC7, #4279B8);
background-image: -o-linear-gradient(top, #407DC7, #4279B8);
border-width: 1px;
color: white;
padding: 4px 4px;
text-shadow: 0 1px 0 gray;
border-color: white #A1C1E6 #2B4763 #A1C1E6;
border-style: solid;
border-radius: 5px;
box-shadow: 0 1px 7px #080808;
font-weight: bold;
}
.formButton:hover {
box-shadow: 0 1px 5px #222;
}
.formButton:active {
box-shadow: inset 0 1px 7px #565656;
border-color: white #a1c1e6 black #a1c1e6;
font-weight: normal;
}
you can find many css3 button sample codes like this:
http://jsfiddle.net/VTLmj/