Skip to content

Commit 7756d72

Browse files
committed
update to use new icon urls
1 parent 3cc3c7c commit 7756d72

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

NuGet.Signed/ServiceStack.Text.Signed/servicestack.text.signed.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<projectUrl>https://github.com/ServiceStack/ServiceStack.Text</projectUrl>
1818
<licenseUrl>https://servicestack.net/terms</licenseUrl>
1919
<requireLicenseAcceptance>true</requireLicenseAcceptance>
20-
<iconUrl>http://www.servicestack.net/logo-100x100.png</iconUrl>
20+
<iconUrl>https://servicestack.net/img/logo-32.png</iconUrl>
2121
<tags>JSON Text Serializer CSV JSV Dump PrettyPrint Fast</tags>
2222
<language>en-US</language>
2323
<copyright>ServiceStack 2013 and contributors</copyright>

NuGet/ServiceStack.Text/servicestack.text.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<projectUrl>https://github.com/ServiceStack/ServiceStack.Text</projectUrl>
1818
<licenseUrl>https://servicestack.net/terms</licenseUrl>
1919
<requireLicenseAcceptance>true</requireLicenseAcceptance>
20-
<iconUrl>http://www.servicestack.net/logo-100x100.png</iconUrl>
20+
<iconUrl>https://servicestack.net/img/logo-32.png</iconUrl>
2121
<tags>JSON Text Serializer CSV JSV Dump PrettyPrint Fast</tags>
2222
<language>en-US</language>
2323
<copyright>ServiceStack 2013 and contributors</copyright>

src/ServiceStack.Text/LicenseUtils.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ public static class LicenseUtils
9595
public const string RuntimePublicKey = "<RSAKeyValue><Modulus>nkqwkUAcuIlVzzOPENcQ+g5ALCe4LyzzWv59E4a7LuOM1Nb+hlNlnx2oBinIkvh09EyaxIX2PmaY0KtyDRIh+PoItkKeJe/TydIbK/bLa0+0Axuwa0MFShE6HdJo/dynpODm64+Sg1XfhICyfsBBSxuJMiVKjlMDIxu9kDg7vEs=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue>";
9696
private const string LicensePublicKey = "<RSAKeyValue><Modulus>w2fTTfr2SrGCclwLUkrbH0XsIUpZDJ1Kei2YUwYGmIn5AUyCPLTUv3obDBUBFJKLQ61Khs7dDkXlzuJr5tkGQ0zS0PYsmBPAtszuTum+FAYRH4Wdhmlfqu1Z03gkCIo1i11TmamN5432uswwFCVH60JU3CpaN97Ehru39LA1X9E=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue>";
9797

98-
private const string ContactDetails = " Please see www.servicestack.net or contact team@servicestack.net for more details.";
98+
private const string ContactDetails = " Please see servicestack.net or contact team@servicestack.net for more details.";
9999

100100
static LicenseUtils()
101101
{
@@ -111,7 +111,7 @@ static LicenseUtils()
111111

112112
public static class ErrorMessages
113113
{
114-
private const string UpgradeInstructions = " Please see http://www.servicestack.net to upgrade to a commercial license.";
114+
private const string UpgradeInstructions = " Please see https://servicestack.net to upgrade to a commercial license.";
115115
internal const string ExceededTextTypes = "The free-quota limit on '{0} ServiceStack.Text Types' has been reached." + UpgradeInstructions;
116116
internal const string ExceededRedisTypes = "The free-quota limit on '{0} Redis Types' has been reached." + UpgradeInstructions;
117117
internal const string ExceededRedisRequests = "The free-quota limit on '{0} Redis requests per hour' has been reached." + UpgradeInstructions;
@@ -137,7 +137,7 @@ public static void AssertEvaluationLicense()
137137
{
138138
if (DateTime.UtcNow > new DateTime(2013, 12, 31))
139139
throw new LicenseException("The evaluation license for this software has expired. " +
140-
"See http://www.servicestack.net to upgrade to a valid license.");
140+
"See https://servicestack.net to upgrade to a valid license.");
141141
}
142142

143143
private static LicenseKey __activatedLicense;

0 commit comments

Comments
 (0)