pglens 2.0.0 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +15 -0
- package/README.md +6 -3
- package/client/app.js +589 -117
- package/client/index.html +26 -0
- package/client/styles.css +521 -18
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,21 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [2.1.0] - 2026-01-11
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- **Default Landing Page**: The app now defaults to an "All Connections" grid view on startup.
|
|
12
|
+
- **Simplified Sidebar**: Connection management (Edit/Delete) is now centralized on the Landing Page.
|
|
13
|
+
- **Smart View Switching**: Table list and search are hidden until a server is explicitly selected.
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
- **Navigation Flow**: "Add Connection" and Logo clicks efficiently return you to the Landing Page.
|
|
17
|
+
- **Auto-Connect Disabled**: Adding a new connection returns to the grid instead of auto-opening the server.
|
|
18
|
+
|
|
19
|
+
### Fixed
|
|
20
|
+
- **View Persistence**: Reconnecting to an active server no longer overwrites open tabs with a loading screen.
|
|
21
|
+
- **Connection Updates**: Fixed issue where the connection grid would not update immediately after adding a server.
|
|
22
|
+
|
|
8
23
|
## [2.0.0] - 2026-01-01
|
|
9
24
|
|
|
10
25
|
### Added
|
package/README.md
CHANGED
|
@@ -54,13 +54,16 @@ pglens url
|
|
|
54
54
|
|
|
55
55
|
### Connect to a Database
|
|
56
56
|
|
|
57
|
-
|
|
58
|
-
|
|
57
|
+
### Connect to a Database
|
|
58
|
+
|
|
59
|
+
1. Open `http://localhost:54321` to see the **All Connections** landing page.
|
|
60
|
+
2. Click the **Add Connection** card or the **+** icon in the grid.
|
|
59
61
|
3. Enter your connection details using one of the tabs:
|
|
60
62
|
- **Parameters** (Default): Enter Host, Port, Database, User, and Password separately.
|
|
61
63
|
- **Connection URL**: Paste a standard PostgreSQL connection string (e.g., `postgresql://user:pass@localhost:5432/db`).
|
|
62
64
|
4. Select the **SSL Mode** appropriate for your server.
|
|
63
|
-
5. Click **Connect**.
|
|
65
|
+
5. Click **Connect**. The server will be added to your grid.
|
|
66
|
+
6. Click the server card to open the **Explorer**.
|
|
64
67
|
|
|
65
68
|
### Stop the Server
|
|
66
69
|
|