Ps4-updatefeature.html

From PS4 Developer wiki
Revision as of 22:34, 29 December 2024 by CelesteBlue (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

The ps4-updatefeature.html is downloaded and shown when the user selects to view changes of the system update, before choosing to download or not the update to the console.

URL

http://h<Region>01.ps4.update.playstation.net/update/ps4/html/<Region>/<Language>/ps4-updatefeature.html
  • <Region> 2 letter region abbreviation (jp,us,eu, etc.)
  • <Language> 2 letter language abbreviation (jp,us,ca,fr,it,de,es,ar, etc.). The language does not have to match the Region. For example, specifying Region "us" and Language "jp" works.

Content

Old Version

The old version listed the changes, as expected.

As of System Software 1.52 and for Region "us" and Language "us", the content was:

<!DOCTYPE HTML>
<html lang="ja">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="css/default.css">
<link rel="stylesheet" href="css/common.css">
<link rel="stylesheet" href="css/style.css">
<title>PlayStation&reg;4 System Software Update</title>
</head>

<body>
<!-- #wrapper -->
<div id="wrapper"> 
 <!-- #contentWrapper -->
 <div id="contentWrapper"> 
  <!-- #contentHeader -->
  <div id="contentHeader">
   <h1>PlayStation&reg;4 System Software Update</h1>
  </div>
  <!-- / #contentHeader -->
  
  <!-- #content -->
  <div id="content"> 
   <!-- #contentBody -->
   <div id="contentBody"> 
    <!-- ---------------------------------------------------- -->
    <section class="sectionBox">
     <h2>PlayStation&reg;4 System Software Update Version 1.52</h2>
     <p>System software stability during use of some features has been improved.</p>
    </section>
    <!-- ---------------------------------------------------- --> 
   </div>
   <!-- / #contentBody -->
  </div>
  <!-- / #content -->
 </div>
 <!-- / #contentWrapper -->
</div>
<!-- / #wrapper -->
</body>
</html>

New Version

The new version does not list the update features but instead display a QR code that points to the actual content. The user is required to own a smartphone or tablet to be able to see the update features.

As of System Software 12.00 and for Region "us" and Language "us", the content was:

<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="../../css/default.css">
<link rel="stylesheet" href="../../css/common.css">
<link rel="stylesheet" href="../../css/style.css">
<title>PlayStation 4 system software update</title>
</head>

<body>
<div id="wrapper">
 <div id="contentWrapper">
  <div id="content">
   <div id="contentBody">

    <div class="message">
    <p>About This Update</p>
    <p>For details, scan the code or visit playstation.com/ps4-update-info</p>
    </div> 
    <div class="qrcode"><img src="../../images/qrcode.png" /></div>

   </div>
  </div>

 </div>
</div>
</body>
</html>