Add windows & linux build scripts

This commit is contained in:
olcxja 2026-05-03 17:31:32 +02:00
commit 862642fd04
5 changed files with 14 additions and 3 deletions

2
.gitignore vendored
View file

@ -3,3 +3,5 @@
electron/build
android/build
android/app/build
build/

3
build-linux.sh Executable file
View file

@ -0,0 +1,3 @@
mkdir build
cd build
npx electron-packager ../electron miarven --platform=linux --arch=x64

3
build-windows.sh Executable file
View file

@ -0,0 +1,3 @@
mkdir build
cd build
npx electron-packager ../electron miarven --platform=win32 --arch=x64

View file

@ -1,5 +1,5 @@
{
"appId": "com.yourdoamnin.yourapp",
"appId": "olcxja.miarven",
"directories": {
"buildResources": "resources"
},

View file

@ -47,12 +47,13 @@ body {
font-family: "Nunito", sans-serif;
-webkit-tap-highlight-color: transparent;
}
button, input {
border-radius: 0.8rem;
background-color: rgba(255, 255, 255, 0.05);
margin: var(--button-margin);
padding: var(--button-margin);
padding-left: calc(var(--button-margin) * 2);
height: var(--button-height);
display: flex;
cursor: pointer;
@ -60,7 +61,9 @@ button, input {
justify-content: flex-start;
border: var(--border-width) solid var(--light-border-color);
}
input {
padding-left: calc(var(--button-margin) * 2);
}
indicator {