Skip to content

Commit 687f4b4

Browse files
committed
Version 1.0.0
- Initial release
1 parent b8021f2 commit 687f4b4

20 files changed

+767
-2
lines changed

.github/FUNDING.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# These are supported funding model platforms
2+
3+
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
4+
patreon: valnoxy
5+
open_collective: # Replace with a single Open Collective username
6+
ko_fi: # Replace with a single Ko-fi username
7+
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8+
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9+
liberapay: # Replace with a single Liberapay username
10+
issuehunt: # Replace with a single IssueHunt username
11+
otechie: # Replace with a single Otechie username
12+
custom: ['https://www.paypal.me/valnoxy']
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: "[BUG] "
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**Screenshots**
14+
If applicable, add screenshots to help explain your problem.
15+
16+
**Device (please complete the following information):**
17+
- Windows Version:
18+
- Device model:
19+
- Device type (Desktop, Laptop...):
20+
21+
**Additional context**
22+
Add any other context about the problem here.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: enhancement
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
name: Question / Help
3+
about: Ask your question here
4+
title: ''
5+
labels: question
6+
assignees: ''
7+
8+
---
9+
10+
**Describe your question**

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<h3 align="center">CheckIP</h3>
2+
<p align="center">Get more information about an IP address</p>
3+
<p align="center">
4+
<strong>Version: </strong>1.0.0
5+
<br />
6+
<a href="https://dl.exploitox.de/checkip/CheckIP_V1.0.0_Setup.exe"><strong>Download now »</strong></a>
7+
<br />
8+
<br />
9+
<a href="https://github.com/valnoxy/checkip/issues">Report Bug</a>
10+
·
11+
<a href="https://github.com/valnoxy/checkip/blob/main/CHANGELOG.md">View Changelog</a>
12+
</p>
13+
</p>
14+
15+
![-----------------------------------------------------](https://dl.exploitox.de/t440p-oc/rainbow.png)
16+
17+
## Changelog
18+
### Version 1.0.0
19+
- Initial release

CheckIP.sln

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.31205.134
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CheckIP", "CheckIP\CheckIP.csproj", "{2CFE2279-B648-45C5-BE54-88968977BBCE}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{2CFE2279-B648-45C5-BE54-88968977BBCE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{2CFE2279-B648-45C5-BE54-88968977BBCE}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{2CFE2279-B648-45C5-BE54-88968977BBCE}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{2CFE2279-B648-45C5-BE54-88968977BBCE}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {261A587F-7A61-49C7-8C85-433FD4D0DDA9}
24+
EndGlobalSection
25+
EndGlobal

CheckIP/About.xaml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<Page x:Class="CheckIP.About"
2+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4+
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
5+
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
6+
xmlns:local="clr-namespace:CheckIP"
7+
mc:Ignorable="d"
8+
d:DesignWidth="436" d:DesignHeight="400"
9+
Title="About">
10+
11+
<Grid>
12+
<Label x:Name="labelTitle" Content="CheckIP" HorizontalAlignment="Left" Margin="15,8,0,0" VerticalAlignment="Top" FontSize="20" Foreground="{DynamicResource SystemBaseHighColorBrush}"/>
13+
<Label x:Name="valueVersion" Content="Version: 1.0.0" Margin="15,40,0,0" Foreground="{DynamicResource SystemBaseMediumColorBrush}" Height="19" VerticalAlignment="Top" HorizontalAlignment="Left"/>
14+
<Label x:Name="valueCopyright" Content="Copyright © 2018 - 2021 Exploitox. All rights reserved." Margin="15,59,0,0" Foreground="{DynamicResource SystemBaseMediumColorBrush}" Height="19" VerticalAlignment="Top" HorizontalAlignment="Left"/>
15+
<TextBlock x:Name="licenseText" Margin="15,92,10,0" Height="268" VerticalAlignment="Top" Foreground="{DynamicResource SystemBaseHighColorBrush}" FontSize="14" AllowDrop="True" TextWrapping="WrapWithOverflow">
16+
This program is free software: you can redistribute it and/or modify
17+
it under the terms of the GNU General Public License as published by
18+
the Free Software Foundation, either version 3 of the License, or
19+
(at your option) any later version.<LineBreak/><LineBreak/>
20+
21+
Source Code:
22+
<Hyperlink TextDecorations="" Click="Hyperlink_RequestNavigateToGithub">
23+
GitHub
24+
</Hyperlink>
25+
<LineBreak/>
26+
Homepage:
27+
<Hyperlink TextDecorations="" Click="Hyperlink_RequestNavigateToHomepage">
28+
Exploitox
29+
</Hyperlink>
30+
<LineBreak/>
31+
License:
32+
<Hyperlink TextDecorations="" Click="Hyperlink_RequestNavigateToLicense">
33+
GNU General Public License
34+
</Hyperlink>
35+
</TextBlock>
36+
</Grid>
37+
</Page>

CheckIP/About.xaml.cs

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
using System.Diagnostics;
2+
using System.Windows.Controls;
3+
4+
namespace CheckIP
5+
{
6+
/// <summary>
7+
/// Interaktionslogik für About.xaml
8+
/// </summary>
9+
public partial class About : Page
10+
{
11+
public About()
12+
{
13+
InitializeComponent();
14+
}
15+
16+
private void Hyperlink_RequestNavigateToGithub(object sender, System.Windows.RoutedEventArgs e)
17+
{
18+
System.Diagnostics.Process.Start(new ProcessStartInfo
19+
{
20+
FileName = "https://github.com/valnoxy/checkip",
21+
UseShellExecute = true
22+
});
23+
}
24+
25+
private void Hyperlink_RequestNavigateToHomepage(object sender, System.Windows.RoutedEventArgs e)
26+
{
27+
System.Diagnostics.Process.Start(new ProcessStartInfo
28+
{
29+
FileName = "https://exploitox.de",
30+
UseShellExecute = true
31+
});
32+
}
33+
34+
private void Hyperlink_RequestNavigateToLicense(object sender, System.Windows.RoutedEventArgs e)
35+
{
36+
System.Diagnostics.Process.Start(new ProcessStartInfo
37+
{
38+
FileName = "https://exploitox.de/license/checkip",
39+
UseShellExecute = true
40+
});
41+
}
42+
}
43+
}

CheckIP/App.xaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<Application
2+
x:Class="CheckIP.App"
3+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
4+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
5+
xmlns:local="clr-namespace:CheckIP"
6+
xmlns:ui="http://schemas.modernwpf.com/2019"
7+
StartupUri="MainWindow.xaml">
8+
<Application.Resources>
9+
<ResourceDictionary>
10+
<ResourceDictionary.MergedDictionaries>
11+
<ui:ThemeResources />
12+
<ui:XamlControlsResources />
13+
<ResourceDictionary Source="pack://application:,,,/FluentWPF;component/Styles/Controls.xaml" />
14+
<!-- Other merged dictionaries here -->
15+
</ResourceDictionary.MergedDictionaries>
16+
<!-- Other app resources here -->
17+
</ResourceDictionary>
18+
</Application.Resources>
19+
</Application>

CheckIP/App.xaml.cs

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Configuration;
4+
using System.Data;
5+
using System.Linq;
6+
using System.Threading.Tasks;
7+
using System.Windows;
8+
9+
namespace CheckIP
10+
{
11+
/// <summary>
12+
/// Interaction logic for App.xaml
13+
/// </summary>
14+
public partial class App : Application
15+
{
16+
}
17+
}

0 commit comments

Comments
 (0)