added GNU license to script - as recommended

This commit is contained in:
Jaap Marsman 2025-04-13 11:53:22 +08:00
parent feaa39682b
commit c4c48e282b
7 changed files with 97 additions and 4 deletions

View File

@ -15,10 +15,6 @@ A freeware and open source education-related observation tool. The <a href="http
## Manual ## Manual
<p align="center">
<img src="./design_files/main_icon_small.png" width="200" height="200">
</p>
For a detailed manual on how to use the Time Sampling Form, please go to <a href="https://docs.jaapmarsman.com/time-sampling-form.html" target="_blank">this page</a>. For a detailed manual on how to use the Time Sampling Form, please go to <a href="https://docs.jaapmarsman.com/time-sampling-form.html" target="_blank">this page</a>.
## License & Attributions ## License & Attributions

View File

@ -1,5 +1,22 @@
extends CanvasLayer extends CanvasLayer
# Time Sampling Form
# Copyright (C) 2022-present Jaap Marsman
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero 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 Affero General Public License for more details.
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
@onready var main_window = $"../../AppWindow" @onready var main_window = $"../../AppWindow"

View File

@ -1,5 +1,21 @@
extends CanvasLayer extends CanvasLayer
# Time Sampling Form
# Copyright (C) 2022-present Jaap Marsman
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero 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 Affero General Public License for more details.
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
var time_lefts : int var time_lefts : int
var toggle_observation : bool = false var toggle_observation : bool = false

View File

@ -1,5 +1,21 @@
extends ProgressBar extends ProgressBar
# Time Sampling Form
# Copyright (C) 2022-present Jaap Marsman
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero 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 Affero General Public License for more details.
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
func _process(_delta) -> void: func _process(_delta) -> void:
value = global_ints.locked_observations_intervals_remaining value = global_ints.locked_observations_intervals_remaining

View File

@ -1,5 +1,21 @@
extends CanvasLayer extends CanvasLayer
# Time Sampling Form
# Copyright (C) 2022-present Jaap Marsman
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero 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 Affero General Public License for more details.
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
var js_interface; var js_interface;
var image : Image var image : Image

View File

@ -1,5 +1,21 @@
extends ProgressBar extends ProgressBar
# Time Sampling Form
# Copyright (C) 2022-present Jaap Marsman
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero 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 Affero General Public License for more details.
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
var time_lefts : int var time_lefts : int

View File

@ -1,5 +1,21 @@
extends CanvasLayer extends CanvasLayer
# Time Sampling Form
# Copyright (C) 2022-present Jaap Marsman
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero 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 Affero General Public License for more details.
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
var check_time_var : int var check_time_var : int
var csv_url = "https://raw.githubusercontent.com/hobbesjaap/time-sampling-form/main/updater/version_info.csv" var csv_url = "https://raw.githubusercontent.com/hobbesjaap/time-sampling-form/main/updater/version_info.csv"