mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-23 08:00:20 +00:00
d0977ac566
The Core::Version API now returns ErrorOr<String>, and the GUI::AboutDialog API was adjusted to accommodate this.
23 lines
478 B
C++
23 lines
478 B
C++
/*
|
|
* Copyright (c) 2021, Mahmoud Mandour <ma.mandourr@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <AK/String.h>
|
|
#include <LibCore/System.h>
|
|
#include <LibCore/Version.h>
|
|
|
|
namespace Core::Version {
|
|
|
|
ErrorOr<String> read_long_version_string()
|
|
{
|
|
auto uname = TRY(Core::System::uname());
|
|
|
|
auto const* version = uname.release;
|
|
auto const* git_hash = uname.version;
|
|
|
|
return String::formatted("Version {} revision {}", version, git_hash);
|
|
}
|
|
|
|
}
|