From 665cb75eedc5ed2ecca523008e407d47072d9ae8 Mon Sep 17 00:00:00 2001 From: John Wooten Date: Wed, 25 Oct 2023 14:26:38 -0400 Subject: [PATCH 1/4] Update liquidity-on-stellar-sdex-liquidity-pools.mdx --- docs/encyclopedia/liquidity-on-stellar-sdex-liquidity-pools.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/encyclopedia/liquidity-on-stellar-sdex-liquidity-pools.mdx b/docs/encyclopedia/liquidity-on-stellar-sdex-liquidity-pools.mdx index c1295201ab..a3ea582567 100644 --- a/docs/encyclopedia/liquidity-on-stellar-sdex-liquidity-pools.mdx +++ b/docs/encyclopedia/liquidity-on-stellar-sdex-liquidity-pools.mdx @@ -21,7 +21,7 @@ An order book is a record of outstanding orders on a network, and each record si A couple of notes on order books on Stellar: - The term “offers” usually refers specifically to ask orders. In Stellar, however, all orders are stored as selling- i.e., the system automatically converts bids to asks. Because of this, the terms “offer” and “order” are used interchangeably in the Stellar ecosystem. -- Order books contain all orders that are not acceptable to parties on either side to make a trade. +- Order books contain all orders that are acceptable to parties on either side to make a trade. - Some assets will have a small or nonexistent order book between them. In these cases, Stellar facilitates path payments, which we’ll discuss later. To view an order book chart, see the [Order Book Wikipedia Page](https://en.wikipedia.org/wiki/Order_book). In addition, there are also plenty of video tutorials and articles out there that can help you understand how order books work in greater detail. From 14bf18c23b2737e0cf29f1a636cf69a4405ac213 Mon Sep 17 00:00:00 2001 From: "john.xlm" <60260750+JFWooten4@users.noreply.github.com> Date: Wed, 15 Apr 2026 14:05:17 -0400 Subject: [PATCH 2/4] Convert audio-only meeting embeds to shared player --- .../2024-01-18.mdx | 10 ++--- .../2024-01-26.mdx | 10 ++--- .../2024-02-01.mdx | 10 ++--- meeting-notes/2024-01-18.mdx | 10 ++--- meeting-notes/2024-01-26.mdx | 10 ++--- meeting-notes/2024-02-01.mdx | 10 ++--- src/components/AudioPlayer.tsx | 39 +++++++++++++++++++ 7 files changed, 57 insertions(+), 42 deletions(-) create mode 100644 src/components/AudioPlayer.tsx diff --git a/i18n/es/docusaurus-plugin-content-blog/2024-01-18.mdx b/i18n/es/docusaurus-plugin-content-blog/2024-01-18.mdx index 20e613c5d5..f8f0e1642b 100644 --- a/i18n/es/docusaurus-plugin-content-blog/2024-01-18.mdx +++ b/i18n/es/docusaurus-plugin-content-blog/2024-01-18.mdx @@ -5,13 +5,9 @@ tags: - protocol --- - +import AudioPlayer from "@site/src/components/AudioPlayer"; + + [Hilo de agenda de Discord](https://discord.com/channels/897514728459468821/1196897067445010452) diff --git a/i18n/es/docusaurus-plugin-content-blog/2024-01-26.mdx b/i18n/es/docusaurus-plugin-content-blog/2024-01-26.mdx index 38cb149017..cc067c8002 100644 --- a/i18n/es/docusaurus-plugin-content-blog/2024-01-26.mdx +++ b/i18n/es/docusaurus-plugin-content-blog/2024-01-26.mdx @@ -5,13 +5,9 @@ tags: - developer --- - +import AudioPlayer from "@site/src/components/AudioPlayer"; + + [Hilo de agenda de Discord](https://discord.com/channels/897514728459468821/1199121845656486009) diff --git a/i18n/es/docusaurus-plugin-content-blog/2024-02-01.mdx b/i18n/es/docusaurus-plugin-content-blog/2024-02-01.mdx index 59d504a616..a0bbf8afe5 100644 --- a/i18n/es/docusaurus-plugin-content-blog/2024-02-01.mdx +++ b/i18n/es/docusaurus-plugin-content-blog/2024-02-01.mdx @@ -5,13 +5,9 @@ tags: - protocol --- - +import AudioPlayer from "@site/src/components/AudioPlayer"; + + [Discord agenda thread](https://discord.com/channels/897514728459468821/1201979721211203614) diff --git a/meeting-notes/2024-01-18.mdx b/meeting-notes/2024-01-18.mdx index 0b6c16e6f2..b4a223eb49 100644 --- a/meeting-notes/2024-01-18.mdx +++ b/meeting-notes/2024-01-18.mdx @@ -4,13 +4,9 @@ authors: naman tags: [protocol] --- - +import AudioPlayer from "@site/src/components/AudioPlayer"; + + [Discord agenda thread](https://discord.com/channels/897514728459468821/1196897067445010452) diff --git a/meeting-notes/2024-01-26.mdx b/meeting-notes/2024-01-26.mdx index 1156f4b2cc..f5b59353e2 100644 --- a/meeting-notes/2024-01-26.mdx +++ b/meeting-notes/2024-01-26.mdx @@ -4,13 +4,9 @@ authors: kalepail tags: [developer] --- - +import AudioPlayer from "@site/src/components/AudioPlayer"; + + [Discord agenda thread](https://discord.com/channels/897514728459468821/1199121845656486009) diff --git a/meeting-notes/2024-02-01.mdx b/meeting-notes/2024-02-01.mdx index f581603ba8..7411b1174c 100644 --- a/meeting-notes/2024-02-01.mdx +++ b/meeting-notes/2024-02-01.mdx @@ -4,13 +4,9 @@ authors: naman tags: [protocol] --- - +import AudioPlayer from "@site/src/components/AudioPlayer"; + + [Discord agenda thread](https://discord.com/channels/897514728459468821/1201979721211203614) diff --git a/src/components/AudioPlayer.tsx b/src/components/AudioPlayer.tsx new file mode 100644 index 0000000000..79380ac3d0 --- /dev/null +++ b/src/components/AudioPlayer.tsx @@ -0,0 +1,39 @@ +import React from "react"; + +type AudioPlayerProps = { + src: string; +}; + +export default function AudioPlayer({ src }: AudioPlayerProps) { + return ( +
+
+ Audio Recording +
+ + +
+ ); +} From 6d7f10807e34b6556b63685a1475a384a4630919 Mon Sep 17 00:00:00 2001 From: "john.xlm" <60260750+JFWooten4@users.noreply.github.com> Date: Thu, 16 Apr 2026 01:51:17 -0400 Subject: [PATCH 3/4] Adjust audio player label styling --- src/components/AudioPlayer.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/AudioPlayer.tsx b/src/components/AudioPlayer.tsx index 79380ac3d0..766b01d360 100644 --- a/src/components/AudioPlayer.tsx +++ b/src/components/AudioPlayer.tsx @@ -12,7 +12,7 @@ export default function AudioPlayer({ src }: AudioPlayerProps) { margin: "20px auto", padding: "12px 14px", borderRadius: 14, - background: "rgba(59, 130, 246, 0.12)", + background: "rgba(59, 130, 246, 0.12)", // blue border: "1px solid rgba(59, 130, 246, 0.35)", }} > @@ -27,7 +27,7 @@ export default function AudioPlayer({ src }: AudioPlayerProps) { gap: 6, }} > - Audio Recording + 🎧 Audio Recording