Skip to content

Commit

Permalink
Rename database file
Browse files Browse the repository at this point in the history
Because schema is completly redone and the old filename was not
informative. File extension .sqlite3 is recommended by SQLite
developers. Edit README accordingly.
  • Loading branch information
jacwah committed Feb 28, 2015
1 parent 4198d60 commit f900392
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ Tag your files
======================

`ftag` is a command line tool to tag files. Strings are associated to
file names in a database file called `.ftagdb`. Files can later be
searched for by tag names. Unix-like systems are supported (eg. OS X
and Linux).
file names in a database file called `.ftag.sqlite3`. Files can later
be searched for by tag names. Unix-like systems are supported (eg. OS
X and Linux).

How to compile
-------------
Expand All @@ -24,12 +24,12 @@ use. A more complete reference can be found using the --help option.
* `ftag list FILE`: Print all tags associated with the file FILE on
stdout.

Important to note is the location of the database file (`.ftagdb`).
When the application is run it will search for this file starting
from the current directory ascending towards the root directory. If
no database file is found it is created in the current directory.
Which database file to use can also be specified with the -d,
--database-name and -p, --database-dir options.
Important to note is the location of the database file
(`.ftag.sqlite3`). When the application is run it will search for
this file starting from the current directory ascending towards the
root directory. If no database file is found it is created in the
current directory. Which database file to use can also be specified
with the -d, --database-name and -p, --database-dir options.

Contact
-------
Expand Down
2 changes: 1 addition & 1 deletion ftag.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
/***--- Constants and globals ---***/

#ifndef DB_FILENAME
#define DB_FILENAME ".ftagdb"
#define DB_FILENAME ".ftag.sqlite3"
#endif

#define PROGRAM_NAME "ftag"
Expand Down

0 comments on commit f900392

Please sign in to comment.