Skip to content

Commit

Permalink
0.6 Release
Browse files Browse the repository at this point in the history
• Removed ability to download paid packages for the request of Mark
Hack.
• Fixed a graphical issue which was causing all packages to seem either
blue or black.
• Added build batch script that will make it easier to compile without
using Visual Studio.
  • Loading branch information
PythEch committed Jul 30, 2014
1 parent 7e04a0f commit 89cae45
Show file tree
Hide file tree
Showing 9 changed files with 241 additions and 442 deletions.
189 changes: 96 additions & 93 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,61 +1,53 @@
#################
## 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
#################
#Cygnus specific
build/Cygnus.*
build/repos/
build/debs/

## 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

# Build results
[Dd]ebug/
[Dd]ebugPublic/
[Rr]elease/
[Rr]eleases/
x64/
build/
x86/
bld/
[Bb]in/
[Oo]bj/


# Roslyn cache directories
*.ide/


# MSTest test Results
[Tt]est[Rr]esult*/
[Bb]uild[Ll]og.*


#NUNIT
*.VisualState.xml
TestResult.xml


# Build Results of an ATL Project
[Dd]ebugPS/
[Rr]eleasePS/
dlldata.c


*_i.c
*_p.c
*_i.h
*.ilk
*.meta
*.obj
Expand All @@ -75,9 +67,14 @@ build/
*.vssscc
.builds
*.pidb
*.log
*.svclog
*.scc


# Chutzpah Test files
_Chutzpah*


# Visual C++ cache files
ipch/
*.aps
Expand All @@ -86,31 +83,57 @@ ipch/
*.sdf
*.cachefile


# Visual Studio profiler
*.psess
*.vsp
*.vspx


# TFS 2012 Local Workspace
$tf/


# Guidance Automation Toolkit
*.gpState


# ReSharper is a .NET coding add-in
_ReSharper*/
*.[Rr]e[Ss]harper
*.DotSettings.user


# JustCode is a .NET coding addin-in
.JustCode


# TeamCity is a build add-in
_TeamCity*


# DotCover is a Code Coverage Tool
*.dotCover


# NCrunch
*.ncrunch*
_NCrunch_*
.*crunch*.local.xml


# MightyMoose
*.mm.*
AutoTest.Net/


# Web workbench (sass)
.sass-cache/


# Installshield output folder
[Ee]xpress/


# DocProject is a documentation generator add-in
DocProject/buildhelp/
DocProject/Help/*.HxT
Expand All @@ -121,24 +144,38 @@ DocProject/Help/*.hhp
DocProject/Help/Html2
DocProject/Help/html


# Click-Once directory
publish/


# Publish Web Output
*.Publish.xml
*.[Pp]ublish.xml
*.azurePubxml
# TODO: Comment the next line if you want to checkin your web deploy settings
# but database connection strings (with potential passwords) will be unencrypted
*.pubxml

# NuGet Packages Directory
## TODO: If you have NuGet Package Restore enabled, uncomment the next line
#packages/

# NuGet Packages
*.nupkg
# The packages folder can be ignored because of Package Restore
**/packages/*
# except build/, which is used as an MSBuild target.
!**/packages/build/
# If using the old MSBuild-Integrated Package Restore, uncomment this:
#!**/packages/repositories.config


# Windows Azure Build Output
csx
csx/
*.build.csdef


# Windows Store app package directory
AppPackages/


# Others
sql/
*.Cache
Expand All @@ -147,69 +184,35 @@ ClientBin/
~$*
*~
*.dbmdl
*.[Pp]ublish.xml
*.dbproj.schemaview
*.pfx
*.publishsettings
node_modules/


# RIA/Silverlight projects
Generated_Code/

# Backup & report files from converting an old project file to a newer
# Visual Studio version. Backup files are not needed, because we have git ;-)

# 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
UpgradeLog*.htm

# SQL Server files
App_Data/*.mdf
App_Data/*.ldf

#############
## Windows detritus
#############

# Windows image file caches
Thumbs.db
ehthumbs.db

# Folder config file
Desktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

# Mac crap
.DS_Store


#############
## Python
#############

*.py[co]

# Packages
*.egg
*.egg-info
dist/
build/
eggs/
parts/
var/
sdist/
develop-eggs/
.installed.cfg
# SQL Server files
*.mdf
*.ldf

# Installer logs
pip-log.txt

# Unit test / coverage reports
.coverage
.tox
# Business Intelligence projects
*.rdl.data
*.bim.layout
*.bim_*.settings

#Translations
*.mo

#Mr Developer
.mr.developer.cfg
# Microsoft Fakes
FakesAssemblies/
3 changes: 0 additions & 3 deletions Cygnus/Cygnus.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -49,16 +49,13 @@
<Reference Include="System" />
<Reference Include="System.IO">
<HintPath>..\packages\Microsoft.Bcl.1.1.8\lib\net40\System.IO.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="System.Net" />
<Reference Include="System.Runtime">
<HintPath>..\packages\Microsoft.Bcl.1.1.8\lib\net40\System.Runtime.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="System.Threading.Tasks">
<HintPath>..\packages\Microsoft.Bcl.1.1.8\lib\net40\System.Threading.Tasks.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="System.XML" />
<Reference Include="System.Xml.Linq" />
Expand Down
Loading

1 comment on commit 89cae45

@PythEch
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Forgot to add that now it asks user if they want to add default repos upon first launch.

Please sign in to comment.