Skip to content

Commit 4da954a

Browse files
committed
update ids mapping
1 parent 68e38ff commit 4da954a

File tree

1 file changed

+6
-10
lines changed

1 file changed

+6
-10
lines changed

app.mjs

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -161,12 +161,10 @@ ON CONFLICT (id)
161161
async function GenerateHtml() {
162162
const fileOpts = { 'encoding': 'utf8', 'flags': 'w' };
163163
const idToTitle = {
164-
'2': '1.0.0',
165-
'5': '1.1.0',
166-
'14': '0.15.0',
167-
'19': '0.14.0',
168-
'20': '0.13.0',
164+
'19': '0.15.0',
165+
'20': '0.14.0',
169166
'23': '0.12.0',
167+
'25': '0.13.0',
170168
};
171169
let repoHistories = [];
172170
{
@@ -205,12 +203,10 @@ limit 1000
205203
}
206204

207205
const idsToShow = [
208-
'20', // 0.13.0
206+
'25', // 0.13.0
209207
'23', // 0.12.0
210-
// '19', // '0.14.0',
211-
// '14', // '0.15.0',
212-
// '2', // '1.0.0'
213-
// '5', // '1.1.0',
208+
// '20', // '0.14.0',
209+
// '19', // '0.15.0',
214210
];
215211

216212
const sqls = idsToShow.map((id) => {

0 commit comments

Comments
 (0)