Skip to content

Commit 7945ea8

Browse files
committed
App: disable app status
1 parent 28e6694 commit 7945ea8

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,9 @@ jobs:
280280
- name: Upload To Github Release
281281
if: ${{ startsWith(github.ref, 'refs/tags/') }}
282282
run: |
283-
gh release upload ${{ github.ref_name }} ${{github.workspace}}/${{ env.artifact_path }}/* ${{github.workspace}}/update.json ${{github.workspace}}/Release.md ${{github.workspace}}/CheckSum.md ${{github.workspace}}/App/Client/Resource/Stats/*
283+
gh release upload ${{ github.ref_name }} ${{github.workspace}}/${{ env.artifact_path }}/* ${{github.workspace}}/update.json ${{github.workspace}}/Release.md ${{github.workspace}}/CheckSum.md
284+
285+
#${{github.workspace}}/App/Client/Resource/Stats/*
284286

285287
- name: Upload test tag To Github Release
286288
if: ${{ startsWith(github.ref, 'refs/heads/master') }}

App/Client/main.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,7 @@ int main(int argc, char *argv[])
184184
#endif // #ifdef HAVE_UPDATE
185185

186186
CStatsAppUsage* pStats = nullptr;
187+
/*
187188
int randomInt = 0;
188189
int nMin = 10;
189190
int nMax = 50;
@@ -196,7 +197,7 @@ int main(int argc, char *argv[])
196197
QTimer::singleShot(randomInt, [&](){
197198
pStats = new CStatsAppUsage("v" + QApplication::applicationVersion());
198199
app.processEvents();
199-
});
200+
});//*/
200201

201202
MainWindow* w = new MainWindow();
202203

0 commit comments

Comments
 (0)