Skip to content

Commit 225437b

Browse files
authored
Merge pull request #41 from Sandip124/develop
Develop
2 parents 44a1f19 + ccc55b7 commit 225437b

53 files changed

Lines changed: 4239 additions & 7067 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Assets/Fonts/Inter-Bold.ttf

309 KB
Binary file not shown.

Assets/Fonts/Inter-Regular.ttf

303 KB
Binary file not shown.

BatteryNotifier.csproj

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<OutputType>WinExe</OutputType>
@@ -15,6 +15,12 @@
1515

1616
<ItemGroup>
1717
<None Remove="appSetting.settings" />
18+
<None Remove="Assets\Fonts\Inter-Bold.ttf" />
19+
<None Remove="Assets\Fonts\Inter-Regular.ttf" />
20+
<None Remove="Assets\Fonts\SpaceMono-Bold.ttf" />
21+
<None Remove="Assets\Fonts\SpaceMono-BoldItalic.ttf" />
22+
<None Remove="Assets\Fonts\SpaceMono-Italic.ttf" />
23+
<None Remove="Assets\Fonts\SpaceMono-Regular.ttf" />
1824
<None Remove="battery-icon.ico" />
1925
</ItemGroup>
2026

@@ -23,6 +29,12 @@
2329
</ItemGroup>
2430

2531
<ItemGroup>
32+
<Content Include="Assets\Fonts\Inter-Bold.ttf">
33+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
34+
</Content>
35+
<Content Include="Assets\Fonts\Inter-Regular.ttf">
36+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
37+
</Content>
2638
<EmbeddedResource Include="Setting\appSetting.settings">
2739
<Generator>SettingsSingleFileGenerator</Generator>
2840
<LastGenOutput>appSetting.Designer.cs</LastGenOutput>
@@ -75,7 +87,7 @@
7587
<NugetTools>$(PkgNuGet_CommandLine)\tools</NugetTools>
7688
<SquirrelTools>$(Pkgsquirrel_windows)\tools</SquirrelTools>
7789

78-
<Version>1.9.2</Version>
90+
<Version>2.0.0</Version>
7991

8092
<NuspecFile>$(SolutionDir)ReleaseSpec.nuspec</NuspecFile>
8193
</PropertyGroup>
@@ -90,4 +102,4 @@
90102
<Exec Command="Squirrel.exe --releasify $(SolutionDir)Deployment\GeneratedNugets\@(ID).$(Version).nupkg --releaseDir=$(SolutionDir)Deployment\Releases" />
91103
</Target>
92104

93-
</Project>
105+
</Project>

BatteryNotifierBanner.png

2.78 KB
Loading

BatteryNotifierLogo.png

6.1 KB
Loading

Constants/Constant.cs

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,9 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Linq;
4-
using System.Text;
5-
using System.Threading.Tasks;
6-
7-
namespace BatteryNotifier.Constants
1+
namespace BatteryNotifier.Constants
82
{
93
internal class Constant
104
{
11-
public const string SourceUrl = "https://github.com/Sandip124/BatteryNotifier";
5+
public const string SourceRepositoryUrl = "https://github.com/Sandip124/BatteryNotifier";
6+
public const string ReleaseUrl = "https://github.com/Sandip124/BatteryNotifier/releases/latest";
127

138
}
149
}

0 commit comments

Comments
 (0)