Skip to content

Commit a873f58

Browse files
Add org.commdesk.CommDesk.json configuration file for application setup
1 parent 3b822d9 commit a873f58

2 files changed

Lines changed: 41 additions & 1 deletion

File tree

org.commdesk.CommDesk.json

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
{
2+
"app-id": "org.commdesk.CommDesk",
3+
"runtime": "org.freedesktop.Platform",
4+
"runtime-version": "23.08",
5+
"sdk": "org.freedesktop.Sdk",
6+
"sdk-extensions": [
7+
"org.freedesktop.Sdk.Extension.rust-stable",
8+
"org.freedesktop.Sdk.Extension.node20"
9+
],
10+
"command": "commdesk",
11+
"finish-args": [
12+
"--share=network",
13+
"--socket=x11",
14+
"--socket=wayland",
15+
"--share=ipc",
16+
"--filesystem=home"
17+
],
18+
"build-options": {
19+
"append-path": "/usr/lib/sdk/rust-stable/bin:/usr/lib/sdk/node20/bin"
20+
},
21+
"modules": [
22+
{
23+
"name": "commdesk",
24+
"buildsystem": "simple",
25+
"build-commands": [
26+
"npm install",
27+
"npm run build",
28+
"cargo build --manifest-path src-tauri/Cargo.toml --release",
29+
"install -Dm755 src-tauri/target/release/apex-circle-dasktop-application /app/bin/commdesk"
30+
],
31+
"sources": [
32+
{
33+
"type": "dir",
34+
"path": "."
35+
}
36+
]
37+
}
38+
]
39+
}

src/types/markdown-to-jsx.d.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ declare module "markdown-to-jsx" {
2121
};
2222

2323
export default function Markdown(props: MarkdownProps): React.ReactElement;
24-
}declare module "markdown-to-jsx" {
24+
}
25+
declare module "markdown-to-jsx" {
2526
import type { ComponentType, ReactElement } from "react";
2627

2728
export type MarkdownToJsxOverride = {

0 commit comments

Comments
 (0)