Skip to content

Commit ac25ae3

Browse files
committed
updated tasks list
1 parent f8d8845 commit ac25ae3

File tree

1 file changed

+0
-53
lines changed

1 file changed

+0
-53
lines changed

big list of undocumented features.md

Lines changed: 0 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,6 @@
1919

2020
---
2121

22-
## 3. Editor / Code Editing
23-
- **Unicode symbol autocomplete** — Tab-complete `\alpha``α`, `\:smile:` → emoji. (#153, #1485, #2876)
24-
- **Latex reverse search in Live Docs** — Type a Unicode character and see its LaTeX equivalent. (#2476)
25-
---
26-
2722
## 4. Cell Features
2823
- **Add/delete cells** — Cells can be added and deleted via the UI or keyboard shortcuts. (#37)
2924
- **Fold/hide cells** — Cell code can be folded (hidden) while keeping the output visible. (#484)
@@ -33,23 +28,8 @@
3328
---
3429

3530
## 5. @bind and Interactivity
36-
37-
- **`@bind` macro** — Bind Julia variables to HTML input elements for interactive notebooks. (#86)
38-
- **Reactive `@bind`** — Changing a bound input re-runs all dependent cells. (#86)
3931
- **`@bind` with date/time inputs** — Works with `<input type=date>`, `<input type=range>`, etc. (#453)
40-
- **Bond value sent as Uint8Array** — File inputs send data as efficient binary arrays. (#439)
41-
- **Interactive `@bind` in static preview** — Static HTML exports allow interactive `@bind` widgets when connected to a PlutoSliderServer. (#988)
42-
- **Greyed-out bonds in static HTML** — Bonds in static HTML without a slider server are visually greyed out with an explanation. (#2047)
43-
- **Slider server running status** — Cells that are updated by a PlutoSliderServer appear in a "running" state. (#2601)
44-
- **Skip intermediate bond values** — When rapidly moving a slider, intermediate values are skipped for performance. (#1892, #2992)
45-
- **Send queued bond changes when notebook is idle** — Bond updates are batched and sent when no cells are running. (#1898)
4632
- **Bond-defining-bond support** — A bond's value can depend on another bond (for PlutoSliderServer). (#3158)
47-
- **`possible_bond_values`** — API for widgets to declare their possible values (used by PlutoSliderServer). (#1600, #1703, #1763)
48-
- **AbstractPlutoDingetjes.jl integration** — Package for widget authors to declare initial values, transformations, and more. (#1612)
49-
- **`publish_to_js` / Julia→JS data API** — API to pass Julia data to JavaScript in cell output. (#1124, #1719, #1721, #2608)
50-
- **`publish_to_js` in logs**`publish_to_js` works inside log messages. (#2607)
51-
- **`with_js_link`** — JavaScript API to request calculations and data from Julia dynamically (lazy loading). (#2726, #2780)
52-
5333
---
5434

5535
## 6. Output Display & Rendering
@@ -72,22 +52,13 @@
7252
- **Recents list** — Recently opened notebooks are shown on the main menu. (#37)
7353
- **Recents: shortest unambiguous path** — Recent notebooks are shown with the shortest unambiguous path. (#693)
7454
- **Paste/drop `.jl` files to open** — You can paste or drop a `.jl` file onto the welcome screen to open it. (#1015)
75-
- **Open notebooks without browser**`Pluto.run(notebook="path.jl")` opens a notebook without launching a browser. (#1324)
7655
- **Open multiple notebooks at start** — Multiple notebooks can be passed to `Pluto.run()` to open on startup. (#1324)
7756
---
7857

7958
## 11. Notebook Files & Format
8059
- **Auto-save on run** — The notebook file is saved every time a cell is run. (#37)
81-
- **Auto-reload from file** — Pluto watches the notebook file for external changes and reloads automatically. (#1029, #1555)
82-
- **Improved auto-reload** — Smarter timing avoids triggering reload from Pluto's own saves. (#1555)
83-
- **Don't save on bond changes** — Notebook file is not rewritten when bonds change (only on cell runs). (#2402)
8460
- **Option to disable writing to file**`disable_writing_notebook_file` option prevents Pluto from saving changes to disk. (#1047, #1717)
85-
- **Don't overwrite file on save error** — If a save fails, the existing file is preserved. (#976)
8661
- **Cell order is explicit** — The notebook file includes an explicit `Cell order:` section. (#37)
87-
- **Recover cells missing from cell order** — Cells in the file but not in cell order are recovered on load. (#1772)
88-
- **More stable file parsing when cell order is missing** — Notebook loading is more resilient to missing cell order sections. (#3285)
89-
- **Compare metadata when reloading** — Notebook comparison considers cell metadata when checking for changes. (#2291)
90-
- **Update disabled cell dependency before saving** — Indirect dependencies of disabled cells are computed before saving. (#2239)
9162
- **Notebook metadata** — A `metadata` field in the notebook structure stores notebook-wide settings. (#2016)
9263
- **Pluto Recording format** — A special file format for recording notebook sessions as interactive replays. (#1623)
9364

@@ -149,30 +120,6 @@
149120

150121
---
151122

152-
## 15. Performance
153-
154-
- **Malt.jl process management** — Replaced Distributed.jl with Malt.jl for faster, cleaner process management. (#2240)
155-
- **Run process start and Pkg init in parallel** — These two startup tasks run concurrently, saving ~10 seconds. (#2406)
156-
- **Precompile with `PrecompileTools.jl`** — Uses `PrecompileTools.@precompile_all_calls` for better precompilation. (#2441, #2534)
157-
- **Precompile statements for SessionActions** — Precompile directives reduce time-to-first-X for opening notebooks. (#1934, #1977)
158-
- **`Base.Experimental.@max_methods 1`** — Reduces method invalidations for faster compilation. (#2068)
159-
- **Fix method invalidations around `Base.convert`** — 750+ method invalidations eliminated. (#2300)
160-
- **State diffing performance** — Lazy dictionaries and immutable comparison for faster notebook state diffing. (#2072, #2073)
161-
- **`@bind` 5x speedup** — Caching in `update_dependency_cache!` makes bond updates 5x faster. (#2080)
162-
- **Autocomplete 15x faster** — Latex/emoji completions done client-side in JS. (#2857, #2876)
163-
- **Large notebook speedups** — Fixed cache miss in `notebook_to_js`, LRU cache for topology, skipping unneeded updates. (#2973, #2974, #2976, #3164, #3165)
164-
- **State update throttle rework** — Background status sync is throttled more intelligently. (#2979, #2981)
165-
- **Delete stale connections** — Disconnected clients are cleaned up to avoid performance degradation. (#2977)
166-
- **Faster PlutoRunner process init** — Loader optimization speeds up workspace creation. (#3402)
167-
- **`deep_enough_copy` optimization** — Uses `@generated` for faster notebook state copying. (#2974)
168-
- **CSS animation performance** — Replaced CSS `top/left` animations with `translateY` for GPU compositing. (#634, #912, #1945)
169-
- **Don't render loading bar animation when idle** — Avoids unnecessary repaints. (#3239)
170-
- **CodeMirror lazy loading** — Code editors are created lazily as cells scroll into view. (#2885)
171-
- **Reduce overspecializations** — Reduced type specializations in PlutoRunner for smaller compilation footprint. (#2062)
172-
- **Preload statefile in static HTML** — Avoids double download of the statefile on page load. (#2887)
173-
174-
---
175-
176123
## 16. Accessibility & Keyboard Navigation
177124

178125
- **Tab-friendly export menu** — The export menu uses `<dialog>` for proper keyboard accessibility. (#2750)

0 commit comments

Comments
 (0)