Skip to content

Commit

Permalink
Introduce ahqstore user daemon
Browse files Browse the repository at this point in the history
  • Loading branch information
ahqsoftwares committed Nov 5, 2024
1 parent 6cd5a1b commit 257d472
Show file tree
Hide file tree
Showing 33 changed files with 883 additions and 216 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,22 @@ jobs:
asset_path: ./src-service/target/release/ahqstore_service.exe
asset_name: ahqstore_service_${{ matrix.arch }}.exe
asset_content_type: application/vnd.microsoft.portable-executable

- name: Build User Daemon (Windows)
if: matrix.os == 'windows-latest'
run: cargo build --release
working-directory: src-exe-installer

- name: Upload User Daemon (Windows)
if: matrix.os == 'windows-latest'
uses: ahqstore/upload-release-assets@v60
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ needs.create-release.outputs.upload_url }}
asset_path: ./src-exe-installer/target/release/ahqstore-user-daemon.exe
asset_name: ahqstore_user_daemon_${{ matrix.arch }}.exe
asset_content_type: application/vnd.microsoft.portable-executable

- name: Upload Service (Linux)
if: matrix.os == 'ubuntu-latest'
Expand Down
1 change: 1 addition & 0 deletions encryptor.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ const key2 = (process.env.KEY || "").substring(0, 32);
writeFileSync("./src-tauri/src/encrypt", `"${key}"`);
writeFileSync("./src-service/src/encrypt", `"${key}"`);
writeFileSync("./src-service/src/encrypt_2", `"${key2}"`);
writeFileSync("./src-exe-installer/src/encrypt_2", `"${key2}"`);

const data = String(readFileSync("./src-tauri/src/encrypt"));
const d2 = String(readFileSync("./src-service/src/encrypt"));
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ahq-store-tauri",
"version": "2.0.1",
"version": "2.1.0",
"type": "module",
"private": true,
"license": "Creative Commons Attribution Non Commercial 3.0",
Expand Down Expand Up @@ -64,13 +64,13 @@
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-modal": "^3.16.3",
"babel-plugin-react-compiler": "19.0.0-beta-8a03594-20241020",
"babel-plugin-react-compiler": "19.0.0-beta-6fc168f-20241025",
"bcrypt": "^5.1.1",
"class-variance-authority": "^0.7.0",
"cross-env": "^7.0.3",
"cryptr": "^6.3.0",
"eslint": "^9.14.0",
"eslint-plugin-react-compiler": "19.0.0-beta-8a03594-20241020",
"eslint-plugin-react-compiler": "19.0.0-beta-6fc168f-20241025",
"prettier": "^3.3.3",
"shadcn": "^2.1.4"
},
Expand Down
Loading

0 comments on commit 257d472

Please sign in to comment.