Skip to content

Commit 54e2cd9

Browse files
authored
Site deprecation warning (#3081)
* Site deprecation warning * Warn about iodide going away, update changelog
1 parent 736aaa8 commit 54e2cd9

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# (Unreleased; add upcoming change notes here)
22

3+
- Warn about iodide potentially going away in the future (#3081)
4+
- Use pyodide from jsdelivr (#3020)
35
- Wait for database before running migrations (#2935)
46
- Switched to the jsDelivr CDN for pyodide 0.15.0 (#3020)
57

src/server/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const pageData = JSON.parse(document.getElementById("pageData").textContent);
1515
// create a header message if we're a staging site
1616
const headerMessage = pageData.isStaging
1717
? `You are in Iodide's staging environment, intended for testing and development. The production site is here: <a href="${pageData.productionServerURL}">${pageData.productionServerURL}</a>`
18-
: "";
18+
: '<b>Please note</b>: Iodide is no longer under development, nor being actively maintained. This site should not be used for important work as it may be shut down in the future. For more information, see <a href="https://github.com/iodide-project/iodide">the GitHub Repository</a>.';
1919

2020
const routes = [
2121
{

0 commit comments

Comments
 (0)