forked from opengs/uashield
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New alghoritm to defend, lot of small issues fixed, probably fixed he…
…ap memory (opengs#127) * Fix opengs#54: Show version in title bar (opengs#71) Co-authored-by: Dawn <[email protected]> * i18n: [es ua en] + ui fixes (opengs#82) * - i18n: es, ua, en - improved language select - improved advanced settings popup - atack -> attack * Check for updates every hour * Fix typo in Ukrainian instruction (opengs#84) Fix typo in Ukrainian instruction * Update pwd-docker-compose.yml * Added one space in current target place:for bett UI/UX (opengs#89) * add referer (opengs#97) * tag version build also * Added new translations (LT, CS, DE, NL, SK) (opengs#107) * Add Lithuanian translations * Add Czech translations * Add German translations * Add Dutch translations * Add Slovak translations * Add new translations to dropdown * Add additional space to currentTarget Co-authored-by: Adam Raźniewski <[email protected]> * Prioritizing target * auto prioritizing update * removed console log * Axios update * Prioritized workers * Prepare to 0.0.12 * fix dockerfile (opengs#124) * Removed frozen lockfile Co-authored-by: Furiosae <[email protected]> Co-authored-by: Dawn <[email protected]> Co-authored-by: Mykhailo Lytvyn <[email protected]> Co-authored-by: Dmytro Litvinov <[email protected]> Co-authored-by: Andrii-L-DDoSer <[email protected]> Co-authored-by: forzaukraine <[email protected]> Co-authored-by: Julius <[email protected]>
- Loading branch information
1 parent
e34ef2d
commit 06ab338
Showing
28 changed files
with
560 additions
and
171 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: dockerci | ||
|
||
on: | ||
push: | ||
tags: | ||
- '*' | ||
|
||
jobs: | ||
docker: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- | ||
name: Set up QEMU | ||
uses: docker/setup-qemu-action@v1 | ||
- | ||
name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v1 | ||
- | ||
name: Login to GitHub Container Registry | ||
uses: docker/login-action@v1 | ||
with: | ||
registry: ghcr.io | ||
username: opengs | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
- name: Extract tag name | ||
shell: bash | ||
run: echo "##[set-output name=tag;]$(echo ${GITHUB_REF#refs/tags/})" | ||
id: extract_tag | ||
- name: Extract tag name without v | ||
shell: bash | ||
run: echo "##[set-output name=tagv;]$(echo ${GITHUB_REF#refs/tags/v})" | ||
id: extract_tag_v | ||
- | ||
name: Build and push | ||
uses: docker/build-push-action@v2 | ||
with: | ||
context: . | ||
platforms: linux/amd64 | ||
push: true | ||
tags: | | ||
ghcr.io/opengs/uashield:${{ steps.extract_tag.outputs.tag }} | ||
ghcr.io/opengs/uashield:${{ steps.extract_tag.outputs.tagv }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
name: dockerci | ||
|
||
on: [push] | ||
on: | ||
push: | ||
branches: | ||
- '*' | ||
|
||
jobs: | ||
docker: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "shield", | ||
"version": "0.0.11", | ||
"version": "0.0.12", | ||
"description": "Cyber security shield", | ||
"productName": "UA Cyber SHIELD", | ||
"author": "Mykola Zhyhallo <[email protected]>", | ||
|
@@ -19,7 +19,7 @@ | |
"@quasar/extras": "^1.0.0", | ||
"@types/node-fetch": "^2.6.1", | ||
"@types/superagent": "^4.1.15", | ||
"axios": "^0.21.1", | ||
"axios": "^0.26.0", | ||
"axios-https-proxy-fix": "^0.17.1", | ||
"core-js": "^3.6.5", | ||
"electron-updater": "^4.6.5", | ||
|
@@ -39,12 +39,12 @@ | |
"@quasar/app": "^3.0.0", | ||
"@types/node": "^12.20.21", | ||
"@types/user-agents": "^1.0.2", | ||
"esbuild": "0.14.23", | ||
"@typescript-eslint/eslint-plugin": "^5.10.0", | ||
"@typescript-eslint/parser": "^5.10.0", | ||
"electron": "^17.1.0", | ||
"electron-builder": "22.14.13", | ||
"electron-packager": "^15.4.0", | ||
"esbuild": "0.14.23", | ||
"eslint": "^7.14.0", | ||
"eslint-config-standard": "^16.0.2", | ||
"eslint-plugin-import": "^2.19.1", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ services: | |
restart: always | ||
environment: | ||
WORKERS: '512' | ||
USEPROXY: 'true' | ||
USEPROXY: 'false' | ||
deploy: | ||
replicas: 6 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.