From d7d505bf2fee2316e577671c84034881e564c5fb Mon Sep 17 00:00:00 2001 From: Sainan <63328889+Sainan@users.noreply.github.com> Date: Thu, 16 Oct 2025 11:47:54 +0200 Subject: [PATCH] Old versions: Add 39.1.3 --- old-versions.php | 49 +++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 46 insertions(+), 3 deletions(-) diff --git a/old-versions.php b/old-versions.php index c2907a6..8f6bf16 100644 --- a/old-versions.php +++ b/old-versions.php @@ -23,6 +23,13 @@ + + 2025.09.02.14.13 + = 39.1.3 + Caliban Prime + Full modding support + Download + 2025.06.23.11.39 < 39.0.0 @@ -681,7 +688,7 @@

Another project in this niche is Mekael's WFClassic.

-

Downloading

+

Downloading

You will need:

Then, to download this version, simply run DepotDownloader -app 230410 -depot 230411 -manifest -username <your steam username> -remember-password. Note that DepotDownloader may report errors; these are generally only temporary and it will try again.

+
+

Downloading

+

You will need:

+ +

With that sorted out:

+
    +
  1. + Download the base version by running DepotDownloader -app 230410 -depot 230411 -manifest -username <your steam username> remember-password +
      +
    • Note that DepotDownloader may report errors; these are generally only temporary and it will try again.
    • +
    +
  2. +
  3. + Download the update patch + +
  4. +
  5. Now you can replace your Warframe.x64.exe and place the OpenWF/Content folder which the Bootstrapper (version 0.11.13 and up) will pick up
  6. +
+
@@ -697,12 +729,23 @@ { document.getElementById("main-view").classList.add("d-none"); document.getElementById("depot-download-view").classList.add("d-none"); + document.getElementById("patch-download-view").classList.add("d-none"); const hash = location.hash.toString().replace("#", ""); if (hash) { - document.getElementById("depot-download-view").classList.remove("d-none"); - document.querySelectorAll(".manifest-id").forEach(x => x.textContent = hash); + if (hash == "39.1.3") + { + document.getElementById("patch-download-view").classList.remove("d-none"); + document.querySelectorAll(".version-name").forEach(x => x.textContent = hash); + document.querySelectorAll(".manifest-id").forEach(x => x.textContent = "8391191747297658560"); + } + else + { + document.getElementById("depot-download-view").classList.remove("d-none"); + document.querySelectorAll(".version-name").forEach(x => x.textContent = hash); + document.querySelectorAll(".manifest-id").forEach(x => x.textContent = hash); + } } else {