Skip to content

Commit f90d596

Browse files
committed
Updated URLs
1 parent fcb71ec commit f90d596

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ internal static class Fickles
55
// URLs
66

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

1313
// Coffee

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}." : Fickles.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/SlideMaster/DownsizeResponse.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ private string GetDownsizeResult()
1616
{
1717
return RemovedAny ?
1818
$"Unused layouts deleted: {CustomLayoutsDeleted} {newLine}" +
19-
$"Unused master slides deleted: {MasterSlidesDeleted}." :
19+
$"Unused master slides deleted: {MasterSlidesDeleted}" :
2020
Constants.Messages.NothingToRemove;
2121
}
2222
else

0 commit comments

Comments
 (0)