Skip to content

Commit

Permalink
Adoption by Linuxgurugamer
Browse files Browse the repository at this point in the history
	Added support for the ClickThroughBlocker
	Added support for the ToolbarController
	Added 24x24 icons
  • Loading branch information
linuxgurugamer committed May 18, 2018
1 parent 1a2826f commit 888cd9a
Show file tree
Hide file tree
Showing 25 changed files with 1,252 additions and 477 deletions.
143 changes: 36 additions & 107 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,37 +4,23 @@
# User-specific files
*.suo
*.user
*.userosscache
*.sln.docstates

# API
API/

# User-specific files (MonoDevelop/Xamarin Studio)
*.userprefs

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

# Visual Studio 2015 cache/options directory
.vs/
# Uncomment if you have tasks that create the project's static files in wwwroot
#wwwroot/

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

# NUNIT
#NUNIT
*.VisualState.xml
TestResult.xml

Expand All @@ -43,10 +29,6 @@ TestResult.xml
[Rr]eleasePS/
dlldata.c

# DNX
project.lock.json
artifacts/

*_i.c
*_p.c
*_i.h
Expand Down Expand Up @@ -79,18 +61,14 @@ _Chutzpah*
ipch/
*.aps
*.ncb
*.opendb
*.opensdf
*.sdf
*.cachefile
*.VC.db
*.VC.VC.opendb

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

# TFS 2012 Local Workspace
$tf/
Expand All @@ -103,7 +81,7 @@ _ReSharper*/
*.[Rr]e[Ss]harper
*.DotSettings.user

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

# TeamCity is a build add-in
Expand All @@ -113,9 +91,9 @@ _TeamCity*
*.dotCover

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

# MightyMoose
*.mm.*
Expand Down Expand Up @@ -143,69 +121,41 @@ publish/
# Publish Web Output
*.[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
*.publishproj

# Microsoft Azure Web App publish settings. Comment the next line if you want to
# checkin your Azure Web App publish settings, but sensitive information contained
# in these scripts will be unencrypted
PublishScripts/

# 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/
# Uncomment if necessary however generally it will be regenerated when needed
#!**/packages/repositories.config
# NuGet v3's project.json files produces more ignoreable files
*.nuget.props
*.nuget.targets

# Microsoft Azure Build Output

# NuGet Packages Directory
packages/
## TODO: If the tool you use requires repositories.config uncomment the next line
#!packages/repositories.config

# Enable "build/" folder in the NuGet Packages folder since NuGet packages use it for MSBuild targets
# This line needs to be after the ignore of the build folder (and the packages folder if the line above has been uncommented)
!packages/build/

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

# Microsoft Azure Emulator
ecf/
rcf/

# Windows Store app package directories and files
# Windows Store app package directory
AppPackages/
BundleArtifacts/
Package.StoreAssociation.xml
_pkginfo.txt

# Visual Studio cache files
# files ending in .cache can be ignored
*.[Cc]ache
# but keep track of directories ending in .cache
!*.[Cc]ache/

# Others
sql/
*.Cache
ClientBin/
[Ss]tyle[Cc]op.*
~$*
*~
*.dbmdl
*.dbproj.schemaview
*.pfx
*.publishsettings
node_modules/
orleans.codegen.cs

# Since there are multiple workflows, uncomment next line to ignore bower_components
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
#bower_components/

# 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
Expand All @@ -223,37 +173,6 @@ UpgradeLog*.htm
# Microsoft Fakes
FakesAssemblies/

# GhostDoc plugin setting file
*.GhostDoc.xml

# Node.js Tools for Visual Studio
.ntvs_analysis.dat

# Visual Studio 6 build log
*.plg

# Visual Studio 6 workspace options file
*.opt

# Visual Studio LightSwitch build output
**/*.HTMLClient/GeneratedArtifacts
**/*.DesktopClient/GeneratedArtifacts
**/*.DesktopClient/ModelManifest.xml
**/*.Server/GeneratedArtifacts
**/*.Server/ModelManifest.xml
_Pvt_Extensions

# Paket dependency manager
.paket/paket.exe
paket-files/

# FAKE - F# Make
.fake/

# JetBrains Rider
.idea/
*.sln.iml

# =========================
# Operating System Files
# =========================
Expand All @@ -265,16 +184,15 @@ paket-files/
.AppleDouble
.LSOverride

# Icon must ends with two \r.
Icon

# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
# Files that might appear on external disk
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns

# Directories potentially created on remote AFP share
.AppleDB
Expand All @@ -283,6 +201,8 @@ Network Trash Folder
Temporary Items
.apdisk



# Windows
# =========================

Expand All @@ -304,3 +224,12 @@ $RECYCLE.BIN/

# Windows shortcuts
*.lnk

#
# Vim files
#
*~
*.swp
*.dll
*.pdb
.vs
5 changes: 5 additions & 0 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
1.3.2
Adoption by Linuxgurugamer
Added support for the ClickThroughBlocker
Added support for the ToolbarController
Added 24x24 icons
18 changes: 16 additions & 2 deletions ExperimentTracker.sln
Original file line number Diff line number Diff line change
@@ -1,10 +1,21 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.23107.0
# Visual Studio 15
VisualStudioVersion = 15.0.27428.2005
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ExperimentTracker", "ExperimentTracker\ExperimentTracker.csproj", "{972333AC-CED0-4D07-B625-D0F753B6AE1E}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{C3EAACE9-852F-4321-A7E3-4734609F7A86}"
ProjectSection(SolutionItems) = preProject
buildRelease.bat = buildRelease.bat
ChangeLog.txt = ChangeLog.txt
deploy.bat = deploy.bat
ExperimentTracker.version = ExperimentTracker.version
jenkins.txt = jenkins.txt
LICENSE.txt = LICENSE.txt
README.md = README.md
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -19,4 +30,7 @@ Global
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {8A5767BE-8FBD-4C29-AEFA-D61BB3A4641F}
EndGlobalSection
EndGlobal
30 changes: 30 additions & 0 deletions ExperimentTracker.version
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"NAME": "ExperimentTracker",
"URL": "https://raw.githubusercontent.com/linuxgurugamer/ExperimentTracker/master/ExperimentTracker.version",
"DOWNLOAD": "https://github.com/linuxgurugamer/ExperimentTracker/releases",
"GITHUB": {
"USERNAME": "linuxgurugamer",
"REPOSITORY": "ExperimentTracker"
},
"VERSION": {
"MAJOR": 1,
"MINOR": 3,
"PATCH": 2,
"BUILD": 0
},
"KSP_VERSION": {
"MAJOR": 1,
"MINOR": 4,
"PATCH": 1
},
"KSP_VERSION_MIN": {
"MAJOR": 1,
"MINOR": 4,
"PATCH": 1
},
"KSP_VERSION_MAX": {
"MAJOR": 1,
"MINOR": 4,
"PATCH": 99
}
}
8 changes: 8 additions & 0 deletions ExperimentTracker/AssemblyVersion.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

// This code was generated by a tool. Any changes made manually will be lost
// the next time this code is regenerated.
//

using System.Reflection;

[assembly: AssemblyVersion("1.3.2.0")]
Loading

0 comments on commit 888cd9a

Please sign in to comment.