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
4 changes: 2 additions & 2 deletions apps/gittensory-extension/content.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ function mountOverlay(target) {
container.innerHTML = `
<div class="gittensory-overlay__header">
<span class="gittensory-overlay__mark">G</span>
<span>Gittensory</span>
<span>LoopOver</span>
<span class="gittensory-overlay__privacy">Private</span>
<button type="button" class="gittensory-overlay__refresh" aria-label="Refresh Gittensory context">Refresh</button>
<button type="button" class="gittensory-overlay__refresh" aria-label="Refresh LoopOver context">Refresh</button>
</div>
<div class="gittensory-overlay__body">Loading private context...</div>
`;
Expand Down
6 changes: 3 additions & 3 deletions apps/gittensory-extension/options.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Gittensory Extension</title>
<title>LoopOver Extension</title>
<style>
body {
margin: 0;
Expand Down Expand Up @@ -63,8 +63,8 @@
</head>
<body>
<main>
<h1>Gittensory extension</h1>
<p>Paste an extension session token from the Gittensory app. Session tokens stay in browser local storage, are never synced, and GitHub personal access tokens are rejected.</p>
<h1>LoopOver extension</h1>
<p>Paste an extension session token from the LoopOver app. Session tokens stay in browser local storage, are never synced, and GitHub personal access tokens are rejected.</p>
<form id="settings">
<label>
API origin
Expand Down
2 changes: 1 addition & 1 deletion apps/gittensory-miner-extension/opportunity-badge.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ function renderOpportunityBadgeMarkup(badge, lastSyncedLabel) {
return `
<div class="gittensory-miner-opportunity-badge__header">
<span class="gittensory-miner-opportunity-badge__mark">G</span>
<span>Gittensory opportunity</span>
<span>LoopOver opportunity</span>
<span class="gittensory-miner-opportunity-badge__read-only">Read-only</span>
</div>
<div class="gittensory-miner-opportunity-badge__score">
Expand Down
4 changes: 2 additions & 2 deletions apps/gittensory-miner-extension/options.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Gittensory Miner Extension</title>
<title>LoopOver Miner Extension</title>
<style>
body {
margin: 0;
Expand Down Expand Up @@ -54,7 +54,7 @@
</head>
<body>
<main>
<h1>Gittensory miner extension</h1>
<h1>LoopOver miner extension</h1>
<p>
Configure which repositories this contributor-facing extension should watch on GitHub issue pages. This is a
separate product surface from the maintainer overlay at <code>apps/gittensory-extension/</code>.
Expand Down
2 changes: 1 addition & 1 deletion test/unit/miner-extension-content.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ describe("miner extension opportunity badge", () => {
status: "ready",
});
expect(container.hidden).toBe(false);
expect(container.innerHTML).toContain("Gittensory opportunity");
expect(container.innerHTML).toContain("LoopOver opportunity");
expect(container.innerHTML).toContain(formatted.tier);

const missing = createMockContainer();
Expand Down
Loading