summaryrefslogtreecommitdiff
path: root/Userland/Games/Hearts/main.cpp
AgeCommit message (Collapse)Author
2022-02-11LibConfig: Rename pledge_domains(String) => pledge_domain(String)Vitaly Dyachkov
pledge_domains() that takes only one String argument was specifically added as a shortcut for pledging a single domain. So, it makes sense to use singular here.
2022-01-13Hearts: Add link to help pages in menuDavid Lindbom
2021-12-18Hearts: Convert to try_create_default_iconAstraeus-
2021-11-28Everywhere: Use default execpromises argument for Core::System::pledgeBrian Gianforcaro
2021-11-27Hearts: TRY() all the things in serenity_main() :^)Pedro Pereira
2021-11-24Hearts: Replace construct() with TRY(try_create()) patternPedro Pereira
2021-11-23Hearts: Port to LibMainPedro Pereira
Simplified one pledge() and two unveil() by using TRY().
2021-09-13Everywhere: Use my fancy new serenityos.org email :^)Mustafa Quraish
2021-08-27Hearts: Remove `wpath` and `cpath` priviligesMustafa Quraish
There are no longer needed since the config file is not being modified by the application directly.
2021-08-27Hearts: Use LibConfig instead of Core::ConfigFileMustafa Quraish
2021-08-22Everywhere: Rename get in ConfigFile::get_for_{lib,app,system} to opennetworkException
This patch brings the ConfigFile helpers for opening lib, app and system configs more inline with the regular ConfigFile::open functions.
2021-08-22Everywhere: Use Core::ConfigFile::AllowWriting::Yes to allow writingnetworkException
2021-07-21Userland: Add GUI::Window::add_menu() and use it everywhereAndreas Kling
Applications previously had to create a GUI::Menubar object, add menus to it, and then call GUI::Window::set_menubar(). This patch introduces GUI::Window::add_menu() which creates the menubar automatically and adds items to it. Application code becomes slightly simpler as a result. :^)
2021-05-23Hearts: Allow player to set their nameJosh Perry
Added a new settings dialog to Hearts with a textbox to allow the player to set a name, which is persisted in the Hearts config file.
2021-05-22Hearts: Remove dead codeGunnar Beutner
2021-05-21Games: Add HeartsGunnar Beutner