-
Notifications
You must be signed in to change notification settings - Fork 4
/
UPGRADE
29 lines (22 loc) · 886 Bytes
/
UPGRADE
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
To 0.9
SQLite 3.5 is required (well, at least 3.1.3 due to "alter table add column"
------------------------------------------------------------------------
From 0.4.4 to 0.5:
First kill your running Temboz server.
To upgrade your database to the new data model, go to the directory containing
your rss.db file, then run:
sh etc/db_0.5.sh
(the original will be backed up)
Then run:
temboz --refresh
python etc/resolveguid.py
The latter will resolve duplicates due to items in RSS/ATOM feeds that have
links different from their GUID.
------------------------------------------------------------------------
from 0.4.x to 0.4.4:
add the param.garbage_contents parameter to your param.py file
------------------------------------------------------------------------
From 0.3.2 to 0.4:
sqlite rss.db << EOF
create index item_rating_i on fm_items(item_rating, item_feed_uid);
EOF