Joshua Shearer
Joshua Shearer
* Plugin: 2.63 * Bitbucket: 4.13.0 * No errors in `atlassian-bitbucket.log` * Contents of `/rest/prnfb-admin/1.0/settings/buttons`: ```json [] ``` * Screenshot:  Despite having no buttons configured, one appears for pull...
`XmppClient` contains a method named `Autenticate`, a misspelling of `Authenticate`. As altering the API surface of the class would break backwards-compatibility, I opted to decorate the existing method with `[Obsolete]`...
Minor improvements to formatting; update links where possible. @pgstath The original repository hosts documentation, I was unable to determine whether this fork has documentation of its own. If separate documentation...
The `csproj` is current configured to look in the following directories for two assembly references: ``` ..\..\..\..\..\Desktop\SharpXmppWpf\SharpXmppWpf\packages\ARSoft.Tools.Net.2.2.5\lib\net45\ARSoft.Tools.Net.dll ..\..\..\..\..\Desktop\SharpXmppWpf\SharpXmppWpf\packages\BouncyCastle.1.8.1\lib\BouncyCastle.Crypto.dll ``` This caused me some confusion, as it's still a relative path,...
Ensures that attachment filenames are url-encoded by running them through `HttpUtility.UrlEncode`. This allows them to be round-tripped accurately. I've added a unit test to cover this scenario. Resolves #59 _Note:...