Skip to content

Commit 6644fb2

Browse files
committedApr 9, 2014
Initial commit
Initial version with very limited capability and still a lot of BlocklyDuino code present on wich this project is based (Thanks!)
0 parents  commit 6644fb2

File tree

136 files changed

+28646
-0
lines changed

Some content is hidden

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

136 files changed

+28646
-0
lines changed
 

‎.gitattributes

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto
3+
4+
# Custom for Visual Studio
5+
*.cs diff=csharp
6+
*.sln merge=union
7+
*.csproj merge=union
8+
*.vbproj merge=union
9+
*.fsproj merge=union
10+
*.dbproj merge=union
11+
12+
# Standard to msysgit
13+
*.doc diff=astextplain
14+
*.DOC diff=astextplain
15+
*.docx diff=astextplain
16+
*.DOCX diff=astextplain
17+
*.dot diff=astextplain
18+
*.DOT diff=astextplain
19+
*.pdf diff=astextplain
20+
*.PDF diff=astextplain
21+
*.rtf diff=astextplain
22+
*.RTF diff=astextplain

‎.gitignore

Lines changed: 223 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,223 @@
1+
#################
2+
## NetBeans
3+
#################
4+
5+
nb-configuration.xml
6+
nbactions.xml
7+
8+
9+
#################
10+
## Eclipse
11+
#################
12+
13+
*.pydevproject
14+
.project
15+
.metadata
16+
bin/
17+
tmp/
18+
*.tmp
19+
*.bak
20+
*.swp
21+
*~.nib
22+
local.properties
23+
.classpath
24+
.settings/
25+
.loadpath
26+
27+
# External tool builders
28+
.externalToolBuilders/
29+
30+
# Locally stored "Eclipse launch configurations"
31+
*.launch
32+
33+
# CDT-specific
34+
.cproject
35+
36+
# PDT-specific
37+
.buildpath
38+
39+
40+
#################
41+
## Visual Studio
42+
#################
43+
44+
## Ignore Visual Studio temporary files, build results, and
45+
## files generated by popular Visual Studio add-ons.
46+
47+
# User-specific files
48+
*.suo
49+
*.user
50+
*.sln.docstates
51+
52+
# Build results
53+
54+
[Dd]ebug/
55+
[Rr]elease/
56+
x64/
57+
build/
58+
[Bb]in/
59+
[Oo]bj/
60+
61+
# MSTest test Results
62+
[Tt]est[Rr]esult*/
63+
[Bb]uild[Ll]og.*
64+
65+
*_i.c
66+
*_p.c
67+
*.ilk
68+
*.meta
69+
*.obj
70+
*.pch
71+
*.pdb
72+
*.pgc
73+
*.pgd
74+
*.rsp
75+
*.sbr
76+
*.tlb
77+
*.tli
78+
*.tlh
79+
*.tmp
80+
*.tmp_proj
81+
*.log
82+
*.vspscc
83+
*.vssscc
84+
.builds
85+
*.pidb
86+
*.log
87+
*.scc
88+
89+
# Visual C++ cache files
90+
ipch/
91+
*.aps
92+
*.ncb
93+
*.opensdf
94+
*.sdf
95+
*.cachefile
96+
97+
# Visual Studio profiler
98+
*.psess
99+
*.vsp
100+
*.vspx
101+
102+
# Guidance Automation Toolkit
103+
*.gpState
104+
105+
# ReSharper is a .NET coding add-in
106+
_ReSharper*/
107+
*.[Rr]e[Ss]harper
108+
109+
# TeamCity is a build add-in
110+
_TeamCity*
111+
112+
# DotCover is a Code Coverage Tool
113+
*.dotCover
114+
115+
# NCrunch
116+
*.ncrunch*
117+
.*crunch*.local.xml
118+
119+
# Installshield output folder
120+
[Ee]xpress/
121+
122+
# DocProject is a documentation generator add-in
123+
DocProject/buildhelp/
124+
DocProject/Help/*.HxT
125+
DocProject/Help/*.HxC
126+
DocProject/Help/*.hhc
127+
DocProject/Help/*.hhk
128+
DocProject/Help/*.hhp
129+
DocProject/Help/Html2
130+
DocProject/Help/html
131+
132+
# Click-Once directory
133+
publish/
134+
135+
# Publish Web Output
136+
*.Publish.xml
137+
*.pubxml
138+
139+
# NuGet Packages Directory
140+
## TODO: If you have NuGet Package Restore enabled, uncomment the next line
141+
#packages/
142+
143+
# Windows Azure Build Output
144+
csx
145+
*.build.csdef
146+
147+
# Windows Store app package directory
148+
AppPackages/
149+
150+
# Others
151+
sql/
152+
*.Cache
153+
ClientBin/
154+
[Ss]tyle[Cc]op.*
155+
~$*
156+
*~
157+
*.dbmdl
158+
*.[Pp]ublish.xml
159+
*.pfx
160+
*.publishsettings
161+
162+
# RIA/Silverlight projects
163+
Generated_Code/
164+
165+
# Backup & report files from converting an old project file to a newer
166+
# Visual Studio version. Backup files are not needed, because we have git ;-)
167+
_UpgradeReport_Files/
168+
Backup*/
169+
UpgradeLog*.XML
170+
UpgradeLog*.htm
171+
172+
# SQL Server files
173+
App_Data/*.mdf
174+
App_Data/*.ldf
175+
176+
#############
177+
## Windows detritus
178+
#############
179+
180+
# Windows image file caches
181+
Thumbs.db
182+
ehthumbs.db
183+
184+
# Folder config file
185+
Desktop.ini
186+
187+
# Recycle Bin used on file shares
188+
$RECYCLE.BIN/
189+
190+
# Mac crap
191+
.DS_Store
192+
193+
194+
#############
195+
## Python
196+
#############
197+
198+
*.py[co]
199+
200+
# Packages
201+
*.egg
202+
*.egg-info
203+
dist/
204+
build/
205+
eggs/
206+
parts/
207+
var/
208+
sdist/
209+
develop-eggs/
210+
.installed.cfg
211+
212+
# Installer logs
213+
pip-log.txt
214+
215+
# Unit test / coverage reports
216+
.coverage
217+
.tox
218+
219+
#Translations
220+
*.mo
221+
222+
#Mr Developer
223+
.mr.developer.cfg

0 commit comments

Comments
 (0)