My Project
|
Public Member Functions | |
Trello (string key, string token) | |
bool | IsListCached (string listName) |
Checks if the Trello list has already been cached;. | |
IEnumerator | PopulateBoardsRoutine () |
Async Download a parsed JSON list of the boards in the users account, these are cached on "boards". | |
void | SetCurrentBoard (string name) |
Looks for the board in "boards" and if found sets it as the current board. | |
IEnumerator | PopulateListsRoutine () |
Async Populate the lists owned by the current board, these are cached for faster card uploading later. Trello Lists come from trello as a parsed JSON list of lists. | |
IEnumerator | PopulateCardsFromListRoutine (string listId) |
Async Populate the cards for the current list, these are cached for easy card attachment uploading later. Gets from trello a parsed JSON list of cards. | |
TrelloCard | NewCard (string listName) |
Makes a new Trello card object. | |
TrelloCard | NewCard (string title, string description, string listName, bool newCardsOnTop=true) |
Makes a new Trello card object. | |
TrelloList | NewList () |
Creates a new Trello list object, with the current board id. It does not upload the list. | |
TrelloList | NewList (string name) |
Creates a new Trello list object, with the current board id. | |
IEnumerator | UploadCardRoutine (TrelloCard card) |
Given an exception object, a TrelloCard is created and populated with the relevant information from the exception. This is then uploaded to the Trello server. | |
IEnumerator | UploadListRoutine (TrelloList list) |
Async uploads a given TrelloList object to the currently selected board. | |
IEnumerator | SetUpAttachmentInCardRoutine (string cardId, string attachmentName, Texture2D image) |
Async uploads an attachment to a given TrelloCard object in the Trello servers. | |
IEnumerator | SetUpAttachmentInCardRoutine (string cardId, string attachmentName, string data) |
Async uploads an attachment to a given TrelloCard object on the Trello servers. | |
IEnumerator | SetUpAttachmentInCardFromFileRoutine (string cardId, string attachmentName, string path) |
Async uploads an attachment to a given TrelloCard object in the Trello servers. | |
bool | IsConnected () |
Async Populate the cards for the current list, these are cached for easy card attachment uploading later. | |
|
inline |
Async Populate the cards for the current list, these are cached for easy card attachment uploading later.
|
inline |
Checks if the Trello list has already been cached;.
listName | The name of the list to check. |
|
inline |
Makes a new Trello card object.
listName | Name of the trello list to which the card will belong. |
|
inline |
Makes a new Trello card object.
title | Name of the card. |
description | Description of the card. |
listName | Name of the trello list to which the card will belong. |
newCardsOnTop | Should the card be placed on top of the List? |
|
inline |
Creates a new Trello list object, with the current board id. It does not upload the list.
|
inline |
Creates a new Trello list object, with the current board id.
name | Name of the list. |
|
inline |
Async Download a parsed JSON list of the boards in the users account, these are cached on "boards".
|
inline |
Async Populate the cards for the current list, these are cached for easy card attachment uploading later. Gets from trello a parsed JSON list of cards.
|
inline |
Async Populate the lists owned by the current board, these are cached for faster card uploading later. Trello Lists come from trello as a parsed JSON list of lists.
|
inline |
Looks for the board in "boards" and if found sets it as the current board.
name | Name of the board to search. |
|
inline |
Async uploads an attachment to a given TrelloCard object in the Trello servers.
cardId | the cards ID. |
attachmentName | The name of the attachment. |
path | the path to the text file to be attached |
|
inline |
Async uploads an attachment to a given TrelloCard object on the Trello servers.
cardId | the cards ID. |
attachmentName | The name of the attachment. |
data | Any aditional data needed i.e save file |
|
inline |
Async uploads an attachment to a given TrelloCard object in the Trello servers.
cardId | Your cards ID. |
attachmentName | The name of the attachment. |
image | A 2d texture for the attachment. |
|
inline |
Given an exception object, a TrelloCard is created and populated with the relevant information from the exception. This is then uploaded to the Trello server.
e | E. |
Async uploads a given TrelloCard object to the Trello servers.
card | the card to upload. |
|
inline |
Async uploads a given TrelloList object to the currently selected board.
list | the list to upload. |