Skip to content

Commit 8caf738

Browse files
committed
notice about missing windows releases
1 parent 7c248d0 commit 8caf738

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

builder/downloads.ts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -438,6 +438,9 @@ function generateTable(assets: DownloadAsset[], title: string): string {
438438
</thead>
439439
<tbody>`;
440440

441+
// Check if Windows builds are missing and add notice
442+
const hasWindowsBuilds = platformGroups['Windows'] && platformGroups['Windows'].length > 0;
443+
441444
// Define platform order and icons
442445
for (const platform of PLATFORM_ORDER) {
443446
if (!platformGroups[platform]) continue;
@@ -476,6 +479,16 @@ function generateTable(assets: DownloadAsset[], title: string): string {
476479
}
477480
}
478481

482+
// Add Windows notice at the bottom if no Windows builds are available
483+
if (!hasWindowsBuilds) {
484+
tableHtml += `
485+
<tr>
486+
<td colspan="4" style="background-color:rgb(250, 241, 213); border: 1px solid #ffeaa7; color: #856404; padding: 0.75rem; text-align: center; font-style: italic;">
487+
Windows builds are coming in the next 1-2 weeks
488+
</td>
489+
</tr>`;
490+
}
491+
479492
tableHtml += `
480493
</tbody>
481494
</table>`;

content/download.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
### Wallet {{LATEST_VERSION}}
22

3-
**Recommended for most users.** Pre-compiled binaries for the _eigenwallet_ GUI. Allows you to store, send and receive Monero. And to exchange Bitcoin $\rightarrow$ Monero using Atomic Swaps.
3+
**Recommended for most users.** Pre-compiled binaries for the _eigenwallet_ GUI. Will allow you to store, send and receive Monero. Already supports exchanging Bitcoin $\rightarrow$ Monero using Atomic Swaps.
44

55
{{GUI_TABLE}}
66

0 commit comments

Comments
 (0)