Skip to content

The official collection of extensions for the Orgnote app

License

Notifications You must be signed in to change notification settings

Galaxy-Kit/orgnote-extensions

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

✨ Org Note. Extensions collection

 
Buy Me A Coffee donate button Patreon donate button wakatime
Twitter link Mastodon Follow Discord YouTube Channel Views

Introduction

This is the official repository for containing extensions for OrgNote application. You are free to add a new extension by creating PR.

WARNING *OrgNote is currently in the beta stage. API may be changed in the future*

Connected links

Contribution guide

  • Fork repository.
  • Create new .json file in the recipes folder with next structure (typescript type): This structure could be updated, see NPM package for OrgNote API for more information.
export 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';
  /* 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;
}

See more example in the https://github.com/artawower/orgnote-extensions/tree/master/recipes directory.

How to update version of the application.

./update-version.sh

About

The official collection of extensions for the Orgnote app

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published