summaryrefslogtreecommitdiff
path: root/onionshare/__init__.py
AgeCommit message (Expand)Author
2019-01-20Rename receive mode "downloads_dir" to the OnionShare "data_dir"Micah Lee
2018-11-13Merge develop branch and fix conflictsMiguel Jacq
2018-10-25Receive mode puts files in a directory based on the timestamp of the uploadMicah Lee
2018-10-02Make auto-stop timer work on CLI when an upload is still in progress on expiryMiguel Jacq
2018-10-01Load default settings before parsing for any alternate config. Reload strings...Miguel Jacq
2018-09-30Set OnionShare language based on the locale stored in settings, and prompt us...Micah Lee
2018-09-21Merge branch 'develop' into 663_zip_awayMicah Lee
2018-09-21Remove no_filenames string, and instead display CLI usage if you don't specif...Micah Lee
2018-09-21If only sharing one file, compress it with gzip, and serve it with gzip compr...Micah Lee
2018-09-21Move more mode-specific logic out of the Web class and into the approprate mo...Micah Lee
2018-09-21Refactor the CLI main function to explicitly use 'share' or 'receive' modeMicah Lee
2018-09-21Refactor web even more to all of the share and receive web logic into ShareMo...Micah Lee
2018-09-20Only add the download_filename to cleanup_filenames (which get deleted) if th...Micah Lee
2018-09-20When there is only 1 file being shared, don't zip itMicah Lee
2018-09-18Properly handle exceptions in CLI, and pass the actual exception message in T...Micah Lee
2018-07-21Expand 'public mode' (optional slugs) to be possible for sharing too, not jus...Miguel Jacq
2018-05-19Move downloads_dir validation into the /upload request in Web, and display an...Micah Lee
2018-05-19Move downloads dir validation into CommonMicah Lee
2018-05-04Fix stay_open regression bug. Before, it was closing automatically even when ...Micah Lee
2018-04-29Display the URL without the slug for receive_public_mode in the CLIMicah Lee
2018-04-28Fix a race condition where the URL was sometimes getting copied to the clipbo...Micah Lee
2018-04-28Generalize the handling of Tor exceptions, more logging in WebMicah Lee
2018-04-26Instead of creating a Web object and passing it into OnionShareGui, now each ...Micah Lee
2018-04-24Merge branch 'receiver-mode' into receiver-mode-guiMicah Lee
2018-04-24In CLI recieve mode, tell the user where to look for uploaded filesMicah Lee
2018-04-24Update GPL copyright yearMicah Lee
2018-03-14Add receive mode warning, and print notification for each upload, in CLI modeMicah Lee
2018-03-13Fixed bug in validating downloads dir related to moving settings into commonMicah Lee
2018-03-13Move settings into the Common object, so the settings are available to all ob...Micah Lee
2018-03-08Completely refactor common to make a Common class, and pass that class down i...Micah Lee
2018-03-06In CLI, validate downloads_dir when starting in receive modeMicah Lee
2018-03-06Show different message for receive mode than for send modeMicah Lee
2018-03-05Refactor web.py to move all the web logic into the Web class, and refactor on...Micah Lee
2018-03-05Web needs to know about receive mode, not the OnionShare objectMicah Lee
2018-03-05Add downloads_dir to settings, make it default to ~/DownloadsMicah Lee
2018-03-05Add command line flag for receive modeMicah Lee
2018-01-18load Settings in onionshare/__init__.py before we initiate the web thread, si...Miguel Jacq
2018-01-18load the Settings in onionshare/__init__.py later, so that when saving slug, ...Miguel Jacq
2018-01-14Merge branch 'check_is_valid_file' of https://github.com/mig5/onionshare into...Micah Lee
2018-01-15Save the slug when using a persistent private keyMiguel Jacq
2018-01-14Catch the OSError in CLI mode when a file/folder can't be zipped up, and erro...Miguel Jacq
2018-01-024096 byte dir check is not consistent across platforms, remove it for nowMiguel Jacq
2018-01-02Check the file is a valid file or dir (not just that it exists)Miguel Jacq
2017-12-05Let the timer stop the share if there were no downloads, or all downloads are...Miguel Jacq
2017-12-04Better fix for preventing timeout firing if a download is not yet done (works...Miguel Jacq
2017-11-12Format the argparser output better, to deal with the longer argument namesMiguel Jacq
2017-11-11better metavar for --shutdown-timeout argMiguel Jacq
2017-11-09No longer treating shutdown_timeout as a float, but an int of secondsMiguel Jacq
2017-11-09remove shutdown_timeout logic in the web server, it's not actually neededMiguel Jacq
2017-11-08Implements a shutdown timer to stop a share automatically (downloaded or not)...Miguel Jacq