Skip to content

Commit 58ad843

Browse files
committed
v0.2.4 released. Update log updated.
1 parent 19f071b commit 58ad843

File tree

3 files changed

+31
-3
lines changed

3 files changed

+31
-3
lines changed

bbs_UI.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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

bbs_hotkey.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff 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
}

readme.md

Lines changed: 24 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
##简介
44

5-
Rowell是为某井开发的一个纯前端的网络界面。Rowell的后台基于刚爷开发的pybbs数据接口,前端界面基于Bootstrap开发。目前的最新版本为0.2.3,支持以下功能:
5+
Rowell是为某井开发的一个纯前端的网络界面。Rowell的后台基于刚爷开发的pybbs数据接口,前端界面基于Bootstrap开发。目前的最新版本为0.2.4,支持以下功能:
66

77
* 带有session cookie的登入/登出功能。
88

@@ -12,6 +12,8 @@ Rowell
1212

1313
* 帖子阅读及导航(上下贴/同主题上下贴/主题贴及最新)
1414

15+
* 附件查看、预览与下载
16+
1517
* 普通模式发表新文章,及R/N/S/A模式回复文章,支持随机qmd,默认qmd及匿名发帖。
1618

1719

@@ -27,8 +29,6 @@ Rowell
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

0 commit comments

Comments
 (0)