latex-stickies 1.3.0 → 1.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -0
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -1,10 +1,17 @@
|
|
|
1
1
|
# LaTeX Stickies
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/latex-stickies)
|
|
4
|
+
[](https://github.com/kev-nj/latex-stickies/actions/workflows/ci.yml)
|
|
5
|
+
[](LICENSE)
|
|
6
|
+
|
|
3
7
|
Sticky notes for your desktop that render LaTeX and Markdown as you type.
|
|
8
|
+
macOS, Windows and Linux.
|
|
4
9
|
|
|
5
10
|
Write `$e^{i\pi} + 1 = 0$` and it becomes the equation. Click into it and the
|
|
6
11
|
source comes back. There is no edit mode and no preview mode.
|
|
7
12
|
|
|
13
|
+
<img src="https://raw.githubusercontent.com/kev-nj/latex-stickies/main/assets/demo.gif" alt="Typing maths, a table, a code block and an autocompleted equation into a note" width="420">
|
|
14
|
+
|
|
8
15
|
```
|
|
9
16
|
npx latex-stickies
|
|
10
17
|
```
|
|
@@ -137,6 +144,7 @@ npm start # run from source
|
|
|
137
144
|
npm test # unit suites
|
|
138
145
|
npm run vendor # rebuild the bundled libraries
|
|
139
146
|
npm run icon # rebuild the app icon from assets/icon-master.png
|
|
147
|
+
npm run demo # re-record assets/demo.gif from the real app (needs ffmpeg)
|
|
140
148
|
npm run dist # build a macOS .app and .dmg
|
|
141
149
|
```
|
|
142
150
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "latex-stickies",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"description": "Sticky notes for your desktop that render LaTeX and Markdown.",
|
|
5
5
|
"main": "src/main.js",
|
|
6
6
|
"scripts": {
|
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
"test": "node scripts/test.js",
|
|
9
9
|
"vendor": "node scripts/vendor.js",
|
|
10
10
|
"icon": "node scripts/make-icon.js",
|
|
11
|
+
"demo": "node scripts/make-demo.js",
|
|
11
12
|
"dist": "node scripts/build-dmg.js",
|
|
12
13
|
"install-app": "npm run dist && rm -rf \"/Applications/LaTeX Stickies.app\" && cp -R \"dist/mac-arm64/LaTeX Stickies.app\" /Applications/ && xattr -dr com.apple.quarantine \"/Applications/LaTeX Stickies.app\"",
|
|
13
14
|
"prepublishOnly": "npm test",
|