40 lines
1.6 KiB
Zig
40 lines
1.6 KiB
Zig
.{
|
|
.id = "dev.native_sdk.markdown_viewer",
|
|
.name = "markdown-viewer",
|
|
.display_name = "Markdown Viewer",
|
|
.description = "A native markdown reader with GPU-rendered text.",
|
|
.version = "0.1.0",
|
|
.platforms = .{"macos"},
|
|
.permissions = .{ "view", "command" },
|
|
.capabilities = .{ "native_views", "gpu_surfaces" },
|
|
.shell = .{
|
|
.windows = .{
|
|
.{
|
|
.label = "main",
|
|
.title = "Native SDK Markdown",
|
|
.width = 1200,
|
|
.height = 760,
|
|
// The floor the layout audit sweep proves clean
|
|
// (sidebar + editor + preview panes): the window stops
|
|
// resizing here instead of clipping the panes below it.
|
|
.min_width = 960,
|
|
.min_height = 560,
|
|
.restore_state = false,
|
|
.restore_policy = "center_on_primary",
|
|
.titlebar = "hidden_inset_tall",
|
|
.views = .{
|
|
.{ .label = "viewer-canvas", .kind = "gpu_surface", .fill = true, .role = "Markdown viewer canvas", .accessibility_label = "Markdown viewer", .gpu_backend = "metal", .gpu_pixel_format = "bgra8_unorm", .gpu_present_mode = "timer", .gpu_alpha_mode = "opaque", .gpu_color_space = "srgb", .gpu_vsync = true },
|
|
},
|
|
},
|
|
},
|
|
},
|
|
.security = .{
|
|
.navigation = .{
|
|
.allowed_origins = .{ "zero://app", "zero://inline" },
|
|
.external_links = .{ .action = "deny" },
|
|
},
|
|
},
|
|
.web_engine = "system",
|
|
.cef = .{ .dir = "third_party/cef/macos", .auto_install = false },
|
|
}
|