Skip to content

Commit 9ba47e5

Browse files
committed
Updated URLs.
1 parent 4029fb2 commit 9ba47e5

5 files changed

Lines changed: 58 additions & 6 deletions

File tree

src/Aneejian.PowerPoint.Downsizer.AddIn.Installer/Aneejian.PowerPoint.Downsizer.AddIn.Installer.vdproj

Lines changed: 44 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,12 @@
6363
}
6464
"Entry"
6565
{
66+
"MsmKey" = "8:_66DC0D2A3EF462504FA4E0A5C10BD005"
67+
"OwnerKey" = "8:_8E67E3CBC8BC43A28FE1564FA0C05490"
68+
"MsmSig" = "8:_UNDEFINED"
69+
}
70+
"Entry"
71+
{
6672
"MsmKey" = "8:_853C34EF815A4E68B584710230F41862"
6773
"OwnerKey" = "8:_UNDEFINED"
6874
"MsmSig" = "8:_UNDEFINED"
@@ -106,6 +112,12 @@
106112
"Entry"
107113
{
108114
"MsmKey" = "8:_UNDEFINED"
115+
"OwnerKey" = "8:_66DC0D2A3EF462504FA4E0A5C10BD005"
116+
"MsmSig" = "8:_UNDEFINED"
117+
}
118+
"Entry"
119+
{
120+
"MsmKey" = "8:_UNDEFINED"
109121
"OwnerKey" = "8:_32D1A1DD1EA42D5F9635D1D5C8AFE8D3"
110122
"MsmSig" = "8:_UNDEFINED"
111123
}
@@ -425,6 +437,37 @@
425437
"IsDependency" = "11:TRUE"
426438
"IsolateTo" = "8:"
427439
}
440+
"{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_66DC0D2A3EF462504FA4E0A5C10BD005"
441+
{
442+
"AssemblyRegister" = "3:1"
443+
"AssemblyIsInGAC" = "11:FALSE"
444+
"AssemblyAsmDisplayName" = "8:System.Net.Http, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
445+
"ScatterAssemblies"
446+
{
447+
"_66DC0D2A3EF462504FA4E0A5C10BD005"
448+
{
449+
"Name" = "8:System.Net.Http.dll"
450+
"Attributes" = "3:512"
451+
}
452+
}
453+
"SourcePath" = "8:System.Net.Http.dll"
454+
"TargetName" = "8:"
455+
"Tag" = "8:"
456+
"Folder" = "8:_3F7786D8C4934093AD4C42330D43D76E"
457+
"Condition" = "8:"
458+
"Transitive" = "11:FALSE"
459+
"Vital" = "11:TRUE"
460+
"ReadOnly" = "11:FALSE"
461+
"Hidden" = "11:FALSE"
462+
"System" = "11:FALSE"
463+
"Permanent" = "11:FALSE"
464+
"SharedLegacy" = "11:FALSE"
465+
"PackageAs" = "3:1"
466+
"Register" = "3:1"
467+
"Exclude" = "11:FALSE"
468+
"IsDependency" = "11:TRUE"
469+
"IsolateTo" = "8:"
470+
}
428471
"{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_853C34EF815A4E68B584710230F41862"
429472
{
430473
"SourcePath" = "8:..\\Aneejian.PowerPoint.Downsizer.AddIn\\bin\\Release\\Aneejian.PowerPoint.Downsizer.AddIn.dll.manifest"
@@ -606,7 +649,7 @@
606649
"ProductVersion" = "8:1.0.0"
607650
"Manufacturer" = "8:Aneejian"
608651
"ARPHELPTELEPHONE" = "8:"
609-
"ARPHELPLINK" = "8:https://aneejian.com"
652+
"ARPHELPLINK" = "8:https://aneejian.com/powerpoint-downsizer-add-in"
610653
"Title" = "8:PowerPoint Downsizer Add-in"
611654
"Subject" = "8:PowerPoint Downsizer Add-in"
612655
"ARPCONTACT" = "8:Aneejian"

src/Aneejian.PowerPoint.Downsizer.AddIn/Fickles.cs

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ internal static class Fickles
66

77
internal const string CompanyUrl = "https://aneejian.com";
88
internal const string RepositoryUrl = "https://kannansuresh.github.io/PowerPoint-Downsizer/";
9-
internal const string BlogPostUrl = "https://kannansuresh.github.io/PowerPoint-Downsizer/";
9+
internal const string BlogPostUrl = "https://aneejian.com/powerpoint-downsizer-add-in/";
1010
internal const string CheckUpdateUrl = "https://kannansuresh.github.io/PowerPoint-Downsizer/update-info.txt";
1111
internal const string HelpUrl = BlogPostUrl;
1212

@@ -27,5 +27,14 @@ internal static class AppInfo
2727
internal const string Copyright = "Copyright © Aneejian 2021";
2828
internal const string Version = "v1.0.0";
2929
}
30+
31+
internal static class Messages
32+
{
33+
public const string NothingToRemove = "Nothing to remove. All layouts and master slides in use.";
34+
35+
public const string SlideMasterDonwsizeSuccess = "Successfully removed unused custom layouts and master slides.";
36+
37+
public const string SlideMasterDonwsizeFailed = "Failed to remove unused custom layouts and master slides.";
38+
}
3039
}
3140
}

src/Aneejian.PowerPoint.Downsizer.AddIn/Reporter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ internal static async Task ReportDownsizePotential(IDownsizePotential potential,
3131
{
3232
var anyPotential = potential.UnusedLayoutsCount > 0 || potential.UnusedMastersCount > 0;
3333
var msgBoxIcon = anyPotential ? MessageBoxIcon.Information : MessageBoxIcon.Exclamation;
34-
var message = anyPotential ? $"Unused layouts: {potential.UnusedLayoutsCount}{nl}Unused master slides: {potential.UnusedMastersCount}." : Constants.Messages.NothingToRemove;
34+
var message = anyPotential ? $"Unused layouts: {potential.UnusedLayoutsCount}{nl}Unused master slides: {potential.UnusedMastersCount}." : Fickles.Messages.NothingToRemove;
3535

3636
if (anyPotential)
3737
{

src/Aneejian.PowerPoint.Downsizer/Constants.Messages.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
namespace Aneejian.PowerPoint.Downsizer
22
{
3-
public static partial class Constants
3+
internal static partial class Constants
44
{
55
public static class Messages
66
{
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
namespace Aneejian.PowerPoint.Downsizer
22
{
3-
public static partial class Constants
3+
internal static partial class Constants
44
{
55
public const string ProductName = "PowerPoint Downsizer";
66
public const string AddInName = "PowerPoint Downsizer Add-In";
@@ -9,6 +9,6 @@ public static partial class Constants
99

1010
public const string HomePageUrl = "https://aneejian.com";
1111
public const string BuyCoffeeUrl = "https://www.buymeacoffee.com/aneejian";
12-
public const string HelpUrl = "https://kannansuresh.github.io/PowerPoint-Downsizer/";
12+
public const string HelpUrl = "https://aneejian.com/powerpoint-downsizer-add-in/";
1313
}
1414
}

0 commit comments

Comments
 (0)