Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Logo #30

Merged
merged 5 commits into from
Jan 18, 2019
Merged

Logo #30

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
![Social Amnesia Logo](/images/FullLogo.png)
![Social Amnesia Main Window](/images/MainWindow.png)
![Social Amnesia Deletion Window](/images/DeletionWindow.png)

# Social Amnesia
Social Amnesia aims to make your social media only exist within a time period that you choose. For many people, there is no reason they want to have years old tweets or reddit comments existing and making it easier for online marketers and jilted ex-lovers to profile you. With Social Amnesia, set the time period you want to keep, whitelist posts and items you want to preserve indefinitely, and let Social Amnesia wipe the rest out of existence.

Expand All @@ -15,7 +19,7 @@ This is the simplest option. Bundled and easily usable files for Mac and Windows
3. Run:
```
pip3 install -r requirements.txt
python3 social_amnesia.py
python3 SocialAmnesia.py
```
4. Have fun!

Expand Down
File renamed without changes.
Binary file added icon.icns
Binary file not shown.
Binary file added icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/DeletionWindow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/FullLogo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/MainWindow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 11 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,25 @@
'your social media accounts only show your posts ' \
'from recent history, not from "that phase" 5 years ago.'

def find_data_file(filename):
if getattr(sys, 'frozen', False):
datadir = os.path.dirname(sys.executable)
else:
datadir = os.path.dirname(__file__)
return os.path.join(datadir, filename)

base = None
if sys.platform == 'win32':
base = 'Win32GUI'
os.environ['TCL_LIBRARY'] = 'C:\\Python36\\tcl\\tcl8.6'
os.environ['TK_LIBRARY'] = 'C:\\Python36\\tcl\\tk8.6'

build_exe_options = {'packages': ['os', 'idna', 'multiprocessing', 'dbm']}
executables = [Executable('social_amnesia.py', base=base)]
bdist_mac_options = {'iconfile': find_data_file('icon.icns')}
executables = [Executable('SocialAmnesia.py', base=base, icon='icon.png')]

setup(name=app_name,
version='0.3.1',
version='1.0.0',
description=app_description,
options={'build_exe': build_exe_options},
options={'build_exe': build_exe_options, 'bdist_mac': bdist_mac_options},
executables=executables)