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>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Tokens Include="Box_ClientId">
|
<Tokens Include="Box13_ClientId">
|
||||||
<ReplacementValue>$(Box_ClientId)</ReplacementValue>
|
<ReplacementValue>$(Box13_ClientId)</ReplacementValue>
|
||||||
</Tokens>
|
</Tokens>
|
||||||
<Tokens Include="Box_ClientSecret">
|
<Tokens Include="Box13_ClientSecret">
|
||||||
<ReplacementValue>$(Box_ClientSecret)</ReplacementValue>
|
<ReplacementValue>$(Box13_ClientSecret)</ReplacementValue>
|
||||||
</Tokens>
|
</Tokens>
|
||||||
<Tokens Include="DropBox_ClientId">
|
<Tokens Include="DropBox13_ClientId">
|
||||||
<ReplacementValue>$(DropBox_ClientId)</ReplacementValue>
|
<ReplacementValue>$(DropBox13_ClientId)</ReplacementValue>
|
||||||
</Tokens>
|
</Tokens>
|
||||||
<Tokens Include="DropBox_ClientSecret">
|
<Tokens Include="DropBox13_ClientSecret">
|
||||||
<ReplacementValue>$(DropBox_ClientSecret)</ReplacementValue>
|
<ReplacementValue>$(DropBox13_ClientSecret)</ReplacementValue>
|
||||||
</Tokens>
|
</Tokens>
|
||||||
<Tokens Include="Flickr_ClientId">
|
<Tokens Include="Flickr_ClientId">
|
||||||
<ReplacementValue>$(Flickr_ClientId)</ReplacementValue>
|
<ReplacementValue>$(Flickr_ClientId)</ReplacementValue>
|
||||||
|
|
|
@ -25,7 +25,7 @@ namespace GreenshotBoxPlugin {
|
||||||
/// You can set your own values here
|
/// You can set your own values here
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public static class BoxCredentials {
|
public static class BoxCredentials {
|
||||||
public static string ClientId = "${Box_ClientId}";
|
public static string ClientId = "${Box13_ClientId}";
|
||||||
public static string ClientSecret = "${Box_ClientSecret}";
|
public static string ClientSecret = "${Box13_ClientSecret}";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -25,7 +25,7 @@ namespace GreenshotDropboxPlugin {
|
||||||
/// You can set your own values here
|
/// You can set your own values here
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public static class DropBoxCredentials {
|
public static class DropBoxCredentials {
|
||||||
public static string CONSUMER_KEY = "${DropBox_ClientId}";
|
public static string CONSUMER_KEY = "${DropBox13_ClientId}";
|
||||||
public static string CONSUMER_SECRET = "${DropBox_ClientSecret}";
|
public static string CONSUMER_SECRET = "${DropBox13_ClientSecret}";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -43,10 +43,10 @@ stages:
|
||||||
platform: $(buildPlatform)
|
platform: $(buildPlatform)
|
||||||
configuration: $(buildConfiguration)
|
configuration: $(buildConfiguration)
|
||||||
env:
|
env:
|
||||||
Box_ClientId: $(Box_ClientId)
|
Box13_ClientId: $(Box13_ClientId)
|
||||||
Box_ClientSecret: $(Box_ClientSecret)
|
Box13_ClientSecret: $(Box13_ClientSecret)
|
||||||
DropBox_ClientId: $(DropBox_ClientId)
|
DropBox13_ClientId: $(DropBox13_ClientId)
|
||||||
DropBox_ClientSecret: $(DropBox_ClientSecret)
|
DropBox13_ClientSecret: $(DropBox13_ClientSecret)
|
||||||
Flickr_ClientId: $(Flickr_ClientId)
|
Flickr_ClientId: $(Flickr_ClientId)
|
||||||
Flickr_ClientSecret: $(Flickr_ClientSecret)
|
Flickr_ClientSecret: $(Flickr_ClientSecret)
|
||||||
Imgur13_ClientId: $(Imgur13_ClientId)
|
Imgur13_ClientId: $(Imgur13_ClientId)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue