fastreader 1.0.7 → 1.0.8

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of fastreader might be problematic. Click here for more details.

@@ -16,4 +16,10 @@
16
16
 
17
17
  * Improved the converstion of HTML entry entry to ASCII text.
18
18
 
19
+ === 1.0.8 / 2008-06-26
20
+
21
+ * 1 minor enhancement
22
+
23
+ * Spacebar can now be used to select a feed from the feeds menu or item from
24
+ an items list.
19
25
 
@@ -58,7 +58,7 @@ M Move to top middle of screen
58
58
  L Move to bottom of screen
59
59
  G Move to last item
60
60
  1G Move to first item
61
- l, RIGHT ARROW, RETURN Select a feed and display its entries
61
+ SPACE, l, RIGHT ARROW, RETURN Select a feed and display its entries
62
62
 
63
63
  You can also type the feed's number and press RETURN or RIGHT ARROW to select
64
64
  it.
@@ -97,7 +97,7 @@ M Move to top middle of screen
97
97
  L Move to bottom of screen
98
98
  G Move to last item
99
99
  1G Move to first item
100
- l, RIGHT ARROW, RETURN Select an item and display its content
100
+ SPACE, l, RIGHT ARROW, RETURN Select an item and display its content
101
101
 
102
102
  Actions
103
103
 
@@ -122,7 +122,7 @@ module EntriesController
122
122
  when Key::RESIZE
123
123
  remake_window
124
124
 
125
- when Key::RIGHT, ?l, 10 # Enter key
125
+ when Key::RIGHT, ?\s, ?l, 10 # Enter key
126
126
  return if @current_entries.empty? # nothing to see
127
127
 
128
128
  # Cancel any search
@@ -33,7 +33,7 @@ include FileUtils
33
33
  include ActionView::Helpers::DateHelper
34
34
 
35
35
  class Fastreader
36
- VERSION = '1.0.7'
36
+ VERSION = '1.0.8'
37
37
 
38
38
  attr_accessor :database_path
39
39
 
@@ -134,11 +134,12 @@ module FeedsController
134
134
 
135
135
  when Key::LEFT, Key::UP, ?k, ?p
136
136
  @content_area.prev_item(multiplier)
137
- when Key::DOWN, ?j, ?\s, ?n
137
+ when Key::DOWN, ?j, ?n
138
138
  @content_area.next_item(multiplier)
139
139
  when Key::RESIZE
140
140
  redraw(false)
141
- when Key::RIGHT, ?l, 10 # Enter key
141
+ # ?\s is the space bar
142
+ when Key::RIGHT, ?\s, ?l, 10 # Enter key
142
143
 
143
144
  # You can type a number and press enter or right arrow to select a feed by
144
145
  # number.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastreader
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.7
4
+ version: 1.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Choi