mirror of
https://github.com/Fabio286/antares.git
synced 2025-06-05 21:59:22 +02:00
chore: minor docs changes
This commit is contained in:
2
.github/workflows/test-e2e-win.yml
vendored
2
.github/workflows/test-e2e-win.yml
vendored
@ -1,4 +1,4 @@
|
|||||||
name: Test end-to-end [WINDOWS]
|
name: Test end-to-end
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
# Antares SQL Client
|
# Antares SQL Client
|
||||||
|
|
||||||
  [](https://actions-badge.atrox.dev/fabio286/antares/goto)  [](https://twitter.com/AntaresSQL) [](https://www.treedom.net/en/user/fabio-di-stasio/event/antares-for-the-planet)
|
    [](https://twitter.com/AntaresSQL) [](https://www.treedom.net/en/user/fabio-di-stasio/event/antares-for-the-planet)
|
||||||
|
|
||||||
Antares is an SQL client based on [Electron.js](https://github.com/electron/electron) and [Vue.js](https://github.com/vuejs/vue) that aims to become a useful tool, especially for developers.
|
Antares is an SQL client based on [Electron.js](https://github.com/electron/electron) and [Vue.js](https://github.com/vuejs/vue) that aims to become a useful tool, especially for developers.
|
||||||
Our target is to support as many databases as possible, and all major operating systems, including the ARM versions.
|
Our target is to support as many databases as possible, and all major operating systems, including the ARM versions.
|
||||||
@ -35,6 +35,7 @@ We are actively working on it, hoping to provide new cool features, improvements
|
|||||||
- Fake table data filler to generate tons of data for test purpose.
|
- Fake table data filler to generate tons of data for test purpose.
|
||||||
- Query suggestions and auto complete.
|
- Query suggestions and auto complete.
|
||||||
- Query history: search through the last 1000 queries.
|
- Query history: search through the last 1000 queries.
|
||||||
|
- Save queries, notes or todo.
|
||||||
- SSH tunnel support.
|
- SSH tunnel support.
|
||||||
- Manual commit mode.
|
- Manual commit mode.
|
||||||
- Import and export database dumps.
|
- Import and export database dumps.
|
||||||
|
@ -283,6 +283,8 @@ const selectQuery = (query: string) => {
|
|||||||
const workspace = getWorkspace(selectedWorkspace.value);
|
const workspace = getWorkspace(selectedWorkspace.value);
|
||||||
const selectedTab = getWorkspaceTab(workspace.selectedTab);
|
const selectedTab = getWorkspaceTab(workspace.selectedTab);
|
||||||
|
|
||||||
|
if (workspace.connectionStatus !== 'connected') return;
|
||||||
|
|
||||||
if (selectedTab.type === 'query') {
|
if (selectedTab.type === 'query') {
|
||||||
updateTabContent({
|
updateTabContent({
|
||||||
tab: selectedTab.uid,
|
tab: selectedTab.uid,
|
||||||
|
@ -66,7 +66,7 @@ export interface Workspace {
|
|||||||
uid: string;
|
uid: string;
|
||||||
client?: ClientCode;
|
client?: ClientCode;
|
||||||
database?: string;
|
database?: string;
|
||||||
connectionStatus: string;
|
connectionStatus: 'connected' | 'disconnected' | 'failed';
|
||||||
selectedTab: string;
|
selectedTab: string;
|
||||||
searchTerm: string;
|
searchTerm: string;
|
||||||
tabs: WorkspaceTab[];
|
tabs: WorkspaceTab[];
|
||||||
|
Reference in New Issue
Block a user