Skip to content
Merged
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
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ contacts:
email: rsdoiel@caltech.edu

repository-code: "https://github.com/caltechlibrary/cold"
version: 0.0.34
version: 0.0.35
date-released: 2026-01-28

license-url: "https://caltechlibrary.github.io/cold/LICENSE"
Expand Down
7 changes: 4 additions & 3 deletions about.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ maintainer:
id: https://orcid.org/0000-0003-0900-6903

repository_code: https://github.com/caltechlibrary/cold
version: 0.0.34
version: 0.0.35
license_url: https://caltechlibrary.github.io/cold/LICENSE
operating_system:
- Linux
Expand All @@ -58,9 +58,10 @@ date_released: 2026-01-28
About this software
===================

## cold 0.0.34
## cold 0.0.35

- Implemented changes in issue #90, restricted dataset version to 2.2.0 due to bug in people_names query processing.
- Implemented changes in issue #91 and issue #82
- Minor UI view edits from release v0.0.34

### Authors

Expand Down
4 changes: 2 additions & 2 deletions codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,9 @@
"GNU Make",
"Pandoc 3.1"
],
"version": "0.0.34",
"version": "0.0.35",
"developmentStatus": "wip",
"issueTracker": "https://github.com/caltechlibrary/cold/issues",
"downloadUrl": "https://github.com/caltechlibrary/cold/release/latest",
"releaseNotes": "- Implemented changes in issue #90, restricted dataset version to 2.2.0 due to bug in people_names query processing."
"releaseNotes": "- Implemented changes in issue #91 and issue #82\n- Minor UI view edits from release v0.0.34"
}
2 changes: 1 addition & 1 deletion cold.1.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%cold(1) user manual | 0.0.34 e934822
%cold(1) user manual | 0.0.35 ac9dee8
% R. S.Doiel
% 2026-01-28

Expand Down
2 changes: 1 addition & 1 deletion cold_reports.1.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%cold_reports(1) user manual | 0.0.34 e934822
%cold_reports(1) user manual | 0.0.35 ac9dee8
% R. S.Doiel
% 2026-01-28

Expand Down
3 changes: 3 additions & 0 deletions directory_api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,9 @@ export async function directoryLookup(
record.bio = getElementValue(document, ".bio");
record.office = getElementValue(document, ".office");
record.email = getElementValue(document, ".email");
if (record.email.trim() === "[email protected]") {
record.email = "";
}
return record;
}
if (resp.body !== null) {
Expand Down
8 changes: 7 additions & 1 deletion directory_client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,15 @@ function updateRecord(obj: object) {
if (obj.given_name !== undefined && obj.given_name !== "") {
lived_name_elem.value = obj.given_name;
}
if (obj.email !== undefined && obj.email !== "") {
if (
obj.email !== undefined && obj.email !== "" &&
obj.email.indexOf("[email protected]") >= 0
) {
email_elem.value = obj.email;
}
if (email_elem.value.indexOf("[email protected]") >= 0) {
email_elem.value = "";
}
if (obj.division !== undefined && obj.division !== "") {
if (division_elem.value === "") {
division_elem.value = obj.division;
Expand Down
2 changes: 1 addition & 1 deletion directory_sync.1.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%directory_sync(1) user manual | 0.0.34 e934822
%directory_sync(1) user manual | 0.0.35 ac9dee8
% R. S.Doiel
% 2026-01-28

Expand Down
2 changes: 1 addition & 1 deletion division_people.1.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%division_people(1) user manual | 0.0.34 e934822
%division_people(1) user manual | 0.0.35 ac9dee8
% R. S.Doiel
% 2026-01-28

Expand Down
2 changes: 1 addition & 1 deletion group_vocabulary.1.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%group_vocabulary(1) user manual | 0.0.34 e934822
%group_vocabulary(1) user manual | 0.0.35 ac9dee8
% R. S.Doiel
% 2026-01-28

Expand Down
5 changes: 3 additions & 2 deletions htdocs/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@
<section>

<h1>About this software</h1>
<h2>cold 0.0.34</h2>
<h2>cold 0.0.35</h2>
<ul>
<li>Implemented changes in issue #90, restricted dataset version to 2.2.0 due to bug in people_names query processing.</li>
<li>Implemented changes in issue #91 and issue #82</li>
<li>Minor UI view edits from release v0.0.34</li>
</ul>
<h3>Authors</h3>
<ul>
Expand Down
7 changes: 4 additions & 3 deletions htdocs/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ maintainer:
id: https://orcid.org/0000-0003-0900-6903

repository_code: https://github.com/caltechlibrary/cold
version: 0.0.34
version: 0.0.35
license_url: https://caltechlibrary.github.io/cold/LICENSE
operating_system:
- Linux
Expand All @@ -58,9 +58,10 @@ date_released: 2026-01-28
About this software
===================

## cold 0.0.34
## cold 0.0.35

- Implemented changes in issue #90, restricted dataset version to 2.2.0 due to bug in people_names query processing.
- Implemented changes in issue #91 and issue #82
- Minor UI view edits from release v0.0.34

### Authors

Expand Down
5 changes: 4 additions & 1 deletion htdocs/modules/directory_client.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,12 @@ function updateRecord(obj) {
if (obj.given_name !== undefined && obj.given_name !== "") {
lived_name_elem.value = obj.given_name;
}
if (obj.email !== undefined && obj.email !== "") {
if (obj.email !== undefined && obj.email !== "" && obj.email.indexOf("[email protected]") >= 0) {
email_elem.value = obj.email;
}
if (email_elem.value.indexOf("[email protected]") >= 0) {
email_elem.value = "";
}
if (obj.division !== undefined && obj.division !== "") {
if (division_elem.value === "") {
division_elem.value = obj.division;
Expand Down
2 changes: 1 addition & 1 deletion installer.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# Set the package name and version to install
#
$PACKAGE = "cold"
$VERSION = "0.0.34"
$VERSION = "0.0.35"
$GIT_GROUP = "caltechlibrary"
$RELEASE = "https://github.com/${GIT_GROUP}/${PACKAGE}/releases/tag/v${VERSION}"
$SYSTEM_TYPE = Get-ComputerInfo -Property CsSystemType
Expand Down
2 changes: 1 addition & 1 deletion installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# Set the package name and version to install
#
PACKAGE="cold"
VERSION="0.0.34"
VERSION="0.0.35"
GIT_GROUP="caltechlibrary"
RELEASE="https://github.com/$GIT_GROUP/$PACKAGE/releases/tag/v$VERSION"

Expand Down
2 changes: 1 addition & 1 deletion journal_vocabulary.1.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%journal_vocabulary(1) user manual | 0.0.34 e934822
%journal_vocabulary(1) user manual | 0.0.35 ac9dee8
% R. S.Doiel
% 2026-01-28

Expand Down
3 changes: 2 additions & 1 deletion people.ts
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,8 @@ export class People implements PeopleInterface {
(obj.given_name === undefined || obj.given_name === "")
? this.given_name = ""
: this.given_name = obj.given_name as unknown as string;
(obj.email === undefined || obj.email === "")
(obj.email === undefined || obj.email === "" ||
obj.email === "[email protected]")
? this.email = ""
: this.email = obj.email as unknown as string;
(obj.archivesspace_id === undefined || obj.archivesspace_id === "")
Expand Down
2 changes: 1 addition & 1 deletion people_vocabulary.1.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%people_vocabulary(1) user manual | 0.0.34 e934822
%people_vocabulary(1) user manual | 0.0.35 ac9dee8
% R. S.Doiel
% 2026-01-28

Expand Down
2 changes: 1 addition & 1 deletion thesis_option_vocabulary.1.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%thesis_option_vocabulary(1) user manual | 0.0.34 e934822
%thesis_option_vocabulary(1) user manual | 0.0.35 ac9dee8
% R. S.Doiel
% 2026-01-28

Expand Down
4 changes: 2 additions & 2 deletions version.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// cold version and license information.

export const version: string = '0.0.34',
export const version: string = '0.0.35',
releaseDate: string = '2026-01-28',
releaseHash: string = 'e934822',
releaseHash: string = 'ac9dee8',
licenseText: string = `

Copyright (c) 2024, Caltech
Expand Down