You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: fpcurator.py
+25-7Lines changed: 25 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -91,6 +91,7 @@ def toggle_console():
91
91
<li><b>Keep URLVars</b> - When checked, the downloader will append url vars present on links being downloaded to the end of the html file. This is only necessary when you have two links to the same webpage that generate different html due to the url vars.</li>
92
92
<li><b>Clear Done URLs</b> - When checked, the downloader will clear any urls in the list when they are downloaded. Errored urls will remain in the list.</li>
93
93
<li><b>Notify When Done</b> - When checked, the downloader will show a message box when it is done downloading.</li>
94
+
<li><b>Spoof Referrer</b> - When checked, the downloader will spoof the referrer of the urls to be the url itself.</li>
94
95
</ul>
95
96
Here are some basic usage steps:
96
97
<ol>
@@ -225,8 +226,8 @@ def toggle_console():
225
226
# This uuid uniquely defines fpcurator. (there is a 0 on the end after the text)
original=tk.Checkbutton(cframe, bg="white", text='Rename "web.archive.org"', var=self.original) # pyright: ignore [reportCallIssue] # tkinter does have "var"
831
836
original.pack(side="left")
@@ -835,17 +840,25 @@ def __init__(self, parent):
835
840
clear.pack(side="left")
836
841
show_done=tk.Checkbutton(cframe, bg="white", text='Notify When Done', var=self.show_done) # pyright: ignore [reportCallIssue] # tkinter does have "var"
837
842
show_done.pack(side="left", padx=5)
843
+
spoof=tk.Checkbutton(cframe, bg="white", text='Spoof Referrer', var=self.spoof) # pyright: ignore [reportCallIssue] # tkinter does have "var"
844
+
spoof.pack(side="left")
838
845
839
846
Tooltip(original, text="When checked, the downloader will put all urls downloaded from the web archive back into their original domains.")
840
847
Tooltip(keep_vars, text="When checked, the downloader will append url vars present on links being downloaded to the end of the html file. This is only necessary when you have two links to the same webpage that generate different html due to the url vars.")
841
848
Tooltip(clear, text="When checked, the downloader will clear any urls in the list when they are downloaded. Errored urls will remain in the list.")
842
849
Tooltip(show_done, text="When checked, the downloader will show a message box when it is done downloading.")
850
+
Tooltip(spoof, text="When checked, the downloader will spoof the referrer of the urls to be the url itself.")
843
851
844
-
# Create panel for inputting urls to download
845
-
lbl=tk.Label(self, bg="white", text="Put URLs to download in this box:")
852
+
# Panels
853
+
lbl=tk.Label(self, bg="white", text="Put URLs to download at the top and headers at the bottom.")
Copy file name to clipboardExpand all lines: pyproject.toml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
[tool.poetry]
2
2
name = "fpcurator"
3
-
version = "1.7.0"
3
+
version = "1.7.1"
4
4
description = "fpcurator is a Python and fpclib powered tool for downloading urls, auto-generating curations, bulk searching for already curated games, and listing tags/platforms/games/animations for Flashpoint."
0 commit comments