Ps4-updatefeature.html: Difference between revisions
Jump to navigation
Jump to search
(Added Update Feature Structure) |
CelesteBlue (talk | contribs) No edit summary |
||
(One intermediate revision by one other user not shown) | |||
Line 1: | Line 1: | ||
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;"><Region></span>01.ps4.update.playstation.net/update/ps4/html/<span style="color: red;"><Region></span>/<span style="color: green;"><Language></span>/ps4-updatefeature.html | |||
* <span style="color: red;"><Region></span> 2 letter region abbreviation (jp,us,eu, etc.) | |||
* <span style="color: green;"><Language></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> | ||
== 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: | |||
<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®4 System Software Update</title>
</head>
<body>
<!-- #wrapper -->
<div id="wrapper">
<!-- #contentWrapper -->
<div id="contentWrapper">
<!-- #contentHeader -->
<div id="contentHeader">
<h1>PlayStation®4 System Software Update</h1>
</div>
<!-- / #contentHeader -->
<!-- #content -->
<div id="content">
<!-- #contentBody -->
<div id="contentBody">
<!-- ---------------------------------------------------- -->
<section class="sectionBox">
<h2>PlayStation®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>