Full document, spreadsheet, slideshow, and diagram tooling
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

refactor: rename atmosphere-docs to atmosphere-office

Updates package name, service meta, Docker image path, Nomad job
references, OAuth client metadata, ICS export UIDs, and CI verify
URL to use the new atmosphere-office name and office.lobster-hake.ts.net
hostname.

+7 -7
+2 -2
package-lock.json
··· 1 1 { 2 - "name": "atmosphere-docs", 2 + "name": "atmosphere-office", 3 3 "version": "0.1.0", 4 4 "lockfileVersion": 3, 5 5 "requires": true, 6 6 "packages": { 7 7 "": { 8 - "name": "atmosphere-docs", 8 + "name": "atmosphere-office", 9 9 "version": "0.1.0", 10 10 "dependencies": { 11 11 "@atproto/api": "^0.15.12",
+1 -1
package.json
··· 1 1 { 2 - "name": "atmosphere-docs", 2 + "name": "atmosphere-office", 3 3 "version": "0.1.0", 4 4 "private": true, 5 5 "type": "module",
+3 -3
public/client-metadata.json
··· 1 1 { 2 - "client_id": "https://docs.lobster-hake.ts.net/client-metadata.json", 2 + "client_id": "https://office.lobster-hake.ts.net/client-metadata.json", 3 3 "client_name": "Atmosphere Office", 4 - "client_uri": "https://docs.lobster-hake.ts.net", 5 - "redirect_uris": ["https://docs.lobster-hake.ts.net/callback"], 4 + "client_uri": "https://office.lobster-hake.ts.net", 5 + "redirect_uris": ["https://office.lobster-hake.ts.net/callback"], 6 6 "scope": "atproto transition:generic", 7 7 "grant_types": ["authorization_code"], 8 8 "response_types": ["code"],
+1 -1
src/calendar/ics-export.ts
··· 102 102 const lines: string[] = []; 103 103 104 104 lines.push('BEGIN:VEVENT'); 105 - lines.push(`UID:${event.id}@atmosphere-docs`); 105 + lines.push(`UID:${event.id}@atmosphere-office`); 106 106 107 107 if (event.allDay) { 108 108 lines.push(`DTSTART;VALUE=DATE:${toIcsDate(event.date)}`);