feat: add branding patch

This commit is contained in:
Lucaskyy 2022-06-16 23:48:47 +02:00
parent 70c0e62520
commit 38284ce5a9
No known key found for this signature in database
GPG Key ID: 1530BFF96D1EEB89
2 changed files with 13 additions and 2 deletions

View File

@ -2,8 +2,8 @@ name: Build aapt2 binary
on:
push:
paths:
- '.github/**'
branches:
- main
workflow_dispatch:
inputs:
logLevel:

View File

@ -0,0 +1,11 @@
--- a/src/aapt2/Main.cpp
+++ b/src/aapt2/Main.cpp
@@ -54,7 +54,7 @@ class VersionCommand : public Command {
}
int Action(const std::vector<std::string>& /* args */) override {
- std::cerr << StringPrintf("%s %s", util::GetToolName(), util::GetToolFingerprint().c_str())
+ std::cerr << StringPrintf("%s %s (by ReVanced, github.com/revanced/aapt2)", util::GetToolName(), util::GetToolFingerprint().c_str())
<< std::endl;
return 0;
}