Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
6184d7a
[org.SfietKonstantin.patchmanager.xml] Rename both new methods
Olf0 Aug 12, 2023
b0e4e84
[patchmanagerobject.cpp] First round of name changes
Olf0 Aug 12, 2023
8f42a3a
[patchmanagerobject.h] Carry out all name changes
Olf0 Aug 12, 2023
9976540
[patchmanager.cpp] Carry out all name changes
Olf0 Aug 12, 2023
70e55a2
[patchmanager.h] Carry out all name changes
Olf0 Aug 12, 2023
2e76a30
[org.SfietKonstantin.patchmanager.xml] Fix accidentally swapped names
Olf0 Aug 12, 2023
001978d
[PatchManagerPage.qml] Carry out all name changes
Olf0 Aug 12, 2023
15547c0
[patchmanager-tool] Carry out all name changes
Olf0 Aug 12, 2023
3be08eb
[main.cpp] Carry out all name changes
Olf0 Aug 12, 2023
4f47f79
[PatchManagerPage.qml] Enhance wording of menu entry
Olf0 Aug 12, 2023
cc9ebb3
[index.qdoc] Overhaul
Olf0 Aug 13, 2023
76149cd
[patchmanagerobject.cpp] Complete name changes
Olf0 Aug 13, 2023
e6fca18
[patchmanagerobject.cpp] Try to rectify comments lines 344 - 387
Olf0 Aug 13, 2023
d8b5c19
[patchmanagerobject.cpp] Complete name changes & overhaul
Olf0 Aug 13, 2023
437b727
[patchmanagerobject.cpp] Revert over-eagerly applied capitalisation
Olf0 Aug 13, 2023
5bbd359
[index.qdoc] Two minor rectifications of yesterday's work
Olf0 Aug 13, 2023
42fb947
[index.qdoc] Fix ambiguosity and missing "that" in line 120
Olf0 Aug 13, 2023
84b79b4
[index.qdoc] Enhance lines 124 and 135 a little bit
Olf0 Aug 13, 2023
516d391
[index.qdoc] More minor fixes
Olf0 Aug 13, 2023
e71b4a2
[index.qdoc] Even moere small fixes
Olf0 Aug 13, 2023
0fd6fb3
[index.qdoc] More nitpicks
Olf0 Aug 13, 2023
94fd306
[index.qdoc] Rectify broken sentence, detected and forgotten multiple…
Olf0 Aug 13, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -107,10 +107,10 @@
<method name="getLoaded">
<arg name="loaded" type="b" direction="out" />
</method>
<method name="revertToLastGood">
<method name="restorePatchList">
<annotation name="org.freedesktop.DBus.Method.NoReply" value="true"/>
</method>
<method name="setKnownGood">
<method name="backupWorkingPatchList">
<annotation name="org.freedesktop.DBus.Method.NoReply" value="true"/>
</method>
<method name="resolveFailure">
Expand Down
4 changes: 2 additions & 2 deletions src/bin/patchmanager-daemon/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ void help()
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 --save-as-good : Save list of enabled Patches as 'known good'" << std::endl;
std::cout << " patchmanager --load-known-good : Enable 'known good' Patches" << std::endl;
std::cout << " patchmanager --backup-working : Save list of enabled Patches as \"working\"" << std::endl;
std::cout << " patchmanager --restore-working : Enable backup list of \"working\" Patches" << std::endl;
std::cout << " patchmanager --daemon : Start Patchmanager as daemon" << std::endl;
}

Expand Down
Loading