10 |
11 | Usage
12 | ----
13 |
14 | 1. Press `[Ctrl] + [Windows Key] + [I]` to open the search box.
15 | 2. Search for your Gist based on one of the following: gist description, gist author, file name of first file in the gist.
16 | 3. Press `[Enter]` to copy the contents of your gist to the keyboard. The dialog will dismiss automagically.
17 |
18 | Setup
19 | ----
20 |
21 | 1. [Install the ClickOnce app from here](https://raw.github.com/gotdibbs/GistInTime/master/ClickOnce/setup.exe) (or download, build and publish locally).
22 | 2. When the application launches, enter your GitHub username and password and click **Authenticate**.
23 | Note: this will only grab an authorization token, it will not store your username or password.
24 |
25 | >
26 |
--------------------------------------------------------------------------------
/GistInTime/Model/GistsResponse.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Runtime.Serialization;
5 | using System.Text;
6 | using System.Threading.Tasks;
7 |
8 | namespace GistInTime.Model
9 | {
10 | public class GistsResponse
11 | {
12 | public string url { get; set; }
13 | public string forks_url { get; set; }
14 | public string commits_url { get; set; }
15 | public string id { get; set; }
16 | public string git_pull_url { get; set; }
17 | public string git_push_url { get; set; }
18 | public string html_url { get; set; }
19 | public Dictionary
115 |
130 |
131 |
| ||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||
155 |
156 |
| ||||||||||||||||||||||||||||||