Compare commits
No commits in common. "63538f87a4515a541aa2e7784b4cf0db230155fc" and "45b9d2cf194ab9a04916d0689e92d42cd08966c9" have entirely different histories.
63538f87a4
...
45b9d2cf19
43
.drone.yml
43
.drone.yml
@ -1,43 +0,0 @@
|
||||
---
|
||||
kind: secret
|
||||
name: gitea_token
|
||||
get:
|
||||
path: odit-git-bot
|
||||
name: apikey
|
||||
|
||||
---
|
||||
kind: pipeline
|
||||
type: kubernetes
|
||||
name: build
|
||||
|
||||
steps:
|
||||
- name: run electron packager
|
||||
depends_on: ["clone"]
|
||||
image: node:15.11.0-alpine3.13
|
||||
commands:
|
||||
- apk add git zip -f
|
||||
- yarn
|
||||
- yarn build
|
||||
- mkdir dist
|
||||
- zip -r dist/@lfk-scanclient-linux-x64.zip out/@lfk-scanclient-linux-x64
|
||||
- name: gitea_release
|
||||
depends_on: ["run electron packager"]
|
||||
image: plugins/gitea-release
|
||||
settings:
|
||||
api_key:
|
||||
from_secret: gitea_token
|
||||
base_url: https://git.odit.services
|
||||
files: dist/*
|
||||
checksum:
|
||||
- md5
|
||||
- sha1
|
||||
- sha256
|
||||
- sha512
|
||||
- adler32
|
||||
- crc32
|
||||
when:
|
||||
event: tag
|
||||
|
||||
trigger:
|
||||
event:
|
||||
- tag
|
5
.gitignore
vendored
5
.gitignore
vendored
@ -149,8 +149,7 @@ $RECYCLE.BIN/
|
||||
.LSOverride
|
||||
|
||||
# Icon must end with two \r
|
||||
Icon
|
||||
|
||||
Icon
|
||||
|
||||
# Thumbnails
|
||||
._*
|
||||
@ -171,5 +170,3 @@ Network Trash Folder
|
||||
Temporary Items
|
||||
.apdisk
|
||||
|
||||
app.zip
|
||||
/appcode
|
14
download.js
14
download.js
@ -1,14 +0,0 @@
|
||||
const axios = require('axios').default;
|
||||
const unzip = require('unzip-stream');
|
||||
const fs = require('fs');
|
||||
const download = require('download');
|
||||
|
||||
axios.get('https://git.odit.services/api/v1/repos/lfk/scanclient/releases').then(({ data }) => {
|
||||
(async () => {
|
||||
const download_file = data[0].assets.find((a) => a.name === 'dist.zip').browser_download_url;
|
||||
fs.writeFileSync('app.zip', await download(download_file));
|
||||
fs.createReadStream('app.zip').pipe(unzip.Parse()).on('entry', () => {
|
||||
fs.createReadStream('app.zip').pipe(unzip.Extract({ path: './appcode/' }));
|
||||
});
|
||||
})();
|
||||
});
|
39
main.js
39
main.js
@ -1,39 +0,0 @@
|
||||
const { app, BrowserWindow } = require('electron');
|
||||
const path = require('path');
|
||||
|
||||
function createWindow() {
|
||||
const mainWindow = new BrowserWindow({
|
||||
width: 800,
|
||||
height: 600,
|
||||
fullscreen: true
|
||||
// webPreferences: {
|
||||
// preload: path.join(__dirname, 'preload.js')
|
||||
// }
|
||||
});
|
||||
mainWindow.loadFile('appcode/dist/index.html');
|
||||
// mainWindow.removeMenu();
|
||||
// mainWindow.webContents.openDevTools()
|
||||
}
|
||||
|
||||
// This method will be called when Electron has finished
|
||||
// initialization and is ready to create browser windows.
|
||||
// Some APIs can only be used after this event occurs.
|
||||
app.whenReady().then(() => {
|
||||
createWindow();
|
||||
|
||||
app.on('activate', function() {
|
||||
// On macOS it's common to re-create a window in the app when the
|
||||
// dock icon is clicked and there are no other windows open.
|
||||
if (BrowserWindow.getAllWindows().length === 0) createWindow();
|
||||
});
|
||||
});
|
||||
|
||||
// Quit when all windows are closed, except on macOS. There, it's common
|
||||
// for applications and their menu bar to stay active until the user quits
|
||||
// explicitly with Cmd + Q.
|
||||
app.on('window-all-closed', function() {
|
||||
if (process.platform !== 'darwin') app.quit();
|
||||
});
|
||||
|
||||
// In this file you can include the rest of your app's specific main process
|
||||
// code. You can also put them in separate files and require them here.
|
53
package.json
53
package.json
@ -1,53 +0,0 @@
|
||||
{
|
||||
"name": "@lfk/scanclient-electron",
|
||||
"version": "0.0.0",
|
||||
"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"
|
||||
},
|
||||
"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-zip": "^6.0.0-beta.54",
|
||||
"@taraus-he/tdunzip": "^1.0.4",
|
||||
"axios": "^0.21.1",
|
||||
"download": "^8.0.0",
|
||||
"electron-nightly": "14.0.0-nightly.20210319",
|
||||
"extract-zip": "^2.0.1",
|
||||
"js-file-downloader": "^1.1.16",
|
||||
"unzip-stream": "^0.3.1"
|
||||
},
|
||||
"dependencies": {
|
||||
"electron-squirrel-startup": "1.0.0"
|
||||
},
|
||||
"config": {
|
||||
"forge": {
|
||||
"packagerConfig": {},
|
||||
"makers": [
|
||||
{
|
||||
"name": "@electron-forge/maker-zip",
|
||||
"platforms": [
|
||||
"darwin"
|
||||
],
|
||||
"config": {
|
||||
"name": "lfk__scanclient"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "@electron-forge/maker-deb",
|
||||
"config": {}
|
||||
},
|
||||
{
|
||||
"name": "@electron-forge/maker-rpm",
|
||||
"config": {}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
92
tmp.json
92
tmp.json
@ -1,92 +0,0 @@
|
||||
{
|
||||
"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