Skip to content

Commit

Permalink
v0.2.4 released. Update log updated.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrroach9 committed Aug 12, 2012
1 parent 19f071b commit 58ad843
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 3 deletions.
2 changes: 2 additions & 0 deletions bbs_UI.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,12 @@ function UI_register_func(){
clear_unread(pathTerm.name, UI_update);
});

/*
$('.clear-all-unread').live('click', function(){
UI_set_loading();
clear_unread('', UI_update);
});
*/

$('#publish-post-button').click(UI_write_post);

Expand Down
5 changes: 5 additions & 0 deletions bbs_hotkey.js
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,10 @@ function register_default_hotkeys(){
var writePostHotkey = new Hotkey(80, true, false,
'#board-table', '.new-post-normal', 'click');

//f on #board-table: clear unread tags;
var clearUnreadHotkey = new Hotkey(70, false, false,
'#board-table', '.clear-board-unread', 'click');

bbs_hotkey_manager.untriggerAll();
bbs_hotkey_manager.add(publishPostHotkey);
bbs_hotkey_manager.add(cancelPostHotkey);
Expand All @@ -161,5 +165,6 @@ function register_default_hotkeys(){
bbs_hotkey_manager.add(nextPageHotkey);
bbs_hotkey_manager.add(replyHotkey);
bbs_hotkey_manager.add(writePostHotkey);
bbs_hotkey_manager.add(clearUnreadHotkey);
bbs_hotkey_manager.triggerAll();
}
27 changes: 24 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

##简介

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

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

Expand All @@ -12,6 +12,8 @@ Rowell

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

* 附件查看、预览与下载

* 普通模式发表新文章,及R/N/S/A模式回复文章,支持随机qmd,默认qmd及匿名发帖。


Expand All @@ -27,8 +29,6 @@ Rowell

##开发计划

* 未读标记清理

* 用户自定义设置系统

* 简单的彩色ASCII控制字符解释器
Expand All @@ -38,6 +38,27 @@ Rowell
* 收藏夹管理

##更新日志
####Version 0.2.4
发布日期: 08/12/2012

* 支持预览与下载附件。包含附件的帖子会在帖子列表中显示附件图标。帖子内将显示所有图片的预览及其他附件的下载链接。

* 支持清除版内未读标记。

* 自动识别帖子中的网址,提供链接。

* 增加和修改了部分快捷键:发帖键改为Ctrl+P,增加p/l用于同主题下/上一帖,增加f用于清除版内未读标记。

* 修正了若干因快捷键导致的bug。

* 调整了部分UI细节:从帖子返回版面时,将跳转至当前阅读贴附近,便于继续浏览。

即将到来的更新:

* 清理全站未读标记的UI开发已完成,pybbs支持后将立即上线。

* 图片附件预览将读取缩略图以提高访问速度,pybbs支持后将立即上线。

####Version 0.2.3
发布日期: 07/26/2012

Expand Down

0 comments on commit 58ad843

Please sign in to comment.