-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Really stick to new nomenclature, plus … (#337)
* Really stick to new nomenclature See, e.g.: https://github.com/sailfishos-patches/patchmanager/wiki/Terms-and-wording#enable * Adapt corresponding string * Adapt to new nomenclature * Revert to old quoting style * Adapt to new nomenclature * Adapt to new nomenclature * Adapt to new nomenclature * Update main.cpp * Rectify * Consistency with wording in pm_apply * Adapt to new nomenclature * Fix copy&paste'o: Set timeout back to 1 min This is an off-topic minimalistic fix sneaked into MR #337. * Align with better wording in src/qml/SettingsPage.qml, line 94 * Adapt help text to … the result of discussing it in MR #337. * Overhaul lines 941 to (now) 953 … as denoted in MR #337.
- Loading branch information
Showing
8 changed files
with
48 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,13 @@ | ||
/* | ||
* Copyright (C) 2013 Lucien XU <[email protected]> | ||
* Copyright (C) 2016 Andrey Kozhevnikov <[email protected]> | ||
* Copyright (c) 2021, Patchmanager for SailfishOS contributors: | ||
* - olf "Olf0" <https://github.com/Olf0> | ||
* - Peter G. "nephros" <[email protected]> | ||
* - Vlad G. "b100dian" <https://github.com/b100dian> | ||
* | ||
* You may use this file under the terms of the BSD license as follows: | ||
* You may use this file under the terms of the 3-clause BSD license, | ||
* as follows: | ||
* | ||
* "Redistribution and use in source and binary forms, with or without | ||
* modification, are permitted provided that the following conditions are | ||
|
@@ -48,11 +53,11 @@ void help() | |
std::cout << "patchmanager" << std::endl; | ||
std::cout << std::endl; | ||
std::cout << "Usage:" << std::endl; | ||
std::cout << " patchmanager : run as daemon" << std::endl; | ||
std::cout << " patchmanager -a <patch> : apply a patch" << std::endl; | ||
std::cout << " patchmanager -u <patch> : unapply a patch" << std::endl; | ||
std::cout << " patchmanager --unapply-all : unapply all patches" << std::endl; | ||
std::cout << " patchmanager --daemon : daemonize" << std::endl; | ||
std::cout << " patchmanager [--help] : Print this help text" << std::endl; | ||
std::cout << " patchmanager -a <Patch> : Enable and activate a Patch" << std::endl; | ||
std::cout << " patchmanager -u <Patch> : Deactivate and disable (unapply) a Patch" << std::endl; | ||
std::cout << " patchmanager --unapply-all : Deactivate and disable (unapply) all Patches" << std::endl; | ||
std::cout << " patchmanager --daemon : Start Patchmanager as daemon" << std::endl; | ||
} | ||
|
||
int main(int argc, char **argv) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters