-
-
Notifications
You must be signed in to change notification settings - Fork 294
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
26 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ name = "Pluto" | |
uuid = "c3e4b0f8-55cb-11ea-2926-15256bba5781" | ||
license = "MIT" | ||
authors = ["Fons van der Plas <[email protected]>", "Mikołaj Bochenski <[email protected]>"] | ||
version = "0.12.4" | ||
version = "0.12.5" | ||
|
||
[deps] | ||
Base64 = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,7 +51,7 @@ export const offline_html = async ({ pluto_version, body, head }) => { | |
<link rel="stylesheet" href="${CDNified(pluto_version, "editor.css")}" type="text/css" /> | ||
<link rel="stylesheet" href="${CDNified(pluto_version, "treeview.css")}" type="text/css" /> | ||
<link rel="stylesheet" href="${CDNified(pluto_version, "hide-ui.css")}" type="text/css" /> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected].1/lib/codemirror.min.css" type="text/css" /> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected].2/lib/codemirror.min.css" type="text/css" /> | ||
<script src="${CDNified(pluto_version, "treeview.js")}"></script> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,17 +21,17 @@ | |
<script src="https://cdn.jsdelivr.net/npm/[email protected]/lodash.min.js" defer></script> | ||
<script src="https://cdn.jsdelivr.net/npm/@observablehq/[email protected]/dist/stdlib.js" defer></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/js/iframeResizer.min.js" defer></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected].1/lib/codemirror.min.js" defer></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected].1/mode/julia/julia.min.js" defer></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected].1/addon/hint/show-hint.min.js" defer></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected].1/addon/display/placeholder.min.js" defer></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected].1/addon/edit/matchbrackets.min.js" defer></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected].1/addon/runmode/runmode.min.js" defer></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected].1/addon/comment/comment.min.js" defer></script> | ||
<!-- <script src="https://cdn.jsdelivr.net/npm/[email protected].1/addon/edit/closebrackets.min.js" defer></script> --> | ||
<!-- <script src="https://cdn.jsdelivr.net/npm/[email protected].1/addon/search/searchcursor.min.js" defer></script> --> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected].1/lib/codemirror.min.css" /> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected].1/addon/hint/show-hint.min.css" /> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected].2/lib/codemirror.min.js" defer></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected].2/mode/julia/julia.min.js" defer></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected].2/addon/hint/show-hint.min.js" defer></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected].2/addon/display/placeholder.min.js" defer></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected].2/addon/edit/matchbrackets.min.js" defer></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected].2/addon/runmode/runmode.min.js" defer></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected].2/addon/comment/comment.min.js" defer></script> | ||
<!-- <script src="https://cdn.jsdelivr.net/npm/[email protected].2/addon/edit/closebrackets.min.js" defer></script> --> | ||
<!-- <script src="https://cdn.jsdelivr.net/npm/[email protected].2/addon/search/searchcursor.min.js" defer></script> --> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected].2/lib/codemirror.min.css" /> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected].2/addon/hint/show-hint.min.css" /> | ||
|
||
<link rel="stylesheet" href="editor.css" type="text/css" /> | ||
<link rel="stylesheet" href="treeview.css" type="text/css" /> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,11 +19,11 @@ | |
<script src="common/RegisterSW.js"></script> | ||
|
||
<script src="https://cdn.jsdelivr.net/npm/@observablehq/[email protected]/dist/stdlib.js" defer></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected].1/lib/codemirror.min.js" defer></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected].1/addon/hint/show-hint.min.js" defer></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected].1/addon/display/placeholder.min.js" defer></script> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected].1/lib/codemirror.min.css"> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected].1/addon/hint/show-hint.min.css"> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected].2/lib/codemirror.min.js" defer></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected].2/addon/hint/show-hint.min.js" defer></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected].2/addon/display/placeholder.min.js" defer></script> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected].2/lib/codemirror.min.css"> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected].2/addon/hint/show-hint.min.css"> | ||
|
||
|
||
<link rel="stylesheet" href="index.css"> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
@font-face { | ||
font-family: JuliaMono; | ||
src: url("https://cdn.jsdelivr.net/gh/cormullion/juliamono@0.022/webfonts/JuliaMono-RegularLatin.woff2") format("woff2"); | ||
src: url("https://cdn.jsdelivr.net/gh/cormullion/juliamono@0.025/webfonts/JuliaMono-RegularLatin.woff2") format("woff2"); | ||
font-display: swap; | ||
font-weight: 400; | ||
unicode-range: U+00-7F; /* Basic Latin characters */ | ||
} | ||
|
||
@font-face { | ||
font-family: JuliaMono; | ||
src: url("https://cdn.jsdelivr.net/gh/cormullion/juliamono@0.022/webfonts/JuliaMono-BoldLatin.woff2") format("woff2"); | ||
src: url("https://cdn.jsdelivr.net/gh/cormullion/juliamono@0.025/webfonts/JuliaMono-BoldLatin.woff2") format("woff2"); | ||
font-display: swap; | ||
font-weight: 700; | ||
unicode-range: U+00-7F; /* Basic Latin characters */ | ||
} | ||
|
||
@font-face { | ||
font-family: JuliaMono; | ||
src: url("https://cdn.jsdelivr.net/gh/cormullion/juliamono@0.022/webfonts/JuliaMono-Regular.woff2") format("woff2"); | ||
src: url("https://cdn.jsdelivr.net/gh/cormullion/juliamono@0.025/webfonts/JuliaMono-Regular.woff2") format("woff2"); | ||
font-display: swap; | ||
font-weight: 400; | ||
} | ||
|
||
@font-face { | ||
font-family: JuliaMono; | ||
src: url("https://cdn.jsdelivr.net/gh/cormullion/juliamono@0.022/webfonts/JuliaMono-Bold.woff2") format("woff2"); | ||
src: url("https://cdn.jsdelivr.net/gh/cormullion/juliamono@0.025/webfonts/JuliaMono-Bold.woff2") format("woff2"); | ||
font-display: swap; | ||
font-weight: 700; | ||
} |
1ab89bb
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@JuliaRegistrator register()
1ab89bb
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Registration pull request created: JuliaRegistries/General/23919
After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.
This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via: