0.19.10 • Published 6 months ago

orgnote-api v0.19.10

Weekly downloads
-
License
GPL-3.0-or-later
Repository
github
Last release
6 months ago

Table of Contents

  1. Introduction
  2. Connected links
  3. Extension structure
    1. Folder structure
    2. Extension entrypoint
    3. Extension manifest
    4. Extension API
  4. Publish to official repository
  5. Extensions example
  6. 🍩 Contribute guide

 

Introduction

This is API for OrgNote extensions.

Warning This API is not stable yet, so it can be changed in the future.

You can find all available methods here. They are currently undocumented.

Connected links

Extension structure

Folder structure

Compiled extension should be placed in the index.js file or /dist/index.js file in the public GIT repository

Extension entrypoint

Each extension should export an object by default with the following structure:

interface Extension {
  [key: string]: unknown;

  onMounted: (api: OrgNoteApi) => Promise<void>;
  onUnmounted?: (api: OrgNoteApi) => Promise<void>;
}

You can find available methods of OrgNoteApi here

Extension manifest

Also, each extension should export manifest const:

interface ExtensionManifest {
  /* Should be unique in the extension repo */
  name: string;
  version: string;
  category: 'theme' | 'extension' | 'language pack' | 'other';
  /* OrgNote api semver, 0.13.4 for example */
  apiVersion?: string;
  author?: string;
  description?: string;
  keywords?: string[];
  // Repository url
  sourceType: 'git' | 'file' | 'builtin';
  /* Default value is README.org */
  readmeFilePath?: string;
  /* WIP */
  permissions?: Array<'files' | 'personal info' | '*' | 'third party'>;
  reloadRequired?: boolean;
  sourceUrl?: string;
  sponsor?: string[];
  development?: boolean;
  icon?: string;
}

Extension API

Publish to official repository

OrgNote has an official repository for user-based extensions. You can easily add new recipes/<package>.json with ExtensionManifest

Extensions example

Themes

UI

🍩 Contribute guide

Any contribution is very much appreciated! Please read the style guide before contributing to avoid misunderstandings! I would also appreciate it if you would consider becoming my patron

0.19.8

6 months ago

0.19.9

6 months ago

0.19.5

7 months ago

0.19.7

6 months ago

0.19.10

6 months ago

0.19.4

8 months ago

0.17.2

9 months ago

0.17.3

9 months ago

0.17.4

9 months ago

0.17.5

9 months ago

0.17.6

9 months ago

0.17.0

9 months ago

0.17.1

9 months ago

0.18.1

9 months ago

0.18.2

9 months ago

0.14.2

10 months ago

0.18.0

9 months ago

0.19.0

8 months ago

0.19.1

8 months ago

0.19.2

8 months ago

0.19.3

8 months ago

0.15.0

9 months ago

0.15.1

9 months ago

0.15.2

9 months ago

0.15.3

9 months ago

0.16.0

9 months ago

0.8.4

1 year ago

0.11.0

10 months ago

0.11.1

10 months ago

0.13.0

10 months ago

0.11.2

10 months ago

0.13.1

10 months ago

0.11.3

10 months ago

0.10.9

11 months ago

0.10.1

11 months ago

0.12.0

10 months ago

0.10.2

11 months ago

0.12.1

10 months ago

0.10.3

11 months ago

0.12.2

10 months ago

0.14.0

10 months ago

0.10.4

11 months ago

0.12.3

10 months ago

0.14.1

10 months ago

0.10.5

11 months ago

0.10.6

11 months ago

0.10.7

11 months ago

0.10.8

11 months ago

0.10.0

11 months ago

0.8.3

1 year ago

0.8.3-beta.2

1 year ago

0.8.3-beta.1

1 year ago

0.8.2-beta.0

1 year ago

0.8.2-beta.1

1 year ago

0.8.1

1 year ago

0.8.0

1 year ago

0.8.2

1 year ago

0.7.17

1 year ago

0.7.15

1 year ago

0.7.16

1 year ago

0.7.14

1 year ago

0.7.10

1 year ago

0.7.13

1 year ago

0.7.12

1 year ago

0.7.9

1 year ago

0.7.6

1 year ago

0.7.5

1 year ago

0.7.8

1 year ago

0.7.7

1 year ago

0.7.2

1 year ago

0.7.1

1 year ago

0.7.4

1 year ago

0.7.3

1 year ago

0.7.0

1 year ago

0.6.1

1 year ago

0.6.0

1 year ago

0.5.0

1 year ago

0.4.1

1 year ago

0.4.0

1 year ago

0.3.0

1 year ago

0.2.2

1 year ago

0.2.1

1 year ago

0.2.0

1 year ago

0.1.6

1 year ago

0.1.0

1 year ago

0.1.2

1 year ago

0.1.1

1 year ago

0.1.4

1 year ago

0.1.3

1 year ago

0.1.5

1 year ago

0.0.22

1 year ago

0.0.21

1 year ago

0.0.20

1 year ago

0.0.19

1 year ago

0.0.17

1 year ago

0.0.16

1 year ago

0.0.15

1 year ago

0.0.14

1 year ago

0.0.13

1 year ago

0.0.12

1 year ago

0.0.11

1 year ago

0.0.10

1 year ago

0.0.9

1 year ago

0.0.8

1 year ago

0.0.6

1 year ago

0.0.5

1 year ago

0.0.4

1 year ago