Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove references to Google Code #12

Merged
merged 3 commits into from
Jan 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Visual Studio Files
.vs/

# Unzip the KeePass portable into a directory above the project named KeePass
KeePass/
14 changes: 14 additions & 0 deletions KPEnhancedListview/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Visual Studio Files
obj/
KPEnhancedListview.csproj.user

# Unzip the KeePass portable into a directory above the project named KeePass
KeePass/

# Build artifacts
Build/Release/KPEnhancedListview/
Build/Release/KeePass.exe
Build/Release/KeePass.exe.config
Build/Release/KeePass.XmlSerializers.dll
Build/Release/KPEnhancedListview.dll.config
Build/Release/KPEnhancedListview.pdb
2 changes: 1 addition & 1 deletion KPEnhancedListview/AboutForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion KPEnhancedListview/AboutForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ private void OnFormClosed(object sender, FormClosedEventArgs e)

private void OnLinkHomepage(object sender, LinkLabelLinkClickedEventArgs e)
{
const string HomepageUrl = "http://code.google.com/p/kpenhancedlistview/";
const string HomepageUrl = "https://github.com/betonme/kpenhancedlistview/";
WinUtil.OpenUrl(HomepageUrl, null);
this.Close();
}
Expand Down
2 changes: 1 addition & 1 deletion KPEnhancedListview/AddEntry.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
KPEnhancedListview - Extend the KeePass Listview for inline editing.
Copyright (C) 2010 - 2012 Frank Glaser <glaserfrank(at)gmail.com>
http://code.google.com/p/kpenhancedlistview
https://github.com/betonme/kpenhancedlistview/

KPEnhancedListview is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
Binary file modified KPEnhancedListview/Build/Release/KPEnhancedListview.dll
Binary file not shown.
Binary file modified KPEnhancedListview/Build/Release/KPEnhancedListview.plgx
Binary file not shown.
2 changes: 1 addition & 1 deletion KPEnhancedListview/InlineEditing.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
KPEnhancedListview - Extend the KeePass Listview for inline editing.
Copyright (C) 2010 - 2012 Frank Glaser <glaserfrank(at)gmail.com>
http://code.google.com/p/kpenhancedlistview
https://github.com/betonme/kpenhancedlistview/

KPEnhancedListview is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion KPEnhancedListview/KPEnhancedListview.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
KPEnhancedListview - Extend the KeePass Listview for inline editing.
Copyright (C) 2010 - 2012 Frank Glaser <glaserfrank(at)gmail.com>
http://code.google.com/p/kpenhancedlistview
https://github.com/betonme/kpenhancedlistview/

KPEnhancedListview is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
11 changes: 7 additions & 4 deletions KPEnhancedListview/KPEnhancedListview.csproj
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="12.0">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
Expand All @@ -18,7 +18,7 @@
<OldToolsVersion>3.5</OldToolsVersion>
<UpgradeBackupLocation>
</UpgradeBackupLocation>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<PublishUrl>publish\</PublishUrl>
<Install>true</Install>
<InstallFrom>Disk</InstallFrom>
Expand All @@ -45,6 +45,7 @@
<DefineConstants>TRACE;DEBUG</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
Expand All @@ -53,9 +54,11 @@
<DefineConstants>TRACE;DEBUG</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="KeePass">
<Reference Include="KeePass, Culture=neutral, PublicKeyToken=fed2ed7716aecf5c, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\KeePass\KeePass.exe</HintPath>
</Reference>
<Reference Include="System" />
Expand Down Expand Up @@ -93,6 +96,7 @@
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include=".gitignore" />
<None Include="app.config" />
</ItemGroup>
<ItemGroup>
Expand Down Expand Up @@ -123,7 +127,6 @@
</ItemGroup>
<ItemGroup>
<None Include="Build\Release\KPEnhancedListview.plgx" />
<None Include="Homepage.URL" />
<None Include="Resources\KeePass.ico" />
</ItemGroup>
<ItemGroup>
Expand Down
14 changes: 12 additions & 2 deletions KPEnhancedListview/KPEnhancedListviewSolution.sln
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
Microsoft Visual Studio Solution File, Format Version 11.00
# Visual C# Express 2010
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.4.33205.214
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "KPEnhancedListview", "KPEnhancedListview.csproj", "{4C1BB6F8-D2CD-49C2-9053-21705681356C}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{60E88CD0-D208-4FCB-A9FD-D71A8DEA6CF9}"
ProjectSection(SolutionItems) = preProject
.gitignore = .gitignore
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -28,4 +35,7 @@ Global
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {D4A02CBC-0864-4FBE-BBC8-B4F4F7A86C43}
EndGlobalSection
EndGlobal
Binary file removed KPEnhancedListview/KPEnhancedListviewSolution.suo
Binary file not shown.
2 changes: 1 addition & 1 deletion KPEnhancedListview/MultilineTextBox.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
KPEnhancedListview - Extend the KeePass Listview for inline editing.
Copyright (C) 2010 - 2012 Frank Glaser <glaserfrank(at)gmail.com>
http://code.google.com/p/kpenhancedlistview
https://github.com/betonme/kpenhancedlistview/

KPEnhancedListview is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion KPEnhancedListview/OpenGroup.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
KPEnhancedListview - Extend the KeePass Listview for inline editing.
Copyright (C) 2010 - 2012 Frank Glaser <glaserfrank(at)gmail.com>
http://code.google.com/p/kpenhancedlistview
https://github.com/betonme/kpenhancedlistview/

KPEnhancedListview is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion KPEnhancedListview/PaddedTextbox.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
KPEnhancedListview - Extend the KeePass Listview for inline editing.
Copyright (C) 2010 - 2012 Frank Glaser <glaserfrank(at)gmail.com>
http://code.google.com/p/kpenhancedlistview
https://github.com/betonme/kpenhancedlistview/

KPEnhancedListview is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
4 changes: 2 additions & 2 deletions KPEnhancedListview/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
KPEnhancedListview - Extend the KeePass Listview for inline editing.
Copyright (C) 2010 - 2012 Frank Glaser <glaserfrank(at)gmail.com>
http://code.google.com/p/kpenhancedlistview
https://github.com/betonme/kpenhancedlistview/

KPEnhancedListview is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -38,5 +38,5 @@ You should have received a copy of the GNU General Public License
[assembly: Guid("a65cdf78-739f-4e8b-ad14-92e9001d7eb1")]

// Assembly version information
[assembly: AssemblyVersion("2.1.8.*")]
[assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyFileVersion("1.0.0.0")]
32 changes: 19 additions & 13 deletions KPEnhancedListview/Properties/Resources.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion KPEnhancedListview/SubPluginBase.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
KPEnhancedListview - Extend the KeePass Listview for inline editing.
Copyright (C) 2010 - 2012 Frank Glaser <glaserfrank(at)gmail.com>
http://code.google.com/p/kpenhancedlistview
https://github.com/betonme/kpenhancedlistview/

KPEnhancedListview is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion KPEnhancedListview/Util.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
KPEnhancedListview - Extend the KeePass Listview for inline editing.
Copyright (C) 2010 - 2012 Frank Glaser <glaserfrank(at)gmail.com>
http://code.google.com/p/kpenhancedlistview
https://github.com/betonme/kpenhancedlistview/

KPEnhancedListview is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion KPEnhancedListview/VersionInformation.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
:
KPEnhancedListview:1.0.0.0
KPEnhancedListview: 1.0.0.0
:
6 changes: 3 additions & 3 deletions KPEnhancedListview/app.config
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<?xml version="1.0"?>
<configuration>
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/></startup></configuration>
<?xml version="1.0"?>
<configuration>
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/></startup></configuration>