Relicense from GPL v3 to AGPL v3 #591
Open
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Overview
This PR relicenses the project from the GNU General Public License v3 (GPL v3) to the GNU Affero General Public License v3 (AGPL v3).
Changes
Why AGPL?
The AGPL v3 is designed specifically for software that users interact with over a network. It includes all the provisions of the GPL v3, plus an important additional requirement:
Section 13 - Remote Network Interaction: If you modify the program and let users interact with it remotely through a computer network (e.g., as a web service), you must provide those users access to the source code.
This ensures that users of network services have the same freedoms as users of locally-run software, which is particularly relevant for this simulator application.
Key Differences from GPL v3
Compatibility
AGPL v3 is compatible with GPL v3 - they can be combined in the same project (per GPL v3 Section 13 and AGPL v3 Section 13).
License Text Source
The exact license text was downloaded from the official GNU website to ensure accuracy and authenticity.