mirror of
https://github.com/BeamMP/BeamMP-Launcher.git
synced 2025-07-01 15:36:10 +00:00
Update license header
This commit is contained in:
parent
87c7edf404
commit
46e6fda26e
@ -57,7 +57,7 @@ You can also specify a number of threads to use, for example `--parallel 4` will
|
|||||||
## License
|
## License
|
||||||
|
|
||||||
BeamMP Launcher, a launcher for the BeamMP mod for BeamNG.drive
|
BeamMP Launcher, a launcher for the BeamMP mod for BeamNG.drive
|
||||||
Copyright (C) 2020-2024 Anonymous275, Lion Kortlepel, the BeamMP Mod Team, and contributors.
|
Copyright (C) 2024 BeamMP Ltd., BeamMP team and contributors.
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify
|
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
|
it under the terms of the GNU Affero General Public License as published
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
// Copyright (c) 2019-present Anonymous275.
|
/*
|
||||||
// BeamMP Launcher code is not in the public domain and is not free software.
|
Copyright (C) 2024 BeamMP Ltd., BeamMP team and contributors.
|
||||||
// One must be granted explicit permission by the copyright holder in order to modify or distribute any part of the source or binaries.
|
Licensed under AGPL-3.0 (or later), see <https://www.gnu.org/licenses/>.
|
||||||
// Anything else is prohibited. Modified works may not be published and have be upstreamed to the official repository.
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
///
|
*/
|
||||||
/// Created by Anonymous275 on 7/18/2020
|
|
||||||
///
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include "Logger.h"
|
#include "Logger.h"
|
||||||
#include <string>
|
#include <string>
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
// Copyright (c) 2019-present Anonymous275.
|
/*
|
||||||
// BeamMP Launcher code is not in the public domain and is not free software.
|
Copyright (C) 2024 BeamMP Ltd., BeamMP team and contributors.
|
||||||
// One must be granted explicit permission by the copyright holder in order to modify or distribute any part of the source or binaries.
|
Licensed under AGPL-3.0 (or later), see <https://www.gnu.org/licenses/>.
|
||||||
// Anything else is prohibited. Modified works may not be published and have be upstreamed to the official repository.
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
///
|
*/
|
||||||
/// Created by Anonymous275 on 4/2/2020.
|
|
||||||
///
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
// Copyright (c) 2019-present Anonymous275.
|
/*
|
||||||
// BeamMP Launcher code is not in the public domain and is not free software.
|
Copyright (C) 2024 BeamMP Ltd., BeamMP team and contributors.
|
||||||
// One must be granted explicit permission by the copyright holder in order to modify or distribute any part of the source or binaries.
|
Licensed under AGPL-3.0 (or later), see <https://www.gnu.org/licenses/>.
|
||||||
// Anything else is prohibited. Modified works may not be published and have be upstreamed to the official repository.
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
///
|
*/
|
||||||
/// Created by Anonymous275 on 7/18/2020
|
|
||||||
///
|
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <string>
|
#include <string>
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
/*
|
||||||
|
Copyright (C) 2024 BeamMP Ltd., BeamMP team and contributors.
|
||||||
|
Licensed under AGPL-3.0 (or later), see <https://www.gnu.org/licenses/>.
|
||||||
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
|
*/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
|
@ -1,9 +1,8 @@
|
|||||||
// Copyright (c) 2019-present Anonymous275.
|
/*
|
||||||
// BeamMP Launcher code is not in the public domain and is not free software.
|
Copyright (C) 2024 BeamMP Ltd., BeamMP team and contributors.
|
||||||
// One must be granted explicit permission by the copyright holder in order to modify or distribute any part of the source or binaries.
|
Licensed under AGPL-3.0 (or later), see <https://www.gnu.org/licenses/>.
|
||||||
// Anything else is prohibited. Modified works may not be published and have be upstreamed to the official repository.
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
///
|
*/
|
||||||
/// Created by Anonymous275 on 7/19/2020
|
|
||||||
///
|
|
||||||
#pragma once
|
#pragma once
|
||||||
extern unsigned long GamePID;
|
extern unsigned long GamePID;
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
// Copyright (c) 2019-present Anonymous275.
|
/*
|
||||||
// BeamMP Launcher code is not in the public domain and is not free software.
|
Copyright (C) 2024 BeamMP Ltd., BeamMP team and contributors.
|
||||||
// One must be granted explicit permission by the copyright holder in order to modify or distribute any part of the source or binaries.
|
Licensed under AGPL-3.0 (or later), see <https://www.gnu.org/licenses/>.
|
||||||
// Anything else is prohibited. Modified works may not be published and have be upstreamed to the official repository.
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
///
|
*/
|
||||||
/// Created by Anonymous275 on 7/18/2020
|
|
||||||
///
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <string>
|
#include <string>
|
||||||
void PreGame(const std::string& GamePath);
|
void PreGame(const std::string& GamePath);
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
// Copyright (c) 2019-present Anonymous275.
|
/*
|
||||||
// BeamMP Launcher code is not in the public domain and is not free software.
|
Copyright (C) 2024 BeamMP Ltd., BeamMP team and contributors.
|
||||||
// One must be granted explicit permission by the copyright holder in order to modify or distribute any part of the source or binaries.
|
Licensed under AGPL-3.0 (or later), see <https://www.gnu.org/licenses/>.
|
||||||
// Anything else is prohibited. Modified works may not be published and have be upstreamed to the official repository.
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
///
|
*/
|
||||||
/// Created by Anonymous275 on 7/18/2020
|
|
||||||
///
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <compare>
|
#include <compare>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
/*
|
||||||
|
Copyright (C) 2024 BeamMP Ltd., BeamMP team and contributors.
|
||||||
|
Licensed under AGPL-3.0 (or later), see <https://www.gnu.org/licenses/>.
|
||||||
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
|
*/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
// Copyright (c) 2019-present Anonymous275.
|
/*
|
||||||
// BeamMP Launcher code is not in the public domain and is not free software.
|
Copyright (C) 2024 BeamMP Ltd., BeamMP team and contributors.
|
||||||
// One must be granted explicit permission by the copyright holder in order to modify or distribute any part of the source or binaries.
|
Licensed under AGPL-3.0 (or later), see <https://www.gnu.org/licenses/>.
|
||||||
// Anything else is prohibited. Modified works may not be published and have be upstreamed to the official repository.
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
///
|
*/
|
||||||
/// Created by Anonymous275 on 7/24/2020
|
|
||||||
///
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <span>
|
#include <span>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
/*
|
||||||
|
Copyright (C) 2024 BeamMP Ltd., BeamMP team and contributors.
|
||||||
|
Licensed under AGPL-3.0 (or later), see <https://www.gnu.org/licenses/>.
|
||||||
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef _LINUXFIXES_H
|
#ifndef _LINUXFIXES_H
|
||||||
#define _LINUXFIXES_H
|
#define _LINUXFIXES_H
|
||||||
|
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
// Copyright (c) 2019-present Anonymous275.
|
/*
|
||||||
// BeamMP Launcher code is not in the public domain and is not free software.
|
Copyright (C) 2024 BeamMP Ltd., BeamMP team and contributors.
|
||||||
// One must be granted explicit permission by the copyright holder in order to modify or distribute any part of the source or binaries.
|
Licensed under AGPL-3.0 (or later), see <https://www.gnu.org/licenses/>.
|
||||||
// Anything else is prohibited. Modified works may not be published and have be upstreamed to the official repository.
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
///
|
*/
|
||||||
/// Created by Anonymous275 on 7/15/2020
|
|
||||||
///
|
|
||||||
|
|
||||||
#include "Logger.h"
|
#include "Logger.h"
|
||||||
#include <span>
|
#include <span>
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
///
|
/*
|
||||||
/// Created by Anonymous275 on 2/23/2021
|
Copyright (C) 2024 BeamMP Ltd., BeamMP team and contributors.
|
||||||
///
|
Licensed under AGPL-3.0 (or later), see <https://www.gnu.org/licenses/>.
|
||||||
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
|
*/
|
||||||
|
|
||||||
#include "Logger.h"
|
#include "Logger.h"
|
||||||
#include "Network/network.hpp"
|
#include "Network/network.hpp"
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
// Copyright (c) 2019-present Anonymous275.
|
/*
|
||||||
// BeamMP Launcher code is not in the public domain and is not free software.
|
Copyright (C) 2024 BeamMP Ltd., BeamMP team and contributors.
|
||||||
// One must be granted explicit permission by the copyright holder in order to modify or distribute any part of the source or binaries.
|
Licensed under AGPL-3.0 (or later), see <https://www.gnu.org/licenses/>.
|
||||||
// Anything else is prohibited. Modified works may not be published and have be upstreamed to the official repository.
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
///
|
*/
|
||||||
/// Created by Anonymous275 on 7/19/2020
|
|
||||||
///
|
|
||||||
|
|
||||||
#if defined(_WIN32)
|
#if defined(_WIN32)
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
// Copyright (c) 2019-present Anonymous275.
|
/*
|
||||||
// BeamMP Launcher code is not in the public domain and is not free software.
|
Copyright (C) 2024 BeamMP Ltd., BeamMP team and contributors.
|
||||||
// One must be granted explicit permission by the copyright holder in order to modify or distribute any part of the source or binaries.
|
Licensed under AGPL-3.0 (or later), see <https://www.gnu.org/licenses/>.
|
||||||
// Anything else is prohibited. Modified works may not be published and have be upstreamed to the official repository.
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
///
|
*/
|
||||||
/// Created by Anonymous275 on 7/17/2020
|
|
||||||
///
|
|
||||||
|
|
||||||
#include "Logger.h"
|
#include "Logger.h"
|
||||||
#include "Startup.h"
|
#include "Startup.h"
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
// Copyright (c) 2019-present Anonymous275.
|
/*
|
||||||
// BeamMP Launcher code is not in the public domain and is not free software.
|
Copyright (C) 2024 BeamMP Ltd., BeamMP team and contributors.
|
||||||
// One must be granted explicit permission by the copyright holder in order to modify or distribute any part of the source or binaries.
|
Licensed under AGPL-3.0 (or later), see <https://www.gnu.org/licenses/>.
|
||||||
// Anything else is prohibited. Modified works may not be published and have be upstreamed to the official repository.
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
///
|
*/
|
||||||
/// Created by Anonymous275 on 7/20/2020
|
|
||||||
///
|
|
||||||
#include "Http.h"
|
#include "Http.h"
|
||||||
#include "Network/network.hpp"
|
#include "Network/network.hpp"
|
||||||
#include "Security/Init.h"
|
#include "Security/Init.h"
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
// Copyright (c) 2019-present Anonymous275.
|
/*
|
||||||
// BeamMP Launcher code is not in the public domain and is not free software.
|
Copyright (C) 2024 BeamMP Ltd., BeamMP team and contributors.
|
||||||
// One must be granted explicit permission by the copyright holder in order to modify or distribute any part of the source or binaries.
|
Licensed under AGPL-3.0 (or later), see <https://www.gnu.org/licenses/>.
|
||||||
// Anything else is prohibited. Modified works may not be published and have be upstreamed to the official repository.
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
///
|
*/
|
||||||
/// Created by Anonymous275 on 9/25/2020
|
|
||||||
///
|
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
// Copyright (c) 2019-present Anonymous275.
|
/*
|
||||||
// BeamMP Launcher code is not in the public domain and is not free software.
|
Copyright (C) 2024 BeamMP Ltd., BeamMP team and contributors.
|
||||||
// One must be granted explicit permission by the copyright holder in order to modify or distribute any part of the source or binaries.
|
Licensed under AGPL-3.0 (or later), see <https://www.gnu.org/licenses/>.
|
||||||
// Anything else is prohibited. Modified works may not be published and have be upstreamed to the official repository.
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
///
|
*/
|
||||||
/// Created by Anonymous275 on 7/25/2020
|
|
||||||
///
|
|
||||||
#include "Network/network.hpp"
|
#include "Network/network.hpp"
|
||||||
#include <memory>
|
#include <memory>
|
||||||
#include <zlib.h>
|
#include <zlib.h>
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
// Copyright (c) 2019-present Anonymous275.
|
/*
|
||||||
// BeamMP Launcher code is not in the public domain and is not free software.
|
Copyright (C) 2024 BeamMP Ltd., BeamMP team and contributors.
|
||||||
// One must be granted explicit permission by the copyright holder in order to modify or distribute any part of the source or binaries.
|
Licensed under AGPL-3.0 (or later), see <https://www.gnu.org/licenses/>.
|
||||||
// Anything else is prohibited. Modified works may not be published and have be upstreamed to the official repository.
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
///
|
*/
|
||||||
/// Created by Anonymous275 on 7/18/2020
|
|
||||||
///
|
|
||||||
|
|
||||||
#include "Http.h"
|
#include "Http.h"
|
||||||
#include <Logger.h>
|
#include <Logger.h>
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
// Copyright (c) 2019-present Anonymous275.
|
/*
|
||||||
// BeamMP Launcher code is not in the public domain and is not free software.
|
Copyright (C) 2024 BeamMP Ltd., BeamMP team and contributors.
|
||||||
// One must be granted explicit permission by the copyright holder in order to modify or distribute any part of the source or binaries.
|
Licensed under AGPL-3.0 (or later), see <https://www.gnu.org/licenses/>.
|
||||||
// Anything else is prohibited. Modified works may not be published and have be upstreamed to the official repository.
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
///
|
*/
|
||||||
/// Created by Anonymous275 on 4/11/2020
|
|
||||||
///
|
|
||||||
|
|
||||||
#include "Network/network.hpp"
|
#include "Network/network.hpp"
|
||||||
#include <chrono>
|
#include <chrono>
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
// Copyright (c) 2019-present Anonymous275.
|
/*
|
||||||
// BeamMP Launcher code is not in the public domain and is not free software.
|
Copyright (C) 2024 BeamMP Ltd., BeamMP team and contributors.
|
||||||
// One must be granted explicit permission by the copyright holder in order to modify or distribute any part of the source or binaries.
|
Licensed under AGPL-3.0 (or later), see <https://www.gnu.org/licenses/>.
|
||||||
// Anything else is prohibited. Modified works may not be published and have be upstreamed to the official repository.
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
///
|
*/
|
||||||
/// Created by Anonymous275 on 5/8/2020
|
|
||||||
///
|
|
||||||
#include "Network/network.hpp"
|
#include "Network/network.hpp"
|
||||||
#include "Zlib/Compressor.h"
|
#include "Zlib/Compressor.h"
|
||||||
#include <stdexcept>
|
#include <stdexcept>
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
// Copyright (c) 2019-present Anonymous275.
|
/*
|
||||||
// BeamMP Launcher code is not in the public domain and is not free software.
|
Copyright (C) 2024 BeamMP Ltd., BeamMP team and contributors.
|
||||||
// One must be granted explicit permission by the copyright holder in order to modify or distribute any part of the source or binaries.
|
Licensed under AGPL-3.0 (or later), see <https://www.gnu.org/licenses/>.
|
||||||
// Anything else is prohibited. Modified works may not be published and have be upstreamed to the official repository.
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
///
|
*/
|
||||||
/// Created by Anonymous275 on 5/8/2020
|
|
||||||
///
|
|
||||||
|
|
||||||
#include "Logger.h"
|
#include "Logger.h"
|
||||||
#include <Zlib/Compressor.h>
|
#include <Zlib/Compressor.h>
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
/*
|
||||||
|
Copyright (C) 2024 BeamMP Ltd., BeamMP team and contributors.
|
||||||
|
Licensed under AGPL-3.0 (or later), see <https://www.gnu.org/licenses/>.
|
||||||
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
|
*/
|
||||||
|
|
||||||
#include "Options.h"
|
#include "Options.h"
|
||||||
|
|
||||||
#include "Logger.h"
|
#include "Logger.h"
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
// Copyright (c) 2019-present Anonymous275.
|
/*
|
||||||
// BeamMP Launcher code is not in the public domain and is not free software.
|
Copyright (C) 2024 BeamMP Ltd., BeamMP team and contributors.
|
||||||
// One must be granted explicit permission by the copyright holder in order to modify or distribute any part of the source or binaries.
|
Licensed under AGPL-3.0 (or later), see <https://www.gnu.org/licenses/>.
|
||||||
// Anything else is prohibited. Modified works may not be published and have be upstreamed to the official repository.
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
///
|
*/
|
||||||
/// Created by Anonymous275 on 7/18/2020
|
|
||||||
///
|
|
||||||
|
|
||||||
#include <filesystem>
|
#include <filesystem>
|
||||||
#if defined(_WIN32)
|
#if defined(_WIN32)
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
// Copyright (c) 2019-present Anonymous275.
|
/*
|
||||||
// BeamMP Launcher code is not in the public domain and is not free software.
|
Copyright (C) 2024 BeamMP Ltd., BeamMP team and contributors.
|
||||||
// One must be granted explicit permission by the copyright holder in order to modify or distribute any part of the source or binaries.
|
Licensed under AGPL-3.0 (or later), see <https://www.gnu.org/licenses/>.
|
||||||
// Anything else is prohibited. Modified works may not be published and have be upstreamed to the official repository.
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
///
|
*/
|
||||||
/// Created by Anonymous275 on 11/26/2020
|
|
||||||
///
|
|
||||||
|
|
||||||
#include "Http.h"
|
#include "Http.h"
|
||||||
#include "Logger.h"
|
#include "Logger.h"
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
// Copyright (c) 2019-present Anonymous275.
|
/*
|
||||||
// BeamMP Launcher code is not in the public domain and is not free software.
|
Copyright (C) 2024 BeamMP Ltd., BeamMP team and contributors.
|
||||||
// One must be granted explicit permission by the copyright holder in order to modify or distribute any part of the source or binaries.
|
Licensed under AGPL-3.0 (or later), see <https://www.gnu.org/licenses/>.
|
||||||
// Anything else is prohibited. Modified works may not be published and have be upstreamed to the official repository.
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
///
|
*/
|
||||||
/// Created by Anonymous275 on 7/16/2020
|
|
||||||
///
|
|
||||||
|
|
||||||
#include "zip_file.h"
|
#include "zip_file.h"
|
||||||
#include <charconv>
|
#include <charconv>
|
||||||
|
13
src/main.cpp
13
src/main.cpp
@ -1,10 +1,9 @@
|
|||||||
// Copyright (c) 2019-present Anonymous275.
|
/*
|
||||||
// BeamMP Launcher code is not in the public domain and is not free software.
|
Copyright (C) 2024 BeamMP Ltd., BeamMP team and contributors.
|
||||||
// One must be granted explicit permission by the copyright holder in order to modify or distribute any part of the source or binaries.
|
Licensed under AGPL-3.0 (or later), see <https://www.gnu.org/licenses/>.
|
||||||
// Anything else is prohibited. Modified works may not be published and have be upstreamed to the official repository.
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
///
|
*/
|
||||||
/// Created by Anonymous275 on 7/16/2020
|
|
||||||
///
|
|
||||||
#include "Http.h"
|
#include "Http.h"
|
||||||
#include "Logger.h"
|
#include "Logger.h"
|
||||||
#include "Network/network.hpp"
|
#include "Network/network.hpp"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user