CBB 1.13 would be the last CBB release before XOOPS 2.2
Now CBB 1.13 RC is ready for test, hope you would help us make the 1.13 final out soon.
download:
https://xoops.org.cn/modules/wfdownloads/singlefile.php?cid=5&lid=288Changelog 1.13
==============
1 bugfix for IP recording (Reported by alitan @ xoops.org)
2 changing time display for "Today/yesterday ..." (Reported by alitan @ xoops.org)
3 adding post link (Preliminary solution by ackbarr && Suggested by Peekay @ xoops.org)
4 further cleaning "Compact mode" (Suggested by Rou4 @ XOOPS CHINA)
5 adding new block "recent post text"
6 bugfix for function newbb_admin_mkdir
7 bugfix for permission table of locked topic
8 adding indication for locked topic in view topic (Requested by SuperVoley @ xoops.org)
9 bugfix for category management (Reported by chia @ xoops.tnc.edu.tw)
10 bugfix for subject sanitizing problem (Reported by CeBepuH @ xoops.org)
11 rolling back signature to pure xcode format (comprehensive improvement is expected after XOOPS 2.2)
12 bugfix for empty message check in quick reply
13 template validation on XHTML 1.0 (not complete yet)
Appendix
1 Dropdown menu color configuration: adding dropdown menu color to theme/style.css as following:
/* color -- dropdown menu for Forum */
div.dropdown a, div.dropdown .menubar a{
color:#FFF;
}
div.dropdown .menu, div.dropdown .menubar, div.dropdown .item, div.dropdown .separator{
background-color: #2F5376; /* color set in your theme/style.ss .th{} is recommended */
color:#FFF;
}
div.dropdown .separator{
border: 1px inset #e0e0e0;
}
div.dropdown .menu a:hover, div.dropdown .userbar a:hover{
color: #333;
}
/* color - end */
2 Fix for "right-to-left" themes (Arabic, Persian and more): adding to theme/style.css as following:
/* direction -- for rtl */
div.dropdown ul, div.dropdown .userbar{
direction: ltr;
}
div.dropdown li ul {
left: -150px !important; /* for IE, tune the value if necessary */
}
div.dropdown li>ul {
left: -1px !important; /* for non-IE, tune the value if necessary */
}
div.dropdown .userbar{
float: right !important; /* need a more formal solution, any help would be appreciated */
}
/* direction fix end */