From fbbca6f986f74a191d41221bb624a648e550fd30 Mon Sep 17 00:00:00 2001 From: isaak654 Date: Wed, 17 Jul 2024 16:21:40 +0200 Subject: [PATCH] Minor fixes --- .github/pull_request_template.md | 14 +++++++------- CONTRIBUTING.md | 2 +- Installer/license.txt | 2 +- LICENSE.Plus | 2 +- SandboxiePlus/SandMan/LICENSE | 2 +- SandboxiePlus/SandMan/SandMan.cpp | 10 +++++----- 6 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index ec4cd168..b4446871 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -1,7 +1,7 @@ -Thank you for your contribution to the Sandboxie repository. - -In order to reduce the risk of accidental merges, it's highly recommended for beginners to open a new Pull Request in draft state by clicking the button "Create Draft Pull Request", instead of using the default "Create Pull Request" option. - -In addition, you can convert an existing pull request to a draft by clicking the "Convert to draft" link in the right sidebar under "Reviewers". - -All new translators are encouraged to look at the "Localization notes and tips" before creating a pull request: https://git.io/J9G19 +> Thank you for your contribution to the Sandboxie repository. +> +> In order to reduce the risk of accidental merges, it's highly recommended for beginners to open a new Pull Request in draft state by clicking the button "Create Draft Pull Request", instead of using the default "Create Pull Request" option. +> +> In addition, you can convert an existing pull request to a draft by clicking the "Convert to draft" link in the right sidebar under "Reviewers". +> +> All new translators are encouraged to look at the "Localization notes and tips" before creating a pull request: https://git.io/J9G19 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f6eb18b1..fe9925e2 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -17,7 +17,7 @@ Patreon certificates are valid for as long as the subscription is active and unl 4. Donate with cryptocurrencies
In order to arrange custom payments with cryptocurrencies, please get in touch by [email](https://xanasoft.com/contact/). -In case of issues with your refund request, please get in touch by [email](https://xanasoft.com/contact/) with the full name and order ID. +**In case of licensing issues, please get in touch by [email](https://xanasoft.com/contact/) with the full name and order ID.** ## Non-monetary contributions diff --git a/Installer/license.txt b/Installer/license.txt index 5e4d947f..86027cca 100644 --- a/Installer/license.txt +++ b/Installer/license.txt @@ -4,7 +4,7 @@ Sandboxie-Plus can be used under the following restrictions and obligations: 1. Whomever obtains a copy of the software is permitted to use it in any noncommercial setting to the full - extend the software permits; however certain functionality + extent the software permits; however certain functionality is only available with a support certificate which can be obtained from xanasoft.com diff --git a/LICENSE.Plus b/LICENSE.Plus index 23fc5102..5e397229 100644 --- a/LICENSE.Plus +++ b/LICENSE.Plus @@ -4,7 +4,7 @@ Sandboxie-Plus can be used under the following restrictions and obligations: 1. Whomever obtains a copy of the software is permitted to use it in any noncommercial setting to the full - extend the software permits; however certain functionality + extent the software permits; however certain functionality is only available with a support certificate which can be obtained from xanasoft.com diff --git a/SandboxiePlus/SandMan/LICENSE b/SandboxiePlus/SandMan/LICENSE index 5bed4f7f..3c631284 100644 --- a/SandboxiePlus/SandMan/LICENSE +++ b/SandboxiePlus/SandMan/LICENSE @@ -4,7 +4,7 @@ Sandboxie-Plus can be used under the following restrictions and obligations: 1. Whomever obtains a copy of the software is permitted to use it in any noncommercial setting to the full - extend the software permits; however certain functionality + extent the software permits; however certain functionality is only available with a support certificate which can be obtained from xanasoft.com diff --git a/SandboxiePlus/SandMan/SandMan.cpp b/SandboxiePlus/SandMan/SandMan.cpp index fc68adc8..cad61cb0 100644 --- a/SandboxiePlus/SandMan/SandMan.cpp +++ b/SandboxiePlus/SandMan/SandMan.cpp @@ -1640,15 +1640,15 @@ void CSandMan::OnMessage(const QString& MsgData) { - QString respone = QInputDialog::getText(g_GUIParent, tr("Which box you want to add in?"), tr("Type the box name which you are going to set:")); - if(!respone.isEmpty()) + QString response = QInputDialog::getText(g_GUIParent, tr("Which box you want to add in?"), tr("Type the box name which you are going to set:")); + if(!response.isEmpty()) { - if (theAPI->GetBoxByName(respone) != NULL) { + if (theAPI->GetBoxByName(response) != NULL) { if (Message.right(1)=="\\"||!Message.contains(".", Qt::CaseInsensitive)) { - theAPI->GetBoxByName(respone)->AppendText("ForceFolder", Message.mid(4).replace("\"","")); + theAPI->GetBoxByName(response)->AppendText("ForceFolder", Message.mid(4).replace("\"","")); } else { - theAPI->GetBoxByName(respone)->AppendText("ForceProcess", Message.mid(4).replace("\"", "").mid(Message.mid(4).replace("\"", "").lastIndexOf("\\")+1)); + theAPI->GetBoxByName(response)->AppendText("ForceProcess", Message.mid(4).replace("\"", "").mid(Message.mid(4).replace("\"", "").lastIndexOf("\\")+1)); } }