Compare commits
42 Commits
6fb5fbc708
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
b5fab1489a
|
|||
|
7e75c4e9d8
|
|||
| 17286551ad | |||
| 174931f154 | |||
|
1108c2be76
|
|||
| 2cadf66da7 | |||
|
5468e5ab59
|
|||
| 48da695413 | |||
| a648277dae | |||
| cb6a84568e | |||
|
cdaa3edfa6
|
|||
| de0e26e9ae | |||
| 671409c6af | |||
| b8cd7f01aa | |||
| e813dd0320 | |||
| 18f0fb1472 | |||
| 6d5813baa9 | |||
| 165e36a166 | |||
| d6b4a1776c | |||
| bee8c9df96 | |||
| 8189fd9c0e | |||
| a18c5d5598 | |||
| be482ff6f1 | |||
| 103f9eb436 | |||
| 6d5bcf2802 | |||
| 4a419d2862 | |||
| b5553936b0 | |||
| 3f7d33af91 | |||
| 03a9810f48 | |||
| fed8eb939b | |||
| d04bfe9faf | |||
| 6fb5be4809 | |||
| c629bc673e | |||
| ba56e7ecaf | |||
| 8bec596290 | |||
| c15ecb6fb6 | |||
| 0233961d6f | |||
| 582ab67098 | |||
| 72c46fdbb6 | |||
| 5b770c1c4a | |||
| 63538f87a4 | |||
| 60854511f9 |
37
.woodpecker/prepare.yml
Normal file
37
.woodpecker/prepare.yml
Normal file
@@ -0,0 +1,37 @@
|
||||
steps:
|
||||
- name: bump package version
|
||||
image: registry.odit.services/hub/library/node:19.9.0-alpine3.16
|
||||
commands:
|
||||
- npm --no-git-tag-version version ${SOURCE_TAG}
|
||||
- name: push new version to repo
|
||||
image: appleboy/drone-git-push
|
||||
settings:
|
||||
commit: true
|
||||
commit_message: 🚀New package version ${SOURCE_TAG} [CI SKIP]
|
||||
author_email: bot@odit.services
|
||||
followtags: false
|
||||
branch: main
|
||||
remote: git@git.odit.services:lfk/scanclient-electron.git
|
||||
skip_verify: true
|
||||
ssh_key:
|
||||
from_secret: odit-git-bot-sshkey
|
||||
- name: tag
|
||||
image: alpine/git
|
||||
commands:
|
||||
- git tag ${SOURCE_TAG} -a -m "Release ${SOURCE_TAG}"
|
||||
environment:
|
||||
SOURCE_TAG: "${SOURCE_TAG}"
|
||||
- name: push to repo
|
||||
image: appleboy/drone-git-push
|
||||
settings:
|
||||
commit: false
|
||||
author_email: bot@odit.services
|
||||
followtags: true
|
||||
branch: main
|
||||
remote: git@git.odit.services:lfk/scanclient-electron.git
|
||||
skip_verify: true
|
||||
ssh_key:
|
||||
from_secret: odit-git-bot-sshkey
|
||||
when:
|
||||
event:
|
||||
- manual
|
||||
37
.woodpecker/release.yml
Normal file
37
.woodpecker/release.yml
Normal file
@@ -0,0 +1,37 @@
|
||||
platform: linux/amd64
|
||||
|
||||
steps:
|
||||
- name: build dist zip
|
||||
image: registry.odit.services/hub/library/node:19.9.0-alpine3.16
|
||||
commands:
|
||||
- apk add git zip -f
|
||||
- yarn
|
||||
- yarn build
|
||||
- mkdir dist
|
||||
- zip -r dist/@lfk-scanclient-electron-linux-x64.zip out/@lfk-scanclient-electron-linux-x64
|
||||
- name: gitea add packages to build
|
||||
image: woodpeckerci/plugin-gitea-release
|
||||
settings:
|
||||
api_key:
|
||||
from_secret: odit-git-bot-apikey
|
||||
base_url: https://git.odit.services
|
||||
files: dist/*
|
||||
title: Release ${CI_COMMIT_TAG}
|
||||
checksum:
|
||||
- md5
|
||||
- sha1
|
||||
- sha256
|
||||
- sha512
|
||||
- adler32
|
||||
- crc32
|
||||
- name: trigger app.gutfeel.de build
|
||||
image: woodpeckerci/plugin-trigger
|
||||
settings:
|
||||
repositories:
|
||||
- lfk/scanclient-live
|
||||
params:
|
||||
- "SOURCE_TAG=${CI_COMMIT_TAG}"
|
||||
token:
|
||||
from_secret: odit-ci-bot-apikey
|
||||
when:
|
||||
event: tag
|
||||
18
README.md
18
README.md
@@ -1,3 +1,19 @@
|
||||
# scanclient-electron
|
||||
|
||||
electron packaged scanclient
|
||||
electron packaged scanclient
|
||||
|
||||
## Package
|
||||
> Automagicly discovers your os and selects the right packager
|
||||
|
||||
```
|
||||
pnpm i
|
||||
pnpm build
|
||||
```
|
||||
|
||||
## Bundle as MSI
|
||||
> You need to install the [WiX MSI Buildtools](https://wixtoolset.org/docs/wix3/) first
|
||||
|
||||
```
|
||||
pnpm i
|
||||
pnpm build:msi
|
||||
```
|
||||
BIN
favicon.ico
Normal file
BIN
favicon.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 112 KiB |
22
package.json
22
package.json
@@ -1,19 +1,20 @@
|
||||
{
|
||||
"name": "@lfk/scanclient-electron",
|
||||
"version": "0.0.0",
|
||||
"version": "1.0.3",
|
||||
"description": "minimal electron application",
|
||||
"main": "main.js",
|
||||
"scripts": {
|
||||
"download": "node download.js",
|
||||
"build": "yarn download && yarn electron:package",
|
||||
"electron:start": "electron-forge start",
|
||||
"electron:package": "electron-forge package"
|
||||
"build:msi": "node download.js && electron-forge make",
|
||||
"build": "yarn download && yarn electron-forge package",
|
||||
"electron:start": "electron-forge start"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@electron-forge/cli": "^6.0.0-beta.54",
|
||||
"@electron-forge/maker-deb": "^6.0.0-beta.54",
|
||||
"@electron-forge/maker-rpm": "^6.0.0-beta.54",
|
||||
"@electron-forge/maker-squirrel": "^6.0.0-beta.54",
|
||||
"@electron-forge/maker-wix": "^6.0.5",
|
||||
"@electron-forge/maker-zip": "^6.0.0-beta.54",
|
||||
"@taraus-he/tdunzip": "^1.0.4",
|
||||
"axios": "^0.21.1",
|
||||
@@ -28,7 +29,9 @@
|
||||
},
|
||||
"config": {
|
||||
"forge": {
|
||||
"packagerConfig": {},
|
||||
"packagerConfig": {
|
||||
"icon": "./favicon.ico"
|
||||
},
|
||||
"makers": [
|
||||
{
|
||||
"name": "@electron-forge/maker-zip",
|
||||
@@ -39,6 +42,15 @@
|
||||
"name": "lfk__scanclient"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "@electron-forge/maker-wix",
|
||||
"config": {
|
||||
"manufacturer": "ODIT.Services",
|
||||
"shortname": "LfKScan",
|
||||
"name": "LfKScan",
|
||||
"icon": "./favicon.ico"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "@electron-forge/maker-deb",
|
||||
"config": {}
|
||||
|
||||
3856
pnpm-lock.yaml
generated
Normal file
3856
pnpm-lock.yaml
generated
Normal file
File diff suppressed because it is too large
Load Diff
92
tmp.json
Normal file
92
tmp.json
Normal file
@@ -0,0 +1,92 @@
|
||||
{
|
||||
"id": 112,
|
||||
"tag_name": "0.1.1",
|
||||
"target_commitish": "main",
|
||||
"name": "0.1.1",
|
||||
"body": "Husky 🐶\r\nCI build",
|
||||
"url": "https://git.odit.services/api/v1/repos/lfk/scanclient/releases/112",
|
||||
"html_url": "https://git.odit.services/lfk/scanclient/releases/tag/0.1.1",
|
||||
"tarball_url": "https://git.odit.services/lfk/scanclient/archive/0.1.1.tar.gz",
|
||||
"zipball_url": "https://git.odit.services/lfk/scanclient/archive/0.1.1.zip",
|
||||
"draft": false,
|
||||
"prerelease": false,
|
||||
"created_at": "2021-03-19T17:51:46Z",
|
||||
"published_at": "2021-03-19T17:51:46Z",
|
||||
"author": {
|
||||
"id": 2,
|
||||
"login": "philipp",
|
||||
"full_name": "Philipp Dormann",
|
||||
"email": "philipp@philippdormann.de",
|
||||
"avatar_url": "https://git.odit.services/user/avatar/philipp/-1",
|
||||
"language": "en-US",
|
||||
"is_admin": true,
|
||||
"last_login": "2021-03-17T15:29:38Z",
|
||||
"created": "2020-10-30T14:18:23Z",
|
||||
"username": "philipp"
|
||||
},
|
||||
"assets": [
|
||||
{
|
||||
"id": 52,
|
||||
"name": "sha512sum.txt",
|
||||
"size": 143,
|
||||
"download_count": 0,
|
||||
"created_at": "2021-03-19T17:52:11Z",
|
||||
"uuid": "acda3b63-6b2b-40f3-89d1-8cf2b255b18d",
|
||||
"browser_download_url": "https://git.odit.services/attachments/acda3b63-6b2b-40f3-89d1-8cf2b255b18d"
|
||||
},
|
||||
{
|
||||
"id": 51,
|
||||
"name": "dist.zip",
|
||||
"size": 99014,
|
||||
"download_count": 1,
|
||||
"created_at": "2021-03-19T17:52:11Z",
|
||||
"uuid": "4b00c80a-ac17-4ad7-a5ba-5aed2e24b29a",
|
||||
"browser_download_url": "https://git.odit.services/attachments/4b00c80a-ac17-4ad7-a5ba-5aed2e24b29a"
|
||||
},
|
||||
{
|
||||
"id": 53,
|
||||
"name": "adler32sum.txt",
|
||||
"size": 25,
|
||||
"download_count": 0,
|
||||
"created_at": "2021-03-19T17:52:11Z",
|
||||
"uuid": "a6183b19-71fc-485c-81f1-819d356f7526",
|
||||
"browser_download_url": "https://git.odit.services/attachments/a6183b19-71fc-485c-81f1-819d356f7526"
|
||||
},
|
||||
{
|
||||
"id": 54,
|
||||
"name": "crc32sum.txt",
|
||||
"size": 24,
|
||||
"download_count": 0,
|
||||
"created_at": "2021-03-19T17:52:11Z",
|
||||
"uuid": "f39318ed-f92a-4fac-b5df-468cafd2df2f",
|
||||
"browser_download_url": "https://git.odit.services/attachments/f39318ed-f92a-4fac-b5df-468cafd2df2f"
|
||||
},
|
||||
{
|
||||
"id": 55,
|
||||
"name": "md5sum.txt",
|
||||
"size": 47,
|
||||
"download_count": 0,
|
||||
"created_at": "2021-03-19T17:52:11Z",
|
||||
"uuid": "88601f1d-647a-40cc-ae44-55105eafa2f1",
|
||||
"browser_download_url": "https://git.odit.services/attachments/88601f1d-647a-40cc-ae44-55105eafa2f1"
|
||||
},
|
||||
{
|
||||
"id": 56,
|
||||
"name": "sha1sum.txt",
|
||||
"size": 55,
|
||||
"download_count": 0,
|
||||
"created_at": "2021-03-19T17:52:12Z",
|
||||
"uuid": "04b67d7c-10f5-4e13-a11a-015eddf4591e",
|
||||
"browser_download_url": "https://git.odit.services/attachments/04b67d7c-10f5-4e13-a11a-015eddf4591e"
|
||||
},
|
||||
{
|
||||
"id": 57,
|
||||
"name": "sha256sum.txt",
|
||||
"size": 79,
|
||||
"download_count": 0,
|
||||
"created_at": "2021-03-19T17:52:12Z",
|
||||
"uuid": "77252928-127c-4cb6-b69c-956c5b8c0708",
|
||||
"browser_download_url": "https://git.odit.services/attachments/77252928-127c-4cb6-b69c-956c5b8c0708"
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user