Skip to content

Commit

Permalink
Change copyright year. (#336)
Browse files Browse the repository at this point in the history
  • Loading branch information
trisyoungs authored Jan 17, 2025
1 parent aa0420e commit 1cdd600
Show file tree
Hide file tree
Showing 78 changed files with 78 additions and 78 deletions.
2 changes: 1 addition & 1 deletion backend/src/jv2backend/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: GPL-3.0-or-later
# Copyright (c) 2024 Team JournalViewer and contributors
# Copyright (c) 2025 Team JournalViewer and contributors

# Don't assume that the command which called the package is the main package
# This is needed for nix
Expand Down
2 changes: 1 addition & 1 deletion backend/src/jv2backend/__main__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: GPL-3.0-or-later
# Copyright (c) 2024 Team JournalViewer and contributors
# Copyright (c) 2025 Team JournalViewer and contributors

# Don't assume that the command which called the package is the main package
# This is needed for nix
Expand Down
2 changes: 1 addition & 1 deletion backend/src/jv2backend/app.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: GPL-3.0-or-later
# Copyright (c) 2024 Team JournalViewer and contributors
# Copyright (c) 2025 Team JournalViewer and contributors

"""Define the Flask instance and backend API routes"""
import logging
Expand Down
2 changes: 1 addition & 1 deletion backend/src/jv2backend/classes/collection.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: GPL-3.0-or-later
# Copyright (c) 2024 Team JournalViewer and contributors
# Copyright (c) 2025 Team JournalViewer and contributors

from __future__ import annotations
import typing
Expand Down
2 changes: 1 addition & 1 deletion backend/src/jv2backend/classes/integerRange.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: GPL-3.0-or-later
# Copyright (c) 2024 Team JournalViewer and contributors
# Copyright (c) 2025 Team JournalViewer and contributors

class IntegerRange:
"""Defines an inclusive integer range"""
Expand Down
2 changes: 1 addition & 1 deletion backend/src/jv2backend/classes/journal.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: GPL-3.0-or-later
# Copyright (c) 2024 Team JournalViewer and contributors
# Copyright (c) 2025 Team JournalViewer and contributors

from __future__ import annotations
import typing
Expand Down
2 changes: 1 addition & 1 deletion backend/src/jv2backend/classes/requestData.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: GPL-3.0-or-later
# Copyright (c) 2024 Team JournalViewer and contributors
# Copyright (c) 2025 Team JournalViewer and contributors

import typing
from jv2backend.utils import url_join
Expand Down
2 changes: 1 addition & 1 deletion backend/src/jv2backend/main/generator.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: GPL-3.0-or-later
# Copyright (c) 2024 Team JournalViewer and contributors
# Copyright (c) 2025 Team JournalViewer and contributors

import typing
import logging
Expand Down
2 changes: 1 addition & 1 deletion backend/src/jv2backend/main/library.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: GPL-3.0-or-later
# Copyright (c) 2024 Team JournalViewer and contributors
# Copyright (c) 2025 Team JournalViewer and contributors

from __future__ import annotations

Expand Down
2 changes: 1 addition & 1 deletion backend/src/jv2backend/main/nexus.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: GPL-3.0-or-later
# Copyright (c) 2024 Team JournalViewer and contributors
# Copyright (c) 2025 Team JournalViewer and contributors

"""A collection of function to return data for a NeXus file"""
from pathlib import Path, PurePath
Expand Down
2 changes: 1 addition & 1 deletion backend/src/jv2backend/main/selector.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: GPL-3.0-or-later
# Copyright (c) 2024 Team JournalViewer and contributors
# Copyright (c) 2025 Team JournalViewer and contributors

import datetime
from jv2backend.classes.integerRange import IntegerRange
Expand Down
2 changes: 1 addition & 1 deletion backend/src/jv2backend/main/userCache.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: GPL-3.0-or-later
# Copyright (c) 2024 Team JournalViewer and contributors
# Copyright (c) 2025 Team JournalViewer and contributors

from platformdirs import user_data_dir
from pathlib import Path
Expand Down
2 changes: 1 addition & 1 deletion backend/src/jv2backend/routes/acquisition.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: GPL-3.0-or-later
# Copyright (c) 2024 Team JournalViewer and contributors
# Copyright (c) 2025 Team JournalViewer and contributors

import logging
from flask import Flask, jsonify, request, make_response
Expand Down
2 changes: 1 addition & 1 deletion backend/src/jv2backend/routes/generate.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: GPL-3.0-or-later
# Copyright (c) 2024 Team JournalViewer and contributors
# Copyright (c) 2025 Team JournalViewer and contributors

import logging
from flask import Flask, jsonify, request, make_response
Expand Down
2 changes: 1 addition & 1 deletion backend/src/jv2backend/routes/journal.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: GPL-3.0-or-later
# Copyright (c) 2024 Team JournalViewer and contributors
# Copyright (c) 2025 Team JournalViewer and contributors

"""Defines the Flask endpoints that only access journal information"""
import logging
Expand Down
2 changes: 1 addition & 1 deletion backend/src/jv2backend/routes/nexus.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: GPL-3.0-or-later
# Copyright (c) 2024 Team JournalViewer and contributors
# Copyright (c) 2025 Team JournalViewer and contributors

"""Defines the Flask endpoints that only access NeXuS information"""
import logging
Expand Down
2 changes: 1 addition & 1 deletion backend/src/jv2backend/routes/server.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: GPL-3.0-or-later
# Copyright (c) 2024 Team JournalViewer and contributors
# Copyright (c) 2025 Team JournalViewer and contributors

"""Defines the Flask endpoints that are server-related"""
from flask import Flask, jsonify
Expand Down
2 changes: 1 addition & 1 deletion backend/src/jv2backend/tests/test_journal.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: GPL-3.0-or-later
# Copyright (c) 2024 Team JournalViewer and contributors
# Copyright (c) 2025 Team JournalViewer and contributors

from jv2backend.classes.journal import Journal, SourceType
from jv2backend.utils import url_join
Expand Down
2 changes: 1 addition & 1 deletion backend/src/jv2backend/tests/test_journalCollection.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: GPL-3.0-or-later
# Copyright (c) 2024 Team JournalViewer and contributors
# Copyright (c) 2025 Team JournalViewer and contributors

from jv2backend.classes.collection import JournalCollection
from jv2backend.classes.journal import Journal, SourceType
Expand Down
2 changes: 1 addition & 1 deletion backend/src/jv2backend/tests/test_networkJournals.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: GPL-3.0-or-later
# Copyright (c) 2024 Team JournalViewer and contributors
# Copyright (c) 2025 Team JournalViewer and contributors

import pytest
import logging
Expand Down
2 changes: 1 addition & 1 deletion backend/src/jv2backend/tests/test_nexus.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: GPL-3.0-or-later
# Copyright (c) 2024 Team JournalViewer and contributors
# Copyright (c) 2025 Team JournalViewer and contributors

from pathlib import Path
import h5py as h5
Expand Down
2 changes: 1 addition & 1 deletion backend/src/jv2backend/tests/test_requestData.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: GPL-3.0-or-later
# Copyright (c) 2024 Team JournalViewer and contributors
# Copyright (c) 2025 Team JournalViewer and contributors

from jv2backend.classes.requestData import RequestData, InvalidRequest
from jv2backend.main.library import JournalLibrary
Expand Down
2 changes: 1 addition & 1 deletion backend/src/jv2backend/tests/test_runRange.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: GPL-3.0-or-later
# Copyright (c) 2024 Team JournalViewer and contributors
# Copyright (c) 2025 Team JournalViewer and contributors

from jv2backend.classes.integerRange import IntegerRange

Expand Down
2 changes: 1 addition & 1 deletion backend/src/jv2backend/tests/test_utils.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: GPL-3.0-or-later
# Copyright (c) 2024 Team JournalViewer and contributors
# Copyright (c) 2025 Team JournalViewer and contributors

import jv2backend.utils

Expand Down
2 changes: 1 addition & 1 deletion backend/src/jv2backend/utils.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: GPL-3.0-or-later
# Copyright (c) 2024 Team JournalViewer and contributors
# Copyright (c) 2025 Team JournalViewer and contributors

from typing import Any, Sequence
from functools import reduce
Expand Down
2 changes: 1 addition & 1 deletion frontend/args.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0-or-later
// Copyright (c) 2024 Team JournalViewer and contributors
// Copyright (c) 2025 Team JournalViewer and contributors

#include "args.h"

Expand Down
2 changes: 1 addition & 1 deletion frontend/args.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0-or-later
// Copyright (c) 2024 Team JournalViewer and contributors
// Copyright (c) 2025 Team JournalViewer and contributors

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion frontend/backend.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0-or-later
// Copyright (c) 2024 Team JournalViewer and contributors
// Copyright (c) 2025 Team JournalViewer and contributors

#include "backend.h"
#include "args.h"
Expand Down
2 changes: 1 addition & 1 deletion frontend/backend.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0-or-later
// Copyright (c) 2024 Team JournalViewer and contributors
// Copyright (c) 2025 Team JournalViewer and contributors

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion frontend/chartView.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0-or-later
// Copyright (c) 2024 Team JournalViewer and contributors
// Copyright (c) 2025 Team JournalViewer and contributors

#include "chartView.h"
#include "httpRequestWorker.h"
Expand Down
2 changes: 1 addition & 1 deletion frontend/chartView.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0-or-later
// Copyright (c) 2024 Team JournalViewer and contributors
// Copyright (c) 2025 Team JournalViewer and contributors

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion frontend/data.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0-or-later
// Copyright (c) 2024 Team JournalViewer and contributors
// Copyright (c) 2025 Team JournalViewer and contributors

#include "mainWindow.h"
#include <QInputDialog>
Expand Down
2 changes: 1 addition & 1 deletion frontend/errorHandling.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0-or-later
// Copyright (c) 2024 Team JournalViewer and contributors
// Copyright (c) 2025 Team JournalViewer and contributors

#include "mainWindow.h"
#include <QNetworkReply>
Expand Down
2 changes: 1 addition & 1 deletion frontend/export.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0-or-later
// Copyright (c) 2024 Team JournalViewer and contributors
// Copyright (c) 2025 Team JournalViewer and contributors

#include "mainWindow.h"
#include <QDir>
Expand Down
2 changes: 1 addition & 1 deletion frontend/filtering.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0-or-later
// Copyright (c) 2024 Team JournalViewer and contributors
// Copyright (c) 2025 Team JournalViewer and contributors

#include "mainWindow.h"
#include <QInputDialog>
Expand Down
2 changes: 1 addition & 1 deletion frontend/finding.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0-or-later
// Copyright (c) 2024 Team JournalViewer and contributors
// Copyright (c) 2025 Team JournalViewer and contributors

#include "mainWindow.h"
#include <QInputDialog>
Expand Down
2 changes: 1 addition & 1 deletion frontend/generation.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0-or-later
// Copyright (c) 2024 Team JournalViewer and contributors
// Copyright (c) 2025 Team JournalViewer and contributors

#include "mainWindow.h"
#include <QMessageBox>
Expand Down
2 changes: 1 addition & 1 deletion frontend/genericTreeModel.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0-or-later
// Copyright (c) 2024 Team JournalViewer and contributors
// Copyright (c) 2025 Team JournalViewer and contributors

#include "genericTreeModel.h"

Expand Down
2 changes: 1 addition & 1 deletion frontend/genericTreeModel.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0-or-later
// Copyright (c) 2024 Team JournalViewer and contributors
// Copyright (c) 2025 Team JournalViewer and contributors

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion frontend/graphWidget.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0-or-later
// Copyright (c) 2024 Team JournalViewer and contributors
// Copyright (c) 2025 Team JournalViewer and contributors

#include "graphWidget.h"
#include "chartView.h"
Expand Down
2 changes: 1 addition & 1 deletion frontend/graphWidget.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0-or-later
// Copyright (c) 2024 Team JournalViewer and contributors
// Copyright (c) 2025 Team JournalViewer and contributors

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion frontend/httpRequestWorker.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0-or-later
// Copyright (c) 2024 Team JournalViewer and contributors
// Copyright (c) 2025 Team JournalViewer and contributors

#include "httpRequestWorker.h"
#include <QBuffer>
Expand Down
2 changes: 1 addition & 1 deletion frontend/httpRequestWorker.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0-or-later
// Copyright (c) 2024 Team JournalViewer and contributors
// Copyright (c) 2025 Team JournalViewer and contributors

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion frontend/instrument.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0-or-later
// Copyright (c) 2024 Team JournalViewer and contributors
// Copyright (c) 2025 Team JournalViewer and contributors

#include "instrument.h"
#include <QDomDocument>
Expand Down
2 changes: 1 addition & 1 deletion frontend/instrument.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0-or-later
// Copyright (c) 2024 Team JournalViewer and contributors
// Copyright (c) 2025 Team JournalViewer and contributors

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion frontend/instrumentModel.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0-or-later
// Copyright (c) 2024 Team JournalViewer and contributors
// Copyright (c) 2025 Team JournalViewer and contributors

#include "instrumentModel.h"

Expand Down
2 changes: 1 addition & 1 deletion frontend/instrumentModel.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0-or-later
// Copyright (c) 2024 Team JournalViewer and contributors
// Copyright (c) 2025 Team JournalViewer and contributors

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion frontend/instruments.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0-or-later
// Copyright (c) 2024 Team JournalViewer and contributors
// Copyright (c) 2025 Team JournalViewer and contributors

#include "mainWindow.h"
#include <QDomDocument>
Expand Down
2 changes: 1 addition & 1 deletion frontend/journal.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0-or-later
// Copyright (c) 2024 Team JournalViewer and contributors
// Copyright (c) 2025 Team JournalViewer and contributors

#include "journal.h"

Expand Down
2 changes: 1 addition & 1 deletion frontend/journal.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0-or-later
// Copyright (c) 2024 Team JournalViewer and contributors
// Copyright (c) 2025 Team JournalViewer and contributors

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion frontend/journalModel.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0-or-later
// Copyright (c) 2024 Team JournalViewer and contributors
// Copyright (c) 2025 Team JournalViewer and contributors

#include "journalModel.h"

Expand Down
2 changes: 1 addition & 1 deletion frontend/journalModel.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0-or-later
// Copyright (c) 2024 Team JournalViewer and contributors
// Copyright (c) 2025 Team JournalViewer and contributors

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion frontend/journalSource.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0-or-later
// Copyright (c) 2024 Team JournalViewer and contributors
// Copyright (c) 2025 Team JournalViewer and contributors

#include "journalSource.h"
#include "instrument.h"
Expand Down
2 changes: 1 addition & 1 deletion frontend/journalSource.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0-or-later
// Copyright (c) 2024 Team JournalViewer and contributors
// Copyright (c) 2025 Team JournalViewer and contributors

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion frontend/journalSourceFilterProxy.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0-or-later
// Copyright (c) 2024 Team JournalViewer and contributors
// Copyright (c) 2025 Team JournalViewer and contributors

#include "journalSourceFilterProxy.h"
#include "journalSourceModel.h"
Expand Down
2 changes: 1 addition & 1 deletion frontend/journalSourceFilterProxy.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0-or-later
// Copyright (c) 2024 Team JournalViewer and contributors
// Copyright (c) 2025 Team JournalViewer and contributors

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion frontend/journalSources.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0-or-later
// Copyright (c) 2024 Team JournalViewer and contributors
// Copyright (c) 2025 Team JournalViewer and contributors

#include "journalSourcesDialog.h"
#include "mainWindow.h"
Expand Down
Loading

0 comments on commit 1cdd600

Please sign in to comment.