Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed issue/idea 28th from eMBee list - added count of starred and unread messages in inbox-mode #364

Open
wants to merge 36 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
aaa852f
Use old 'syck' module for YAML parsing
gauteh Nov 9, 2011
ef385ec
Merge branch 'develop'
gauteh May 15, 2013
43d271c
Update README for gitorious
Jun 30, 2013
7619cb9
Merge tag 'release-0.14.0': Sup Release 0.14.0
gauteh Aug 15, 2013
073f830
Release 0.14.1
gauteh Aug 31, 2013
adeab88
Merge branch 'release-0.14.1-b'
gauteh Aug 31, 2013
a5acc24
security: shellwords escape attachment file names to prevent remote c…
gauteh Oct 28, 2013
27cdb4d
security: prevent remote command injection in content_type
gauteh Oct 28, 2013
b88e31f
security: link to wiki page on view-attachments
gauteh Oct 29, 2013
e1a2076
Merge notes from 0.13.2.1, release notes from 0.14.1.1
gauteh Oct 29, 2013
628df59
Bump to version 0.14.1.1
gauteh Oct 29, 2013
4ab9bb1
Merge branch 'develop'
gauteh Nov 7, 2013
7911b63
release 0.15.0
gauteh Nov 7, 2013
72d4238
Merge branch 'develop'
gauteh Dec 4, 2013
5cc075a
Release 0.15.1
gauteh Dec 4, 2013
2475a17
Merge branch 'develop'
gauteh Dec 20, 2013
69ec7c3
release 0.15.2
gauteh Dec 20, 2013
e422010
Merge branch 'develop'
gauteh Jan 27, 2014
343b3c4
release 0.15.3
gauteh Jan 27, 2014
b171057
Merge branch 'develop'
gauteh Feb 6, 2014
53875d6
release 0.15.4
gauteh Feb 6, 2014
a2e630c
Fix fusion
Feb 26, 2014
f8a5da3
Merge branch 'master' of github.com:sup-heliotrope/sup
Feb 26, 2014
ca5d974
Merge branch 'develop'
gauteh Mar 21, 2014
9aa6b93
release 0.16.0
gauteh Mar 21, 2014
d8c74d2
Merge branch 'develop': For 0.17.0
gauteh Apr 11, 2014
021db8c
release 0.17.0
gauteh Apr 11, 2014
59f56ec
Merge branch 'develop'
gauteh May 19, 2014
6b3162e
release 0.18.0
gauteh May 19, 2014
1c1abdb
Merge branch 'develop'
gauteh Jul 5, 2014
7cfef04
release 0.19.0
gauteh Jul 5, 2014
8ce357e
Merge branch 'develop'
gauteh Oct 6, 2014
36c7933
release 0.20.0
gauteh Oct 6, 2014
7c18aba
Merge branch 'develop'
gauteh Feb 12, 2015
dc2f80f
release 0.21.0
gauteh Feb 12, 2015
9ce212e
Fixed issue 28 from eMBee list
tradzik Jan 2, 2015
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion lib/sup/modes/inbox_mode.rb
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,9 @@ def handle_idle_update sender, idle_since
end

def status
super + " #{Index.size} messages in index"
starred = Index.num_results_for(:labels => [:starred])
unread = Index.num_results_for(:labels => [:unread])
super + " #{Index.size} messages in index (#{starred} starred, #{unread} unread)"
end
end

Expand Down
2 changes: 1 addition & 1 deletion lib/sup/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Redwood
VERSION = "git"
VERSION = "0.21.0"
end