Skip to content

Commit 2a9faeb

Browse files
authored
v1.0.0
1 parent bff78ab commit 2a9faeb

File tree

80 files changed

+3548
-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.

80 files changed

+3548
-0
lines changed
Binary file not shown.
772 KB
Binary file not shown.

QuickColorPicker-Setup/QuickColorPicker-Setup.vdproj

Lines changed: 1028 additions & 0 deletions
Large diffs are not rendered by default.
Binary file not shown.
772 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.

packages/Octokit.0.3.4/LICENSE.txt

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Copyright (c) 2012 GitHub, Inc.
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy of
4+
this software and associated documentation files (the "Software"), to deal in
5+
the Software without restriction, including without limitation the rights to
6+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
7+
the Software, and to permit persons to whom the Software is furnished to do so,
8+
subject to the following conditions:
9+
10+
The above copyright notice and this permission notice shall be included in all
11+
copies or substantial portions of the Software.
12+
13+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
15+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
16+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
17+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
18+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
19+
365 KB
Binary file not shown.

packages/Octokit.0.3.4/README.md

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
# Octokit - GitHub API Client Library for .NET
2+
3+
Octokit is a client library targeting .NET 4.5 and above that provides an easy
4+
way to interact with the [GitHub API](http://developer.github.com/v3/).
5+
6+
## Usage examples
7+
8+
Get public info on a specific user.
9+
10+
```c#
11+
var github = new GitHubClient(new ProductHeaderValue("MyAmazingApp"));
12+
var user = await github.User.Get("half-ogre");
13+
Console.WriteLine(user.Followers + " folks love the half ogre!");
14+
```
15+
16+
## Supported Platforms
17+
18+
* .NET 4.5 (Desktop / Server)
19+
* Xamarin.iOS / Xamarin.Android / Xamarin.Mac
20+
* Mono 3.x
21+
* Windows 8 / 8.1 Store Apps
22+
23+
## Getting Started
24+
25+
Octokit is available on NuGet.
26+
27+
```
28+
Install-Package Octokit
29+
```
30+
31+
## Build
32+
33+
Octokit is a single assembly designed to be easy to deploy anywhere. If you
34+
prefer to compile it yourself, you’ll need:
35+
36+
* Visual Studio 2012 or later, or Xamarin Studio
37+
* Windows 8 or higher to build and test the WinRT projects
38+
39+
To clone it locally click the "Clone in Windows" button above or run the
40+
following git commands.
41+
42+
```
43+
git clone [email protected]:octokit/Octokit.net.git Octokit
44+
cd Octokit
45+
.\build.cmd
46+
```
47+
48+
## Contribute
49+
50+
Visit the [Contributor Guidelines](https://github.com/octokit/octokit.net/blob/master/CONTRIBUTING.md)
51+
for more details.
52+
53+
## Build Server
54+
55+
The builds and tests for Octokit.net are run on [qed](https://github.com/half-ogre/qed/). This enables us to build and test incoming pull requests: http://half-ogre-qed.cloudapp.net/octokit/octokit.net
56+
57+
## Problems?
58+
59+
Octokit is 100% certified to be bug free. If you find an issue with our
60+
certification, please visit the [issue tracker](https://github.com/octokit/octokit.net/issues)
61+
and report the issue.
62+
63+
Please be kind and search to see if the issue is already logged before creating
64+
a new one. If you're pressed for time, log it anyways.
65+
66+
When creating an issue, clearly explain
67+
68+
* What you were trying to do.
69+
* What you expected to happen.
70+
* What actually happened.
71+
* Steps to reproduce the problem.
72+
73+
Also include any other information you think is relevant to reproduce the
74+
problem.
75+
76+
77+
## Copyright and License
78+
79+
Copyright 2013 GitHub, Inc.
80+
81+
Licensed under the [MIT License](https://github.com/octokit/octokit.net/blob/master/LICENSE.txt)
Lines changed: 111 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,111 @@
1+
### New in 0.3.4 (Released 2014/05/01)
2+
* Improvements to "repository exists" exception result - #473 via @shiftkey
3+
* Encoding query parameters impacts search clients - #467 via @shiftkey
4+
5+
### New in 0.3.3 (Released 2014/04/22)
6+
* Add methods to retrieve a team's members and to check if a user is a member of a team - #449 via @kzu
7+
* Add OAuth web flow methods - #462 via @haacked
8+
9+
### New in 0.3.2 (Released 2014/04/16)
10+
* Allow passing a parameter to the Patch method - #440 via @nigel-sampson
11+
* Remove the redundant Team suffix from ITeamsClient - #451 via @kzu
12+
* Remove Immutable Collections dependency to support .NET 4 builds - #453 via @paulcbetts
13+
* Add method to retrieve raw bytes from a request - #457 via @haacked
14+
* Fix readonly deserialization bug in NetCore45 and related projects - #455 via @nigel-sampson
15+
16+
### New in 0.3.1 (Released 2014/03/31)
17+
* Add support for comparing two commits - #428 via @shiftkey
18+
* Fix regression in throwing proper 2FA exception - #437 via @Haacked
19+
20+
### New in 0.3.0 (Released 2014/03/19)
21+
* Add Portable Class Library support for Octokit package - #401 via @trsneed
22+
* Filter repository issues by users - #427 via @shiftkey
23+
24+
### New in 0.2.2 (Released 2014/03/06)
25+
* Task-based and Observable-based APIs are now consistent - #361 #376 #378 via @shiftkey and @ammeep
26+
* "_links" JSON field serialization convention fix - #387 via @haacked
27+
* Added Feeds client - #386 via @sgwill
28+
* Added support for creating Gists - #391 via @Therzok and @rgmills
29+
* Make readonly collections truly readonly - #394 #399 via @Haacked
30+
* Internalize ProductHeaderValue - #406 via @trsneed
31+
* HttpClient.Send without cancellation token - #410 via @ammeep
32+
* Implement Repository Comments API - #413 via @Haacked @wfroese
33+
* Corrected Search response to match API - #412 #417 #419 #420 via @shiftkey
34+
35+
### New in 0.2.1 (Released 2014/02/19)
36+
* Reverted the dependency on Reactive Extensions 2.2.2 which introduced breaking changes
37+
38+
### New in 0.2.0 (Released 2014/02/19)
39+
* Fixed an issue where some new observable clients were not accessible - #376 via @shiftkey
40+
41+
### New in 0.1.9 (Released 2014/02/19)
42+
* New client for searching users - #289 via @hahmed
43+
* New client for the statistics API - #296 via @ammeep
44+
* New client for managing deployments and deployment status - #298 via @pmacn
45+
* Added methods to repositories client for getting metadata such as contributors, languages, tags, etc. - #319 via @pmacn
46+
* Added GetAll and Add methods to the user emails client - #323 via @pmacn
47+
* New client for managing user followers - #343 via @alfhenrik
48+
* Add more methods for managing releases - #344 via @alfhenrik
49+
* New client for the activity watching API - #350 via @nigel-sampson
50+
* ObservableStarredClient can now be accessed via a property - #351 via @nigel-sampson
51+
* Emoji api now has Emoji type rather than dictionary - #354 via @haacked
52+
* New client for the Pull Requests API - #360 via @jpsullivan and @shiftkey
53+
* Now throws RepositoryExistsException when repository already exists - #377 via @haacked
54+
* Now throws PrivateRepositoryQuotaExceededException when private repository quota would be exceeded by a new repository - #379 via @haacked
55+
56+
### New in 0.1.8 (Released 2014/01/22)
57+
* Added IRepositoryClient.GetAllBranches - #270 via @goalie7960
58+
* Install-Package should add reference to System.Net.Http - #286 via @alfhenrik
59+
* Return a more helpful error if invalid refs path provided - #288 via @alfhenrik
60+
* Refactor SearchIssuesRequest to match the API - #290 via @alfhenrik
61+
* Deprecate custom Releases Accept header - #291 via @shiftkey
62+
* Fix date format used in DateRange - #293 via @alfhenrik
63+
* Add base class for search requests - #301 via @hahmed
64+
* Deprecate IGitHubClient.Blob - #305 via @shiftkey
65+
* Improving Proxy Server support - #306 via @shiftkey
66+
* Add integration tests for IRepositoryClient.GetAllBranches - #309 via @lbargaoanu
67+
* Refactor SearchCodeRequest to match the API - #311 from @alfhenrik
68+
* Implemented Delete for IssueCommentsClient - #315 from @pmacn
69+
* Implemented missing methods for IssueLabels - #316 from @pmacn
70+
71+
### New in 0.1.7 (Released 2013/12/27)
72+
* New client for repository search - #226 and @273 via @hahmed
73+
* Bugfix for creating/updating issue comments - #262 via @tpeczek
74+
* Bugfix for retrieving events - #264 via @shiftkey
75+
76+
### New in 0.1.6 (Released 2013/12/18)
77+
* New client for managing Gists - #225 via @SimonCropp
78+
* New client for managing Git references - #238 via @khellang
79+
* Added missing Observable versions for Git objects client - #251 by @khellang
80+
* New client for Gist comments - #252 by @khellang
81+
* Lots of documentation - #253 by @pmacn
82+
* New client for managing issue labels - #256 by @andrerod
83+
84+
### New in 0.1.5 (Released 2013/11/19)
85+
* New client for starring repositories
86+
* New client for retrieving commits
87+
* New client for managing an organization's teams and members
88+
* New client for managing blobs
89+
* New client for retrieving and creating trees
90+
* New client for managing collaborators of a repository
91+
92+
### New in 0.1.4 (Released 2013/11/6)
93+
* New client for retrieving activity events
94+
* Fixed bug where concealing an org's member actually shows the member
95+
96+
### New in 0.1.3 (Released 2013/11/5)
97+
* New Xamarin Component store versions of Octokit.net
98+
* New clients for managing assignees, milestones, and tags
99+
* New clients for managing issues, issue events, and issue comments
100+
* New client for managing organization members
101+
* Fixed bug in applying query parameters that could cause paging to continually request the same page
102+
103+
### New in 0.1.2 (Released 2013/10/31)
104+
* New default constructors in Octokit.Reactive
105+
* New IObservableAssigneesClient in Octokit.Reactive
106+
107+
### New in 0.1.1 (Released 2013/10/30)
108+
* Fixed problems with Microsoft.Threading.Tasks
109+
110+
### New in 0.1.0 (Released 2013/10/30)
111+
* Initial release
312 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
10 KB
Binary file not shown.
10 KB
Binary file not shown.
10 KB
Binary file not shown.
10 KB
Binary file not shown.
10 KB
Binary file not shown.
34.5 KB
Binary file not shown.

quick-color-picker.sln

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.29418.71
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "quick-color-picker", "quick-color-picker\quick-color-picker.csproj", "{623FD142-66F0-417C-8833-43832B11CF49}"
7+
EndProject
8+
Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "QuickColorPicker-Setup", "QuickColorPicker-Setup\QuickColorPicker-Setup.vdproj", "{8B699739-BFE6-4AEB-8C52-B99C68FEFD4C}"
9+
EndProject
10+
Global
11+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
12+
Debug|Any CPU = Debug|Any CPU
13+
Release|Any CPU = Release|Any CPU
14+
EndGlobalSection
15+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
16+
{623FD142-66F0-417C-8833-43832B11CF49}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
17+
{623FD142-66F0-417C-8833-43832B11CF49}.Debug|Any CPU.Build.0 = Debug|Any CPU
18+
{623FD142-66F0-417C-8833-43832B11CF49}.Release|Any CPU.ActiveCfg = Release|Any CPU
19+
{623FD142-66F0-417C-8833-43832B11CF49}.Release|Any CPU.Build.0 = Release|Any CPU
20+
{8B699739-BFE6-4AEB-8C52-B99C68FEFD4C}.Debug|Any CPU.ActiveCfg = Debug
21+
{8B699739-BFE6-4AEB-8C52-B99C68FEFD4C}.Release|Any CPU.ActiveCfg = Release
22+
EndGlobalSection
23+
GlobalSection(SolutionProperties) = preSolution
24+
HideSolutionNode = FALSE
25+
EndGlobalSection
26+
GlobalSection(ExtensibilityGlobals) = postSolution
27+
SolutionGuid = {BB89604D-1E0B-405E-82D4-5EDA220A59CE}
28+
EndGlobalSection
29+
EndGlobal

0 commit comments

Comments
 (0)