<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Where should I add license and copyrght information?]]></title><description><![CDATA[<p dir="auto">Hi</p>
<p dir="auto">I have finished my <code>Exclusive File Lock</code> plugin, everything is working and I will release it as a free plugin. It will be <strong>GNU GPLv3</strong></p>
<p dir="auto">The last thing I have to sort out is were to put copyright and license information.</p>
<p dir="auto">Do anyone have any examples of license and copyright formats and where to put them. Maybe a well formatted plugin I can look at.</p>
<p dir="auto">I have used the <code>Notepad++ Plugin Template</code> which already has some copyright information in it so I assume I would need to add to these.</p>
<p dir="auto">Any help for this novice would be appreciated.</p>
<p dir="auto">shoulders</p>
]]></description><link>https://community.notepad-plus-plus.org/topic/27563/where-should-i-add-license-and-copyrght-information</link><generator>RSS for Node</generator><lastBuildDate>Thu, 04 Jun 2026 23:06:46 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/27563.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 04 Jun 2026 16:23:46 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Where should I add license and copyrght information? on Thu, 04 Jun 2026 19:54:15 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/peterjones" aria-label="Profile: PeterJones">@<bdi>PeterJones</bdi></a> thanks for the link and information. This is exactly what I wanted.</p>
<p dir="auto">These are some of my notes I put together a while back</p>
<p dir="auto"><a href="https://quantumwarp.com/kb/articles/57-general/881-how-to-implement-open-source-licenses-on-your-software" rel="nofollow ugc">How to implement Open Source licenses on your software | QuantumWarp</a></p>
<p dir="auto">So this information will not go to waste, and again thanks for your time.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/105682</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/105682</guid><dc:creator><![CDATA[shoulders]]></dc:creator><pubDate>Thu, 04 Jun 2026 19:54:15 GMT</pubDate></item><item><title><![CDATA[Reply to Where should I add license and copyrght information? on Thu, 04 Jun 2026 19:04:25 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/shoulders" aria-label="Profile: shoulders">@<bdi>shoulders</bdi></a> ,</p>
<pre><code>    &lt;one line to give the program's name and a brief idea of what it does.&gt;
    Copyright (C) &lt;year&gt;  &lt;name of author&gt;

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see &lt;https://www.gnu.org/licenses/&gt;.

</code></pre>
<p dir="auto">Seems pretty straightforward to me.  You put the “block comment” syntax for your language around that block, fill in the <code>&lt;one line..,&gt;</code> and <code>&lt;year&gt; &lt;name of author&gt;</code></p>
<p dir="auto">Since the template you used probably already had the copyright, you most likely just need to change the intro line comment and the copyright line comment.</p>
<p dir="auto">I’m not sure what more you want to see?  Here’s how I did it in my CollectionInterface plugin: <a href="https://github.com/pryrt/NppPlugin-CollectionInterface/blob/main/src/PluginDefinition.cpp:" rel="nofollow ugc">https://github.com/pryrt/NppPlugin-CollectionInterface/blob/main/src/PluginDefinition.cpp:</a></p>
<pre><code>/*
    Copyright (C) 2025  Peter C. Jones &lt;EMAIL@REDACTED FOR ANTISPAM&gt;

    This file is part of the source code for the CollectionInterface plugin for Notepad++

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see &lt;https://www.gnu.org/licenses/&gt;.
*/
</code></pre>
<p dir="auto">So when I did that, I didn’t bother with the <code>&lt;one line&gt;</code>, and I just filled in the year and name as prompted.</p>
<hr />
<p dir="auto">One more thing:</p>
<blockquote>
<p dir="auto">how I handle the already present copyright information</p>
</blockquote>
<p dir="auto">For files from the template that I didn’t edit (other than maybe changing a string or two), I just left the copyright notice as originally given (which shows it was from the template).  For files new to me, or that I changed significantly from the template version, I updated with my copyright block from above.  You can navigate to other CPP files in that same repo I just linked you to in order to see more files, to see my mix of notices.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/105681</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/105681</guid><dc:creator><![CDATA[PeterJones]]></dc:creator><pubDate>Thu, 04 Jun 2026 19:04:25 GMT</pubDate></item><item><title><![CDATA[Reply to Where should I add license and copyrght information? on Thu, 04 Jun 2026 18:52:46 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/peterjones" aria-label="Profile: PeterJones">@<bdi>PeterJones</bdi></a> I have read that section but different languages have slightly different formats, also it does not address how I handle the already present copyright information and how to add my name etc to it.</p>
<p dir="auto">If you knew of a well formed “real” plugin I can look at it and use that format. Practical examples are what I am after.</p>
<p dir="auto">But either way I appreciate your help.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/105680</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/105680</guid><dc:creator><![CDATA[shoulders]]></dc:creator><pubDate>Thu, 04 Jun 2026 18:52:46 GMT</pubDate></item><item><title><![CDATA[Reply to Where should I add license and copyrght information? on Thu, 04 Jun 2026 18:44:24 GMT]]></title><description><![CDATA[<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/shoulders" aria-label="Profile: shoulders">@<bdi>shoulders</bdi></a> <a href="/post/105678">said</a>:</p>
<p dir="auto">I was particular interested in should i put it on individual files like the cpp and header files.</p>
</blockquote>
<p dir="auto">Which is what the section I linked you to describes how to do.  As I said, “that explains how to put the copyright notice in your source code”.  So follow that link, and it will show you the boilerplate to put in your source code files.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/105679</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/105679</guid><dc:creator><![CDATA[PeterJones]]></dc:creator><pubDate>Thu, 04 Jun 2026 18:44:24 GMT</pubDate></item><item><title><![CDATA[Reply to Where should I add license and copyrght information? on Thu, 04 Jun 2026 18:37:16 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/peterjones" aria-label="Profile: PeterJones">@<bdi>PeterJones</bdi></a> I will have the license in my repo, i have put it in an <code>about</code> menu item. I was particular interested in should i put it on individual files like the cpp and header files.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/105678</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/105678</guid><dc:creator><![CDATA[shoulders]]></dc:creator><pubDate>Thu, 04 Jun 2026 18:37:16 GMT</pubDate></item><item><title><![CDATA[Reply to Where should I add license and copyrght information? on Thu, 04 Jun 2026 17:17:10 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/shoulders" aria-label="Profile: shoulders">@<bdi>shoulders</bdi></a> ,</p>
<p dir="auto">If you put the GPLv3 license text in a file called <code>LICENSE</code> or <code>LICENSE.md</code> in your repo root, then GitHub will be able to make it clear to people who look at the repo what license you are under.  (For best results, if you take the <a href="https://www.gnu.org/licenses/gpl-3.0.txt" rel="nofollow ugc">plain text</a> or <a href="https://www.gnu.org/licenses/gpl-3.0.md" rel="nofollow ugc">markdown</a> files directly from the GNU website, GitHub can unambiguously recognize which license you are using.)</p>
<p dir="auto">Also, the official GPLv3 page has a <a href="https://www.gnu.org/licenses/gpl-3.0.en.html#howto" rel="nofollow ugc">section</a> that explains how to put the copyright notice in your source code, so that it points to the license.</p>
<p dir="auto">Some plugins will also include at least the copyright notice and sometimes the full LICENSE text in their ABOUT dialog or similar, but that’s not universal.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/105675</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/105675</guid><dc:creator><![CDATA[PeterJones]]></dc:creator><pubDate>Thu, 04 Jun 2026 17:17:10 GMT</pubDate></item></channel></rss>