Skip to content

Commit fce2dc6

Browse files
author
nmlgc
committed
Initial commit
0 parents  commit fce2dc6

Some content is hidden

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

93 files changed

+9457
-0
lines changed

.gitattributes

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Set default behaviour, in case users don't have core.autocrlf set.
2+
* text eol=lf
3+
4+
# Explicitly declare text files we want to always be normalized and converted
5+
# to native line endings on checkout.
6+
*.c text
7+
*.cpp text
8+
*.h text
9+
10+
# Denote all files that are truly binary and should not be modified.
11+
*.png binary
12+
*.ico binary

.gitignore

Lines changed: 131 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,131 @@
1+
# This file includes
2+
# ------------------
3+
# C.gitignore
4+
# Global/CSVS.gitignore
5+
# Global/VisualStudio.gitignore
6+
# ------------------
7+
8+
9+
# Compiled Object files
10+
*.slo
11+
*.lo
12+
*.o
13+
*.obj
14+
15+
# Compiled Dynamic libraries
16+
*.so
17+
*.dylib
18+
19+
# Compiled Static libraries
20+
*.lai
21+
*.la
22+
*.a
23+
24+
## Ignore Visual Studio temporary files, build results, and
25+
## files generated by popular Visual Studio add-ons.
26+
27+
# User-specific files
28+
*.suo
29+
*.user
30+
*.sln.docstates
31+
32+
# Build results
33+
34+
[Dd]ebug/
35+
[Rr]elease/
36+
37+
build/
38+
39+
40+
[Tt]est[Rr]esult
41+
[Bb]uild[Ll]og.*
42+
43+
*_i.c
44+
*_p.c
45+
*.ilk
46+
*.meta
47+
*.obj
48+
*.pch
49+
*.pdb
50+
*.pgc
51+
*.pgd
52+
*.rsp
53+
*.sbr
54+
*.tlb
55+
*.tli
56+
*.tlh
57+
*.tmp
58+
*.vspscc
59+
*.vssscc
60+
.builds
61+
62+
*.pidb
63+
64+
*.log
65+
*.scc
66+
# Visual C++ cache files
67+
ipch/
68+
*.aps
69+
*.ncb
70+
*.opensdf
71+
*.sdf
72+
73+
# Visual Studio profiler
74+
*.psess
75+
*.vsp
76+
77+
# Guidance Automation Toolkit
78+
*.gpState
79+
80+
# ReSharper is a .NET coding add-in
81+
_ReSharper*/
82+
83+
*.[Rr]e[Ss]harper
84+
85+
# NCrunch
86+
*.ncrunch*
87+
.*crunch*.local.xml
88+
89+
# Installshield output folder
90+
[Ee]xpress
91+
92+
# DocProject is a documentation generator add-in
93+
DocProject/buildhelp/
94+
DocProject/Help/*.HxT
95+
DocProject/Help/*.HxC
96+
DocProject/Help/*.hhc
97+
DocProject/Help/*.hhk
98+
DocProject/Help/*.hhp
99+
DocProject/Help/Html2
100+
DocProject/Help/html
101+
102+
# Click-Once directory
103+
publish
104+
105+
# Publish Web Output
106+
*.Publish.xml
107+
108+
# Others
109+
[Bb]in
110+
[Oo]bj
111+
sql
112+
TestResults
113+
[Tt]est[Rr]esult*
114+
*.Cache
115+
ClientBin
116+
[Ss]tyle[Cc]op.*
117+
~$*
118+
*.dbmdl
119+
120+
*.[Pp]ublish.xml
121+
122+
Generated_Code #added for RIA/Silverlight projects
123+
124+
# Backup & report files from converting an old project file to a newer
125+
# Visual Studio version. Backup files are not needed, because we have git ;-)
126+
_UpgradeReport_Files/
127+
Backup*/
128+
UpgradeLog*.XML
129+
130+
# NuGet
131+
packages/

COPYING

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
2+
Version 2, December 2004
3+
4+
Copyright (C) 2004 Sam Hocevar <[email protected]>
5+
6+
Everyone is permitted to copy and distribute verbatim or modified
7+
copies of this license document, and changing it is allowed as long
8+
as the name is changed.
9+
10+
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
11+
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
12+
13+
0. You just DO WHAT THE FUCK YOU WANT TO.
14+

gfx/abstractcactus/favicon.png

2.92 KB
Loading

gfx/abstractcactus/icon_01.ico

3.19 KB
Binary file not shown.

gfx/abstractcactus/icon_01.png

3.3 KB
Loading

gfx/abstractcactus/icon_02.png

3.3 KB
Loading

gfx/abstractcactus/logo_01.png

34.6 KB
Loading

gfx/abstractcactus/logo_02.ico

66.1 KB
Binary file not shown.

gfx/abstractcactus/logo_02.png

36.5 KB
Loading

0 commit comments

Comments
 (0)