Commit Graph

5 Commits (master)

Author SHA1 Message Date
Mikael Finstad 260107c3c2
improve docs 6 months ago
Mikael Finstad 260107c96e
Introduce template variable `FILES`
...for all templates.
It is a list of SourceFile objects.

```ts
interface SourceFile {
  name: string, // The file's name without the file system path
  path: string, // The full filesystem path of the file
  size?: number | bigint, // File size in bytes
  // All times are expressed in milliseconds since the POSIX Epoch:
  atime?: number, // The timestamp indicating the last time this file was accessed.
  mtime?: number, // The timestamp indicating the last time this file was modified.
  ctime?: number, // The timestamp indicating the last time the file status was changed.
  birthtime?: number, // The timestamp indicating the creation time of this file.
}
```

closes #2694

also refactor a bit
6 months ago
Mikael Finstad 2601072308
document js expr 6 months ago
Mikael Finstad 06cae06f4b
allow editing segments by js expression
closes #2128 #2305
1 year ago
Mikael Finstad ec3e626693
use js expressions instead of mathjs #2002 2 years ago