Skip to content

Commit

Permalink
Commented inno script
Browse files Browse the repository at this point in the history
  • Loading branch information
GregoireHENRY committed Dec 14, 2023
1 parent 0c2343a commit 30f0e3a
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 12 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,8 @@ jobs:
mv bundle $BUNDLE_NAME
if [ "${{ matrix.os }}" == "windows-latest" ]; then
iscc compile/installer.iss /DVERSION=${{ github.ref_name }} /F"${{ env.RELEASE_FILE }}"
iscc /DVERSION=${{ github.ref_name }} compile/installer.iss
mv setup.exe $RELEASE_FILE
else
tar cvzf $RELEASE_FILE $BUNDLE_NAME
fi
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kalast"
version = "0.4.0-beta20"
version = "0.4.0-beta21"
authors = ["Grégoire Henry <gregoire.henry@oma.be>"]
edition = "2021"
description = "Thermophysical Model for Binary Asteroids"
Expand Down
7 changes: 6 additions & 1 deletion compile/installer.iss
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
; This inno script will bundle everything inside the relative folder bundle\
; Output installer file name should be given by command line /F"setup.exe"
; Assets are looked in relative folder assets\
; In particular, assets\vbanner-intro.bmp is looked for.

#define NAME "kalast"
#define URL "https://github.com/GregoireHENRY/kalast"
#define PUBLISHER "NT Productions"
Expand All @@ -16,7 +21,7 @@ DefaultDirName=C:\Program Files\{#NAME}
DefaultGroupName={#NAME}
DisableWelcomePage=no
OutputDir=.
; OutputBaseFilename={#SETUP_NAME}
OutputBaseFilename=setup.exe
Compression=lzma
SolidCompression=yes
WizardImageFile=assets\vbanner-intro.bmp
Expand Down
18 changes: 10 additions & 8 deletions examples/moon/cfg/cfg.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,32 +4,34 @@ window:
vmax: 500.0
scalar: temperature

spice:
kernels: .///.... .mk
frame: ECLIPJ2000

simulation:
routines: thermal
start: 2020......
step: 600
duration: 300672000
export:
step: 600
duration: 2505600
period: 30067200


scene:
sun:
position:
!cartesian [1.5e11, 0.0, 0.0]
!spice
camera:
position:
!cartesian [5.0, 0.0, 0.0]

bodies:
- id: didymos
mesh:
shape: sphere
- id: moon
material:
albedo: 0.1
albedo: 0.12
emissivity: 0.9
thermal_inertia: 100.0
thermal_inertia: 55.0
density: 1800.0
heat_capacity: 600.0
spin:
Expand All @@ -41,4 +43,4 @@ bodies:
a: 2e-2
color: data
record:
columns: [114]
column: [114, 115, 116]

0 comments on commit 30f0e3a

Please sign in to comment.