JuliaPluto / PlutoDesktop

Pluto.jl bundled into an easy-to-install desktop app — currently under development
MIT License
44 stars 1 forks source link

Refactor "Pluto" class to support multiple windows #79

Closed ctrekker closed 4 months ago

ctrekker commented 8 months ago

Currently Pluto is written as a singleton, which is convenient for single-windowed apps but will not naturally translate well to multiple windows opened. This is only tricky since actions performed on one window still need to interface with the same Pluto backend, which is currently also managed by the Pluto class.

ctrekker commented 8 months ago

Linking #15 since completing this issue will make a fix simple