fastreader 1.0.4 → 1.0.5

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.

data/README.txt CHANGED
@@ -1,7 +1,7 @@
1
1
  = fastreader
2
2
 
3
- * http://danielchoi.com/software/fastreader.html
4
- * mailto:dhchoi@gmail.com
3
+ * Project homepage: http://danielchoi.com/software/fastreader.html
4
+ * Contact the author: mailto:dhchoi@gmail.com
5
5
 
6
6
  == DESCRIPTION:
7
7
 
@@ -15,7 +15,7 @@ and SQLite3.
15
15
 
16
16
  === Command Line Usage
17
17
 
18
- % fastreader
18
+ % fastreader
19
19
 
20
20
  launches the FastReader terminal interface. When you launch it for the first
21
21
  time, It will create a sqlite3 database in your home directory to hold the
@@ -23,21 +23,37 @@ data for your feeds. This database will be named 'fastreader.sqlite3' and it
23
23
  will already contain a few example feed subscriptions and items. Feel free
24
24
  to delete them.
25
25
 
26
- % fastreader <url>
26
+ To subscribe to a feed:
27
27
 
28
- e.g. http://nytimes.com, causes the program will try to autodiscover a feed at
29
- the URL, subscribe to it, and import the entries. If you give it a feed URL
30
- directly, e.g., http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml,
31
- FastReader will subscribe to it.
28
+ % fastreader <url>
32
29
 
33
- % fastreader <opml file>
30
+ FastReader can try to autodiscover feeds:
34
31
 
35
- If the command is followed by the path to an OPML file of feed subscriptions,
36
- FastReader will subscribe to them.
32
+ % fastreader http://nytimes.com
37
33
 
38
- % fastreader update
34
+ This will cause the program to try to autodiscover a feed at the URL, subscribe
35
+ to it, and import the entries. If you give FastReader a feed URL directly, e.g.,
39
36
 
40
- will update all subscribed feeds with streaming feedback.
37
+ % fastreader http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml
38
+
39
+ it will subscribe to it.
40
+
41
+ You can also import OPML feed lists:
42
+
43
+ % fastreader <opml file>
44
+
45
+ Just make sure the OPML file has the suffix *.opml, e.g.,
46
+
47
+ % fastreader myfeeds.opml
48
+
49
+ FastReader will then subscribe to all the feeds in the OPML
50
+ document.
51
+
52
+ To update all subscribed feeds, type
53
+
54
+ % fastreader update
55
+
56
+ FastReader will output information as the update progresses.
41
57
 
42
58
  === Console Mode
43
59
 
@@ -50,6 +66,9 @@ There are three screens in console mode:
50
66
  FastReader uses vi-style keybindings to allow fast navigation between
51
67
  screens, feeds, items, and linked web pages. The interface is pretty intuitive.
52
68
 
69
+ You can see screenshots of the console mode
70
+ here[http://danielchoi.com/software/fastreader.html].
71
+
53
72
  For more documentation about FastReader commands in interactive console mode,
54
73
  please consult the console mode help pages.
55
74
 
@@ -27,7 +27,7 @@ class CursesController
27
27
  end
28
28
 
29
29
  PREAMBLE = <<END
30
- FastReader Terminal Feed Reader Command Reference
30
+ FastReader Console Feed Reader Command Reference
31
31
 
32
32
  END
33
33
 
@@ -66,7 +66,7 @@ it.
66
66
  Actions
67
67
 
68
68
  q Quit the program
69
- u Updates the feed; won't update with last update was within the last hour
69
+ u Updates the feed; won't update if last update was within the last hour
70
70
  U Forces an update of the feed
71
71
  CTRL-u Updates all feeds
72
72
  * It's better to update the feeds from the command line because the
@@ -33,7 +33,7 @@ include FileUtils
33
33
  include ActionView::Helpers::DateHelper
34
34
 
35
35
  class Fastreader
36
- VERSION = '1.0.4'
36
+ VERSION = '1.0.5'
37
37
 
38
38
  attr_accessor :database_path
39
39
 
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.4
4
+ version: 1.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Choi