Skip to content

Commit 9d2c2d6

Browse files
committed
Merge pull request #50 from timvisee/v0.2
Version 0.2
2 parents 014d4dc + dc55ef1 commit 9d2c2d6

File tree

268 files changed

+21847
-16260
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

268 files changed

+21847
-16260
lines changed

.gitattributes

Lines changed: 0 additions & 22 deletions
This file was deleted.

.gitignore

Lines changed: 90 additions & 137 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,47 @@
1-
#################
2-
## Eclipse
3-
#################
1+
### Java ###
2+
*.class
43

4+
# Mobile Tools for Java (J2ME)
5+
.mtj.tmp/
6+
7+
# Package Files #
8+
#*.jar
9+
*.war
10+
*.ear
11+
12+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
13+
hs_err_pid*
14+
15+
16+
### Maven ###
17+
target/
18+
pom.xml.tag
19+
pom.xml.releaseBackup
20+
pom.xml.versionsBackup
21+
pom.xml.next
22+
release.properties
23+
dependency-reduced-pom.xml
24+
buildNumber.properties
25+
.mvn/timing.properties
26+
27+
28+
### Eclipse ###
529
*.pydevproject
6-
.project
730
.metadata
31+
.gradle
832
bin/
933
tmp/
1034
*.tmp
1135
*.bak
1236
*.swp
1337
*~.nib
1438
local.properties
15-
.classpath
1639
.settings/
1740
.loadpath
1841

42+
# Eclipse Core
43+
.project
44+
1945
# External tool builders
2046
.externalToolBuilders/
2147

@@ -25,139 +51,66 @@ local.properties
2551
# CDT-specific
2652
.cproject
2753

54+
# JDT-specific (Eclipse Java Development Tools)
55+
.classpath
56+
57+
# Java annotation processor (APT)
58+
.factorypath
59+
2860
# PDT-specific
2961
.buildpath
3062

63+
# sbteclipse plugin
64+
.target
3165

32-
#################
33-
## Visual Studio
34-
#################
35-
36-
## Ignore Visual Studio temporary files, build results, and
37-
## files generated by popular Visual Studio add-ons.
38-
39-
# User-specific files
40-
*.suo
41-
*.user
42-
*.sln.docstates
43-
44-
# Build results
45-
[Dd]ebug/
46-
[Rr]elease/
47-
*_i.c
48-
*_p.c
49-
*.ilk
50-
*.meta
51-
*.obj
52-
*.pch
53-
*.pdb
54-
*.pgc
55-
*.pgd
56-
*.rsp
57-
*.sbr
58-
*.tlb
59-
*.tli
60-
*.tlh
61-
*.tmp
62-
*.vspscc
63-
.builds
64-
*.dotCover
65-
66-
## TODO: If you have NuGet Package Restore enabled, uncomment this
67-
#packages/
68-
69-
# Visual C++ cache files
70-
ipch/
71-
*.aps
72-
*.ncb
73-
*.opensdf
74-
*.sdf
75-
76-
# Visual Studio profiler
77-
*.psess
78-
*.vsp
79-
80-
# ReSharper is a .NET coding add-in
81-
_ReSharper*
82-
83-
# Installshield output folder
84-
[Ee]xpress
85-
86-
# DocProject is a documentation generator add-in
87-
DocProject/buildhelp/
88-
DocProject/Help/*.HxT
89-
DocProject/Help/*.HxC
90-
DocProject/Help/*.hhc
91-
DocProject/Help/*.hhk
92-
DocProject/Help/*.hhp
93-
DocProject/Help/Html2
94-
DocProject/Help/html
95-
96-
# Click-Once directory
97-
publish
98-
99-
# Others
100-
[Bb]in
101-
[Oo]bj
102-
sql
103-
TestResults
104-
*.Cache
105-
ClientBin
106-
stylecop.*
107-
~$*
108-
*.dbmdl
109-
Generated_Code #added for RIA/Silverlight projects
110-
111-
# Backup & report files from converting an old project file to a newer
112-
# Visual Studio version. Backup files are not needed, because we have git ;-)
113-
_UpgradeReport_Files/
114-
Backup*/
115-
UpgradeLog*.XML
116-
117-
118-
119-
############
120-
## Windows
121-
############
122-
123-
# Windows image file caches
124-
Thumbs.db
125-
126-
# Folder config file
127-
Desktop.ini
128-
129-
130-
#############
131-
## Python
132-
#############
133-
134-
*.py[co]
135-
136-
# Packages
137-
*.egg
138-
*.egg-info
139-
dist
140-
build
141-
eggs
142-
parts
143-
bin
144-
var
145-
sdist
146-
develop-eggs
147-
.installed.cfg
148-
149-
# Installer logs
150-
pip-log.txt
151-
152-
# Unit test / coverage reports
153-
.coverage
154-
.tox
155-
156-
#Translations
157-
*.mo
158-
159-
#Mr Developer
160-
.mr.developer.cfg
161-
162-
# Mac crap
163-
.DS_Store
66+
# TeXlipse plugin
67+
.texlipse
68+
69+
70+
### Intellij ###
71+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio
72+
73+
*.iml
74+
75+
## Directory-based project format:
76+
.idea/
77+
# if you remove the above rule, at least ignore the following:
78+
79+
# User-specific stuff:
80+
# .idea/workspace.xml
81+
# .idea/tasks.xml
82+
# .idea/dictionaries
83+
84+
# Sensitive or high-churn files:
85+
# .idea/dataSources.ids
86+
# .idea/dataSources.xml
87+
# .idea/sqlDataSources.xml
88+
# .idea/dynamic.xml
89+
# .idea/uiDesigner.xml
90+
91+
# Gradle:
92+
# .idea/gradle.xml
93+
# .idea/libraries
94+
95+
# Mongo Explorer plugin:
96+
# .idea/mongoSettings.xml
97+
98+
## File-based project format:
99+
*.ipr
100+
*.iws
101+
102+
## Plugin-specific files:
103+
104+
# IntelliJ
105+
/out/
106+
107+
# mpeltonen/sbt-idea plugin
108+
.idea_modules/
109+
110+
# JIRA plugin
111+
atlassian-ide-plugin.xml
112+
113+
# Crashlytics plugin (for Android Studio and IntelliJ)
114+
com_crashlytics_export_strings.xml
115+
crashlytics.properties
116+
crashlytics-build.properties

0 commit comments

Comments
 (0)