Cleaning up
22
.gitattributes
vendored
|
@ -1,22 +0,0 @@
|
||||||
# Auto detect text files and perform LF normalization
|
|
||||||
* text=auto
|
|
||||||
|
|
||||||
# Custom for Visual Studio
|
|
||||||
*.cs diff=csharp
|
|
||||||
*.sln merge=union
|
|
||||||
*.csproj merge=union
|
|
||||||
*.vbproj merge=union
|
|
||||||
*.fsproj merge=union
|
|
||||||
*.dbproj merge=union
|
|
||||||
|
|
||||||
# Standard to msysgit
|
|
||||||
*.doc diff=astextplain
|
|
||||||
*.DOC diff=astextplain
|
|
||||||
*.docx diff=astextplain
|
|
||||||
*.DOCX diff=astextplain
|
|
||||||
*.dot diff=astextplain
|
|
||||||
*.DOT diff=astextplain
|
|
||||||
*.pdf diff=astextplain
|
|
||||||
*.PDF diff=astextplain
|
|
||||||
*.rtf diff=astextplain
|
|
||||||
*.RTF diff=astextplain
|
|
163
.gitignore
vendored
|
@ -1,163 +0,0 @@
|
||||||
#################
|
|
||||||
## Eclipse
|
|
||||||
#################
|
|
||||||
|
|
||||||
*.pydevproject
|
|
||||||
.project
|
|
||||||
.metadata
|
|
||||||
bin/
|
|
||||||
tmp/
|
|
||||||
*.tmp
|
|
||||||
*.bak
|
|
||||||
*.swp
|
|
||||||
*~.nib
|
|
||||||
local.properties
|
|
||||||
.classpath
|
|
||||||
.settings/
|
|
||||||
.loadpath
|
|
||||||
|
|
||||||
# External tool builders
|
|
||||||
.externalToolBuilders/
|
|
||||||
|
|
||||||
# Locally stored "Eclipse launch configurations"
|
|
||||||
*.launch
|
|
||||||
|
|
||||||
# CDT-specific
|
|
||||||
.cproject
|
|
||||||
|
|
||||||
# PDT-specific
|
|
||||||
.buildpath
|
|
||||||
|
|
||||||
|
|
||||||
#################
|
|
||||||
## Visual Studio
|
|
||||||
#################
|
|
||||||
|
|
||||||
## Ignore Visual Studio temporary files, build results, and
|
|
||||||
## files generated by popular Visual Studio add-ons.
|
|
||||||
|
|
||||||
# User-specific files
|
|
||||||
*.suo
|
|
||||||
*.user
|
|
||||||
*.sln.docstates
|
|
||||||
|
|
||||||
# Build results
|
|
||||||
[Dd]ebug/
|
|
||||||
[Rr]elease/
|
|
||||||
*_i.c
|
|
||||||
*_p.c
|
|
||||||
*.ilk
|
|
||||||
*.meta
|
|
||||||
*.obj
|
|
||||||
*.pch
|
|
||||||
*.pdb
|
|
||||||
*.pgc
|
|
||||||
*.pgd
|
|
||||||
*.rsp
|
|
||||||
*.sbr
|
|
||||||
*.tlb
|
|
||||||
*.tli
|
|
||||||
*.tlh
|
|
||||||
*.tmp
|
|
||||||
*.vspscc
|
|
||||||
.builds
|
|
||||||
*.dotCover
|
|
||||||
|
|
||||||
## TODO: If you have NuGet Package Restore enabled, uncomment this
|
|
||||||
#packages/
|
|
||||||
|
|
||||||
# Visual C++ cache files
|
|
||||||
ipch/
|
|
||||||
*.aps
|
|
||||||
*.ncb
|
|
||||||
*.opensdf
|
|
||||||
*.sdf
|
|
||||||
|
|
||||||
# Visual Studio profiler
|
|
||||||
*.psess
|
|
||||||
*.vsp
|
|
||||||
|
|
||||||
# ReSharper is a .NET coding add-in
|
|
||||||
_ReSharper*
|
|
||||||
|
|
||||||
# Installshield output folder
|
|
||||||
[Ee]xpress
|
|
||||||
|
|
||||||
# DocProject is a documentation generator add-in
|
|
||||||
DocProject/buildhelp/
|
|
||||||
DocProject/Help/*.HxT
|
|
||||||
DocProject/Help/*.HxC
|
|
||||||
DocProject/Help/*.hhc
|
|
||||||
DocProject/Help/*.hhk
|
|
||||||
DocProject/Help/*.hhp
|
|
||||||
DocProject/Help/Html2
|
|
||||||
DocProject/Help/html
|
|
||||||
|
|
||||||
# Click-Once directory
|
|
||||||
publish
|
|
||||||
|
|
||||||
# Others
|
|
||||||
[Bb]in
|
|
||||||
[Oo]bj
|
|
||||||
sql
|
|
||||||
TestResults
|
|
||||||
*.Cache
|
|
||||||
ClientBin
|
|
||||||
stylecop.*
|
|
||||||
~$*
|
|
||||||
*.dbmdl
|
|
||||||
Generated_Code #added for RIA/Silverlight projects
|
|
||||||
|
|
||||||
# Backup & report files from converting an old project file to a newer
|
|
||||||
# Visual Studio version. Backup files are not needed, because we have git ;-)
|
|
||||||
_UpgradeReport_Files/
|
|
||||||
Backup*/
|
|
||||||
UpgradeLog*.XML
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
############
|
|
||||||
## Windows
|
|
||||||
############
|
|
||||||
|
|
||||||
# Windows image file caches
|
|
||||||
Thumbs.db
|
|
||||||
|
|
||||||
# Folder config file
|
|
||||||
Desktop.ini
|
|
||||||
|
|
||||||
|
|
||||||
#############
|
|
||||||
## Python
|
|
||||||
#############
|
|
||||||
|
|
||||||
*.py[co]
|
|
||||||
|
|
||||||
# Packages
|
|
||||||
*.egg
|
|
||||||
*.egg-info
|
|
||||||
dist
|
|
||||||
build
|
|
||||||
eggs
|
|
||||||
parts
|
|
||||||
bin
|
|
||||||
var
|
|
||||||
sdist
|
|
||||||
develop-eggs
|
|
||||||
.installed.cfg
|
|
||||||
|
|
||||||
# Installer logs
|
|
||||||
pip-log.txt
|
|
||||||
|
|
||||||
# Unit test / coverage reports
|
|
||||||
.coverage
|
|
||||||
.tox
|
|
||||||
|
|
||||||
#Translations
|
|
||||||
*.mo
|
|
||||||
|
|
||||||
#Mr Developer
|
|
||||||
.mr.developer.cfg
|
|
||||||
|
|
||||||
# Mac crap
|
|
||||||
.DS_Store
|
|
|
@ -1,2 +0,0 @@
|
||||||
Version 0.4.7 '30-3-2013'
|
|
||||||
- updated to minecraft 1.5.1
|
|
Before Width: | Height: | Size: 664 B |
Before Width: | Height: | Size: 571 B |
Before Width: | Height: | Size: 590 B |
Before Width: | Height: | Size: 391 B |
Before Width: | Height: | Size: 446 B |
Before Width: | Height: | Size: 382 B |
Before Width: | Height: | Size: 534 B |
Before Width: | Height: | Size: 369 B |
Before Width: | Height: | Size: 642 B |
Before Width: | Height: | Size: 610 B |
Before Width: | Height: | Size: 408 B |
Before Width: | Height: | Size: 525 B |
Before Width: | Height: | Size: 545 B |
Before Width: | Height: | Size: 613 B |
Before Width: | Height: | Size: 613 B |
Before Width: | Height: | Size: 260 B |
Before Width: | Height: | Size: 612 B |
Before Width: | Height: | Size: 653 B |
Before Width: | Height: | Size: 584 B |
Before Width: | Height: | Size: 648 B |
Before Width: | Height: | Size: 578 B |
Before Width: | Height: | Size: 533 B |
Before Width: | Height: | Size: 578 B |
Before Width: | Height: | Size: 622 B |
Before Width: | Height: | Size: 592 B |
Before Width: | Height: | Size: 392 B |
Before Width: | Height: | Size: 585 B |
Before Width: | Height: | Size: 374 B |
Before Width: | Height: | Size: 315 B |
Before Width: | Height: | Size: 586 B |
Before Width: | Height: | Size: 609 B |
Before Width: | Height: | Size: 728 B |
Before Width: | Height: | Size: 653 B |
Before Width: | Height: | Size: 628 B |
Before Width: | Height: | Size: 700 B |
Before Width: | Height: | Size: 589 B |
Before Width: | Height: | Size: 342 B |
Before Width: | Height: | Size: 326 B |
Before Width: | Height: | Size: 347 B |
Before Width: | Height: | Size: 602 B |
Before Width: | Height: | Size: 573 B |
Before Width: | Height: | Size: 747 B |
Before Width: | Height: | Size: 340 B |
Before Width: | Height: | Size: 744 B |
Before Width: | Height: | Size: 616 B |
Before Width: | Height: | Size: 500 B |
Before Width: | Height: | Size: 480 B |
Before Width: | Height: | Size: 569 B |
Before Width: | Height: | Size: 350 B |
Before Width: | Height: | Size: 449 B |
Before Width: | Height: | Size: 287 B |
Before Width: | Height: | Size: 469 B |
Before Width: | Height: | Size: 601 B |
Before Width: | Height: | Size: 613 B |
Before Width: | Height: | Size: 463 B |
Before Width: | Height: | Size: 368 B |
Before Width: | Height: | Size: 660 B |
Before Width: | Height: | Size: 628 B |
Before Width: | Height: | Size: 732 B |
Before Width: | Height: | Size: 686 B |
Before Width: | Height: | Size: 621 B |
Before Width: | Height: | Size: 348 B |
Before Width: | Height: | Size: 473 B |
Before Width: | Height: | Size: 334 B |
Before Width: | Height: | Size: 576 B |
Before Width: | Height: | Size: 307 B |
Before Width: | Height: | Size: 728 B |
Before Width: | Height: | Size: 492 B |
Before Width: | Height: | Size: 356 B |
Before Width: | Height: | Size: 561 B |
Before Width: | Height: | Size: 605 B |
Before Width: | Height: | Size: 774 B |
Before Width: | Height: | Size: 678 B |
Before Width: | Height: | Size: 532 B |
Before Width: | Height: | Size: 375 B |
Before Width: | Height: | Size: 475 B |
Before Width: | Height: | Size: 322 B |
Before Width: | Height: | Size: 526 B |
Before Width: | Height: | Size: 320 B |
Before Width: | Height: | Size: 591 B |
Before Width: | Height: | Size: 567 B |
Before Width: | Height: | Size: 394 B |
Before Width: | Height: | Size: 698 B |
Before Width: | Height: | Size: 480 B |
Before Width: | Height: | Size: 354 B |
Before Width: | Height: | Size: 669 B |
Before Width: | Height: | Size: 628 B |
Before Width: | Height: | Size: 337 B |
Before Width: | Height: | Size: 589 B |
Before Width: | Height: | Size: 631 B |
Before Width: | Height: | Size: 590 B |
Before Width: | Height: | Size: 360 B |
Before Width: | Height: | Size: 428 B |
Before Width: | Height: | Size: 317 B |
Before Width: | Height: | Size: 629 B |