-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdated.html
127 lines (115 loc) · 3.47 KB
/
updated.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<html>
<head>
<title>Welcome to RSS Live Links</title>
<script type="text/javascript" src="updated.js"></script>
<style>
body {
padding: 3px;
margin: 0;
background-color: white;
font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
font-size: 80%;
line-height: 1.5;
overflow: hidden;
}
h2, h3 {
color: #707070;
margin: 0;
}
h2 {
text-align: center;
font-weight: bold;
}
.section {
margin: 5px 0 5px 0;
}
#warnings h3 {
font-weight: bold;
color: red;
}
#container {
border: 1px solid #88C;
padding: 5px;
-webkit-border-radius:5px;
}
#versionMessageDiv {
width: 400px;
max-height: 600px;
padding: 2px;
display: block;
overflow: auto;
overflow-x: hidden;
}
#closeVersionMessageX {
position: absolute;
top: 0px;
right: 0px;
float: right;
cursor: pointer;
background: white url('img/close.png') no-repeat center center;
width: 11px;
height:11px
}
#closeVersionMessageX:hover {
background: white url('img/close_hover.png') no-repeat center center;
}
ul {
margin: 3px 0 3px 0;
list-style-type: circle;
padding-left: 35px;
}
#donations, #warnings .bold {
font-weight: bold;
}
#newFeatures li {
color: black;
font-weight: bold;
}
</style>
</head>
<body>
<div id="container">
<div id="versionMessageDiv">
<a href="popup.html" id="closeVersionMessageX" title="Return to pop-up"></a>
<div id="versionTextDiv">
<h2>Welcome to RSS Live Links</h2>
<div id="upgradeText" class="section"> Thank you for using RSS Live Links.
You are using version <span id="rssllVersion"></span>.
</div>
<div id="newFeatures" class="section">
<h3>What's new</h3>
<ul>
<li>Workaround for character display problems (root cause is a Google Chrome bug reported <a href="#" id="gcb">here</a>)</li>
<li>Fix to occasional non-removal of deleted items (and possibly other issues relating to feed refresh)</li>
<li>New "checkmark" tool for marking feeds. The "spectacles" tool now only opens items</li>
<li>Experimental implementation of context menus in all the logical places. Menu items are only in English at the moment</li>
</ul>
See the documentation for more information.
</div>
<div id="warnings" class="section">
<h3>Known Issues</h3>
<ul>
<li><span class="bold">Google Chrome milestone 17 introduced a problem</span> that affects RSS Live Links when a feed
URL has been blacklisted by Google. See the <a id="rn1"href="#">Release notes</a>
for more information and how to work around the problem.</li>
<li>RSS LL Bookmarks and Google sync do not work well together due to Google sync restrictions.
Use <a id="xmk" href="#">XMarks sync</a> instead. See
<a id="rn2" href="#">the help information</a> for more details.</li>
</ul>
</div>
<div id="links" class="section">
<h3>Documentation</h3>
<ul>
<li><a id="rn3" href="#">Release notes</a></li>
<li><a id="faq" href="#">FAQ</a></li>
<li><a id="doc" href="#">Full documentation</a></li>
<li><a id="bug" href="#">Report a problem or make a suggestion</a></li>
</ul>
<span id="donations">You can help support the development of RSS Live Links through donations via the
<a id="opt" href="#">Options page</a>.</span>
</div>
</div>
</div>
</div>
</body>
</html>