Skip to content

Commit

Permalink
Preparing version
Browse files Browse the repository at this point in the history
  • Loading branch information
Benji377 committed Mar 13, 2024
1 parent e249deb commit 1f88444
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 28 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ jobs:
run: mkdir -p ./dist

- name: Copy file from docker
run: docker cp raspirus:/usr/app/raspirus/target/aarch64-unknown-linux-gnu/release/bundle/deb/raspirus_1.1.2_arm64.deb ./dist
run: docker cp raspirus:/usr/app/raspirus/target/aarch64-unknown-linux-gnu/release/bundle/deb/raspirus_1.1.3_arm64.deb ./dist

- name: Upload file to artifacts
uses: actions/upload-artifact@v4
with:
name: raspirus_1.1.2_arm64_${{ github.run_number }}.deb
path: ./dist/raspirus_1.1.2_arm64.deb
name: raspirus_1.1.3_arm64_${{ github.run_number }}.deb
path: ./dist/raspirus_1.1.3_arm64.deb

build_armhf:
runs-on: ubuntu-latest
Expand All @@ -46,10 +46,10 @@ jobs:
run: mkdir -p ./dist

- name: Copy file from docker
run: docker cp raspirus:/usr/app/raspirus/target/armv7-unknown-linux-gnueabihf/release/bundle/deb/raspirus_1.1.2_armhf.deb ./dist
run: docker cp raspirus:/usr/app/raspirus/target/armv7-unknown-linux-gnueabihf/release/bundle/deb/raspirus_1.1.3_armhf.deb ./dist

- name: Upload file to artifacts
uses: actions/upload-artifact@v4
with:
name: raspirus_1.1.2_armhf_${{ github.run_number }}.deb
path: ./dist/raspirus_1.1.2_armhf.deb
name: raspirus_1.1.3_armhf_${{ github.run_number }}.deb
path: ./dist/raspirus_1.1.3_armhf.deb
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ Our release schedule is designed to balance feature development, stability, and
| 1.1.0 | Added compressed file scanning functionality |
| 1.1.1 | Fixed updating bugs and improved backend syntax |
| 1.1.2 | Improved backend and speed overall. Some bug fixes |
| 1.1.3 | Improved updater speed and transfered to GitHub signatures |


Please refer to this change log for details on each version's changes and improvements. We appreciate your feedback and contributions as we continue to enhance our antivirus application to meet your security needs.
36 changes: 18 additions & 18 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "raspirus",
"version": "1.1.2",
"version": "1.1.3",
"private": true,
"scripts": {
"dev": "next dev",
Expand Down
2 changes: 1 addition & 1 deletion snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: raspirus
base: core18
version: 1.1.2
version: 1.1.3
summary: A resource- and human-friendly malware scanner
description: Raspirus is your cost-free, versatile malware scanner. Tailored signature detection, comprehensive file scans, and privacy prioritized for swift, reliable protection.
grade: stable
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "raspirus"
version = "1.1.2"
version = "1.1.3"
description = "A simple hash-based virus-scanner"
authors = ["Demetz Benjamin, Hell Björn Felix"]
license = "GPLv3"
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
},
"package": {
"productName": "raspirus",
"version": "1.1.2"
"version": "1.1.3"
},
"tauri": {
"allowlist": {
Expand Down

0 comments on commit 1f88444

Please sign in to comment.