-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.toml
More file actions
25 lines (22 loc) · 1.04 KB
/
plugin.toml
File metadata and controls
25 lines (22 loc) · 1.04 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
[plugin]
name = "example-plugin" # Unique plugin ID
display_name = "Example Plugin" # Display name shown in UI
version = "1.0.0" # Plugin version
author = "Your Name" # Plugin author
description = "An example plugin template for TimeTracker"
repository = "https://github.com/your-username/your-plugin-name"
license = "MIT"
api_version = "1.0" # Plugin API version
min_core_version = "0.3.0" # Minimum required TimeTracker version
max_core_version = "1.0.0" # Maximum supported TimeTracker version
[backend]
library_name = "example_plugin_backend" # Library name (must match actual compiled library filename, e.g., "example_plugin_backend.dll" on Windows)
[frontend]
entry = "frontend/index.js" # Path to compiled JavaScript bundle
components = ["ExampleSettings"] # Exported React component names
[build]
targets = [
"x86_64-pc-windows-msvc",
"x86_64-apple-darwin",
"x86_64-unknown-linux-gnu"
]