Skip to content

Commit c6c8678

Browse files
committed
Bump version to 0.4.2, update dates.
1 parent 215845c commit c6c8678

File tree

111 files changed

+532
-94
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

111 files changed

+532
-94
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,4 +263,4 @@ View the [Octolapse license](https://github.com/FormerLurker/Octolapse/blob/mast
263263

264264
<hr/>
265265

266-
_Copyright (C) 2020 Brad Hochgesang - FormerLurker@pm.me_
266+
_Copyright (C) 2023 Brad Hochgesang - FormerLurker@pm.me_

octoprint_octolapse/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# coding=utf-8
22
##################################################################################
33
# Octolapse - A plugin for OctoPrint used for making stabilized timelapse videos.
4-
# Copyright (C) 2020 Brad Hochgesang
4+
# Copyright (C) 2023 Brad Hochgesang
55
##################################################################################
66
# This program is free software: you can redistribute it and/or modify
77
# it under the terms of the GNU Affero General Public License as published

octoprint_octolapse/camera.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# coding=utf-8
22
##################################################################################
33
# Octolapse - A plugin for OctoPrint used for making stabilized timelapse videos.
4-
# Copyright (C) 2020 Brad Hochgesang
4+
# Copyright (C) 2023 Brad Hochgesang
55
##################################################################################
66
# This program is free software: you can redistribute it and/or modify
77
# it under the terms of the GNU Affero General Public License as published

octoprint_octolapse/error_messages.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# coding=utf-8
22
##################################################################################
33
# Octolapse - A plugin for OctoPrint used for making stabilized timelapse videos.
4-
# Copyright (C) 2020 Brad Hochgesang
4+
# Copyright (C) 2023 Brad Hochgesang
55
##################################################################################
66
# This program is free software: you can redistribute it and/or modify
77
# it under the terms of the GNU Affero General Public License as published

octoprint_octolapse/gcode_commands.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# coding=utf-8
22
##################################################################################
33
# Octolapse - A plugin for OctoPrint used for making stabilized timelapse videos.
4-
# Copyright (C) 2020 Brad Hochgesang
4+
# Copyright (C) 2023 Brad Hochgesang
55
##################################################################################
66
# This program is free software: you can redistribute it and/or modify
77
# it under the terms of the GNU Affero General Public License as published

octoprint_octolapse/gcode_processor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# coding=utf-8
22
##################################################################################
33
# Octolapse - A plugin for OctoPrint used for making stabilized timelapse videos.
4-
# Copyright (C) 2020 Brad Hochgesang
4+
# Copyright (C) 2023 Brad Hochgesang
55
##################################################################################
66
# This program is free software: you can redistribute it and/or modify
77
# it under the terms of the GNU Affero General Public License as published

octoprint_octolapse/log.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# coding=utf-8
22
##################################################################################
33
# Octolapse - A plugin for OctoPrint used for making stabilized timelapse videos.
4-
# Copyright (C) 2020 Brad Hochgesang
4+
# Copyright (C) 2023 Brad Hochgesang
55
##################################################################################
66
# This program is free software: you can redistribute it and/or modify
77
# it under the terms of the GNU Affero General Public License as published

octoprint_octolapse/messenger_worker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# coding=utf-8
22
##################################################################################
33
# Octolapse - A plugin for OctoPrint used for making stabilized timelapse videos.
4-
# Copyright (C) 2020 Brad Hochgesang
4+
# Copyright (C) 2023 Brad Hochgesang
55
##################################################################################
66
# This program is free software: you can redistribute it and/or modify
77
# it under the terms of the GNU Affero General Public License as published

octoprint_octolapse/migration.py

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
##################################################################################
2+
# Octolapse - A plugin for OctoPrint used for making stabilized timelapse videos.
3+
# Copyright (C) 2023 Brad Hochgesang
4+
##################################################################################
5+
# This program is free software: you can redistribute it and/or modify
6+
# it under the terms of the GNU Affero General Public License as published
7+
# by the Free Software Foundation, either version 3 of the License, or
8+
# (at your option) any later version.
9+
#
10+
# This program is distributed in the hope that it will be useful,
11+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
# GNU Affero General Public License for more details.
14+
#
15+
# You should have received a copy of the GNU Affero General Public License
16+
# along with this program. If not, see the following:
17+
# https://github.com/FormerLurker/Octolapse/blob/master/LICENSE
18+
#
19+
# You can contact the author either through the git-hub repository, or at the
20+
# following email address: FormerLurker@pm.me
21+
##################################################################################
122
from octoprint_octolapse_setuptools import NumberedVersion
223

324
import json

octoprint_octolapse/position.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# coding=utf-8
22
##################################################################################
33
# Octolapse - A plugin for OctoPrint used for making stabilized timelapse videos.
4-
# Copyright (C) 2020 Brad Hochgesang
4+
# Copyright (C) 2023 Brad Hochgesang
55
##################################################################################
66
# This program is free software: you can redistribute it and/or modify
77
# it under the terms of the GNU Affero General Public License as published

octoprint_octolapse/render.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# coding=utf-8
22
##################################################################################
33
# Octolapse - A plugin for OctoPrint used for making stabilized timelapse videos.
4-
# Copyright (C) 2020 Brad Hochgesang
4+
# Copyright (C) 2023 Brad Hochgesang
55
##################################################################################
66
# This program is free software: you can redistribute it and/or modify
77
# it under the terms of the GNU Affero General Public License as published

octoprint_octolapse/script.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# coding=utf-8
22
##################################################################################
33
# Octolapse - A plugin for OctoPrint used for making stabilized timelapse videos.
4-
# Copyright (C) 2020 Brad Hochgesang
4+
# Copyright (C) 2023 Brad Hochgesang
55
##################################################################################
66
# This program is free software: you can redistribute it and/or modify
77
# it under the terms of the GNU Affero General Public License as published

octoprint_octolapse/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# coding=utf-8
22
##################################################################################
33
# Octolapse - A plugin for OctoPrint used for making stabilized timelapse videos.
4-
# Copyright (C) 2020 Brad Hochgesang
4+
# Copyright (C) 2023 Brad Hochgesang
55
##################################################################################
66
# This program is free software: you can redistribute it and/or modify
77
# it under the terms of the GNU Affero General Public License as published

octoprint_octolapse/settings_external.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# coding=utf-8
22
##################################################################################
33
# Octolapse - A plugin for OctoPrint used for making stabilized timelapse videos.
4-
# Copyright (C) 2020 Brad Hochgesang
4+
# Copyright (C) 2023 Brad Hochgesang
55
##################################################################################
66
# This program is free software: you can redistribute it and/or modify
77
# it under the terms of the GNU Affero General Public License as published

octoprint_octolapse/settings_preprocessor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# coding=utf-8
22
##################################################################################
33
# Octolapse - A plugin for OctoPrint used for making stabilized timelapse videos.
4-
# Copyright (C) 2020 Brad Hochgesang
4+
# Copyright (C) 2023 Brad Hochgesang
55
##################################################################################
66
# This program is free software: you can redistribute it and/or modify
77
# it under the terms of the GNU Affero General Public License as published

octoprint_octolapse/snapshot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# coding=utf-8
22
##################################################################################
33
# Octolapse - A plugin for OctoPrint used for making stabilized timelapse videos.
4-
# Copyright (C) 2020 Brad Hochgesang
4+
# Copyright (C) 2023 Brad Hochgesang
55
##################################################################################
66
# This program is free software: you can redistribute it and/or modify
77
# it under the terms of the GNU Affero General Public License as published

octoprint_octolapse/stabilization_gcode.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# coding=utf-8
22
##################################################################################
33
# Octolapse - A plugin for OctoPrint used for making stabilized timelapse videos.
4-
# Copyright (C) 2020 Brad Hochgesang
4+
# Copyright (C) 2023 Brad Hochgesang
55
##################################################################################
66
# This program is free software: you can redistribute it and/or modify
77
# it under the terms of the GNU Affero General Public License as published

octoprint_octolapse/stabilization_preprocessing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# coding=utf-8
22
##################################################################################
33
# Octolapse - A plugin for OctoPrint used for making stabilized timelapse videos.
4-
# Copyright (C) 2020 Brad Hochgesang
4+
# Copyright (C) 2023 Brad Hochgesang
55
##################################################################################
66
# This program is free software: you can redistribute it and/or modify
77
# it under the terms of the GNU Affero General Public License as published

octoprint_octolapse/static/css/octolapse.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
##################################################################################
33
# Octolapse - A plugin for OctoPrint used for making stabilized timelapse videos.
4-
# Copyright (C) 2020 Brad Hochgesang
4+
# Copyright (C) 2023 Brad Hochgesang
55
##################################################################################
66
# This program is free software: you can redistribute it and/or modify
77
# it under the terms of the GNU Affero General Public License as published

octoprint_octolapse/static/js/octolapse.dialog.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
##################################################################################
33
# Octolapse - A plugin for OctoPrint used for making stabilized timelapse videos.
4-
# Copyright (C) 2020 Brad Hochgesang
4+
# Copyright (C) 2023 Brad Hochgesang
55
##################################################################################
66
# This program is free software: you can redistribute it and/or modify
77
# it under the terms of the GNU Affero General Public License as published

octoprint_octolapse/static/js/octolapse.dialog.renderings.in_process.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
##################################################################################
33
# Octolapse - A plugin for OctoPrint used for making stabilized timelapse videos.
4-
# Copyright (C) 2020 Brad Hochgesang
4+
# Copyright (C) 2023 Brad Hochgesang
55
##################################################################################
66
# This program is free software: you can redistribute it and/or modify
77
# it under the terms of the GNU Affero General Public License as published

octoprint_octolapse/static/js/octolapse.dialog.renderings.unfinished.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
##################################################################################
33
# Octolapse - A plugin for OctoPrint used for making stabilized timelapse videos.
4-
# Copyright (C) 2020 Brad Hochgesang
4+
# Copyright (C) 2023 Brad Hochgesang
55
##################################################################################
66
# This program is free software: you can redistribute it and/or modify
77
# it under the terms of the GNU Affero General Public License as published

octoprint_octolapse/static/js/octolapse.dialog.timelapse_files.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
##################################################################################
33
# Octolapse - A plugin for OctoPrint used for making stabilized timelapse videos.
4-
# Copyright (C) 2020 Brad Hochgesang
4+
# Copyright (C) 2023 Brad Hochgesang
55
##################################################################################
66
# This program is free software: you can redistribute it and/or modify
77
# it under the terms of the GNU Affero General Public License as published

octoprint_octolapse/static/js/octolapse.file_browser.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
##################################################################################
33
# Octolapse - A plugin for OctoPrint used for making stabilized timelapse videos.
4-
# Copyright (C) 2020 Brad Hochgesang
4+
# Copyright (C) 2023 Brad Hochgesang
55
##################################################################################
66
# This program is free software: you can redistribute it and/or modify
77
# it under the terms of the GNU Affero General Public License as published

octoprint_octolapse/static/js/octolapse.help.js

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
/*
2+
##################################################################################
3+
# Octolapse - A plugin for OctoPrint used for making stabilized timelapse videos.
4+
# Copyright (C) 2023 Brad Hochgesang
5+
##################################################################################
6+
# This program is free software: you can redistribute it and/or modify
7+
# it under the terms of the GNU Affero General Public License as published
8+
# by the Free Software Foundation, either version 3 of the License, or
9+
# (at your option) any later version.
10+
#
11+
# This program is distributed in the hope that it will be useful,
12+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
# GNU Affero General Public License for more details.
15+
#
16+
# You should have received a copy of the GNU Affero General Public License
17+
# along with this program. If not, see the following:
18+
# https://github.com/FormerLurker/Octolapse/blob/master/LICENSE
19+
#
20+
# You can contact the author either through the git-hub repository, or at the
21+
# following email address: FormerLurker@pm.me
22+
##################################################################################
23+
*/
124
$(function () {
225
OctolapseHelp = function () {
326
var self = this;

octoprint_octolapse/static/js/octolapse.helpers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
##################################################################################
33
# Octolapse - A plugin for OctoPrint used for making stabilized timelapse videos.
4-
# Copyright (C) 2020 Brad Hochgesang
4+
# Copyright (C) 2023 Brad Hochgesang
55
##################################################################################
66
# This program is free software: you can redistribute it and/or modify
77
# it under the terms of the GNU Affero General Public License as published

octoprint_octolapse/static/js/octolapse.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
##################################################################################
33
# Octolapse - A plugin for OctoPrint used for making stabilized timelapse videos.
4-
# Copyright (C) 2020 Brad Hochgesang
4+
# Copyright (C) 2023 Brad Hochgesang
55
##################################################################################
66
# This program is free software: you can redistribute it and/or modify
77
# it under the terms of the GNU Affero General Public License as published

octoprint_octolapse/static/js/octolapse.profiles.camera.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
##################################################################################
33
# Octolapse - A plugin for OctoPrint used for making stabilized timelapse videos.
4-
# Copyright (C) 2020 Brad Hochgesang
4+
# Copyright (C) 2023 Brad Hochgesang
55
##################################################################################
66
# This program is free software: you can redistribute it and/or modify
77
# it under the terms of the GNU Affero General Public License as published

octoprint_octolapse/static/js/octolapse.profiles.camera.webcam.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
##################################################################################
33
# Octolapse - A plugin for OctoPrint used for making stabilized timelapse videos.
4-
# Copyright (C) 2020 Brad Hochgesang
4+
# Copyright (C) 2023 Brad Hochgesang
55
##################################################################################
66
# This program is free software: you can redistribute it and/or modify
77
# it under the terms of the GNU Affero General Public License as published

octoprint_octolapse/static/js/octolapse.profiles.camera.webcam.mjpg_streamer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
##################################################################################
33
# Octolapse - A plugin for OctoPrint used for making stabilized timelapse videos.
4-
# Copyright (C) 2020 Brad Hochgesang
4+
# Copyright (C) 2023 Brad Hochgesang
55
##################################################################################
66
# This program is free software: you can redistribute it and/or modify
77
# it under the terms of the GNU Affero General Public License as published

octoprint_octolapse/static/js/octolapse.profiles.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
##################################################################################
33
# Octolapse - A plugin for OctoPrint used for making stabilized timelapse videos.
4-
# Copyright (C) 2020 Brad Hochgesang
4+
# Copyright (C) 2023 Brad Hochgesang
55
##################################################################################
66
# This program is free software: you can redistribute it and/or modify
77
# it under the terms of the GNU Affero General Public License as published

octoprint_octolapse/static/js/octolapse.profiles.library.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
##################################################################################
33
# Octolapse - A plugin for OctoPrint used for making stabilized timelapse videos.
4-
# Copyright (C) 2020 Brad Hochgesang
4+
# Copyright (C) 2023 Brad Hochgesang
55
##################################################################################
66
# This program is free software: you can redistribute it and/or modify
77
# it under the terms of the GNU Affero General Public License as published

octoprint_octolapse/static/js/octolapse.profiles.logging.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
##################################################################################
33
# Octolapse - A plugin for OctoPrint used for making stabilized timelapse videos.
4-
# Copyright (C) 2020 Brad Hochgesang
4+
# Copyright (C) 2023 Brad Hochgesang
55
##################################################################################
66
# This program is free software: you can redistribute it and/or modify
77
# it under the terms of the GNU Affero General Public License as published

octoprint_octolapse/static/js/octolapse.profiles.printer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
##################################################################################
33
# Octolapse - A plugin for OctoPrint used for making stabilized timelapse videos.
4-
# Copyright (C) 2020 Brad Hochgesang
4+
# Copyright (C) 2023 Brad Hochgesang
55
##################################################################################
66
# This program is free software: you can redistribute it and/or modify
77
# it under the terms of the GNU Affero General Public License as published

octoprint_octolapse/static/js/octolapse.profiles.printer.slicer.cura.js

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
/*
2+
##################################################################################
3+
# Octolapse - A plugin for OctoPrint used for making stabilized timelapse videos.
4+
# Copyright (C) 2023 Brad Hochgesang
5+
##################################################################################
6+
# This program is free software: you can redistribute it and/or modify
7+
# it under the terms of the GNU Affero General Public License as published
8+
# by the Free Software Foundation, either version 3 of the License, or
9+
# (at your option) any later version.
10+
#
11+
# This program is distributed in the hope that it will be useful,
12+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
# GNU Affero General Public License for more details.
15+
#
16+
# You should have received a copy of the GNU Affero General Public License
17+
# along with this program. If not, see the following:
18+
# https://github.com/FormerLurker/Octolapse/blob/master/LICENSE
19+
#
20+
# You can contact the author either through the git-hub repository, or at the
21+
# following email address: FormerLurker@pm.me
22+
##################################################################################
23+
*/
124
Octolapse.CuraExtruderViewModel = function (values, extruder_index) {
225
var self=this;
326
self.index = extruder_index;

0 commit comments

Comments
 (0)