Skip to content

Commit

Permalink
Deploying to gh-pages from @ 8426e83 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
dgkf committed Aug 3, 2024
1 parent 37ad927 commit 49058bc
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 11 deletions.
2 changes: 2 additions & 0 deletions assets/prompt/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,8 @@
}

.prompt-input-textarea, .prompt-highlight, .prompt-diagnostics {
-webkit-text-size-adjust: 100%;

box-sizing: border-box;
font-family: monospace, mono;
white-space: pre;
Expand Down
12 changes: 6 additions & 6 deletions assets/wasm/r/r.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,12 @@ export function wasm_parse_errors(args: any, input: string): (ParseError)[];
export function wasm_highlight(args: any, input: string): any[];
/**
*/
export enum Experiment {
TailCalls = 0,
RestArgs = 1,
}
/**
*/
export enum Localization {
En = 0,
Es = 1,
Expand All @@ -38,12 +44,6 @@ export enum Localization {
Emoji = 5,
}
/**
*/
export enum Experiment {
TailCalls = 0,
RestArgs = 1,
}
/**
* Run the R REPL
*/
export class Cli {
Expand Down
4 changes: 2 additions & 2 deletions assets/wasm/r/r.js
Original file line number Diff line number Diff line change
Expand Up @@ -286,10 +286,10 @@ function handleError(f, args) {
}
/**
*/
export const Localization = Object.freeze({ En:0,"0":"En",Es:1,"1":"Es",Zh:2,"2":"Zh",De:3,"3":"De",Pirate:4,"4":"Pirate",Emoji:5,"5":"Emoji", });
export const Experiment = Object.freeze({ TailCalls:0,"0":"TailCalls",RestArgs:1,"1":"RestArgs", });
/**
*/
export const Experiment = Object.freeze({ TailCalls:0,"0":"TailCalls",RestArgs:1,"1":"RestArgs", });
export const Localization = Object.freeze({ En:0,"0":"En",Es:1,"1":"Es",Zh:2,"2":"Zh",De:3,"3":"De",Pirate:4,"4":"Pirate",Emoji:5,"5":"Emoji", });

const CliFinalization = (typeof FinalizationRegistry === 'undefined')
? { register: () => {}, unregister: () => {} }
Expand Down
Binary file modified assets/wasm/r/r_bg.wasm
Binary file not shown.
18 changes: 15 additions & 3 deletions release/v0.4.0/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,16 @@
<html lang="en-US" class="dark">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="viewport-fit=cover width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"/>

<title>r v0.4.0</title>
<meta name="description" content="A reimagining of R"/>
<link rel="icon" type="image/svg+xml" size="any" href="/R/assets/img/favicon.svg"/>

<meta name="viewport" content="viewport-fit=cover width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"/>
<meta name="mobile-web-app-capable" content="yes"/>
<meta name="apply-mobile-web-app-title" content="R"/>
<meta name="apple-mobile-web-app-capable" content="yes"/>
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"/>

<link rel="stylesheet" href="/R/assets/css/style.css">
<link rel="stylesheet" href="/R/assets/css/theme.css">

Expand All @@ -26,7 +30,7 @@

a {
color: inherit;
text-decoration: none;
text-decoration-color: rgba(var(--fg-rgb), 0.35);
}

hr {
Expand Down Expand Up @@ -423,10 +427,18 @@ <h2>Thanks to all Contributors!</h2>
<li><a href="https://github.com/armenic">@armenic</a></li>
</ul>

<p>
With an especially big thank you going out to
<strong><a href="https://github.com/sebffischer">@sebffischer</a></strong>
who dove deep into the internals in order to improve some
central behaviors of the language.
</p>

<p>
If you're interested in getting involved, there are plenty of discussions
on <a href="https://github.com/dgkf/R/issues?q=is%3Aissue+is%3Aopen+label%3Ameta-proposal">language features</a>,
and plenty of <a href="https://github.com/dgkf/R/labels/meta-good%20first%20issue">good first issues</a>!
</p>

<h2 class="float-right" style="text-align: right; margin: 4em;">
until the next release!
Expand Down

0 comments on commit 49058bc

Please sign in to comment.