Minor fixes

This commit is contained in:
isaak654 2024-07-17 16:21:40 +02:00
parent 04df094ae1
commit fbbca6f986
No known key found for this signature in database
GPG Key ID: 59D402040437EC44
6 changed files with 16 additions and 16 deletions

View File

@ -1,7 +1,7 @@
Thank you for your contribution to the Sandboxie repository. > 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 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". > 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 > All new translators are encouraged to look at the "Localization notes and tips" before creating a pull request: https://git.io/J9G19

View File

@ -17,7 +17,7 @@ Patreon certificates are valid for as long as the subscription is active and unl
4. Donate with cryptocurrencies <br> 4. Donate with cryptocurrencies <br>
In order to arrange custom payments with cryptocurrencies, please get in touch by [email](https://xanasoft.com/contact/). 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 ## Non-monetary contributions

View File

@ -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 1. Whomever obtains a copy of the software is permitted
to use it in any noncommercial setting to the full 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 is only available with a support certificate which
can be obtained from xanasoft.com can be obtained from xanasoft.com

View File

@ -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 1. Whomever obtains a copy of the software is permitted
to use it in any noncommercial setting to the full 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 is only available with a support certificate which
can be obtained from xanasoft.com can be obtained from xanasoft.com

View File

@ -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 1. Whomever obtains a copy of the software is permitted
to use it in any noncommercial setting to the full 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 is only available with a support certificate which
can be obtained from xanasoft.com can be obtained from xanasoft.com

View File

@ -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:")); 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(!respone.isEmpty()) if(!response.isEmpty())
{ {
if (theAPI->GetBoxByName(respone) != NULL) { if (theAPI->GetBoxByName(response) != NULL) {
if (Message.right(1)=="\\"||!Message.contains(".", Qt::CaseInsensitive)) { 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 { 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));
} }
} }