Compare commits
@@ -3,7 +3,8 @@ name: Desktop Beta Release
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- '**standardnotes/desktop+(*alpha*|*beta*)'
|
||||
- '@standardnotes/desktop@[0-9]*.[0-9]*.[0-9]*-alpha.[0-9]*'
|
||||
- '@standardnotes/desktop@[0-9]*.[0-9]*.[0-9]*-beta.[0-9]*'
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
|
||||
@@ -3,7 +3,7 @@ name: Desktop Prod Release
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- '**standardnotes/desktop!(*alpha*|*beta*)'
|
||||
- '@standardnotes/desktop@!(*alpha*|*beta*)'
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
|
||||
@@ -1,43 +0,0 @@
|
||||
name: Desktop Release (Test)
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
Linux:
|
||||
runs-on: macos-latest
|
||||
defaults:
|
||||
run:
|
||||
working-directory: packages/desktop
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Ruby Setup
|
||||
uses: ruby/setup-ruby@v1
|
||||
- uses: actions/setup-node@v2
|
||||
with:
|
||||
registry-url: 'https://registry.npmjs.org'
|
||||
|
||||
- name: Install Snap Deps
|
||||
run: |
|
||||
brew update
|
||||
brew install snapcraft
|
||||
|
||||
- run: yarn install
|
||||
- run: yarn build:desktop
|
||||
|
||||
- name: SnapArm64
|
||||
run: |
|
||||
yarn run webpack --config desktop.webpack.prod.js --env snap
|
||||
yarn run electron-builder --linux snap --arm64 --publish=never
|
||||
|
||||
- name: Upload
|
||||
uses: actions/[email protected]
|
||||
with:
|
||||
name: assets
|
||||
path: |
|
||||
packages/desktop/dist/*.snap
|
||||
packages/desktop/dist/*.AppImage
|
||||
packages/desktop/dist/*.deb
|
||||
packages/desktop/dist/*.blockmap
|
||||
packages/desktop/dist/*.yml
|
||||
packages/desktop/dist/*.yaml
|
||||
@@ -111,7 +111,6 @@ jobs:
|
||||
packages/desktop/dist/*.yaml
|
||||
|
||||
Windows:
|
||||
if: ${{ inputs.channel == 'prod' }}
|
||||
runs-on: self-hosted
|
||||
env:
|
||||
WINDOWS_TOKEN_ALIAS: ${{ secrets.WINDOWS_TOKEN_ALIAS }}
|
||||
|
||||
@@ -1,14 +0,0 @@
|
||||
name: Desktop Beta Release
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- '*'
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
Build:
|
||||
uses: standardnotes/app/.github/workflows/desktop.release.reuse.yml@develop
|
||||
secrets: inherit
|
||||
with:
|
||||
channel: beta
|
||||
@@ -3,7 +3,8 @@ name: Mobile Build Development
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- '**standardnotes/mobile+(*alpha*|*beta*)'
|
||||
- '@standardnotes/mobile@[0-9]*.[0-9]*.[0-9]*-alpha.[0-9]*'
|
||||
- '@standardnotes/mobile@[0-9]*.[0-9]*.[0-9]*-beta.[0-9]*'
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
@@ -18,7 +19,7 @@ jobs:
|
||||
uses: actions/checkout@v2
|
||||
- name: Export version from package.json
|
||||
run: |
|
||||
echo "PACKAGE_VERSION=$(grep '"version"' package.json | cut -d '"' -f 4)" >> $GITHUB_ENV
|
||||
echo "PACKAGE_VERSION=$(grep '"version"' package.json | cut -d '"' -f 4 | cut -d "-" -f 1)" >> $GITHUB_ENV
|
||||
- name: Setup react-native kernel and increase watchers
|
||||
run: echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
|
||||
- name: Decode Dev Android keystore
|
||||
@@ -58,7 +59,7 @@ jobs:
|
||||
uses: actions/checkout@v2
|
||||
- name: Export version from package.json
|
||||
run: |
|
||||
echo "PACKAGE_VERSION=$(grep '"version"' package.json | cut -d '"' -f 4)" >> $GITHUB_ENV
|
||||
echo "PACKAGE_VERSION=$(grep '"version"' package.json | cut -d '"' -f 4 | cut -d "-" -f 1)" >> $GITHUB_ENV
|
||||
- name: Ruby Setup for Fastlane
|
||||
uses: ruby/setup-ruby@v1
|
||||
- name: Install dependencies
|
||||
|
||||
@@ -3,7 +3,7 @@ name: Mobile Build Production
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- '**standardnotes/mobile!(*alpha*|*beta*)'
|
||||
- '@standardnotes/mobile@!(*alpha*|*beta*)'
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
@@ -18,7 +18,7 @@ jobs:
|
||||
uses: actions/checkout@v2
|
||||
- name: Export version from package.json
|
||||
run:
|
||||
echo "PACKAGE_VERSION=$(grep '"version"' package.json | cut -d '"' -f 4)" >> $GITHUB_ENV
|
||||
echo "PACKAGE_VERSION=$(grep '"version"' package.json | cut -d '"' -f 4 | cut -d "-" -f 1)" >> $GITHUB_ENV
|
||||
- name: Setup react-native kernel and increase watchers
|
||||
run: echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
|
||||
- name: Decode Production Android keystore
|
||||
@@ -63,7 +63,7 @@ jobs:
|
||||
uses: actions/checkout@v2
|
||||
- name: Export version from package.json
|
||||
run:
|
||||
echo "PACKAGE_VERSION=$(grep '"version"' package.json | cut -d '"' -f 4)" >> $GITHUB_ENV
|
||||
echo "PACKAGE_VERSION=$(grep '"version"' package.json | cut -d '"' -f 4 | cut -d "-" -f 1)" >> $GITHUB_ENV
|
||||
- name: Install dependencies
|
||||
run: yarn install && yarn install:pods
|
||||
- run: yarn build:mobile
|
||||
|
||||
@@ -6,7 +6,7 @@ on:
|
||||
- develop
|
||||
- main
|
||||
paths:
|
||||
- packages/components
|
||||
- packages/components/**
|
||||
|
||||
jobs:
|
||||
test:
|
||||
@@ -16,13 +16,23 @@ jobs:
|
||||
uses: actions/checkout@v2
|
||||
- name: Set up Ruby
|
||||
uses: ruby/setup-ruby@v1
|
||||
|
||||
- name: Install dependencies
|
||||
run: yarn install
|
||||
- name: ESLint
|
||||
run: yarn lint
|
||||
|
||||
- name: Lint components
|
||||
run: yarn components:lint
|
||||
working-directory: packages/components
|
||||
- name: Compile components
|
||||
run: yarn compile:components
|
||||
- name: Build
|
||||
run: yarn components:compile
|
||||
working-directory: packages/components
|
||||
- name: Test components
|
||||
run: yarn components:test
|
||||
working-directory: packages/components
|
||||
|
||||
- name: Lint all
|
||||
run: yarn lint
|
||||
- name: Build all
|
||||
run: yarn build:all
|
||||
- name: Test
|
||||
- name: Test all
|
||||
run: yarn test
|
||||
|
||||
@@ -6,7 +6,7 @@ on:
|
||||
- develop
|
||||
- main
|
||||
paths:
|
||||
- 'packages/!(components)'
|
||||
- packages/!(components)/**
|
||||
|
||||
jobs:
|
||||
test:
|
||||
|
||||
@@ -29,14 +29,23 @@ jobs:
|
||||
- name: Set up Ruby
|
||||
uses: ruby/setup-ruby@v1
|
||||
|
||||
- name: Install dependencies
|
||||
- name: Install Dependencies
|
||||
run: yarn install
|
||||
|
||||
- name: Get Changed Components Files
|
||||
id: changed-component-files
|
||||
uses: tj-actions/changed-files@v23
|
||||
with:
|
||||
files: packages/components/**
|
||||
|
||||
- name: Compile Components
|
||||
run: yarn compile:components
|
||||
- name: Commit Components
|
||||
if: steps.changed-component-files.outputs.any_changed == 'true'
|
||||
run: yarn components:clean && yarn components:compile
|
||||
working-directory: packages/components
|
||||
- name: Package and Commit Components
|
||||
if: steps.changed-component-files.outputs.any_changed == 'true'
|
||||
run: |
|
||||
node packages/components/scripts/package-components.mjs
|
||||
node packages/components/scripts/package.mjs
|
||||
git add .
|
||||
(git commit -m 'chore(release): components') || true
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
name: Web Beta
|
||||
name: Web Server Beta
|
||||
|
||||
on:
|
||||
push:
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
name: Web Dev
|
||||
name: Web Server Dev
|
||||
|
||||
concurrency:
|
||||
group: dev_environment
|
||||
@@ -7,7 +7,8 @@ concurrency:
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- '**standardnotes/web-server+(*alpha*|*beta*)'
|
||||
- '@standardnotes/web-server@[0-9]*.[0-9]*.[0-9]*-alpha.[0-9]*'
|
||||
- '@standardnotes/web-server@[0-9]*.[0-9]*.[0-9]*-beta.[0-9]*'
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
name: Web Prod
|
||||
name: Web Server Prod
|
||||
|
||||
concurrency:
|
||||
group: prod_environment
|
||||
@@ -7,7 +7,7 @@ concurrency:
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- '**standardnotes/web-server!(*alpha*|*beta*)'
|
||||
- '@standardnotes/web-server@!(*alpha*|*beta*)'
|
||||
|
||||
jobs:
|
||||
test:
|
||||
|
||||
@@ -82,14 +82,12 @@ You can then access the app at `http://localhost:3001` (please check Docker cont
|
||||
|
||||
### Running Locally
|
||||
|
||||
This repo contains the core code used in the web app, as well as the Electron-based [desktop application](https://github.com/standardnotes/desktop).
|
||||
|
||||
**Instructions:**
|
||||
|
||||
1. Ensure you have [Yarn](https://classic.yarnpkg.com) installed
|
||||
1. Clone the repo
|
||||
1. `yarn install`
|
||||
1. `yarn start`
|
||||
2. Clone the repo
|
||||
3. `yarn install`
|
||||
4. `yarn start`
|
||||
|
||||
Then open your browser to `http://localhost:3001`.
|
||||
|
||||
@@ -101,14 +99,6 @@ You can also set the `DEFAULT_SYNC_SERVER` environment variable to set the defau
|
||||
DEFAULT_SYNC_SERVER=https://sync.myserver
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
### Other repositories:
|
||||
|
||||
- Desktop app: https://github.com/standardnotes/desktop
|
||||
- Mobile (iOS & Android): https://github.com/standardnotes/mobile
|
||||
- Extensions: https://github.com/sn-extensions
|
||||
|
||||
## Contributing
|
||||
|
||||
For contributing we highly recommend you use our docker-compose setup that is provided in this repository.
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"packages": ["packages/**"],
|
||||
"version": "independent",
|
||||
"npmClient": "yarn",
|
||||
"useWorkspaces": true
|
||||
|
||||
@@ -4,7 +4,9 @@
|
||||
"author": "Standard Notes",
|
||||
"workspaces": {
|
||||
"packages": [
|
||||
"packages/*"
|
||||
"packages/*",
|
||||
"packages/desktop/app",
|
||||
"packages/components/src/*"
|
||||
]
|
||||
},
|
||||
"engines": {
|
||||
@@ -19,14 +21,15 @@
|
||||
"build:desktop": "yarn workspaces foreach -pt --verbose -R --from @standardnotes/desktop run build",
|
||||
"build:mobile": "yarn workspaces foreach -pt --verbose -R --from @standardnotes/mobile run build",
|
||||
"build:web-server": "yarn workspaces foreach -pt --verbose -R --from @standardnotes/web-server run build",
|
||||
"compile:components": "yarn workspace @standardnotes/components-meta run compile",
|
||||
"start:server:web": "lerna run start --scope=@standardnotes/web-server",
|
||||
"start:server:web:localhost": "lerna run start:no-binding --scope=@standardnotes/web-server",
|
||||
"prepare": "husky install",
|
||||
"reset": "find . -type dir -name node_modules | xargs rm -rf && rm -rf yarn.lock && yarn install",
|
||||
"release:prod": "lerna version --conventional-commits --yes -m \"chore(release): publish\"",
|
||||
"release:beta": "lerna version --conventional-prerelease --conventional-commits --yes -m \"chore(release): publish\"",
|
||||
"version": "yarn install --no-immutable && git add yarn.lock"
|
||||
"version": "yarn install --no-immutable && git add yarn.lock",
|
||||
"postversion": "./scripts/push-tags-one-by-one.sh",
|
||||
"lerna:list": " yarn lerna list -all"
|
||||
},
|
||||
"resolutions": {
|
||||
"@types/styled-components/@types/react": "17.0.2",
|
||||
@@ -39,6 +42,7 @@
|
||||
"@commitlint/cli": "^17.0.2",
|
||||
"@commitlint/config-conventional": "^17.0.2",
|
||||
"@lerna-lite/cli": "^1.5.1",
|
||||
"@lerna-lite/list": "^1.5.1",
|
||||
"@lerna-lite/run": "^1.5.1",
|
||||
"@standardnotes/config": "^2.4.3",
|
||||
"@typescript-eslint/eslint-plugin": "^5.20.0",
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
tmp
|
||||
@@ -3,6 +3,64 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# 2.1.0-alpha.14 (2022-06-16)
|
||||
|
||||
**Note:** Version bump only for package @standardnotes/components-meta
|
||||
|
||||
# 2.1.0-alpha.13 (2022-06-16)
|
||||
|
||||
**Note:** Version bump only for package @standardnotes/components-meta
|
||||
|
||||
# 2.1.0-alpha.12 (2022-06-15)
|
||||
|
||||
**Note:** Version bump only for package @standardnotes/components-meta
|
||||
|
||||
# [2.1.0-alpha.11](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-06-15)
|
||||
|
||||
**Note:** Version bump only for package @standardnotes/components-meta
|
||||
|
||||
# [2.1.0-alpha.10](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-06-15)
|
||||
|
||||
**Note:** Version bump only for package @standardnotes/components-meta
|
||||
|
||||
# 2.1.0-alpha.9 (2022-06-15)
|
||||
|
||||
**Note:** Version bump only for package @standardnotes/components-meta
|
||||
|
||||
# [2.1.0-alpha.8](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-06-15)
|
||||
|
||||
**Note:** Version bump only for package @standardnotes/components-meta
|
||||
|
||||
# [2.1.0-alpha.7](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-06-15)
|
||||
|
||||
**Note:** Version bump only for package @standardnotes/components-meta
|
||||
|
||||
# [2.1.0-alpha.6](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-06-15)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* advanced checklist scripts ([#1109](https://github.com/standardnotes/app/issues/1109)) ([f72ac77](https://github.com/standardnotes/app/commit/f72ac77f185020b26a29b558ba7fd15b08e9808b))
|
||||
|
||||
# [2.1.0-alpha.5](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-06-15)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* tasksLoaded tests ([#1106](https://github.com/standardnotes/app/issues/1106)) ([008452f](https://github.com/standardnotes/app/commit/008452fd86fa78abb7c3e71290ccaad1ac5bc01b))
|
||||
|
||||
# [2.1.0-alpha.4](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-06-15)
|
||||
|
||||
**Note:** Version bump only for package @standardnotes/components-meta
|
||||
|
||||
# [2.1.0-alpha.3](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-06-15)
|
||||
|
||||
**Note:** Version bump only for package @standardnotes/components-meta
|
||||
|
||||
# [2.1.0-alpha.2](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-06-15)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* override webpack output config for cra based editors ([#1108](https://github.com/standardnotes/app/issues/1108)) ([f076057](https://github.com/standardnotes/app/commit/f076057f4b531bbb2a5ee5d363962026f0be8f90))
|
||||
|
||||
# [2.1.0-alpha.1](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-06-14)
|
||||
|
||||
**Note:** Version bump only for package @standardnotes/components-meta
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
module.exports = function override(config, env) {
|
||||
config.ignoreWarnings = [/Failed to parse source map/]
|
||||
config.output = {
|
||||
...config.output,
|
||||
filename: 'static/js/[name].js',
|
||||
chunkFilename: 'static/js/[name].chunk.js',
|
||||
assetModuleFilename: 'static/media/[name].[ext]',
|
||||
}
|
||||
return config
|
||||
}
|
||||
@@ -1,97 +0,0 @@
|
||||
{
|
||||
"org.standardnotes.theme-midnight": {
|
||||
"version": "1.2.8",
|
||||
"base64": "79085f55578169492fb3a0d70b120c39f9bdede94cb98548f18fab302fed0485",
|
||||
"binary": "1ae1805538d691328ae0782b4f0ca3c7a7912d441d57fbedcfda81afedf561f4"
|
||||
},
|
||||
"org.standardnotes.theme-futura": {
|
||||
"version": "1.2.9",
|
||||
"base64": "b7a287552f89580782a9359b302baa87ca7abc4561d68429ce244f9b9fef071c",
|
||||
"binary": "1428d78fc9556d2f6bcb4fd0d5aaaaee48fff14314da6c21fd2f663b566343e2"
|
||||
},
|
||||
"org.standardnotes.theme-solarized-dark": {
|
||||
"version": "1.2.7",
|
||||
"base64": "159f6a42634b905486f12a0886a03c4e50926da8afdca322e9dc9521401571cc",
|
||||
"binary": "ca01631d1bbd8ca9513692a9260b400dbdfff394322efe32e0af468cf38c3d8c"
|
||||
},
|
||||
"org.standardnotes.theme-autobiography": {
|
||||
"version": "1.0.4",
|
||||
"base64": "436f6afeba7241558e648052ad47084fdb64ff95eb61a1b91b690db2646a8a10",
|
||||
"binary": "9d2ab975d807e76406c23602ae23708ed222979b92948c013b89ffb3212e1077"
|
||||
},
|
||||
"org.standardnotes.theme-focus": {
|
||||
"version": "1.2.9",
|
||||
"base64": "62ba8aeb2b83e066b4bc8b7babe9bda1f8cbcee81a1f9d4dda8f6e7165f6cb23",
|
||||
"binary": "b93cf8d9353e48b63dd076a4e1da42af125326c87d9990cccd9f25a44a0978d8"
|
||||
},
|
||||
"org.standardnotes.theme-titanium": {
|
||||
"version": "1.2.7",
|
||||
"base64": "7f22002992f49bf5c824c312af68b4cd505e51287c64bdf4ee77a7d312fcee98",
|
||||
"binary": "2f293b6071b803b989d29610f8b801caae60e0dae7af44d52cab73828975c178"
|
||||
},
|
||||
"org.standardnotes.theme-dynamic": {
|
||||
"version": "1.0.4",
|
||||
"base64": "04049de05d0a9c74ddbb0c95124f46f4e9b8769e4226779c1731a3ebe57bc59f",
|
||||
"binary": "534cac27036ffd5eab05244e6d68a775d24a2bc30fdc6f99209716fdfc328403"
|
||||
},
|
||||
"org.standardnotes.code-editor": {
|
||||
"version": "1.3.12",
|
||||
"base64": "0d933b7542e8c6f4cbeb6acb89c2ea5690881e039cb10b25e2dc14f01bddb85d",
|
||||
"binary": "fc49b050f4ed4ebe96f0f04affb6a55232e705fee67293103a4e766f01a3539b"
|
||||
},
|
||||
"org.standardnotes.bold-editor": {
|
||||
"version": "1.3.5",
|
||||
"base64": "55b6a660bebab3131e30eb0f4f601e8afdbc0405720cdaee394dcff41ffadb21",
|
||||
"binary": "276995515204c095c5b0c52563ed37bb66cfa5d5474ee9899ee46ac4db2966c6"
|
||||
},
|
||||
"org.standardnotes.plus-editor": {
|
||||
"version": "1.6.1",
|
||||
"base64": "e286c398c4dbb882d85f2b9fbdd9eefd5377acdc4f5d9c254e6919ff05ab000b",
|
||||
"binary": "e7e3b24ab2896ba3d8a407a58426d842967d62b5e6987f494de39a9173b85b1d"
|
||||
},
|
||||
"org.standardnotes.simple-markdown-editor": {
|
||||
"version": "1.4.2",
|
||||
"base64": "8064072a60aefdd661b1fce15f2f809bab417c687ed606a267f34323ee36d060",
|
||||
"binary": "7ae9d6dc1914c196530ade1a831d03d8d03f256acd9b130817b6056468d52eff"
|
||||
},
|
||||
"org.standardnotes.advanced-markdown-editor": {
|
||||
"version": "1.5.0",
|
||||
"base64": "ff2ecbf66d40b8073ee027060a5560383d07305fc559f55f9b9df8e164b7c2fa",
|
||||
"binary": "23c7eec06598313e124083c91265be3e4598ea01036e215a103c54b50150b261"
|
||||
},
|
||||
"org.standardnotes.minimal-markdown-editor": {
|
||||
"version": "1.3.9",
|
||||
"base64": "d0e9368c6406466eefdbd2a61fbef67b3a76625fb8028ec93dfef8f5d15a2043",
|
||||
"binary": "438806e9b01e0d04d7fdccce1e87e69fb241b2a71c239ca60961bebc977298cd"
|
||||
},
|
||||
"org.standardnotes.fancy-markdown-editor": {
|
||||
"version": "1.3.6",
|
||||
"base64": "4135e216d4ff1f94d411201b19f88559e5c49fc051e282481285ffdb83a84f7a",
|
||||
"binary": "08a5c339dd9c81eeee54327c9421cf805cb5c49f21bc82d94e6419713833486b"
|
||||
},
|
||||
"org.standardnotes.markdown-visual-editor": {
|
||||
"version": "1.0.7",
|
||||
"base64": "cfa41ccf47de8757cef25eaff33c8fa679a44ffd4fb12236c94d74313776ac47",
|
||||
"binary": "7949deb542e7acd5ea5c5514b857a1665658503999744157c3de6a0ff52539cd"
|
||||
},
|
||||
"org.standardnotes.simple-task-editor": {
|
||||
"version": "1.3.10",
|
||||
"base64": "d1037c8a9508e1bc57e4d5a235c6431d7b42484a3305f005dcb9ca99a402ae2c",
|
||||
"binary": "cb01b490fe5d3fbff6d837af3f97927f9846a70d236d4c54b315dc7745ec870b"
|
||||
},
|
||||
"org.standardnotes.token-vault": {
|
||||
"version": "2.0.10",
|
||||
"base64": "730490eae3389271a8ebf8952bff68350da3d1d177aec10a16adf547613bcbf8",
|
||||
"binary": "a03c241b8e7c0245a8b67029e8777b1b6521c5007d7a87b24f4c80095f0b2539"
|
||||
},
|
||||
"org.standardnotes.standard-sheets": {
|
||||
"version": "1.4.4",
|
||||
"base64": "e24e78f91bc8bed50d16300cc5f3eafff965e6babe7d69759a8d18cd78e1dcbb",
|
||||
"binary": "7145b268b660f33a4caca8a91e826b7b266343d330854398d977bc04a09cd3f1"
|
||||
},
|
||||
"org.standardnotes.advanced-checklist": {
|
||||
"version": "0.0.1",
|
||||
"base64": "e1e5589c45810b0c670638843c27637316ced1c65d61410524f712459e41a0a2",
|
||||
"binary": "07a3f6f31061095084b00d5735ab9c140b50e668ab2b5f0983afb73376f227ed"
|
||||
}
|
||||
}
|
||||
@@ -1,13 +1,13 @@
|
||||
{
|
||||
"files": {
|
||||
"main.js": "./static/js/main.js",
|
||||
"main.css": "./static/css/main.bb4586b1.css",
|
||||
"main.js": "./static/js/main.0cc426d4.js",
|
||||
"index.html": "./index.html",
|
||||
"main.bb4586b1.css.map": "./static/css/main.bb4586b1.css.map",
|
||||
"main.0cc426d4.js.map": "./static/js/main.0cc426d4.js.map"
|
||||
"main.js.map": "./static/js/main.js.map",
|
||||
"main.bb4586b1.css.map": "./static/css/main.bb4586b1.css.map"
|
||||
},
|
||||
"entrypoints": [
|
||||
"static/css/main.bb4586b1.css",
|
||||
"static/js/main.0cc426d4.js"
|
||||
"static/js/main.js",
|
||||
"static/css/main.bb4586b1.css"
|
||||
]
|
||||
}
|
||||
|
Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 3.8 KiB |
@@ -1 +1 @@
|
||||
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="./favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="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."/><link rel="apple-touch-icon" href="./logo192.png"/><link rel="manifest" href="./manifest.json"/><title>Advanced Checklist</title><script defer="defer" src="./static/js/main.0cc426d4.js"></script><link href="./static/css/main.bb4586b1.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div class="sn-component" id="root"></div></body></html>
|
||||
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="./favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="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."/><link rel="apple-touch-icon" href="./logo192.png"/><link rel="manifest" href="./manifest.json"/><title>Advanced Checklist</title><script defer="defer" src="./static/js/main.js"></script><link href="./static/css/main.bb4586b1.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div class="sn-component" id="root"></div></body></html>
|
||||
|
Before Width: | Height: | Size: 5.2 KiB After Width: | Height: | Size: 5.2 KiB |
|
Before Width: | Height: | Size: 9.4 KiB After Width: | Height: | Size: 9.4 KiB |
@@ -8,6 +8,5 @@
|
||||
"url": "http://localhost:3000/index.html",
|
||||
"download_url": "",
|
||||
"latest_url": "",
|
||||
"marketing_url": "https://github.com/standardnotes/advanced-checklist",
|
||||
"thumbnail_url": ""
|
||||
}
|
||||
|
Before Width: | Height: | Size: 434 KiB After Width: | Height: | Size: 434 KiB |