Skip to content

Commit 6375ef3

Browse files
committed
Merge branch 'main' into fixRobots.txt
2 parents e08bef4 + f382c53 commit 6375ef3

File tree

2 files changed

+34
-1
lines changed

2 files changed

+34
-1
lines changed

content/en/project/faqs.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,3 +62,34 @@ then a debugger window will pop up. Let's give Z a value while in the debugger:
6262
(SETQ Z 9)
6363
```
6464
now type `OK` and _enter_ (or middle click in the debugger then choose Ok). It will continue the execution as if the fault never happened. It will return the value 10.
65+
66+
## I have a large display. Medley is so tiny it's hard to read.
67+
68+
(This information is specific to macOS. We need someone who runs Medley under Windows or Linux
69+
to expand this section.)
70+
71+
There are two ways to build and run the Maiko virtual machine/host interface layer
72+
that underlies Medley: running under X Windows ([XQuartz](https://www.xquartz.org/)) and running in a native window
73+
using [SDL](https://www.libsdl.org/). Full instructions for building Maiko for X Windows are [here](https://github.com/Interlisp/maiko).
74+
75+
To make the Medley window larger on a large display, we first build and run Maiko for SDL.
76+
Follow the Maiko build instructions above, but instead of
77+
```
78+
$ cd maiko/bin
79+
$ ./makeright x
80+
```
81+
82+
Do these steps:
83+
```
84+
$ cd maiko/bin
85+
$ ./makeright sdl
86+
```
87+
88+
Then we tell Medley to run with pixel scaling (`-ps` _n_): every Medley pixel is rendered as
89+
_n_*_n_ screen pixels.
90+
91+
To double each pixel, set _n_ to 2:
92+
93+
```
94+
$ /path/to/my/medley.sh -ps 2
95+
```

content/en/project/status/_index.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ Builds of Medley for several operating systems and architectures are generated a
1717

1818
## May 2024 European Lisp Symposium
1919

20-
On May 6, 2024 Andrew Sengul gave the remote talk "The Medley Interlisp Revival" at the [European Lisp Symposium 2024](https://european-lisp-symposium.org/2024/index.html) and you can read the [paper](https://doi.org/10.5281/zenodo.11090093). The video recording will be available soon.
20+
On May 6, 2024 Andrew Sengul gave the remote talk "The Medley Interlisp Revival" at the [European Lisp Symposium 2024](https://european-lisp-symposium.org/2024/index.html) and you can read the [paper](https://doi.org/10.5281/zenodo.11090093). The video recording is available here.
21+
22+
<iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/ZBAJukF5mPE?si=nLVT7PRHd4-m0OMp" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
2123

2224
## 2023 Annual Report released!
2325

0 commit comments

Comments
 (0)