File tree Expand file tree Collapse file tree 3 files changed +31
-3
lines changed
Expand file tree Collapse file tree 3 files changed +31
-3
lines changed Original file line number Diff line number Diff line change @@ -124,10 +124,12 @@ function UI_register_func(){
124124 clear_unread ( pathTerm . name , UI_update ) ;
125125 } ) ;
126126
127+ /*
127128 $('.clear-all-unread').live('click', function(){
128129 UI_set_loading();
129130 clear_unread('', UI_update);
130131 });
132+ */
131133
132134 $ ( '#publish-post-button' ) . click ( UI_write_post ) ;
133135
Original file line number Diff line number Diff line change @@ -148,6 +148,10 @@ function register_default_hotkeys(){
148148 var writePostHotkey = new Hotkey ( 80 , true , false ,
149149 '#board-table' , '.new-post-normal' , 'click' ) ;
150150
151+ //f on #board-table: clear unread tags;
152+ var clearUnreadHotkey = new Hotkey ( 70 , false , false ,
153+ '#board-table' , '.clear-board-unread' , 'click' ) ;
154+
151155 bbs_hotkey_manager . untriggerAll ( ) ;
152156 bbs_hotkey_manager . add ( publishPostHotkey ) ;
153157 bbs_hotkey_manager . add ( cancelPostHotkey ) ;
@@ -161,5 +165,6 @@ function register_default_hotkeys(){
161165 bbs_hotkey_manager . add ( nextPageHotkey ) ;
162166 bbs_hotkey_manager . add ( replyHotkey ) ;
163167 bbs_hotkey_manager . add ( writePostHotkey ) ;
168+ bbs_hotkey_manager . add ( clearUnreadHotkey ) ;
164169 bbs_hotkey_manager . triggerAll ( ) ;
165170}
Original file line number Diff line number Diff line change 22
33##简介
44
5- Rowell是为某井开发的一个纯前端的网络界面。Rowell的后台基于刚爷开发的pybbs数据接口,前端界面基于Bootstrap开发。目前的最新版本为0.2.3 ,支持以下功能:
5+ Rowell是为某井开发的一个纯前端的网络界面。Rowell的后台基于刚爷开发的pybbs数据接口,前端界面基于Bootstrap开发。目前的最新版本为0.2.4 ,支持以下功能:
66
77* 带有session cookie的登入/登出功能。
88
1212
1313* 帖子阅读及导航(上下贴/同主题上下贴/主题贴及最新)
1414
15+ * 附件查看、预览与下载
16+
1517* 普通模式发表新文章,及R/N/S/A模式回复文章,支持随机qmd,默认qmd及匿名发帖。
1618
1719
2729
2830##开发计划
2931
30- * 未读标记清理
31-
3232* 用户自定义设置系统
3333
3434* 简单的彩色ASCII控制字符解释器
@@ -38,6 +38,27 @@ Rowell
3838* 收藏夹管理
3939
4040##更新日志
41+ ####Version 0.2.4
42+ 发布日期: 08/12/2012
43+
44+ * 支持预览与下载附件。包含附件的帖子会在帖子列表中显示附件图标。帖子内将显示所有图片的预览及其他附件的下载链接。
45+
46+ * 支持清除版内未读标记。
47+
48+ * 自动识别帖子中的网址,提供链接。
49+
50+ * 增加和修改了部分快捷键:发帖键改为Ctrl+P,增加p/l用于同主题下/上一帖,增加f用于清除版内未读标记。
51+
52+ * 修正了若干因快捷键导致的bug。
53+
54+ * 调整了部分UI细节:从帖子返回版面时,将跳转至当前阅读贴附近,便于继续浏览。
55+
56+ 即将到来的更新:
57+
58+ * 清理全站未读标记的UI开发已完成,pybbs支持后将立即上线。
59+
60+ * 图片附件预览将读取缩略图以提高访问速度,pybbs支持后将立即上线。
61+
4162####Version 0.2.3
4263发布日期: 07/26/2012
4364
You can’t perform that action at this time.
0 commit comments