mirror of
https://github.com/JustArchiNET/ArchiSteamFarm
synced 2024-11-10 07:04:27 +00:00
Merge branch 'main' of https://github.com/JustArchiNET/ArchiSteamFarm
This commit is contained in:
commit
786e7f7df7
6 changed files with 14 additions and 7 deletions
4
.github/workflows/code-quality.yml
vendored
4
.github/workflows/code-quality.yml
vendored
|
@ -15,11 +15,11 @@ jobs:
|
|||
uses: actions/checkout@v3.5.2
|
||||
|
||||
- name: Run Qodana scan
|
||||
uses: JetBrains/qodana-action@v2022.3.4
|
||||
uses: JetBrains/qodana-action@v2023.1.0
|
||||
env:
|
||||
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}
|
||||
|
||||
- name: Report Qodana results to GitHub
|
||||
uses: github/codeql-action/upload-sarif@v2.2.12
|
||||
uses: github/codeql-action/upload-sarif@v2.3.0
|
||||
with:
|
||||
sarif_file: ${{ runner.temp }}/qodana/results/qodana.sarif.json
|
||||
|
|
2
ASF-ui
2
ASF-ui
|
@ -1 +1 @@
|
|||
Subproject commit d71555d6a236d08aa6df99ccc5004ae39bffbf82
|
||||
Subproject commit 114c390c92a889b86cf560def28fb8f39bc4fe54
|
|
@ -190,7 +190,10 @@ StackTrace:
|
|||
<value>Versão local: {0} | Versão remota: {1}</value>
|
||||
<comment>{0} will be replaced by current version, {1} will be replaced by remote version</comment>
|
||||
</data>
|
||||
|
||||
<data name="UserInputDeviceConfirmation" xml:space="preserve">
|
||||
<value>Por favor, verifique a aplicação móvel Steam, deve ter recebido uma notificação de aprovação de login. Digite Y se recebeu e aprovou a notificação, N se quiser fornecer o código: </value>
|
||||
<comment>Please note that this translation should end with space</comment>
|
||||
</data>
|
||||
<data name="UserInputSteam2FA" xml:space="preserve">
|
||||
<value>Por favor, insere to teu código de autenticação de dois fatores (2FA) da tua app de autenticador da Steam: </value>
|
||||
<comment>Please note that this translation should end with space</comment>
|
||||
|
|
|
@ -3195,7 +3195,11 @@ public sealed class Bot : IAsyncDisposable, IDisposable {
|
|||
await CheckOccupationStatus().ConfigureAwait(false);
|
||||
}
|
||||
|
||||
private void OnTradeCheckTimer(object? state = null) => Utilities.InBackground(Trading.OnNewTrade);
|
||||
private void OnTradeCheckTimer(object? state = null) {
|
||||
if (IsConnectedAndLoggedOn) {
|
||||
Utilities.InBackground(Trading.OnNewTrade);
|
||||
}
|
||||
}
|
||||
|
||||
private void OnUserNotifications(UserNotificationsCallback callback) {
|
||||
ArgumentNullException.ThrowIfNull(callback);
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<Project>
|
||||
<PropertyGroup>
|
||||
<Version>5.4.5.2</Version>
|
||||
<Version>5.4.5.3</Version>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup>
|
||||
|
|
2
wiki
2
wiki
|
@ -1 +1 @@
|
|||
Subproject commit c7bc1b9602ab612e6b59bbe650b89490518fc917
|
||||
Subproject commit 9ab36fa4932f53030bee985fe46af9ef694bf6e1
|
Loading…
Reference in a new issue