Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,12 @@ If you have any questions and commissions for me, feel free to tell me.

# Update History

- v1.1.2 (July 14, 2025)

1. Fixed TypeError in `fromANDREWROBERTSList` function when processing CSV data with missing author information.
2. Added null check for authors field before calling split() method.
3. Improved error handling for data from Andrew Roberts' spreadsheet.

- v1.1.1 (May 9, 2025)
Modified.

Expand Down
8 changes: 8 additions & 0 deletions Update.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Update Log

## 2025-07-14: v1.1.2 - Bug Fix

### Fixed

- Fixed TypeError in `fromANDREWROBERTSList` function when processing CSV data with missing author information
- Added null check for authors field before calling split() method
- Improved error handling for data from Andrew Roberts' spreadsheet

## 2025-05-04: v1.1.0 - Major UI/UX Enhancement

### Added
Expand Down
4 changes: 2 additions & 2 deletions searchApp.html
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ <h1 class="title">Search Google Apps Script Libraries <span id="items"></span></
if (created) {
if (/^\d{2}\/\d{2}\/\d{4}$/.test(created)) {
const [day, month, year] = created.split("/");
createdTime = new Date(year, month, day, "00", "00", "00").getTime() / 1000;
createdTime = new Date(year, month - 1, day).getTime() / 1000;
} else if (/^\d{10}$/.test(created)) {
createdTime = Number(created);
}
Expand All @@ -289,7 +289,7 @@ <h1 class="title">Search Google Apps Script Libraries <span id="items"></span></
description: description,
siteUrl: gitHub || moreinf,
publishedDate: createdTime,
authors: authors.split(","),
authors: authors ? authors.split(',').map(s => s.trim()).filter(Boolean) : [],
tags: tags ? tags.split(",") : [],
projectKey: projectKey,
});
Expand Down