Skip to content

Commit 7787d34

Browse files
committed
Added update manager & New about window
1 parent 2bb7995 commit 7787d34

File tree

71 files changed

+2245
-1006
lines changed

Some content is hidden

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

71 files changed

+2245
-1006
lines changed

.vs/quick-screen-recorder/v16/.suo

15 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

QuickScreenRecorder-Setup/QuickScreenRecorder-Setup.vdproj

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
}
4040
"Entry"
4141
{
42-
"MsmKey" = "8:_EFBCD4E60D8945CF96CF1DA348E4EA95"
42+
"MsmKey" = "8:_DA9DA888B7664DFA9587ED0E68E8F543"
4343
"OwnerKey" = "8:_UNDEFINED"
4444
"MsmSig" = "8:_UNDEFINED"
4545
}
@@ -130,6 +130,14 @@
130130
"PrerequisitesLocation" = "2:1"
131131
"Url" = "8:"
132132
"ComponentsUrl" = "8:"
133+
"Items"
134+
{
135+
"{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:.NETFramework,Version=v4.7.2"
136+
{
137+
"Name" = "8:Microsoft .NET Framework 4.7.2 (x86 and x64)"
138+
"ProductCode" = "8:.NETFramework,Version=v4.7.2"
139+
}
140+
}
133141
}
134142
}
135143
}
@@ -242,10 +250,10 @@
242250
"IsDependency" = "11:FALSE"
243251
"IsolateTo" = "8:"
244252
}
245-
"{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EFBCD4E60D8945CF96CF1DA348E4EA95"
253+
"{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DA9DA888B7664DFA9587ED0E68E8F543"
246254
{
247-
"SourcePath" = "8:..\\quick-screen-recorder\\resources\\quick-sound-recorder.VisualElementsManifest.xml"
248-
"TargetName" = "8:quick-sound-recorder.VisualElementsManifest.xml"
255+
"SourcePath" = "8:..\\quick-screen-recorder\\resources\\quick-screen-recorder.VisualElementsManifest.xml"
256+
"TargetName" = "8:quick-screen-recorder.VisualElementsManifest.xml"
249257
"Tag" = "8:"
250258
"Folder" = "8:_D598DEC863C249D2B9AC211BBDB1CCAE"
251259
"Condition" = "8:"
@@ -349,15 +357,15 @@
349357
{
350358
"Name" = "8:Microsoft Visual Studio"
351359
"ProductName" = "8:Quick Screen Recorder"
352-
"ProductCode" = "8:{0CD8299D-8536-42D0-9F7C-AA91DA23F2F4}"
353-
"PackageCode" = "8:{019D2869-029D-4ADA-BB19-E55C58011F02}"
360+
"ProductCode" = "8:{853893A7-1D72-44E8-8A03-70719DE159AD}"
361+
"PackageCode" = "8:{F586EE99-E23A-4D62-AAFC-95928BB435CD}"
354362
"UpgradeCode" = "8:{3539F280-00D2-49B4-9B81-67651777E89C}"
355363
"AspNetVersion" = "8:2.0.50727.0"
356364
"RestartWWWService" = "11:FALSE"
357365
"RemovePreviousVersions" = "11:TRUE"
358366
"DetectNewerInstalledVersion" = "11:TRUE"
359367
"InstallAllUsers" = "11:FALSE"
360-
"ProductVersion" = "8:1.1.0"
368+
"ProductVersion" = "8:1.2.0"
361369
"Manufacturer" = "8:Module Art"
362370
"ARPHELPTELEPHONE" = "8:"
363371
"ARPHELPLINK" = "8:https://github.com/ModuleArt/quick-screen-recorder/issues"

packages/Octokit.0.3.4/.signature.p7s

9.27 KB
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 git@github.com: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

0 commit comments

Comments
 (0)