diff options
author | trizen <trizen@protonmail.com> | 2020-02-27 16:37:27 +0200 |
---|---|---|
committer | trizen <trizen@protonmail.com> | 2020-02-27 16:37:27 +0200 |
commit | ad7ec1785fc28799e10d10e7a679dc5bb4891ee3 (patch) | |
tree | 24f001c653910cfc35c7cfdf1fb99216dcd8cc6e | |
parent | 04aebf06239c61268dff6ce5221db01b18266545 (diff) | |
download | fair-viewer-ad7ec1785fc28799e10d10e7a679dc5bb4891ee3.tar.lz fair-viewer-ad7ec1785fc28799e10d10e7a679dc5bb4891ee3.tar.xz fair-viewer-ad7ec1785fc28799e10d10e7a679dc5bb4891ee3.zip |
Use different filenames for search history.
-rwxr-xr-x | bin/gtk-straw-viewer | 2 | ||||
-rwxr-xr-x | bin/straw-viewer | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bin/gtk-straw-viewer b/bin/gtk-straw-viewer index 22e90b7..828f496 100755 --- a/bin/gtk-straw-viewer +++ b/bin/gtk-straw-viewer @@ -86,7 +86,7 @@ else { my $config_dir = catdir($xdg_config_home, 'straw-viewer'); my $config_file = catfile($config_dir, "gtk-straw-viewer.conf"); my $youtube_users_file = catfile($config_dir, 'users.txt'); -my $history_file = catfile($config_dir, 'history.txt'); +my $history_file = catfile($config_dir, 'gtk-history.txt'); my $session_file = catfile($config_dir, 'session.dat'); my $authentication_file = catfile($config_dir, 'reg.dat'); my $api_file = catfile($config_dir, 'api.json'); diff --git a/bin/straw-viewer b/bin/straw-viewer index b20fead..6fa34ef 100755 --- a/bin/straw-viewer +++ b/bin/straw-viewer @@ -119,7 +119,7 @@ else { my $config_dir = catdir($xdg_config_home, $execname); my $config_file = catfile($config_dir, "$execname.conf"); my $authentication_file = catfile($config_dir, 'reg.dat'); -my $history_file = catfile($config_dir, 'history.txt'); +my $history_file = catfile($config_dir, 'cli-history.txt'); my $watched_file = catfile($config_dir, 'watched.txt'); my $api_file = catfile($config_dir, 'api.json'); |