mirror of
https://github.com/greenshot/greenshot
synced 2025-08-22 14:24:43 -07:00
Upgraded both Box & Dropbox to the new code which no longer uses the embedded browser.
This commit is contained in:
parent
d1d095bc78
commit
915fb6a476
4 changed files with 16 additions and 16 deletions
|
@ -65,17 +65,17 @@
|
|||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Tokens Include="Box_ClientId">
|
||||
<ReplacementValue>$(Box_ClientId)</ReplacementValue>
|
||||
<Tokens Include="Box13_ClientId">
|
||||
<ReplacementValue>$(Box13_ClientId)</ReplacementValue>
|
||||
</Tokens>
|
||||
<Tokens Include="Box_ClientSecret">
|
||||
<ReplacementValue>$(Box_ClientSecret)</ReplacementValue>
|
||||
<Tokens Include="Box13_ClientSecret">
|
||||
<ReplacementValue>$(Box13_ClientSecret)</ReplacementValue>
|
||||
</Tokens>
|
||||
<Tokens Include="DropBox_ClientId">
|
||||
<ReplacementValue>$(DropBox_ClientId)</ReplacementValue>
|
||||
<Tokens Include="DropBox13_ClientId">
|
||||
<ReplacementValue>$(DropBox13_ClientId)</ReplacementValue>
|
||||
</Tokens>
|
||||
<Tokens Include="DropBox_ClientSecret">
|
||||
<ReplacementValue>$(DropBox_ClientSecret)</ReplacementValue>
|
||||
<Tokens Include="DropBox13_ClientSecret">
|
||||
<ReplacementValue>$(DropBox13_ClientSecret)</ReplacementValue>
|
||||
</Tokens>
|
||||
<Tokens Include="Flickr_ClientId">
|
||||
<ReplacementValue>$(Flickr_ClientId)</ReplacementValue>
|
||||
|
|
|
@ -25,7 +25,7 @@ namespace GreenshotBoxPlugin {
|
|||
/// You can set your own values here
|
||||
/// </summary>
|
||||
public static class BoxCredentials {
|
||||
public static string ClientId = "${Box_ClientId}";
|
||||
public static string ClientSecret = "${Box_ClientSecret}";
|
||||
public static string ClientId = "${Box13_ClientId}";
|
||||
public static string ClientSecret = "${Box13_ClientSecret}";
|
||||
}
|
||||
}
|
||||
|
|
|
@ -25,7 +25,7 @@ namespace GreenshotDropboxPlugin {
|
|||
/// You can set your own values here
|
||||
/// </summary>
|
||||
public static class DropBoxCredentials {
|
||||
public static string CONSUMER_KEY = "${DropBox_ClientId}";
|
||||
public static string CONSUMER_SECRET = "${DropBox_ClientSecret}";
|
||||
public static string CONSUMER_KEY = "${DropBox13_ClientId}";
|
||||
public static string CONSUMER_SECRET = "${DropBox13_ClientSecret}";
|
||||
}
|
||||
}
|
||||
|
|
|
@ -43,10 +43,10 @@ stages:
|
|||
platform: $(buildPlatform)
|
||||
configuration: $(buildConfiguration)
|
||||
env:
|
||||
Box_ClientId: $(Box_ClientId)
|
||||
Box_ClientSecret: $(Box_ClientSecret)
|
||||
DropBox_ClientId: $(DropBox_ClientId)
|
||||
DropBox_ClientSecret: $(DropBox_ClientSecret)
|
||||
Box13_ClientId: $(Box13_ClientId)
|
||||
Box13_ClientSecret: $(Box13_ClientSecret)
|
||||
DropBox13_ClientId: $(DropBox13_ClientId)
|
||||
DropBox13_ClientSecret: $(DropBox13_ClientSecret)
|
||||
Flickr_ClientId: $(Flickr_ClientId)
|
||||
Flickr_ClientSecret: $(Flickr_ClientSecret)
|
||||
Imgur13_ClientId: $(Imgur13_ClientId)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue