Skip to content

Commit

Permalink
Updated next.php for SDL 3.0 development
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Jun 21, 2023
1 parent 3f0dcd4 commit ad0fcc7
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
8 changes: 4 additions & 4 deletions include/nextver.inc.php
@@ -1,11 +1,11 @@
<?php
// Update these on each release.
$current_sdl_major = 2;
$current_sdl_minor = 26;
$current_sdl_major = 3;
$current_sdl_minor = 0;
$current_sdl_patch = 0;
$next_sdl_version_duedate = "March 1, 2023 23:59:59 GMT-0800";
$next_sdl_version_duedate = "January 1, 2024 23:59:59 GMT-0800";

$github_milestone_id = '8'; // sadly, these don't have version strings, so we have to update for each release.
$github_milestone_id = '10'; // sadly, these don't have version strings, so we have to update for each release.

// don't touch these.
$current_sdl_version = "$current_sdl_major.$current_sdl_minor.$current_sdl_patch";
Expand Down
8 changes: 8 additions & 0 deletions next.php
Expand Up @@ -15,6 +15,13 @@
</div>
<div id="content">
<h1>SDL <?php print($sdl_next_version); ?> release schedule</h1>
<p>
SDL 3.0 is currently under development!
</p>
<p>
You can help by trying out the code available on <a href="https://github.com/libsdl-org/SDL">GitHub</a> and <a href="https://github.com/libsdl-org/SDL/issues">reporting</a> any issues you run into.
</p>
<!--
<p>
The next release of SDL is
<strong><?php print($next_sdl_version) ?></strong>.
Expand All @@ -32,6 +39,7 @@
Please help us meet this goal by testing or fixing
issues on the <a href="todo.php"><?php print($next_sdl_version) ?> TODO list</a>!
</p>
-->
</div>
<div class="clearer"></div>
</div>
Expand Down

0 comments on commit ad0fcc7

Please sign in to comment.