forked from OctoconDev/app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconveyor.conf
More file actions
47 lines (35 loc) · 1.51 KB
/
Copy pathconveyor.conf
File metadata and controls
47 lines (35 loc) · 1.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// This is a hashbang include. You can run the command after the #! to see what
// configuration is being extracted from the Gradle build using the Conveyor plugin.
include "#!./gradlew -q desktopApp:printConveyorConfig"
include required("https://raw.githubusercontent.com/hydraulic-software/conveyor/master/configs/jvm/extract-native-libraries.conf")
// Config file documentation: https://conveyor.hydraulic.dev/latest/configs
app {
// The base URL is where the download site will be placed. Packages will check here for updates.
site.base-url = "localhost:3000"
// This is optional. If not specified the last component of the rdns name will be turned into a display name.
vendor = "Azyyyyyy"
display-name = "Interfold"
fsname = "interfold"
// A global identifier for the app.
rdns-name = "app.interfold.app"
// Use the Compose logo as an icon and include it so we can pass it to the Window constructor.
icons = icon.svg
windows.inputs += TASK/rendered-icons/windows
linux.inputs += TASK/rendered-icons/linux
// For iteration speed. Remove for release.
compression-level = low
// Check for and apply updates synchronously on every app launch instead of in the background.
// updates = aggressive
license = "MIT"
vcs-url = "https://github.com/Azyyyyyy/Interfold-app"
// Proguard fixes
inputs = [{
from = desktopApp/build/compose/tmp/main-release/proguard
remap = [
"**"
"-skiko-awt-runtime-*.jar"
]
}]
// TODO: Copy stuff from output
}
conveyor.compatibility-level = 17