2021-08-29 06:54:59 -03:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2021, Mahmoud Mandour <ma.mandourr@gmail.com>
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
2023-02-28 12:39:41 -03:00
|
|
|
#include <AK/String.h>
|
2021-08-29 06:54:59 -03:00
|
|
|
#include <LibCore/Version.h>
|
|
|
|
|
|
|
|
|
|
namespace Core::Version {
|
|
|
|
|
|
2025-02-12 10:57:20 -03:00
|
|
|
String read_long_version_string()
|
2021-08-29 06:54:59 -03:00
|
|
|
{
|
2024-02-07 14:53:38 -03:00
|
|
|
return "Version 1.0"_string;
|
2021-08-29 06:54:59 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|