Skip to content

Commit

Permalink
Added copyright notices to tools
Browse files Browse the repository at this point in the history
  • Loading branch information
JVerbruggen committed Jun 23, 2024
1 parent 2339b28 commit ff38424
Show file tree
Hide file tree
Showing 5 changed files with 77 additions and 2 deletions.
17 changes: 17 additions & 0 deletions tools/create_special_source.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
#!/bin/bash

##############################################################################################################
# GPLv3 License #
# #
# Copyright (c) 2024-2024 JVerbruggen #
# https://github.com/JVerbruggen/jrides #
# #
# This software is protected under the GPLv3 license, #
# that can be found in the project's LICENSE file. #
# #
# In short, permission is hereby granted that anyone can copy, modify and distribute this software. #
# You have to include the license and copyright notice with each and every distribution. You can use #
# this software privately or commercially. Modifications to the code have to be indicated, and #
# distributions of this code must be distributed with the same license, GPLv3. The software is provided #
# without warranty. The software author or license can not be held liable for any damages #
# inflicted by the software. #
##############################################################################################################

MINECRAFT_VERSION=$1
PLUGIN=$2

Expand Down
15 changes: 15 additions & 0 deletions tools/generate_language_md.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
# GPLv3 License
#
# Copyright (c) 2024-2024 JVerbruggen
# https://github.com/JVerbruggen/jrides
#
# This software is protected under the GPLv3 license,
# that can be found in the project's LICENSE file.
#
# In short, permission is hereby granted that anyone can copy, modify and distribute this software.
# You have to include the license and copyright notice with each and every distribution. You can use
# this software privately or commercially. Modifications to the code have to be indicated, and
# distributions of this code must be distributed with the same license, GPLv3. The software is provided
# without warranty. The software author or license can not be held liable for any damages
# inflicted by the software.

import re

java_file_path = "src/main/java/com/jverbruggen/jrides/language/LanguageFile.java"
Expand Down
15 changes: 15 additions & 0 deletions tools/generate_permissions_md.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
# GPLv3 License
#
# Copyright (c) 2024-2024 JVerbruggen
# https://github.com/JVerbruggen/jrides
#
# This software is protected under the GPLv3 license,
# that can be found in the project's LICENSE file.
#
# In short, permission is hereby granted that anyone can copy, modify and distribute this software.
# You have to include the license and copyright notice with each and every distribution. You can use
# this software privately or commercially. Modifications to the code have to be indicated, and
# distributions of this code must be distributed with the same license, GPLv3. The software is provided
# without warranty. The software author or license can not be held liable for any damages
# inflicted by the software.

import re

java_file_path = "src/main/java/com/jverbruggen/jrides/common/permissions/Permissions.java"
Expand Down
17 changes: 15 additions & 2 deletions tools/jrides_blender_export_anim_plugin.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# Script from ottle, with some changes specific to jrides.

bl_info = {
"name": "JRides Export Animation",
"author": "ottle,jverbruggen",
Expand All @@ -13,6 +11,21 @@
"category": "Import-Export",
}

# GPLv3 License
#
# Copyright (c) 2024-2024 JVerbruggen
# https://github.com/JVerbruggen/jrides
#
# This software is protected under the GPLv3 license,
# that can be found in the project's LICENSE file.
#
# In short, permission is hereby granted that anyone can copy, modify and distribute this software.
# You have to include the license and copyright notice with each and every distribution. You can use
# this software privately or commercially. Modifications to the code have to be indicated, and
# distributions of this code must be distributed with the same license, GPLv3. The software is provided
# without warranty. The software author or license can not be held liable for any damages
# inflicted by the software.

import os
import bpy

Expand Down
15 changes: 15 additions & 0 deletions tools/nolimits_csv_validator.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
# GPLv3 License
#
# Copyright (c) 2024-2024 JVerbruggen
# https://github.com/JVerbruggen/jrides
#
# This software is protected under the GPLv3 license,
# that can be found in the project's LICENSE file.
#
# In short, permission is hereby granted that anyone can copy, modify and distribute this software.
# You have to include the license and copyright notice with each and every distribution. You can use
# this software privately or commercially. Modifications to the code have to be indicated, and
# distributions of this code must be distributed with the same license, GPLv3. The software is provided
# without warranty. The software author or license can not be held liable for any damages
# inflicted by the software.

import csv
import argparse
import os
Expand Down

0 comments on commit ff38424

Please sign in to comment.