Ps4-updatefeature.html: Difference between revisions

From PS4 Developer wiki
Jump to navigation Jump to search
mNo edit summary
No edit summary
 
Line 1: Line 1:
== PS4 updatefeature ==
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.
The [[ps4-updatefeature.html]] is shown when the user selects to view changes of the system update.


= URL =
<nowiki>http://h</nowiki><span style="color: red;">&lt;Region&gt;</span>01.ps4.update.playstation.net/update/ps4/html/<span style="color: red;">&lt;Region&gt;</span>/<span style="color: green;">&lt;Language&gt;</span>/ps4-updatefeature.html
* <span style="color: red;">&lt;Region&gt;</span> 2 letter region abbreviation (jp,us,eu, etc.)
* <span style="color: green;">&lt;Language&gt;</span> 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:
<source lang="html4strict">
<source lang="html4strict">
<!DOCTYPE HTML>
<!DOCTYPE HTML>
Line 46: Line 58:
</source>
</source>


PS4 Update Feature Structure
== New Version ==


<nowiki>http://h</nowiki><span style="color: red;">&lt;Region&gt;</span>01.ps4.update.playstation.net/update/ps4/html/<span style="color: red;">&lt;Region&gt;</span>/<span style="color: green;">&lt;Language&gt;</span>/ps4-updatefeature.html
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.
* <span style="color: red;">&lt;Region&gt;</span> 2 letter region abbreviation (jp,us,..)
 
* <span style="color: green;">&lt;Language&gt;</span> 2 letter language abbreviation (jp,us,..)
As of System Software 12.00 and for Region "us" and Language "us", the content was:
<source lang="html5">
<!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>
 
</source>


{{Software}}
{{Software}}
<noinclude>[[Category:Main]]</noinclude>
<noinclude>[[Category:Main]]</noinclude>

Latest revision as of 22:34, 29 December 2024

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[edit | edit source]

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[edit | edit source]

Old Version[edit | edit source]

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[edit | edit source]

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>