Skip to content

Commit

Permalink
Updating copyright dates
Browse files Browse the repository at this point in the history
  • Loading branch information
myst6re committed Feb 26, 2024
1 parent 9634181 commit 82370f4
Show file tree
Hide file tree
Showing 189 changed files with 697 additions and 629 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ jobs:
pre_release_assets:
name: Pre-Release
needs: [main_build]
if: (github.event.ref_type != 'tag') && (github.ref == 'refs/heads/master')
if: (github.event.ref_type != 'tag') && (github.ref == 'refs/heads/develop')
concurrency: pre-release-${{ github.ref }}
runs-on: ubuntu-latest
steps:
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
###############################################################################
## Copyright (C) 2009-2022 Arzel Jérôme <myst6re@gmail.com>
## Copyright (C) 2009-2024 Arzel Jérôme <myst6re@gmail.com>
## Copyright (C) 2020 Julian Xhokaxhiu <https://julianxhokaxhiu.com>
##
## This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion qt.cmake
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
###############################################################################
## Copyright (C) 2009-2023 Arzel Jérôme <myst6re@gmail.com>
## Copyright (C) 2009-2024 Arzel Jérôme <myst6re@gmail.com>
## Copyright (C) 2023 Julian Xhokaxhiu <https://julianxhokaxhiu.com>
##
## This program is free software: you can redistribute it and/or modify
Expand Down
22 changes: 18 additions & 4 deletions src/ArchiveObserver.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
#ifndef ARCHIVEOBSERVER_H
#define ARCHIVEOBSERVER_H
/****************************************************************************
** Deling Final Fantasy VIII Field Editor
** Copyright (C) 2009-2024 Arzel Jérôme <myst6re@gmail.com>
**
** This program is free software: you can redistribute it and/or modify
** it under the terms of the GNU 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 General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program. If not, see <http://www.gnu.org/licenses/>.
****************************************************************************/
#pragma once

struct ArchiveObserver
{
Expand All @@ -9,5 +25,3 @@ struct ArchiveObserver
virtual void setObserverMaximum(unsigned int max)=0;
virtual void setObserverValue(int value)=0;
};

#endif // ARCHIVEOBSERVER_H
17 changes: 17 additions & 0 deletions src/ArchiveObserverProgressDialog.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/****************************************************************************
** Deling Final Fantasy VIII Field Editor
** Copyright (C) 2009-2024 Arzel Jérôme <myst6re@gmail.com>
**
** This program is free software: you can redistribute it and/or modify
** it under the terms of the GNU 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 General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program. If not, see <http://www.gnu.org/licenses/>.
****************************************************************************/
#include "ArchiveObserverProgressDialog.h"

ArchiveObserverProgressDialog::ArchiveObserverProgressDialog(QProgressDialog *progressDialog) :
Expand Down
22 changes: 18 additions & 4 deletions src/ArchiveObserverProgressDialog.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
#ifndef ARCHIVEOBSERVERPROGRESSDIALOG_H
#define ARCHIVEOBSERVERPROGRESSDIALOG_H
/****************************************************************************
** Deling Final Fantasy VIII Field Editor
** Copyright (C) 2009-2024 Arzel Jérôme <myst6re@gmail.com>
**
** This program is free software: you can redistribute it and/or modify
** it under the terms of the GNU 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 General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program. If not, see <http://www.gnu.org/licenses/>.
****************************************************************************/
#pragma once

#include "ArchiveObserver.h"
#include <QProgressDialog>
Expand All @@ -15,5 +31,3 @@ class ArchiveObserverProgressDialog : public ArchiveObserver
private:
QProgressDialog *_progressDialog;
};

#endif // ARCHIVEOBSERVERPROGRESSDIALOG_H
17 changes: 17 additions & 0 deletions src/ArchiveObservers.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/****************************************************************************
** Deling Final Fantasy VIII Field Editor
** Copyright (C) 2009-2024 Arzel Jérôme <myst6re@gmail.com>
**
** This program is free software: you can redistribute it and/or modify
** it under the terms of the GNU 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 General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program. If not, see <http://www.gnu.org/licenses/>.
****************************************************************************/
#include "ArchiveObservers.h"

ArchiveObservers::ArchiveObservers(ArchiveObserver *observer)
Expand Down
22 changes: 18 additions & 4 deletions src/ArchiveObservers.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
#ifndef ARCHIVEOBSERVERS_H
#define ARCHIVEOBSERVERS_H
/****************************************************************************
** Deling Final Fantasy VIII Field Editor
** Copyright (C) 2009-2024 Arzel Jérôme <myst6re@gmail.com>
**
** This program is free software: you can redistribute it and/or modify
** it under the terms of the GNU 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 General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program. If not, see <http://www.gnu.org/licenses/>.
****************************************************************************/
#pragma once

#include "ArchiveObserver.h"
#include <QList>
Expand All @@ -16,5 +32,3 @@ class ArchiveObservers : public ArchiveObserver
private:
QList<ArchiveObserver *> _observers;
};

#endif // ARCHIVEOBSERVERS_H
2 changes: 1 addition & 1 deletion src/BGPreview.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/****************************************************************************
** Deling Final Fantasy VIII Field Editor
** Copyright (C) 2009-2012 Arzel Jérôme <myst6re@gmail.com>
** Copyright (C) 2009-2024 Arzel Jérôme <myst6re@gmail.com>
**
** This program is free software: you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
Expand Down
9 changes: 3 additions & 6 deletions src/BGPreview.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/****************************************************************************
** Deling Final Fantasy VIII Field Editor
** Copyright (C) 2009-2012 Arzel Jérôme <myst6re@gmail.com>
** Copyright (C) 2009-2024 Arzel Jérôme <myst6re@gmail.com>
**
** This program is free software: you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
Expand All @@ -15,16 +15,15 @@
** You should have received a copy of the GNU General Public License
** along with this program. If not, see <http://www.gnu.org/licenses/>.
****************************************************************************/
#ifndef DEF_BGPREVIEW
#define DEF_BGPREVIEW
#pragma once

#include <QtWidgets>

class BGPreview : public QLabel
{
Q_OBJECT
public:
BGPreview(QWidget *parent=0);
BGPreview(QWidget *parent = nullptr);

virtual void clear();
void setWithClick(bool enabled) {
Expand All @@ -39,5 +38,3 @@ public slots:
private:
bool _withClick;
};

#endif
2 changes: 1 addition & 1 deletion src/BGPreview2.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/****************************************************************************
** Deling Final Fantasy VIII Field Editor
** Copyright (C) 2009-2012 Arzel Jérôme <myst6re@gmail.com>
** Copyright (C) 2009-2024 Arzel Jérôme <myst6re@gmail.com>
**
** This program is free software: you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
Expand Down
9 changes: 3 additions & 6 deletions src/BGPreview2.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/****************************************************************************
** Deling Final Fantasy VIII Field Editor
** Copyright (C) 2009-2012 Arzel Jérôme <myst6re@gmail.com>
** Copyright (C) 2009-2024 Arzel Jérôme <myst6re@gmail.com>
**
** This program is free software: you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
Expand All @@ -15,16 +15,15 @@
** You should have received a copy of the GNU General Public License
** along with this program. If not, see <http://www.gnu.org/licenses/>.
****************************************************************************/
#ifndef BGPREVIEW2_H
#define BGPREVIEW2_H
#pragma once

#include <QtWidgets>

class BGPreview2 : public QLabel
{
Q_OBJECT
public:
explicit BGPreview2(QWidget *parent = 0);
explicit BGPreview2(QWidget *parent = nullptr);
void setName(const QString &);
private:
bool showSave;
Expand All @@ -36,5 +35,3 @@ class BGPreview2 : public QLabel
void leaveEvent(QEvent *);
void mousePressEvent(QMouseEvent *);
};

#endif // BGPREVIEW2_H
2 changes: 1 addition & 1 deletion src/BackgroundExporter.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/****************************************************************************
** Deling Final Fantasy VIII Field Editor
** Copyright (C) 2009-2020 Arzel Jérôme <myst6re@gmail.com>
** Copyright (C) 2009-2024 Arzel Jérôme <myst6re@gmail.com>
**
** This program is free software: you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
Expand Down
7 changes: 2 additions & 5 deletions src/BackgroundExporter.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/****************************************************************************
** Deling Final Fantasy VIII Field Editor
** Copyright (C) 2009-2020 Arzel Jérôme <myst6re@gmail.com>
** Copyright (C) 2009-2024 Arzel Jérôme <myst6re@gmail.com>
**
** This program is free software: you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
Expand All @@ -15,8 +15,7 @@
** You should have received a copy of the GNU General Public License
** along with this program. If not, see <http://www.gnu.org/licenses/>.
****************************************************************************/
#ifndef BACKGROUNDEXPORTER_H
#define BACKGROUNDEXPORTER_H
#pragma once

#include "FieldArchive.h"

Expand All @@ -32,5 +31,3 @@ class BackgroundExporter
FieldArchive *_archive;
QString _lastErrorString;
};

#endif // BACKGROUNDEXPORTER_H
2 changes: 1 addition & 1 deletion src/CharaModel.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/****************************************************************************
** Deling Final Fantasy VIII Field Editor
** Copyright (C) 2009-2012 Arzel Jérôme <myst6re@gmail.com>
** Copyright (C) 2009-2024 Arzel Jérôme <myst6re@gmail.com>
**
** This program is free software: you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
Expand Down
7 changes: 2 additions & 5 deletions src/CharaModel.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/****************************************************************************
** Deling Final Fantasy VIII Field Editor
** Copyright (C) 2009-2012 Arzel Jérôme <myst6re@gmail.com>
** Copyright (C) 2009-2024 Arzel Jérôme <myst6re@gmail.com>
**
** This program is free software: you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
Expand All @@ -15,8 +15,7 @@
** You should have received a copy of the GNU General Public License
** along with this program. If not, see <http://www.gnu.org/licenses/>.
****************************************************************************/
#ifndef CHARAMODEL_H
#define CHARAMODEL_H
#pragma once

#include <QtCore>
#include <QPixmap>
Expand All @@ -37,5 +36,3 @@ class CharaModel
QString _name;
QList<TimFile> _textures;
};

#endif // CHARAMODEL_H
2 changes: 1 addition & 1 deletion src/Config.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/****************************************************************************
** Deling Final Fantasy VIII Field Editor
** Copyright (C) 2009-2012 Arzel Jérôme <myst6re@gmail.com>
** Copyright (C) 2009-2024 Arzel Jérôme <myst6re@gmail.com>
**
** This program is free software: you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
Expand Down
7 changes: 2 additions & 5 deletions src/Config.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/****************************************************************************
** Deling Final Fantasy VIII Field Editor
** Copyright (C) 2009-2012 Arzel Jérôme <myst6re@gmail.com>
** Copyright (C) 2009-2024 Arzel Jérôme <myst6re@gmail.com>
**
** This program is free software: you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
Expand All @@ -15,8 +15,7 @@
** You should have received a copy of the GNU General Public License
** along with this program. If not, see <http://www.gnu.org/licenses/>.
****************************************************************************/
#ifndef CONFIG_H
#define CONFIG_H
#pragma once

#include <QtCore>

Expand All @@ -32,5 +31,3 @@ class Config
private:
static QSettings *settings;
};

#endif // CONFIG_H
2 changes: 1 addition & 1 deletion src/ConfigDialog.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/****************************************************************************
** Deling Final Fantasy VIII Field Editor
** Copyright (C) 2009-2012 Arzel Jérôme <myst6re@gmail.com>
** Copyright (C) 2009-2024 Arzel Jérôme <myst6re@gmail.com>
**
** This program is free software: you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
Expand Down
9 changes: 3 additions & 6 deletions src/ConfigDialog.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/****************************************************************************
** Deling Final Fantasy VIII Field Editor
** Copyright (C) 2009-2012 Arzel Jérôme <myst6re@gmail.com>
** Copyright (C) 2009-2024 Arzel Jérôme <myst6re@gmail.com>
**
** This program is free software: you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
Expand All @@ -15,8 +15,7 @@
** You should have received a copy of the GNU General Public License
** along with this program. If not, see <http://www.gnu.org/licenses/>.
****************************************************************************/
#ifndef DEF_CONFIGDIALOG
#define DEF_CONFIGDIALOG
#pragma once

#include <QtWidgets>
#include "Config.h"
Expand All @@ -27,7 +26,7 @@ class ConfigDialog : public QDialog
{
Q_OBJECT
public:
ConfigDialog(QWidget *parent=0);
ConfigDialog(QWidget *parent = nullptr);
private slots:
void setAppPath();
void manageEncoding();
Expand All @@ -42,5 +41,3 @@ private slots:
QComboBox *encodingComboBox;
QCheckBox *hideUnusedTexts;
};

#endif
2 changes: 1 addition & 1 deletion src/Data.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/****************************************************************************
** Deling Final Fantasy VIII Field Editor
** Copyright (C) 2009-2012 Arzel Jérôme <myst6re@gmail.com>
** Copyright (C) 2009-2024 Arzel Jérôme <myst6re@gmail.com>
**
** This program is free software: you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
Expand Down
Loading

0 comments on commit 82370f4

Please sign in to comment.