Compare commits
86 Commits
Implement/
...
xthursdayx
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
15b648f401 | ||
|
|
99a4db465a | ||
|
|
d39c1c98e5 | ||
|
|
d3398ce58f | ||
|
|
d77d670f43 | ||
|
|
d1a71cfc4d | ||
|
|
45997708a4 | ||
|
|
1e19d49893 | ||
|
|
d97b68aac3 | ||
|
|
4b8ed6a3a2 | ||
|
|
b7e5a80b21 | ||
|
|
efb8542906 | ||
|
|
7d0da672ce | ||
|
|
ddc406201c | ||
|
|
fd0fb8dde8 | ||
|
|
4a1170a966 | ||
|
|
ddfd775929 | ||
|
|
afba79e028 | ||
|
|
d154d58627 | ||
|
|
202e5b4684 | ||
|
|
917fd245ab | ||
|
|
2c180bbb16 | ||
|
|
ebb8e01256 | ||
|
|
59ed0776a5 | ||
|
|
956216018b | ||
|
|
d888c602de | ||
|
|
cd0df78764 | ||
|
|
b4d1e790c1 | ||
|
|
560f5c489d | ||
|
|
9dfb033aa0 | ||
|
|
c8b2091418 | ||
|
|
53a41356cb | ||
|
|
1b187b6abf | ||
|
|
5fef83e952 | ||
|
|
69f016a8c9 | ||
|
|
f68afc4898 | ||
|
|
80efbfdcce | ||
|
|
cffa7bec11 | ||
|
|
08f38d5879 | ||
|
|
038d64265a | ||
|
|
a6afc346a9 | ||
|
|
217002df77 | ||
|
|
6fd0781fca | ||
|
|
ae7eef1fcb | ||
|
|
4b0c493006 | ||
|
|
c304012b23 | ||
|
|
d1c228a5ee | ||
|
|
c635ef6e01 | ||
|
|
6b6f154b3b | ||
|
|
ae24ae7a06 | ||
|
|
a5b053039b | ||
|
|
cdefc536f2 | ||
|
|
864efed094 | ||
|
|
04d7908a6b | ||
|
|
d71af343f9 | ||
|
|
38db7f0c51 | ||
|
|
ea8efa6bf4 | ||
|
|
d2ed317428 | ||
|
|
dbbd513b0d | ||
|
|
5ee162e73d | ||
|
|
277f0c9aa9 | ||
|
|
a7dd93c544 | ||
|
|
9eaba2560a | ||
|
|
0bb80bccad | ||
|
|
048cdeeec3 | ||
|
|
8a43b5cdf6 | ||
|
|
9fce87ccd9 | ||
|
|
1f5efa313a | ||
|
|
4b01764cbe | ||
|
|
40f0b317a6 | ||
|
|
7184f2aa8e | ||
|
|
c7571a512b | ||
|
|
6fad3014ac | ||
|
|
0f77588aa2 | ||
|
|
51d2c75ec5 | ||
|
|
33e266ad07 | ||
|
|
fd9d462e68 | ||
|
|
769831a64c | ||
|
|
1359ddaeec | ||
|
|
7efd5a94fe | ||
|
|
405c5ee6a3 | ||
|
|
4caa7e7952 | ||
|
|
9b2e61d942 | ||
|
|
9678fa3e53 | ||
|
|
08c54f8336 | ||
|
|
f96348e598 |
22
.github/workflows/publish.yaml
vendored
Normal file
22
.github/workflows/publish.yaml
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
name: Publish container
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
workflow_dispatch:
|
||||
jobs:
|
||||
publish:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Login to Docker Hub
|
||||
uses: docker/login-action@v1
|
||||
with:
|
||||
username: ${{ secrets.DOCKER_HUB_TOKEN }}
|
||||
password: ${{ secrets.DOCKER_HUB_TOKEN }}
|
||||
- name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v1
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v1
|
||||
- name: Publish container to Docker Hub
|
||||
run: docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7,linux/arm/v6 --tag "mtoohey/standardnotes-extensions:$(git log -1 --format="%H" | cut -c -6)" --tag mtoohey/standardnotes-extensions:latest --push .
|
||||
8
Dockerfile
Normal file
8
Dockerfile
Normal file
@@ -0,0 +1,8 @@
|
||||
FROM python:3-alpine
|
||||
|
||||
WORKDIR /build
|
||||
COPY requirements.txt build_repo.py ./
|
||||
|
||||
RUN pip3 install --no-cache-dir -r requirements.txt
|
||||
|
||||
ENTRYPOINT ["python3", "build_repo.py"]
|
||||
67
README.md
67
README.md
@@ -1,4 +1,4 @@
|
||||
<img alt="Standard Notes Extension" src="../assets/standardnotes.png?raw=true"/>
|
||||

|
||||
|
||||
## Standard Notes Extensions - Self-Hosted Repository
|
||||
Host Standard Notes extensions on your own server. This utility parses most of the open-source extensions available from original repository as well as from other authors and builds an extensions repository which then can be plugged directly into Standard Notes Web/Desktop Clients. (https://standardnotes.org/)
|
||||
@@ -10,9 +10,14 @@ Extensions are listed as YAML in the `\extensions` sub-directory, pull a request
|
||||
* pyyaml module
|
||||
* requests module
|
||||
|
||||
### Demo
|
||||
<p align="center">
|
||||
<img alt="Standard Notes Extension Repository Demo" src="https://github.com/iganeshk/standardnotes-extensions/raw/assets/standardnotes_demo.gif" width="80%" />
|
||||
</p>
|
||||
|
||||
### Usage
|
||||
|
||||
* Fork this repository to the web-server:
|
||||
* Clone this repository to the web-server:
|
||||
|
||||
```bash
|
||||
$ git clone https://github.com/iganeshk/standardnotes-extensions.git
|
||||
@@ -46,7 +51,7 @@ github:
|
||||
* Run the utility:
|
||||
|
||||
```bash
|
||||
$ python3 build-repo.py
|
||||
$ python3 build_repo.py
|
||||
```
|
||||
* Serve the `/public` directory and verify if the endpoint is reachable.
|
||||
|
||||
@@ -55,6 +60,56 @@ https://your-domain.com/extensions/index.json
|
||||
```
|
||||
* Import the above endpoint into the web/desktop client. (Note: Enable CORS for your web server respectively, nginx setup provided below)
|
||||
|
||||
### Docker
|
||||
|
||||
* To via Docker, clone the repository, set up the .env file, and optionally modify the `extensions` directory, following the instructions above.
|
||||
* Then pull and run run the container, specifying the mount points for the `.env` file, the `extensions` directory, and the `public` directory, where the output will be placed:
|
||||
|
||||
```bash
|
||||
$ docker run \
|
||||
-v $PWD/.env:/build/.env \
|
||||
-v $PWD/extensions:/build/extensions \
|
||||
-v $PWD/public:/build/public \
|
||||
mtoohey/standardnotes-extensions
|
||||
```
|
||||
|
||||
#### Docker Compose
|
||||
|
||||
If you would like to use the container with docker-compose, the exact setup will be somewhat specific to your configuration, however the following snippet may be helpful, assuming you have cloned this repository in your `$HOME` directory and followed the instructions regarding the .env file and `extensions` directory:
|
||||
|
||||
```yaml
|
||||
version: '3.3'
|
||||
services:
|
||||
nginx:
|
||||
...
|
||||
volumes:
|
||||
- standardnotes-extensions:/usr/share/nginx/html
|
||||
|
||||
standardnotes-extensions:
|
||||
image: mtoohey/standardnotes-extensions
|
||||
restart: "no"
|
||||
volumes:
|
||||
- $HOME/standardnotes-extensions/.env:/build/.env
|
||||
- $HOME/standardnotes-extensions/extensions:/build/extensions
|
||||
- standardnotes-extensions:/build/public
|
||||
|
||||
volumes:
|
||||
standardnotes-extensions:
|
||||
name: standardnotes-extensions
|
||||
```
|
||||
|
||||
This snippet will handle the building of the extension creation-container, and place the result in the `standardnotes-extensions` volume, which can then be mounted in the nginx container so that it can be served as demonstrated in the instructions below. Note that it's necessary to include the `restart: "no"` flag, because the container is designed to stop after it has finished generating the extensions.
|
||||
|
||||
Also, please note that the configuration snippet above is in no way a complete setup: you will still have to configure the nginx container and set up the syncing server containers.
|
||||
|
||||
### Docker Build
|
||||
|
||||
If you need to build the container, clone this repository, `cd` into it, and run the following command:
|
||||
|
||||
```bash
|
||||
$ docker build -t standardnotes-extensions .
|
||||
```
|
||||
|
||||
### Setup with nginx
|
||||
|
||||
```nginx
|
||||
@@ -93,7 +148,7 @@ https://your-domain.com/extensions/index.json
|
||||
```
|
||||
|
||||
### Acknowledgments
|
||||
* This project was adapted from https://github.com/JokerQyou/snextensions to facilitate on-the-fly updating of extensions.
|
||||
* Dracula Theme by https://github.com/cameronldn
|
||||
* This project was adapted originally from https://github.com/JokerQyou/snextensions
|
||||
* Check out https://github.com/jonhadfield/awesome-standard-notes for more Standard Notes stuff!
|
||||
* Authors of custom themes and extensions
|
||||
|
||||
### ToDo
|
||||
|
||||
@@ -30,8 +30,7 @@ def get_environment(base_dir):
|
||||
github:
|
||||
username:
|
||||
token:
|
||||
""",
|
||||
Loader=yaml.FullLoader)
|
||||
""", Loader=yaml.FullLoader)
|
||||
if os.path.isfile(os.path.join(base_dir, ".env")):
|
||||
with open(os.path.join(base_dir, ".env")) as temp_env_file:
|
||||
temp_envvar = yaml.load(temp_env_file, Loader=yaml.FullLoader)
|
||||
@@ -128,15 +127,9 @@ def parse_extensions(base_dir, base_url, ghub_session):
|
||||
os.chdir(public_dir)
|
||||
|
||||
extensions = []
|
||||
# Read and parse all extension info
|
||||
|
||||
# for extfiles in sorted(os.listdir(extension_dir)):
|
||||
# if not extfiles.endswith('.yaml'):
|
||||
# continue
|
||||
|
||||
# Get all extensions, sort extensions alphabetically along by their by type
|
||||
extfiles = [ x for x in sorted(os.listdir(extension_dir)) if not x.endswith('theme.yaml') and x.endswith('.yaml')]
|
||||
themefiles = [ x for x in sorted(os.listdir(extension_dir)) if x.endswith('theme.yaml')]
|
||||
extfiles = [x for x in sorted(os.listdir(extension_dir)) if not x.endswith('theme.yaml') and x.endswith('.yaml')]
|
||||
themefiles = [x for x in sorted(os.listdir(extension_dir)) if x.endswith('theme.yaml')]
|
||||
extfiles.extend(themefiles)
|
||||
|
||||
for extfile in extfiles:
|
||||
@@ -146,7 +139,7 @@ def parse_extensions(base_dir, base_url, ghub_session):
|
||||
repo_name = ext_yaml['github'].split('/')[-1]
|
||||
repo_dir = os.path.join(public_dir, repo_name)
|
||||
|
||||
# If we don't have a Github API Sesssion, do git-clone instead
|
||||
# If we don't have a Github API Session, do git-clone instead
|
||||
if ghub_session is not None:
|
||||
# Get extension's github release meta-data
|
||||
ext_git_info = json.loads(
|
||||
@@ -161,10 +154,10 @@ def parse_extensions(base_dir, base_url, ghub_session):
|
||||
"Error: Unable to update %s (%s) does it have a release at Github?"
|
||||
% (ext_yaml['name'], extfile))
|
||||
continue
|
||||
# Check if extension directory alredy exists
|
||||
# Check if extension directory already exists
|
||||
if not os.path.exists(repo_dir):
|
||||
os.makedirs(repo_dir)
|
||||
# Check if extension with current release alredy exists
|
||||
# Check if extension with current release already exists
|
||||
if not os.path.exists(os.path.join(repo_dir, ext_version)):
|
||||
ext_has_update = True
|
||||
os.makedirs(os.path.join(repo_dir, ext_version))
|
||||
@@ -213,7 +206,7 @@ def parse_extensions(base_dir, base_url, ghub_session):
|
||||
'w') as ext_json:
|
||||
json.dump(extension, ext_json, indent=4)
|
||||
if extfile.endswith("theme.yaml"):
|
||||
print('Theme: {:30s} {:6s}\t(updated)'.format(
|
||||
print('Theme: {:34s} {:6s}\t(updated)'.format(
|
||||
ext_yaml['name'], ext_version))
|
||||
else:
|
||||
print('Extension: {:30s} {:6s}\t(updated)'.format(
|
||||
@@ -221,7 +214,7 @@ def parse_extensions(base_dir, base_url, ghub_session):
|
||||
else:
|
||||
# ext already up-to-date
|
||||
if extfile.endswith("theme.yaml"):
|
||||
print('Theme: {:30s} {:6s}\t(already up-to-date)'.format(
|
||||
print('Theme: {:34s} {:6s}\t(already up-to-date)'.format(
|
||||
ext_yaml['name'], ext_version))
|
||||
else:
|
||||
print('Extension: {:30s} {:6s}\t(already up-to-date)'.format(
|
||||
@@ -231,6 +224,7 @@ def parse_extensions(base_dir, base_url, ghub_session):
|
||||
os.chdir('..')
|
||||
|
||||
# Generate the main repository index JSON
|
||||
# https://domain.com/sub-domain/my-index.json
|
||||
with open(os.path.join(public_dir, 'index.json'), 'w') as ext_json:
|
||||
json.dump(
|
||||
dict(
|
||||
@@ -241,7 +235,8 @@ def parse_extensions(base_dir, base_url, ghub_session):
|
||||
ext_json,
|
||||
indent=4,
|
||||
)
|
||||
|
||||
print("\nProcessed: {:20s}{} extensions. (Components: {}, Themes: {})".format("", len(extfiles), len(extfiles)-len(themefiles), len(themefiles)))
|
||||
print("Repository Endpoint URL: {:6s}{}/index.json".format("", base_url))
|
||||
|
||||
def main():
|
||||
"""
|
||||
@@ -268,7 +263,7 @@ def main():
|
||||
)
|
||||
sys.exit(1)
|
||||
except Exception as e:
|
||||
print("Unknown error occured: %s" % e)
|
||||
print("Unknown error occurred: %s" % e)
|
||||
# Build extensions
|
||||
parse_extensions(base_dir, base_url, ghub_session)
|
||||
# Terminate Session
|
||||
@@ -276,7 +271,7 @@ def main():
|
||||
else:
|
||||
# Environment file missing
|
||||
print(
|
||||
"Environment variables not set (read env.sample). Using Git Clone method instead"
|
||||
"Environment variables not set (have a look at env.sample). Using Git Clone method instead"
|
||||
)
|
||||
input(
|
||||
"⚠️ this is an in-efficient process, Press any key to continue:\n")
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: org.standardnotes.action-bar
|
||||
npm: sn-action-bar
|
||||
github: sn-extensions/action-bar
|
||||
github: standardnotes/action-bar
|
||||
main: index.html
|
||||
|
||||
name: Action Bar
|
||||
name: ActionBar
|
||||
content_type: SN|Component
|
||||
area: editor-stack
|
||||
version: 1.3.0
|
||||
version: 1.3.2
|
||||
marketing_url: https://standardnotes.org/extensions/action-bar
|
||||
thumbnail_url: https://s3.amazonaws.com/standard-notes/screenshots/models/components/action-bar.jpg
|
||||
description: Useful utility bar with information about the current note as well as actions like duplicate, copy, and save.
|
||||
|
||||
@@ -1,16 +1,17 @@
|
||||
---
|
||||
id: org.standardnotes.theme-autobiography
|
||||
npm: sn-theme-autobiography
|
||||
github: sn-extensions/autobiography-theme
|
||||
github: standardnotes/autobiography-theme
|
||||
main: dist/dist.css
|
||||
|
||||
name: Autobiography
|
||||
content_type: SN|Theme
|
||||
area: themes
|
||||
version: 1.0.0
|
||||
version: 1.0.1
|
||||
thumbnail_url: https://s3.amazonaws.com/standard-notes/screenshots/models/themes/autobiography.jpg
|
||||
description: A theme for writers and readers.
|
||||
|
||||
statusBar: dark-content
|
||||
dock_icon:
|
||||
type: circle
|
||||
background_color: '#9D7441'
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: org.standardnotes.autocomplete-tags
|
||||
npm: sn-folders-component
|
||||
github: sn-extensions/autocomplete-tags
|
||||
github: standardnotes/quick-tags
|
||||
main: index.html
|
||||
|
||||
name: Quick Tags
|
||||
content_type: SN|Component
|
||||
area: note-tags
|
||||
version: 1.3.1
|
||||
version: 1.3.2
|
||||
description: Work more efficiently by quickly selecting from a live list of tags while you type. Supports keyboard shortcuts and folders.
|
||||
thumbnail_url: https://s3.amazonaws.com/standard-notes/screenshots/models/components/autocomplete.jpg
|
||||
...
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: org.standardnotes.bold-editor
|
||||
npm: sn-bold-editor
|
||||
github: sn-extensions/bold-editor
|
||||
github: standardnotes/bold-editor
|
||||
main: dist/index.html
|
||||
|
||||
name: Bold Editor
|
||||
content_type: SN|Component
|
||||
area: editor-editor
|
||||
version: 1.0.5
|
||||
version: 1.2.1
|
||||
marketing_url:
|
||||
thumbnail_url: https://s3.amazonaws.com/standard-notes/screenshots/models/editors/bold.jpg
|
||||
description: A simple and peaceful rich editor that helps you write and think clearly. Features FileSafe integration, so you can embed your encrypted images, videos, and audio recordings directly inline.
|
||||
|
||||
20
extensions/callisto-theme.yaml
Normal file
20
extensions/callisto-theme.yaml
Normal file
@@ -0,0 +1,20 @@
|
||||
---
|
||||
id: io.github.Lissy93.sn-callisto-theme
|
||||
github: Lissy93/callisto-theme-standard-notes
|
||||
main: dist/dist.css
|
||||
|
||||
name: Callisto
|
||||
content_type: SN|Theme
|
||||
area: themes
|
||||
version: 1.0.3
|
||||
marketing_url: https://github.com/Lissy93/callisto-theme-standard-notes
|
||||
thumbnail_url: https://raw.githubusercontent.com/Lissy93/callisto-theme-standard-notes/master/screenshot1.png
|
||||
description: Dusty background with teal accents.
|
||||
|
||||
statusBar: dark-content
|
||||
dock_icon:
|
||||
type: circle
|
||||
background_color: '#0b1021'
|
||||
foreground_color: '#d6085a'
|
||||
border_color: '#1EE3B5'
|
||||
...
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: org.standardnotes.code-editor
|
||||
npm: sn-code-editor
|
||||
github: sn-extensions/code-editor
|
||||
github: standardnotes/code-editor
|
||||
main: index.html
|
||||
|
||||
name: Code Editor
|
||||
content_type: SN|Component
|
||||
area: editor-editor
|
||||
version: 1.3.3
|
||||
version: 1.3.8
|
||||
marketing_url: https://standardnotes.org/extensions/code-editor
|
||||
thumbnail_url: https://s3.amazonaws.com/standard-notes/screenshots/models/editors/code.jpg
|
||||
description: Syntax highlighting and convenient keyboard shortcuts for over 120 programming languages. Ideal for code snippets and procedures.
|
||||
|
||||
20
extensions/dark-hybrid-theme.yaml
Normal file
20
extensions/dark-hybrid-theme.yaml
Normal file
@@ -0,0 +1,20 @@
|
||||
---
|
||||
id: com.github.dark-hybrid-theme-sn
|
||||
github: jakecza/dark-hybrid-theme-sn
|
||||
main: dist/dist.css
|
||||
|
||||
name: Dark Hybrid
|
||||
content_type: SN|Theme
|
||||
area: themes
|
||||
version: 1.1
|
||||
marketing_url: https://github.com/jakecza/dark-hybrid-theme-sn
|
||||
thumbnail_url: https://raw.githubusercontent.com/jakecza/dark-hybrid-theme-sn/master/preview.png
|
||||
description: Dark hybrid theme for Standard Notes.
|
||||
|
||||
statusBar: dark-content
|
||||
dock_icon:
|
||||
type: circle
|
||||
background_color: '#726a7b'
|
||||
foreground_color: '#ffffff'
|
||||
border_color: '#726a7b'
|
||||
...
|
||||
@@ -1,19 +1,20 @@
|
||||
---
|
||||
id: dev.cldn.sn-theme-dracula
|
||||
github: cameronldn/sn-theme-dracula
|
||||
id: ml.xnor.sn-theme-dracula
|
||||
github: dracula/standard-notes
|
||||
main: dist/dist.css
|
||||
|
||||
name: Dracula
|
||||
content_type: SN|Theme
|
||||
area: themes
|
||||
version: 1.2.1
|
||||
marketing_url: https://github.com/cameronldn/sn-theme-dracula
|
||||
thumbnail_url: https://raw.githubusercontent.com/cameronldn/sn-theme-dracula/master/preview.png
|
||||
version: 0.0.17
|
||||
marketing_url: https://github.com/dracula/standard-notes
|
||||
thumbnail_url: https://raw.githubusercontent.com/dracula/standard-notes/master/screenshot.png
|
||||
description: A Dracula inspired theme for Standard Notes.
|
||||
|
||||
statusBar: dark-content
|
||||
dock_icon:
|
||||
type: circle
|
||||
background_color: '#8be9fd'
|
||||
foreground_color: '#8be9fd'
|
||||
border_color: '#8be9fd'
|
||||
background_color: '#bd93f9'
|
||||
foreground_color: '#bd93f9'
|
||||
border_color: '#bd93f9'
|
||||
...
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: org.standardnotes.theme-dynamic
|
||||
npm: sn-theme-dynamic
|
||||
github: sn-extensions/dynamic-theme
|
||||
github: standardnotes/dynamic-theme
|
||||
main: dist/dist.css
|
||||
|
||||
name: Dynamic
|
||||
|
||||
20
extensions/evernote-dark-theme.yaml
Normal file
20
extensions/evernote-dark-theme.yaml
Normal file
@@ -0,0 +1,20 @@
|
||||
---
|
||||
id: io.github.xthursdayx.sn-theme-evernote-dark
|
||||
github: xthursdayx/sn-theme-evernote-dark
|
||||
main: dist/dist.css
|
||||
|
||||
name: Evernote-style Dark Theme
|
||||
content_type: SN|Theme
|
||||
area: themes
|
||||
version: 1.2.6
|
||||
marketing_url: https://github.com/xthursdayx/sn-theme-evernote-dark
|
||||
thumbnail_url: https://raw.githubusercontent.com/xthursdayx/sn-theme-evernote-dark/master/preview.png
|
||||
description: Evernote inspired dark theme for Standard Notes.
|
||||
|
||||
statusBar: dark-content
|
||||
dock_icon:
|
||||
type: circle
|
||||
background_color: '#00a82e'
|
||||
foreground_color: '#0081c2'
|
||||
border_color: '#00a82e'
|
||||
...
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: org.standardnotes.theme-focus
|
||||
npm: sn-theme-focus
|
||||
github: sn-extensions/focus-theme
|
||||
github: standardnotes/focus-theme
|
||||
main: dist/dist.css
|
||||
|
||||
name: Focus
|
||||
content_type: SN|Theme
|
||||
area: themes
|
||||
version: 1.2.3
|
||||
version: 1.2.5
|
||||
marketing_url: https://standardnotes.org/extensions/focused
|
||||
thumbnail_url: https://s3.amazonaws.com/standard-notes/screenshots/models/themes/focus-with-mobile.jpg
|
||||
description: For when you need to go in.
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: org.standardnotes.folders-component
|
||||
npm: sn-folders-component
|
||||
github: sn-extensions/folders-component
|
||||
npm: sn-folders
|
||||
github: standardnotes/folders-component
|
||||
main: index.html
|
||||
|
||||
name: Folders Component
|
||||
content_type: SN|Component
|
||||
area: tags-list
|
||||
version: 1.3.3
|
||||
version: 1.3.8
|
||||
description: Create nested folders from your tags with easy drag and drop. Folders also supports Smart Tags, which allow you to build custom filters for viewing your notes.
|
||||
thumbnail_url: https://s3.amazonaws.com/standard-notes/screenshots/models/components/folders.jpg
|
||||
...
|
||||
|
||||
@@ -1,17 +1,18 @@
|
||||
---
|
||||
id: org.standardnotes.theme-futura
|
||||
npm: sn-futura-theme
|
||||
github: sn-extensions/futura-theme
|
||||
github: standardnotes/futura-theme
|
||||
main: dist/dist.css
|
||||
|
||||
name: Futura
|
||||
content_type: SN|Theme
|
||||
area: themes
|
||||
version: 1.2.2
|
||||
version: 1.2.4
|
||||
marketing_url: https://standardnotes.org/extensions/futura
|
||||
thumbnail_url: https://s3.amazonaws.com/standard-notes/screenshots/models/themes/futura-with-mobile.jpg
|
||||
description: Calm and relaxed. Take some time off.
|
||||
|
||||
statusBar: dark-content
|
||||
dock_icon:
|
||||
type: circle
|
||||
background_color: '#fca429'
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: org.standardnotes.github-push
|
||||
npm: sn-github-push
|
||||
github: sn-extensions/github-push
|
||||
github: standardnotes/github-push
|
||||
main: index.html
|
||||
|
||||
name: GitHub Push
|
||||
content_type: SN|Component
|
||||
area: editor-stack
|
||||
version: 1.2.1
|
||||
version: 1.2.4
|
||||
marketing_url: https://standardnotes.org/extensions/github-push
|
||||
thumbnail_url: https://s3.amazonaws.com/standard-notes/screenshots/models/components/github-push.jpg
|
||||
description: Push note changes to a public or private GitHub repository, with options for file extension and commit message.
|
||||
|
||||
20
extensions/gruvbox-dark-theme.yaml
Normal file
20
extensions/gruvbox-dark-theme.yaml
Normal file
@@ -0,0 +1,20 @@
|
||||
---
|
||||
id: io.github.christianhans.sn-gruvbox-dark-theme
|
||||
github: christianhans/sn-gruvbox-dark-theme
|
||||
main: dist/dist.css
|
||||
|
||||
name: Gruvbox Dark Theme
|
||||
content_type: SN|Theme
|
||||
area: themes
|
||||
version: 0.0.16
|
||||
marketing_url: https://github.com/christianhans/sn-gruvbox-dark-theme
|
||||
thumbnail_url: https://raw.githubusercontent.com/christianhans/sn-gruvbox-dark-theme/master/preview.png
|
||||
description: Standard Notes theme based on colors from the gruvbox theme for Vim.
|
||||
|
||||
statusBar: dark-content
|
||||
dock_icon:
|
||||
type: circle
|
||||
background_color: '#D79921'
|
||||
foreground_color: '#076678'
|
||||
border_color: '#D79921'
|
||||
...
|
||||
20
extensions/horizon-dark-theme.yaml
Normal file
20
extensions/horizon-dark-theme.yaml
Normal file
@@ -0,0 +1,20 @@
|
||||
---
|
||||
id: org.github.shouhu21.sn-theme-horizon-dark
|
||||
github: shouhu21/sn-theme-horizon-dark
|
||||
main: dist/dist.css
|
||||
|
||||
name: Horizon Dark
|
||||
content_type: SN|Theme
|
||||
area: themes
|
||||
version: 1.0
|
||||
marketing_url: https://github.com/shouhu21/sn-theme-horizon-dark
|
||||
thumbnail_url: https://raw.githubusercontent.com/shouhu21/sn-theme-horizon-dark/main/preview.png
|
||||
description: Standard Notes theme based on colors from the Horizon theme for VSCode.
|
||||
|
||||
statusBar: dark-content
|
||||
dock_icon:
|
||||
type: circle
|
||||
background_color: '#1a1c23'
|
||||
foreground_color: '#fdf0ed'
|
||||
border_color: '#1a1c23'
|
||||
...
|
||||
20
extensions/less-distraction-theme.yaml
Normal file
20
extensions/less-distraction-theme.yaml
Normal file
@@ -0,0 +1,20 @@
|
||||
---
|
||||
id: io.github.xthursdayx.less-distraction
|
||||
github: xthursdayx/sn-less-distraction
|
||||
main: dist/dist.css
|
||||
|
||||
name: Less Distraction
|
||||
content_type: SN|Theme
|
||||
area: themes
|
||||
version: 1.2.4
|
||||
marketing_url: https://github.com/xthursdayx/sn-less-distraction
|
||||
thumbnail_url: https://raw.githubusercontent.com/xthursdayx/sn-less-distraction/master/screenshot.png
|
||||
description: A theme for focusing on your writing.
|
||||
|
||||
statusBar: dark-content
|
||||
dock_icon:
|
||||
type: circle
|
||||
background_color: '#FFFFFF'
|
||||
foreground_color: '#FFFFFF'
|
||||
border_color: '#FFFFFF'
|
||||
...
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: org.standardnotes.simple-markdown-editor
|
||||
npm: sn-simple-markdown-editor
|
||||
github: sn-extensions/simple-markdown-editor
|
||||
github: standardnotes/markdown-basic
|
||||
main: dist/index.html
|
||||
|
||||
name: Simple Markdown Editor
|
||||
content_type: SN|Component
|
||||
area: editor-editor
|
||||
version: 1.3.6
|
||||
version: 1.4.0
|
||||
marketing_url: https://standardnotes.org/extensions/simple-markdown-editor
|
||||
thumbnail_url: https://s3.amazonaws.com/standard-notes/screenshots/models/editors/simple-markdown.jpg
|
||||
description: A Markdown editor with dynamic split-pane preview.
|
||||
@@ -1,14 +1,14 @@
|
||||
---
|
||||
id: org.standardnotes.advanced-markdown-editor
|
||||
npm: sn-advanced-markdown-editor
|
||||
github: sn-extensions/advanced-markdown-editor
|
||||
main: index.html
|
||||
github: standardnotes/markdown-pro
|
||||
main: dist/index.html
|
||||
|
||||
name: Advanced Markdown Editor
|
||||
name: Markdown Pro
|
||||
content_type: SN|Component
|
||||
area: editor-editor
|
||||
version: 1.3.2
|
||||
marketing_url: https://standardnotes.org/extensions/advanced-markdown
|
||||
version: 1.3.14
|
||||
marketing_url: https://standardnotes.com/features/markdown-pro
|
||||
thumbnail_url: https://s3.amazonaws.com/standard-notes/screenshots/models/editors/adv-markdown.jpg
|
||||
description: A fully featured Markdown editor that supports live preview, a styling toolbar, and split pane support.
|
||||
flags: []
|
||||
20
extensions/material-theme.yaml
Normal file
20
extensions/material-theme.yaml
Normal file
@@ -0,0 +1,20 @@
|
||||
---
|
||||
id: io.github.xthursdayx.sn-material-theme
|
||||
github: xthursdayx/sn-theme-material
|
||||
main: dist/dist.css
|
||||
|
||||
name: Material Theme
|
||||
content_type: SN|Theme
|
||||
area: themes
|
||||
version: 1.0.6
|
||||
marketing_url: https://github.com/xthursdayx/sn-theme-material
|
||||
thumbnail_url: https://raw.githubusercontent.com/xthursdayx/sn-theme-material/master/screenshot.png
|
||||
description: Material Theme for Standard Notes.
|
||||
|
||||
statusBar: dark-content
|
||||
dock_icon:
|
||||
type: circle
|
||||
background_color: '#263238'
|
||||
foreground_color: '#FFFFFF'
|
||||
border_color: '#009688'
|
||||
...
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: org.standardnotes.fancy-markdown-editor
|
||||
npm: sn-fancy-markdown-editor
|
||||
github: sn-extensions/math-editor
|
||||
github: standardnotes/math-editor
|
||||
main: index.html
|
||||
|
||||
name: Math Editor
|
||||
content_type: SN|Component
|
||||
area: editor-editor
|
||||
version: 1.3.2
|
||||
version: 1.3.4
|
||||
marketing_url: https://standardnotes.org/extensions/math-editor
|
||||
thumbnail_url: https://s3.amazonaws.com/standard-notes/screenshots/models/editors/fancy-markdown.jpg
|
||||
description: A beautiful split-pane Markdown editor with synced-scroll and LaTeX support. When LaTeX is detected, makes external render network request.
|
||||
12
extensions/mfa-link.yaml
Normal file
12
extensions/mfa-link.yaml
Normal file
@@ -0,0 +1,12 @@
|
||||
---
|
||||
id: org.standardnotes.mfa-link
|
||||
npm: sn-mfa-link
|
||||
github: standardnotes/mfa-link
|
||||
main: dist/index.html
|
||||
|
||||
name: 2FA Manager
|
||||
content_type: SN|Component
|
||||
area: modal
|
||||
version: 1.2.5
|
||||
description: Configure two-factor authentication to add an extra level of security to your account.
|
||||
...
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: org.standardnotes.theme-midnight
|
||||
npm: sn-theme-midnight
|
||||
github: sn-extensions/midnight-theme
|
||||
github: standardnotes/midnight-theme
|
||||
main: dist/dist.css
|
||||
|
||||
name: Midnight
|
||||
content_type: SN|Theme
|
||||
area: themes
|
||||
version: 1.2.1
|
||||
version: 1.2.4
|
||||
marketing_url: https://standardnotes.org/extensions/midnight
|
||||
thumbnail_url: https://s3.amazonaws.com/standard-notes/screenshots/models/themes/midnight-with-mobile.jpg
|
||||
description: Elegant utilitarianism.
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: org.standardnotes.minimal-markdown-editor
|
||||
npm: sn-minimal-markdown-editor
|
||||
github: sn-extensions/minimal-markdown-editor
|
||||
github: standardnotes/minimal-markdown-editor
|
||||
main: index.html
|
||||
|
||||
name: Minimal Markdown Editor
|
||||
content_type: SN|Component
|
||||
area: editor-editor
|
||||
version: 1.3.2
|
||||
version: 1.3.7
|
||||
marketing_url: https://standardnotes.org/extensions/minimal-markdown-editor
|
||||
thumbnail_url: https://s3.amazonaws.com/standard-notes/screenshots/models/editors/min-markdown.jpg
|
||||
description: A minimal Markdown editor with live rendering and in-text search via Ctrl/Cmd + F
|
||||
|
||||
20
extensions/mojave-dark-theme.yaml
Normal file
20
extensions/mojave-dark-theme.yaml
Normal file
@@ -0,0 +1,20 @@
|
||||
---
|
||||
id: io.github.matthew-cox.mojave-dark-mode
|
||||
github: matthew-cox/sn-theme-mojave-dark-mode
|
||||
main: dist/mojave-dark-mode.css
|
||||
|
||||
name: Mojave Dark Mode
|
||||
content_type: SN|Theme
|
||||
area: themes
|
||||
version: v0.0.3
|
||||
marketing_url: https://github.com/matthew-cox/sn-theme-mojave-dark-mode
|
||||
thumbnail_url: https://github.com/matthew-cox/sn-theme-mojave-dark-mode/raw/master/preview.png
|
||||
description: Standard Notes theme which roughly matches Mojave Dark Mode..
|
||||
|
||||
statusBar: dark-content
|
||||
dock_icon:
|
||||
type: circle
|
||||
background_color: '#585858'
|
||||
foreground_color: '#ffffff'
|
||||
border_color: '#585858'
|
||||
...
|
||||
20
extensions/muted-dark-theme.yaml
Normal file
20
extensions/muted-dark-theme.yaml
Normal file
@@ -0,0 +1,20 @@
|
||||
---
|
||||
id: io.github.ntran.sn-theme-muteddark
|
||||
github: ntran/sn-theme-muteddark
|
||||
main: dist/dist.css
|
||||
|
||||
name: Muted Dark
|
||||
content_type: SN|Theme
|
||||
area: themes
|
||||
version: 1.0.9
|
||||
marketing_url: https://github.com/ntran/sn-theme-muteddark
|
||||
thumbnail_url: https://raw.githubusercontent.com/ntran/sn-theme-muteddark/master/thumbnail.png
|
||||
description: A dark theme with muted colors for Standard Notes
|
||||
|
||||
statusBar: dark-content
|
||||
dock_icon:
|
||||
type: circle
|
||||
background_color: '#1e1e1e'
|
||||
foreground_color: '#1e1e1e'
|
||||
border_color: '#127766'
|
||||
...
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
id: org.standardnotes.theme-no-distraction
|
||||
npm: sn-theme-no-distraction
|
||||
github: sn-extensions/no-distraction-theme
|
||||
github: standardnotes/no-distraction-theme
|
||||
main: dist/dist.css
|
||||
|
||||
name: No Distraction
|
||||
|
||||
20
extensions/nord-theme.yaml
Normal file
20
extensions/nord-theme.yaml
Normal file
@@ -0,0 +1,20 @@
|
||||
---
|
||||
id: io.github.lzambarda.sn-nord-theme
|
||||
github: lzambarda/sn-nord-theme
|
||||
main: theme.css
|
||||
|
||||
name: Nord Theme
|
||||
content_type: SN|Theme
|
||||
area: themes
|
||||
version: 0.0.2
|
||||
marketing_url: https://github.com/lzambarda/sn-nord-theme
|
||||
thumbnail_url: https://raw.githubusercontent.com/lzambarda/sn-nord-theme/master/preview.png
|
||||
description: Standard Notes theme inspired by the magnificent Nord Theme.
|
||||
|
||||
statusBar: dark-content
|
||||
dock_icon:
|
||||
type: circle
|
||||
background_color: '#5e81ac'
|
||||
foreground_color: '#eceff4'
|
||||
border_color: '#5e81ac'
|
||||
...
|
||||
20
extensions/one-dark-theme.yaml
Normal file
20
extensions/one-dark-theme.yaml
Normal file
@@ -0,0 +1,20 @@
|
||||
---
|
||||
id: org.matt-anderson.sn-onedark
|
||||
github: matta9001/sn-onedark
|
||||
main: dist/dist.css
|
||||
|
||||
name: One Dark
|
||||
content_type: SN|Theme
|
||||
area: themes
|
||||
version: 1.3.3
|
||||
marketing_url: https://github.com/matta9001/sn-onedark
|
||||
thumbnail_url: https://raw.githubusercontent.com/matta9001/sn-onedark/main/colors.png
|
||||
description: Atom one dark background colors for Standard Notes.
|
||||
|
||||
statusBar: dark-content
|
||||
dock_icon:
|
||||
type: circle
|
||||
background_color: '#61afef'
|
||||
foreground_color: '#ffffff'
|
||||
border_color: '#61afef'
|
||||
...
|
||||
20
extensions/one-darker-theme.yaml
Normal file
20
extensions/one-darker-theme.yaml
Normal file
@@ -0,0 +1,20 @@
|
||||
---
|
||||
id: io.github.eenpadvinder.standardnotes-theme-one-darker
|
||||
github: eenpadvinder/standardnotes-theme-one-darker
|
||||
main: dist/dist.css
|
||||
|
||||
name: One Dark Darker
|
||||
content_type: SN|Theme
|
||||
area: themes
|
||||
version: 0.2.1
|
||||
marketing_url: https://github.com/eenpadvinder/standardnotes-theme-one-darker
|
||||
thumbnail_url: https://raw.githubusercontent.com/eenpadvinder/standardnotes-theme-one-darker/master/preview.png
|
||||
description: VS Code One Dark Darker theme for Standard Notes.
|
||||
|
||||
statusBar: dark-content
|
||||
dock_icon:
|
||||
type: circle
|
||||
background_color: '#181a1f'
|
||||
foreground_color: '#181a1f'
|
||||
border_color: '#d55fde'
|
||||
...
|
||||
@@ -6,10 +6,12 @@ main: dist/dist.css
|
||||
name: Overcast
|
||||
content_type: SN|Theme
|
||||
area: themes
|
||||
version: 1.1.2
|
||||
description: Overcast to become cloudy or dark — just like this theme.
|
||||
version: 1.2.2
|
||||
marketing_url: https://github.com/ceiphr/sn-overcast-theme
|
||||
thumbnail_url: https://camo.githubusercontent.com/4ecbeeda63c4fa66b874e6860c0e2b2963eb752e/68747470733a2f2f63646e2e6365697068722e696f2f7374616e646172646e6f7465732f6f766572636173742f736e2d6f766572636173742d7468656d652d73637265656e73686f742e706e67
|
||||
thumbnail_url: https://raw.githubusercontent.com/ceiphr/sn-overcast-theme/master/overcast.png
|
||||
description: Overcast to become cloudy or dark — just like this theme.
|
||||
|
||||
statusBar: dark-content
|
||||
dock_icon:
|
||||
type: circle
|
||||
background_color: "#039be5"
|
||||
|
||||
19
extensions/pencil-theme.yaml
Normal file
19
extensions/pencil-theme.yaml
Normal file
@@ -0,0 +1,19 @@
|
||||
---
|
||||
id: io.github.xthursdayx.sn-pencil-theme
|
||||
github: xthursdayx/sn-pencil-theme
|
||||
main: dist/dist.css
|
||||
|
||||
name: Pencil Theme
|
||||
content_type: SN|Theme
|
||||
area: themes
|
||||
version: 1.0.3
|
||||
marketing_url: https://github.com/xthursdayx/sn-pencil-theme
|
||||
description: A dark, writing-oriented theme.
|
||||
|
||||
statusBar: dark-content
|
||||
dock_icon:
|
||||
type: circle
|
||||
background_color: '#AE422F'
|
||||
foreground_color: '#000000'
|
||||
border_color: '#AE422F'
|
||||
...
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: org.standardnotes.plus-editor
|
||||
npm: sn-plus-editor
|
||||
github: sn-extensions/plus-editor
|
||||
main: index.html
|
||||
github: standardnotes/plus-editor
|
||||
main: dist/index.html
|
||||
|
||||
name: Plus Editor
|
||||
content_type: SN|Component
|
||||
area: editor-editor
|
||||
version: 1.3.2
|
||||
version: 1.5.0
|
||||
marketing_url: https://standardnotes.org/extensions/plus-editor
|
||||
thumbnail_url: https://s3.amazonaws.com/standard-notes/screenshots/models/editors/plus-editor.jpg
|
||||
description: From highlighting to custom font sizes and colors, to tables and lists, this editor is perfect for crafting any document.
|
||||
|
||||
20
extensions/pure-black-theme.yaml
Normal file
20
extensions/pure-black-theme.yaml
Normal file
@@ -0,0 +1,20 @@
|
||||
---
|
||||
id: io.github.christianhans.sn-pure-black-theme
|
||||
github: christianhans/sn-pure-black-theme
|
||||
main: dist/dist.css
|
||||
|
||||
name: Pure Black
|
||||
content_type: SN|Theme
|
||||
area: themes
|
||||
version: 1.0.9
|
||||
marketing_url: https://github.com/christianhans/sn-pure-black-theme
|
||||
thumbnail_url: https://raw.githubusercontent.com/christianhans/sn-pure-black-theme/master/preview1.png
|
||||
description: Theme optimized for Optimized for OLED devices such as iPhone X.
|
||||
|
||||
statusBar: dark-content
|
||||
dock_icon:
|
||||
type: circle
|
||||
background_color: '#000000'
|
||||
foreground_color": '#FAFBFF'
|
||||
border_color: '#2A2A2B'
|
||||
...
|
||||
15
extensions/rich-markdown-editor.yaml
Normal file
15
extensions/rich-markdown-editor.yaml
Normal file
@@ -0,0 +1,15 @@
|
||||
---
|
||||
id: com.github.arturolinares.sn-rme
|
||||
npm: sn-advanced-markdown-editor
|
||||
github: arturolinares/sn-rme
|
||||
main: build/index.html
|
||||
|
||||
name: Rich Markdown Editor
|
||||
content_type: SN|Component
|
||||
area: editor-editor
|
||||
version: 0.18.0
|
||||
marketing_url: https://github.com/arturolinares/sn-rme
|
||||
thumbnail_url: https://github.com/arturolinares/sn-rme/raw/master/build/logo512.png
|
||||
description: A WYSIWYG Markdown editor that supports youtube embeds.
|
||||
flags: []
|
||||
...
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: org.standardnotes.standard-sheets
|
||||
npm: sn-spreadsheets
|
||||
github: sn-extensions/secure-spreadsheets
|
||||
github: standardnotes/secure-spreadsheets
|
||||
main: dist/index.html
|
||||
|
||||
name: Secure Spreadsheets
|
||||
content_type: SN|Component
|
||||
area: editor-editor
|
||||
version: 1.3.3
|
||||
version: 1.4.0
|
||||
marketing_url:
|
||||
thumbnail_url: https://s3.amazonaws.com/standard-notes/screenshots/models/editors/spreadsheets.png
|
||||
description: A powerful spreadsheet editor with formatting and formula support. Not recommended for large data sets, as encryption of such data may decrease editor performance.
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: org.standardnotes.simple-task-editor
|
||||
npm: sn-simple-task-editor
|
||||
github: sn-extensions/simple-task-editor
|
||||
github: standardnotes/simple-task-editor
|
||||
main: dist/index.html
|
||||
|
||||
name: Simple Task Editor
|
||||
content_type: SN|Component
|
||||
area: editor-editor
|
||||
version: 1.3.3
|
||||
version: 1.3.7
|
||||
marketing_url: https://standardnotes.org/extensions/simple-task-editor
|
||||
thumbnail_url: https://s3.amazonaws.com/standard-notes/screenshots/models/editors/task-editor.jpg
|
||||
description: A great way to manage short-term and long-term to-do's. You can mark tasks as completed, change their order, and edit the text naturally in place.
|
||||
|
||||
20
extensions/slate-theme.yaml
Normal file
20
extensions/slate-theme.yaml
Normal file
@@ -0,0 +1,20 @@
|
||||
---
|
||||
id: space.yuggoth.sn-slate-theme
|
||||
github: yithian/slate-theme/
|
||||
main: dist/standard-notes.css
|
||||
|
||||
name: Slate
|
||||
content_type: SN|Theme
|
||||
area: themes
|
||||
version: v2.2.0
|
||||
marketing_url: https://github.com/yithian/slate-theme
|
||||
thumbnail_url: https://raw.githubusercontent.com/yithian/slate-theme/main/images/sn-screenshot.png
|
||||
description: A theme with shady grey and mossy green highlights.
|
||||
|
||||
statusBar: dark-content
|
||||
dock_icon:
|
||||
type: circle
|
||||
background_color: '#252A2F'
|
||||
foreground_color: '#252A2F'
|
||||
border_color: '#8A9A5B'
|
||||
...
|
||||
13
extensions/sn-ia-writer-quattro-theme.yaml
Normal file
13
extensions/sn-ia-writer-quattro-theme.yaml
Normal file
@@ -0,0 +1,13 @@
|
||||
---
|
||||
id: io.xthursdayx.sn-ia-writer-quattro
|
||||
github: xthursdayx/sn-ia-writer-quattro
|
||||
main: dist/theme.css
|
||||
|
||||
name: SN iA Writer Quattro
|
||||
content_type: SN|Theme
|
||||
area: themes
|
||||
version: 1.0.5
|
||||
marketing_url: https://github.com/xthursdayx/sn-ia-writer-quattro
|
||||
description: Replace all monospace and sans-serif fonts with iA Writer Quattro.
|
||||
layerable: true
|
||||
...
|
||||
@@ -1,17 +1,18 @@
|
||||
---
|
||||
id: org.standardnotes.theme-solarized-dark
|
||||
npm: sn-theme-solarized-dark
|
||||
github: sn-extensions/solarized-dark-theme
|
||||
github: standardnotes/solarized-dark-theme
|
||||
main: dist/dist.css
|
||||
|
||||
name: Solarized Dark
|
||||
content_type: SN|Theme
|
||||
area: themes
|
||||
version: 1.2.1
|
||||
version: 1.2.3
|
||||
marketing_url: https://standardnotes.org/extensions/solarized-dark
|
||||
thumbnail_url: https://s3.amazonaws.com/standard-notes/screenshots/models/themes/solarized-dark.jpg
|
||||
description: The perfect theme for any time.
|
||||
|
||||
statusBar: dark-content
|
||||
dock_icon:
|
||||
type: circle
|
||||
background_color: '#2AA198'
|
||||
|
||||
20
extensions/tangerine-theme.yaml
Normal file
20
extensions/tangerine-theme.yaml
Normal file
@@ -0,0 +1,20 @@
|
||||
---
|
||||
id: io.shompoe.sn-tangerine-theme
|
||||
github: shompoe/sn-tangerine-theme
|
||||
main: dist/dist.css
|
||||
|
||||
name: Tangerine Theme
|
||||
content_type: SN|Theme
|
||||
area: themes
|
||||
version: 2.0.3
|
||||
marketing_url: https://github.com/shompoe/sn-tangerine-theme
|
||||
thumbnail_url: https://raw.githubusercontent.com/shompoe/sn-tangerine-theme/master/preview.png
|
||||
description: Theme based on the Gruvbox Dark Theme with more orange highlights.
|
||||
|
||||
statusBar: dark-content
|
||||
dock_icon:
|
||||
type: circle
|
||||
background_color: '#D79921'
|
||||
foreground_color: '#076678'
|
||||
border_color: '#D79921'
|
||||
...
|
||||
@@ -1,17 +1,18 @@
|
||||
---
|
||||
id: org.standardnotes.theme-titanium
|
||||
npm: sn-theme-titanium
|
||||
github: sn-extensions/titanium-theme
|
||||
github: standardnotes/titanium-theme
|
||||
main: dist/dist.css
|
||||
|
||||
name: Titanium
|
||||
content_type: SN|Theme
|
||||
area: themes
|
||||
version: 1.2.2
|
||||
version: 1.2.4
|
||||
marketing_url: https://standardnotes.org/extensions/titanium
|
||||
thumbnail_url: https://s3.amazonaws.com/standard-notes/screenshots/models/themes/titanium-with-mobile.jpg
|
||||
description: Light on the eyes, heavy on the spirit.
|
||||
|
||||
statusBar: dark-content
|
||||
dock_icon:
|
||||
type: circle
|
||||
background_color: '#6e2b9e'
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
---
|
||||
id: org.standardnotes.token-vault
|
||||
npm: sn-token-vault
|
||||
github: sn-extensions/token-vault
|
||||
github: standardnotes/token-vault
|
||||
main: dist/index.html
|
||||
|
||||
name: TokenVault
|
||||
content_type: SN|Component
|
||||
area: editor-editor
|
||||
version: 1.0.4
|
||||
version: 2.0.1
|
||||
thumbnail_url: https://standard-notes.s3.amazonaws.com/screenshots/models/editors/token-vault.png
|
||||
description: Encrypt and protect your 2FA secrets for all your internet accounts. TokenVault handles your 2FA secrets so that you never lose them again, or have to start over when you get a new device.
|
||||
flags: [Beta]
|
||||
flags: []
|
||||
...
|
||||
|
||||
20
extensions/uniform-dark-plus-theme.yaml
Normal file
20
extensions/uniform-dark-plus-theme.yaml
Normal file
@@ -0,0 +1,20 @@
|
||||
---
|
||||
id: io.xthursdayx.uniform-dark-theme
|
||||
github: xthursdayx/uniform-dark-theme-sn
|
||||
main: dist/dist.css
|
||||
|
||||
name: Uniform Dark+
|
||||
content_type: SN|Theme
|
||||
area: themes
|
||||
version: 1.0.4
|
||||
marketing_url: https://github.com/xthursdayx/uniform-dark-theme-sn/
|
||||
thumbnail_url: https://github.com/xthursdayx/uniform-dark-theme-sn/blob/master/Images/preview.png
|
||||
description: Theme inspired by Visual Studio Code's default dark theme, designed for Standard Notes. It is loosely based off my other theme that unifies VS Code's default dark theme.
|
||||
|
||||
statusBar: dark-content
|
||||
dock_icon:
|
||||
type: circle
|
||||
background_color: '#1e1e1efc'
|
||||
foreground_color: '#d4d4d4fc'
|
||||
border_color: '#414141fc'
|
||||
...
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: org.standardnotes.vim-editor
|
||||
npm: sn-vim-editor
|
||||
github: sn-extensions/vim-editor
|
||||
github: standardnotes/vim-editor
|
||||
main: index.html
|
||||
|
||||
name: Vim Editor
|
||||
content_type: SN|Component
|
||||
area: editor-editor
|
||||
version: 1.3.2
|
||||
version: 1.3.7
|
||||
marketing_url: https://standardnotes.org/extensions/vim-editor
|
||||
thumbnail_url: https://s3.amazonaws.com/standard-notes/screenshots/models/editors/vim.jpg
|
||||
description: A code editor with Vim key bindings.
|
||||
|
||||
19
extensions/vs-code-theme.yaml
Normal file
19
extensions/vs-code-theme.yaml
Normal file
@@ -0,0 +1,19 @@
|
||||
---
|
||||
id: io.github.hyphone.sn-theme-vscode
|
||||
github: hyphone/sn-theme-vscode
|
||||
main: dist.css
|
||||
|
||||
name: VS Code Theme
|
||||
content_type: SN|Theme
|
||||
area: themes
|
||||
version: 1.0.30
|
||||
marketing_url: https://github.com/hyphone/sn-theme-vscode
|
||||
thumbnail_url: https://github.com/hyphone/sn-theme-vscode/raw/master/screenshot.png
|
||||
description: A theme for Standard Notes inspired by the VS Code Dark theme.
|
||||
statusBar: dark-content
|
||||
dock_icon:
|
||||
type: circle
|
||||
background_color: '#252526'
|
||||
foreground_color: '#D4D4D4'
|
||||
border_color: '#7ba78a'
|
||||
...
|
||||
20
extensions/yaru.yml
Normal file
20
extensions/yaru.yml
Normal file
@@ -0,0 +1,20 @@
|
||||
---
|
||||
id: io.ceiphr.yaru
|
||||
github: ceiphr/sn-yaru-theme
|
||||
main: dist/dist.css
|
||||
|
||||
name: Yaru
|
||||
content_type: SN|Theme
|
||||
area: themes
|
||||
version: 1.0.7
|
||||
marketing_url: https://github.com/ceiphr/sn-yaru-theme
|
||||
thumbnail_url: https://raw.githubusercontent.com/ceiphr/sn-yaru-theme/master/yaru.png
|
||||
description: This is an unofficial Yaru theme for Standard Notes.
|
||||
|
||||
statusBar: dark-content
|
||||
dock_icon:
|
||||
type: circle
|
||||
background_color: '#df4a16'
|
||||
foreground_color: '#ffffff'
|
||||
border_color: '#df4a16'
|
||||
...
|
||||
Reference in New Issue
Block a user