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
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

## [Unreleased]

### Fixed

- README's header logo/plus-icon and screenshot-gallery images used
repo-relative `src` paths (`assets/plus.svg`, `assets/screenshots/*.png`).
GitHub auto-resolves those against the repo's raw-content base, so they
rendered fine there — but the Tabularium registry serves the README's
HTML standalone, with no such resolution, so all 6 images 404'd on the
plugin's registry page once the README actually synced. Switched to
absolute `raw.githubusercontent.com` URLs, matching the pattern already
used for `postgresql-icon.svg` and the `.tabularium` `screenshots` array.

### Changed

- `.tabularium`'s `description` rewritten from the internal-facing
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div align="center">
<img src="https://raw.githubusercontent.com/TabularisDB/tabularis/main/public/logo-sm.png" width="120" height="120" alt="Tabularis logo" />
<img src="assets/plus.svg" width="40" height="40" alt="plus" />
<img src="assets/postgresql-logo-3colors.png" width="120" height="120" alt="PostgreSQL logo" />
<img src="https://raw.githubusercontent.com/TabularisDB/tabularis-postgresql-plugin/main/assets/plus.svg" width="40" height="40" alt="plus" />
<img src="https://raw.githubusercontent.com/TabularisDB/tabularis-postgresql-plugin/main/assets/postgresql-logo-3colors.png" width="120" height="120" alt="PostgreSQL logo" />
</div>

# tabularis-postgresql-plugin
Expand Down Expand Up @@ -79,12 +79,12 @@ both drivers against the same live database and compares every response.

<table>
<tr>
<td><img src="assets/screenshots/02-database-picker.png" alt="PostgreSQL listed in the Choose a database picker" width="400" /><br />PostgreSQL in the database picker</td>
<td><img src="assets/screenshots/03-connection-form.png" alt="PostgreSQL connection form" width="400" /><br />Connection configuration</td>
<td><img src="https://raw.githubusercontent.com/TabularisDB/tabularis-postgresql-plugin/main/assets/screenshots/02-database-picker.png" alt="PostgreSQL listed in the Choose a database picker" width="400" /><br />PostgreSQL in the database picker</td>
<td><img src="https://raw.githubusercontent.com/TabularisDB/tabularis-postgresql-plugin/main/assets/screenshots/03-connection-form.png" alt="PostgreSQL connection form" width="400" /><br />Connection configuration</td>
</tr>
<tr>
<td><img src="assets/screenshots/06-schema-browser.png" alt="Schema browser showing tables, views, and materialized views" width="400" /><br />Multi-schema browsing</td>
<td><img src="assets/screenshots/07-table-data.png" alt="Data grid with a PostgreSQL enum column value" width="400" /><br />Data grid with enum support</td>
<td><img src="https://raw.githubusercontent.com/TabularisDB/tabularis-postgresql-plugin/main/assets/screenshots/06-schema-browser.png" alt="Schema browser showing tables, views, and materialized views" width="400" /><br />Multi-schema browsing</td>
<td><img src="https://raw.githubusercontent.com/TabularisDB/tabularis-postgresql-plugin/main/assets/screenshots/07-table-data.png" alt="Data grid with a PostgreSQL enum column value" width="400" /><br />Data grid with enum support</td>
</tr>
</table>

Expand Down
Loading