Commit Graph

4 Commits (2601082c8069de21f1146df028bf7080679b2fc1)

Author SHA1 Message Date
Mikael Finstad 2601082c80
improvements
- convert to esm
- upgrade electron-vite
- implement license check
- stricten ts
- remove fs-extra
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 25110122ef
simplify 8 months ago
Mikael Finstad a4190662b9
improve about dialog
closes #2138
2 years ago