Skip to content

Commit 68877bf

Browse files
committed
Added fickle.
1 parent 023f4a8 commit 68877bf

1 file changed

Lines changed: 36 additions & 0 deletions

File tree

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Text;
5+
using System.Threading.Tasks;
6+
7+
namespace Aneejian.PowerPoint.Downsizer.AddIn
8+
{
9+
internal static class Fickles
10+
{
11+
// URLs
12+
13+
internal const string CompanyUrl = "https://aneejian.com";
14+
internal const string RepositoryUrl = "https://kannansuresh.github.io/PowerPoint-Downsizer/";
15+
internal const string BlogPostUrl = "https://kannansuresh.github.io/PowerPoint-Downsizer/";
16+
internal const string CheckUpdateUrl = "https://kannansuresh.github.io/PowerPoint-Downsizer/update-info.txt";
17+
18+
// Coffee
19+
20+
internal const string CoffeeUrl = "https://www.buymeacoffee.com/aneejian";
21+
internal const int CoffeeRevealThreshold = 10;
22+
internal const bool EnableCoffee = true;
23+
24+
internal static class AppInfo
25+
{
26+
// Assembly info
27+
28+
internal const string Title = "PowerPoint Downsizer Add-In";
29+
internal const string Description = "Add-In to downsize PowerPoint presentations by removing unused layouts and master slides.";
30+
internal const string Company = "Aneejian";
31+
internal const string Product = Title;
32+
internal const string Copyright = "Copyright © Aneejian 2021";
33+
internal const string Version = "v1.0.0";
34+
}
35+
}
36+
}

0 commit comments

Comments
 (0)