Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 <!DOCTYPE html> | |
1 <!-- | 2 <!-- |
2 - This file is part of Adblock Plus <https://adblockplus.org/>, | 3 - This file is part of Adblock Plus <https://adblockplus.org/>, |
3 - Copyright (C) 2006-present eyeo GmbH | 4 - Copyright (C) 2006-present eyeo GmbH |
4 - | 5 - |
5 - Adblock Plus is free software: you can redistribute it and/or modify | 6 - Adblock Plus is free software: you can redistribute it and/or modify |
6 - it under the terms of the GNU General Public License version 3 as | 7 - it under the terms of the GNU General Public License version 3 as |
7 - published by the Free Software Foundation. | 8 - published by the Free Software Foundation. |
8 - | 9 - |
9 - Adblock Plus is distributed in the hope that it will be useful, | 10 - Adblock Plus is distributed in the hope that it will be useful, |
10 - but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 - but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 12 - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
12 - GNU General Public License for more details. | 13 - GNU General Public License for more details. |
13 - | 14 - |
14 - You should have received a copy of the GNU General Public License | 15 - You should have received a copy of the GNU General Public License |
15 - along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | 16 - along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
16 --> | 17 --> |
17 <!DOCTYPE html> | 18 |
18 <html> | 19 <html> |
19 <head> | 20 <head> |
20 <title class="i18n_firstRun_title"></title> | 21 <title class="i18n_updates_status"></title> |
Thomas Greiner
2017/11/03 17:40:01
Coding style: "Indentation: Two spaces per logic l
Thomas Greiner
2017/11/03 17:40:02
This class name refers to the wrong message ID.
martin
2017/11/06 16:05:46
Done.
martin
2017/11/06 16:05:46
Done.
| |
21 <meta charset="utf-8" /> | 22 <meta charset="utf-8" /> |
22 <meta name="viewport" content="width=device-width, initial-scale=1" /> | 23 <meta name="viewport" content="width=device-width, initial-scale=1" /> |
Thomas Greiner
2017/11/03 17:40:02
I'm fine with adding this to have a more pleasant
martin
2017/11/06 16:05:50
This page would never be viewed from a mobile devi
Thomas Greiner
2017/11/14 12:25:39
The spec doesn't mention that this should only app
| |
23 <link type="text/css" href="skin/common.css" rel="stylesheet" /> | 24 <link href="skin/updates.css" rel="stylesheet"/> |
Thomas Greiner
2017/11/03 17:40:02
Detail: None of the styles included in common.css
martin
2017/11/06 16:05:46
Done.
| |
24 <link type="text/css" href="skin/updates.css" rel="stylesheet"/> | 25 <script src="polyfill.js"></script> |
25 <script type="text/javascript" src="polyfill.js"></script> | 26 <script src="ext/common.js"></script> |
Thomas Greiner
2017/11/03 17:40:02
Detail: The "type" attribute has been made optiona
martin
2017/11/06 16:05:49
Done.
| |
26 <script type="text/javascript" src="ext/common.js"></script> | 27 <script src="ext/content.js"></script> |
27 <script type="text/javascript" src="ext/content.js"></script> | 28 <script src="common.js"></script> |
28 <script type="text/javascript" src="common.js"></script> | 29 <script src="i18n.js"></script> |
29 <script type="text/javascript" src="i18n.js"></script> | 30 <script src="updates.js"></script> |
30 </head> | 31 </head> |
31 | 32 |
32 <body> | 33 <body> |
33 | |
34 <main> | |
35 <div id="container"> | |
36 | 34 |
37 <header class="column graphic-column"> | 35 <main> |
38 <div class="update-graphic-container"> | 36 <div id="container"> |
39 <div class="update-graphic-content"> | 37 |
40 <img src="/skin/updates-page/abp-logo.svg" alt="adblock- plus-logo"/> | 38 <header class="column graphic-column"> |
Thomas Greiner
2017/11/03 17:40:02
Detail: Texts in "alt" attributes are just as visi
martin
2017/11/06 16:05:49
Done.
| |
41 <div class="version-details"> | 39 <div class="update-graphic-container"> |
42 <h2>Update Complete</h2> | 40 <div class="update-graphic-content"> |
Thomas Greiner
2017/11/03 17:40:02
We mentioned it in today's meeting but just for co
Thomas Greiner
2017/11/03 17:40:03
Detail: I noticed that if this text is longer (i.e
martin
2017/11/06 16:05:49
Done.
martin
2017/11/06 16:05:49
Done.
| |
43 <span>v1.13.4</span> | 41 <img src="/skin/abp-logo.svg"/> |
Thomas Greiner
2017/11/03 17:40:01
Detail: The version number may end up being differ
martin
2017/11/06 16:05:46
I removed the version number <span> to not delay i
| |
44 </div> | 42 <div class="version-details"> |
45 | 43 <h2 class="i18n_updates_status"></h2> |
46 </div> | 44 </div> |
47 </header> | 45 |
46 </div> | |
47 </header> | |
48 | |
49 <section class="column content-column"> | |
50 | |
51 <div id="content"> | |
52 | |
53 <header> | |
54 <h1 class="i18n_updates_heading"></h1> | |
55 <p class="i18n_updates_subheading"></p> | |
56 </header> | |
57 | |
58 <article class="feature-entry"> | |
59 <img class="feature-icon" src="/skin/updates/icon-rocket.svg"/> | |
60 <p id="options-page-news" class="i18n_updates_optionsPageNews">< /p> | |
61 </article> | |
62 | |
63 <article class="feature-entry"> | |
64 <img class="feature-icon" src="/skin/updates/icon-thumbs-up.svg" /> | |
65 <p id="block-ads-text" class="i18n_updates_blockAds"></p> | |
66 </article> | |
67 | |
68 <article class="custom-feature-entry"> | |
69 <h2 class="i18n_updates_phone"></h2> | |
70 | |
71 <div class="feature-entry"> | |
72 <img class="feature-icon" src="/skin/updates/icon-mobile.svg"/ > | |
73 <p id="adblock-browser-text" class="i18n_updates_adblockBrowse r"></p> | |
74 </div> | |
75 | |
76 <div class="store-buttons"> | |
77 <a id="adblock-browser-ios-store" class="store-button applesto re-button" target="_blank"> | |
78 <img src="skin/updates/appstore-bg.svg" alt="apple store but ton"> | |
79 </a> | |
80 <a id="adblock-browser-android-store" class="store-button goog leplay-button" target="_blank"> | |
81 <img src="skin/updates/googleplay-bg.svg" alt="google play s tore button"> | |
82 </a> | |
83 </div> | |
48 | 84 |
49 <section class="column content-column"> | 85 </article> |
50 | 86 |
51 <div id="content"> | |
52 | |
53 <header> | |
54 <h1>Adblock Plus has been updated!</h1> | |
55 <p>What's new?</p> | |
56 </header> | |
57 | |
58 <article class="feature-entry"> | |
59 <img class="feature-icon" src="/skin/updates-page/ic on-rocket.svg" alt="rocket-icon"/> | |
60 <p>All new Options page - revamped and restyled - so it’s easier to customize Adblock Plus just like you want it. <a href="#">Check it out for yourself</a>.</p> | |
Thomas Greiner
2017/11/03 17:40:01
Detail: We try to normalize strings, for instance
Thomas Greiner
2017/11/03 17:40:02
This link and the app store buttons below are miss
martin
2017/11/06 16:05:46
Done.
| |
61 </article> | |
62 | |
63 <article class="feature-entry"> | |
64 <img class="feature-icon" src="/skin/updates-page/ic on-thumbs-up.svg" alt="thumbs-up-icon"/> | |
65 <p>Block ads on Facebook again! New blocking tech al lows for fast fixes in case <strike>the Empire</strike> Facebook strikes back.</ p> | |
Thomas Greiner
2017/11/03 17:40:02
The `<strike>` element has been deprecated in HTML
martin
2017/11/06 16:05:46
Done.
| |
66 </article> | |
67 | |
68 <article class="custom-feature-entry"> | |
69 <h2>But what about your phone?</h2> | |
70 <div class="feature-entry"> | |
71 <img class="feature-icon" src="/skin/updates-pag e/icon-mobile.svg" alt="thumbs-up-icon"/> | |
72 <p>If you like taking control on desktop, you ca n block ads and improve your privacy and security on mobile, too. Get the Adbloc k Browser App below.</p> | |
73 </div> | |
74 <div class="store-buttons"> | |
75 <a href="" class="store-button applestore-button "> | |
76 <img src="skin/updates-page/appstore-bg.svg" alt="apple store button"> | |
77 </a> | |
78 <a href="" class="store-button googleplay-button "> | |
79 <img src="skin/updates-page/googleplay-bg.sv g" alt="google play store button"> | |
Thomas Greiner
2017/11/03 17:40:01
Are we allowed to use those images? Because accord
Thomas Greiner
2017/11/03 17:40:02
These images contain text which we means that we c
martin
2017/11/06 16:05:49
We could potentially do that, but it'll slow us do
martin
2017/11/06 16:05:50
Apple store button is in accordance with their gui
Thomas Greiner
2017/11/14 12:25:40
Great, thanks!
| |
80 </a> | |
81 </div> | |
82 </article> | |
83 | |
84 </div> | |
85 | |
86 </section> | |
87 | |
88 </div> | 87 </div> |
89 | 88 |
90 </main> | 89 </section> |
91 | 90 |
91 </div> | |
92 | |
93 </main> | |
94 | |
92 </body> | 95 </body> |
93 | 96 |
94 </html> | 97 </html> |
95 | |
LEFT | RIGHT |