Skip to content

Commit 7e8df57

Browse files
committed
add screenshot and gitignore
1 parent 2b90188 commit 7e8df57

File tree

3 files changed

+181
-2
lines changed

3 files changed

+181
-2
lines changed

.gitignore

+180
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,180 @@
1+
2+
# Created by https://www.gitignore.io/api/python,linux,windows,jetbrains
3+
4+
### Python ###
5+
# Byte-compiled / optimized / DLL files
6+
__pycache__/
7+
*.py[cod]
8+
*$py.class
9+
10+
# C extensions
11+
*.so
12+
13+
# Distribution / packaging
14+
.Python
15+
env/
16+
build/
17+
develop-eggs/
18+
dist/
19+
downloads/
20+
eggs/
21+
.eggs/
22+
lib/
23+
lib64/
24+
parts/
25+
sdist/
26+
var/
27+
*.egg-info/
28+
.installed.cfg
29+
*.egg
30+
31+
# PyInstaller
32+
# Usually these files are written by a python script from a template
33+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
34+
*.manifest
35+
*.spec
36+
37+
# Installer logs
38+
pip-log.txt
39+
pip-delete-this-directory.txt
40+
41+
# Unit test / coverage reports
42+
htmlcov/
43+
.tox/
44+
.coverage
45+
.coverage.*
46+
.cache
47+
nosetests.xml
48+
coverage.xml
49+
*,cover
50+
.hypothesis/
51+
52+
# Translations
53+
*.mo
54+
*.pot
55+
56+
# Django stuff:
57+
*.log
58+
local_settings.py
59+
60+
# Flask stuff:
61+
instance/
62+
.webassets-cache
63+
64+
# Scrapy stuff:
65+
.scrapy
66+
67+
# Sphinx documentation
68+
docs/_build/
69+
70+
# PyBuilder
71+
target/
72+
73+
# IPython Notebook
74+
.ipynb_checkpoints
75+
76+
# pyenv
77+
.python-version
78+
79+
# celery beat schedule file
80+
celerybeat-schedule
81+
82+
# dotenv
83+
.env
84+
85+
# virtualenv
86+
venv/
87+
ENV/
88+
89+
# Spyder project settings
90+
.spyderproject
91+
92+
# Rope project settings
93+
.ropeproject
94+
95+
96+
### Linux ###
97+
*~
98+
99+
# temporary files which can be created if a process still has a handle open of a deleted file
100+
.fuse_hidden*
101+
102+
# KDE directory preferences
103+
.directory
104+
105+
# Linux trash folder which might appear on any partition or disk
106+
.Trash-*
107+
108+
109+
### Windows ###
110+
# Windows image file caches
111+
Thumbs.db
112+
ehthumbs.db
113+
114+
# Folder config file
115+
Desktop.ini
116+
117+
# Recycle Bin used on file shares
118+
$RECYCLE.BIN/
119+
120+
# Windows Installer files
121+
*.cab
122+
*.msi
123+
*.msm
124+
*.msp
125+
126+
# Windows shortcuts
127+
*.lnk
128+
129+
130+
### JetBrains ###
131+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
132+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
133+
134+
# User-specific stuff:
135+
.idea/workspace.xml
136+
.idea/tasks.xml
137+
.idea/dictionaries
138+
.idea/vcs.xml
139+
.idea/jsLibraryMappings.xml
140+
141+
# Sensitive or high-churn files:
142+
.idea/dataSources.ids
143+
.idea/dataSources.xml
144+
.idea/dataSources.local.xml
145+
.idea/sqlDataSources.xml
146+
.idea/dynamic.xml
147+
.idea/uiDesigner.xml
148+
149+
# Gradle:
150+
.idea/gradle.xml
151+
.idea/libraries
152+
153+
# Mongo Explorer plugin:
154+
.idea/mongoSettings.xml
155+
156+
## File-based project format:
157+
*.iws
158+
159+
## Plugin-specific files:
160+
161+
# IntelliJ
162+
/out/
163+
164+
# mpeltonen/sbt-idea plugin
165+
.idea_modules/
166+
167+
# JIRA plugin
168+
atlassian-ide-plugin.xml
169+
170+
# Crashlytics plugin (for Android Studio and IntelliJ)
171+
com_crashlytics_export_strings.xml
172+
crashlytics.properties
173+
crashlytics-build.properties
174+
fabric.properties
175+
176+
### JetBrains Patch ###
177+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
178+
179+
# *.iml
180+
# modules.xml

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,7 @@ To just test the application or if you do not wish to install it, navigate to `d
3939

4040
#### Usage
4141

42-
![ScreenShot](http://a.pomf.se/qqbmjz.png)
43-
![ScreenShot](http://a.pomf.se/ywdmuf.png)
42+
![ScreenShot](screenshot.png)
4443

4544
Press Enter or select "Set/Unset CWD" in the context menu to set the current index as working directory.
4645

screenshot.png

215 KB
Loading

0 commit comments

Comments
 (0)