Fabio Di Stasio
6af0c33461
fix: locale change
2022-04-22 17:45:12 +02:00
Fabio Di Stasio
e60789f320
refactor: unproxify ipc params
2022-04-22 12:17:27 +02:00
Fabio Di Stasio
afa23f3ef1
refactor: emits in components
2022-04-22 12:16:02 +02:00
Fabio Di Stasio
7c4b605467
Merge branch 'master' of https://github.com/Fabio286/antares into vue3-migration
2022-04-21 14:42:33 +02:00
Fabio Di Stasio
443170bbb1
refactor: vue3 migration in progress
2022-04-21 14:39:24 +02:00
Cleverson
eaf38df1b7
Fixed a typo
...
Fixed a typo
2022-04-20 16:14:14 -03:00
Fabio Di Stasio
c6c14fbf2b
refactor: mysql client ts refactor
2022-04-17 13:00:53 +02:00
Fabio Di Stasio
fc1d6fba7f
refactor: mysql client ts refactor
2022-04-12 17:08:05 +02:00
Cleverson
744c623914
Update pt-BR.js
2022-04-11 09:22:24 -03:00
Fabio Di Stasio
6cc098c6f0
feat(core): option to allow untrusted SSL connections
2022-04-10 10:49:27 +02:00
Fabio Di Stasio
40828cb3ff
Merge pull request #208 from antares-sql/feat/postgre-import-export
...
feat(PostgreSQL): import/export
2022-04-07 17:56:37 +02:00
Fabio Di Stasio
796f61bf2f
feat: french translation updated, closes #222
2022-04-04 10:29:11 +02:00
Fabio Di Stasio
0f9c991f53
fix(PostgreSQL): wrong values exporting table content
2022-04-02 11:44:55 +02:00
Fabio Di Stasio
77f8cac6cf
refactor: update repo links
2022-03-31 16:04:47 +02:00
Fabio Di Stasio
408ddeda56
perf(PostgreSQL): improved dump file
2022-03-27 11:41:35 +02:00
Fabio Di Stasio
f12e6a96dd
fix(UI): connection buttons out of screen on small displays, closes #213
2022-03-24 17:34:24 +01:00
Fabio Di Stasio
a8ca8f2f76
feat(PostgreSQL): export functions and procedures
2022-03-23 13:26:46 +01:00
Cleverson
9601c59392
Update pt-BR.js
2022-03-22 14:38:24 -03:00
Cleverson
14d20a30c1
Added some missing translations for pt-BR
...
Added some translations for pt-BR
2022-03-22 14:29:33 -03:00
Fabio Di Stasio
e9079adb25
feat(UI): option to disable blur effects, closes #209
2022-03-22 16:13:44 +01:00
Fabio Di Stasio
a67071e284
feat(PostgreSQL): export tables
2022-03-21 18:32:45 +01:00
Fabio Di Stasio
8f3efabb69
feat: export database as zip sql file
2022-03-18 18:12:13 +01:00
Fabio Di Stasio
db628f7722
fix: numeric scale displayed on non decimal fields
2022-03-17 18:17:59 +01:00
Fabio Di Stasio
dd070d008d
Merge pull request #129 from toriphes/feat/db-import-export
...
feat(MySQL): db import export
2022-03-12 14:17:48 +01:00
Fabio Di Stasio
ee415da127
fix(MySQL): exception exporting empty procedures/functions
2022-03-12 10:37:40 +01:00
Topollo
7dc314eecf
Merge branch 'master' into fix-and-minimize-con-string
2022-03-09 22:14:28 +02:00
Topollo
330a80fe70
perf(PostgreSQL): ⚡ Postgres connection update, better error handling and connection string accommodation.
...
Used the pg package parser function to handle connection strings to lowering chances of errors. All other connection string will work here an example for ssl ```const args = "postgres://user:password@localhost:5432/db?&sslrootcert=./myCaCertificate.pem&sslcert=./myClientCertificate.pem&sslkey=./myPrivateClientKey.pem&ciphers=mytestcipher&ssl=true"``` for ssh these can be used ```ssh: false, sshHost: '', sshUser: '', sshPass: '', sshKey: '', sshPort: 22,```
no breaking changes
2022-03-09 21:52:13 +02:00
Topollo
b2ce533b82
Merge branch 'postgres_con_string' into fix-and-minimize-con-string
2022-03-09 19:41:31 +02:00
Topollo
12ce6b1135
Update testStringDecode.js
2022-03-09 19:40:04 +02:00
Topollo
71c5829702
hi
2022-03-09 19:31:41 +02:00
Fabio Di Stasio
1c4d5b05b3
feat(UI): toggle tables checkbox by column on export modal
2022-03-07 23:07:42 +01:00
Giulio Ganci
abf2b92e6e
feat(UI): auto-refresh schema at the end of the import process
2022-03-06 19:54:32 +01:00
Fabio Di Stasio
9db6bfd255
refactor: show contributors in settings
2022-03-06 16:02:24 +01:00
Fabio Di Stasio
8e983ad2cb
refactor(PostgreSQL): minor refactor on UI and code for pg connection string
2022-03-06 09:45:55 +01:00
Topollo
6305752ad1
feat(PostgreSQL): ✨ Postgress connection string feature for local and server connection string
...
This feature is based on this [issue](https://github.com/Fabio286/antares/issues/193 ) I tested with the following posgress connection strings postgresql://postgres:pgpassword@127.0.0.1:5432/my_local_databse?connection=local postgres://serveruser:serverpass@test.db.elephantsql.com/my_remote_databse?connection=server postgres://serveruser:serverpass@test.db.elephantsql.com:5432/my_remote_databse postgresql://postgres:pgpassword@127.0.0.1:5432/my_local_databse.
The connection string decoder is loaded before "test-connection", "check-connection", and "connect"
2022-03-06 09:45:55 +01:00
Fabio Di Stasio
cc02e2c5a8
refactor(PostgreSQL): minor refactor on UI and code for pg connection string
2022-03-06 09:40:11 +01:00
Topollo
f4a63eae2a
feat(PostgreSQL): ✨ Postgress connection string feature for local and server connection string
...
This feature is based on this [issue](https://github.com/Fabio286/antares/issues/193 ) I tested with the following posgress connection strings postgresql://postgres:pgpassword@127.0.0.1:5432/my_local_databse?connection=local postgres://serveruser:serverpass@test.db.elephantsql.com/my_remote_databse?connection=server postgres://serveruser:serverpass@test.db.elephantsql.com:5432/my_remote_databse postgresql://postgres:pgpassword@127.0.0.1:5432/my_local_databse.
The connection string decoder is loaded before "test-connection", "check-connection", and "connect"
2022-03-06 02:20:10 +02:00
Fabio Di Stasio
763be8532d
fix: wrong soft sort algorithm for numeric fields, closes #199
2022-03-05 21:58:56 +01:00
Giulio Ganci
a6f5645a22
feat(UI): better real-time import stats
2022-03-05 18:55:11 +01:00
Fabio Di Stasio
1a9fc37285
fix(MySQL): missing initial delimiter for exported procedures
2022-03-01 19:05:53 +01:00
Fabio Di Stasio
45cda7a7cc
Merge branch 'master' of https://github.com/Fabio286/antares into pr/toriphes/129
2022-02-26 10:14:00 +01:00
Fabio Di Stasio
b7039553cc
fix: bigint support, closes #197
2022-02-26 10:02:23 +01:00
Fabio Di Stasio
573ac6d42e
perf: use fork() for the import process
2022-02-24 13:14:57 +01:00
Fabio Di Stasio
265f28b4d9
fix: zero-padded bit fields beyond length
2022-02-21 21:40:26 +01:00
Fabio Di Stasio
748d44977e
perf: use fork() for the export process
2022-02-18 18:16:13 +01:00
Fabio Di Stasio
832fb0fb03
Merge branch 'feat/db-import-export' of https://github.com/toriphes/antares into pr/toriphes/129
2022-02-16 09:16:14 +01:00
Fabio Di Stasio
328ab61757
Merge branch 'master' of https://github.com/Fabio286/antares into pr/toriphes/129
2022-02-16 09:14:46 +01:00
Fabio Di Stasio
5bfff649e9
feat: reminder for uncommitted changes closing a tab
2022-02-15 09:23:07 +01:00
Fabio Di Stasio
76743e8f7c
feat: execution notification for ROLLBACK and COMMIT
2022-02-15 09:23:07 +01:00
Fabio Di Stasio
4ed2f9a939
feat(MySQL): manual commit mode
2022-02-15 09:23:07 +01:00
Fabio Di Stasio
48ebf23bd1
feat(MySQL): spatial fields support ( #165 )
...
* feat: POINT field support
* feat(MySQL): support to LINESTRING, POLYGON and GEOMETRY fields
* refactor: removed links from map attribution
* feat(MySQL): support to MULTIPOINT, MULTILINESTRING, MULTIPOLYGON and GEOMCOLLECTION fields
* test: temporary fix on Windows tests
2022-01-30 11:45:24 +01:00
Fabio Di Stasio
9f033fb994
fix: indexes and foreign keys not cleared after deletion of related field, closes #182
2022-01-28 23:57:53 +01:00
Fabio Di Stasio
0cfd7938ee
fix: scale on numeric fields that doesn't support it
2022-01-27 09:12:01 +01:00
Fabio Di Stasio
eef7c1dcec
perf: support of scale in field's length setting
2022-01-22 12:29:49 +01:00
Fabio Di Stasio
aa8fc545d7
Rename zh_CN.js to zh-CN.js
2022-01-20 09:02:20 +01:00
goYou
6ef565cf07
feat: add Simplified Chinese translation
2022-01-20 01:50:18 +08:00
Fabio Di Stasio
f28531a225
build: resolved dependency conflicts
2022-01-16 11:50:35 +01:00
Fabio Di Stasio
8fb1f0803e
fix: cell copy returns "undefined" in some conditions, closes #170
2022-01-14 18:37:37 +01:00
Fabio Di Stasio
b4545b178f
feat(UI): textarea autofocus selecting a query tab, closes #166
2022-01-09 12:28:01 +01:00
Giulio Ganci
4e9f8d16ee
feat: initial mysql import support
2021-12-28 15:30:07 +01:00
Fabio Di Stasio
0c002918eb
feat(PostgreSQL): ability to cancel queries
2021-12-26 21:13:02 +01:00
Fabio Di Stasio
48c3e6afc4
perf: hash for foreign key default names
2021-12-23 11:47:17 +01:00
Fabio Di Stasio
a59f77f618
feat(MySQL): ability to cancel queries
2021-12-19 11:59:09 +01:00
Ngo Quoc Dat
c2c0394624
Update vi-VN translation
2021-12-13 08:48:07 +07:00
Fabio Di Stasio
a5fdcc1a85
feat: language format detection for text fields
2021-12-10 23:30:03 +01:00
Fabio Di Stasio
1df21da47c
refactor: moved to new vue slots API
2021-12-10 17:34:44 +01:00
Fabio Di Stasio
8da0224876
fix(MySQL): wrong datetime fields default in table filler in some cases
2021-12-09 18:26:59 +01:00
Fabio Di Stasio
813aa320d9
perf(UI): avoid columns size change when editing cells or scrolling results
2021-12-08 11:19:10 +01:00
Fabio Di Stasio
aaa5549609
fix: cell disappear on edit in one column tables
2021-12-08 10:37:23 +01:00
Fabio Di Stasio
35cb7e1dc4
fix: select all rows with ctrl+a when editing a cell
2021-12-08 10:09:01 +01:00
Fabio Di Stasio
e8af2d24a8
perf(UI): disable save button in table creation when no fields are added
2021-11-25 17:23:46 +01:00
Fabio Di Stasio
cc99491fe4
fix(UI): notifications timeout anomalies
2021-11-24 16:59:07 +01:00
Fabio Di Stasio
9fe3680bbb
perf: update italian traslation
2021-11-24 09:52:10 +01:00
Fabio Di Stasio
da1947e4ef
fix(UI): hide tools menu if no tools available
2021-11-24 09:19:42 +01:00
Fabio Di Stasio
3efeb45c46
feat(SQLite): tables management
2021-11-18 11:36:46 +01:00
Fabio Di Stasio
3fc227d2de
feat(SQLite): readonly mode
2021-11-16 13:21:33 +01:00
Fabio Di Stasio
94c899eb82
perf(SQLite): improvements in data visualization
2021-11-15 18:09:34 +01:00
Fabio Di Stasio
c54438d6d3
feat(SQLite): connection add/edit masks
2021-11-13 11:34:30 +01:00
Fabio Di Stasio
d19f475fc2
perf(UI): improved function and routine parameters modals
2021-11-12 12:22:39 +01:00
Fabio Di Stasio
b5fee79e90
refactor: minor changes to support marked 4.0.0
2021-11-10 11:48:06 +01:00
Fabio Di Stasio
3369d3dc2d
refactor: prefix to internal rows id
2021-11-08 15:12:37 +01:00
Fabio Di Stasio
fd25f881f9
feat: schema size in explore bar
2021-11-06 16:36:54 +01:00
Fabio Di Stasio
5ca3a22dc5
feat(MySQL): enable/disable schedulers from contextual menu
2021-11-06 12:21:33 +01:00
Fabio Di Stasio
5c668249cf
feat(MySQL): scheduler status indicator in explore bar
2021-11-05 18:23:02 +01:00
Fabio Di Stasio
534659f9ae
feat(PostgreSQL): enable/disable triggers from contextual menu
2021-11-04 21:54:42 +01:00
Fabio Di Stasio
c00fd1381f
fix: temporary solution on MacOS for unsigned app updates
2021-11-03 14:46:13 +01:00
Fabio Di Stasio
cacab55f55
refactor: minor changes to support eslint-plugin-vue 8
2021-11-02 21:51:53 +01:00
Fabio Di Stasio
d9d3bf2bc9
perf: avoid to load schema elements if already loaded in export modal
2021-11-01 14:52:45 +01:00
Fabio Di Stasio
9e9de7b5c5
Merge branch 'master' of https://github.com/Fabio286/antares into pr/toriphes/129
2021-11-01 10:09:37 +01:00
Giulio Ganci
b2a5b40c03
feat: mysql export for trigger, views, schedulers, functions and routines
2021-10-31 17:22:59 +01:00
Fabio Di Stasio
a08074b446
Merge branch 'master' of https://github.com/Fabio286/antares into pr/toriphes/126
2021-10-31 15:14:49 +01:00
Fabio Di Stasio
0cd182546b
build: electron-webpack replacement ( #130 )
...
* some changes
* improvements and dedicated webpeck configs for render and main
* added debugging setup
* vscode main process debug config
* vue3 devtools
2021-10-31 10:36:45 +01:00
Fabio Di Stasio
89fdd210ca
fix: row selection problems after a deletion fail, closes #128
2021-10-29 22:43:22 +02:00
Giulio Ganci
0de2321920
feat: initial db export implementation
2021-10-29 12:58:37 +02:00
Giulio Ganci
430490ad93
feat: added macos basic shortcusts and menu
2021-10-24 13:02:37 +02:00
Giulio Ganci
a35566f273
feat(UI): double click on the title bar will toggle window fullscreen size
2021-10-24 13:00:36 +02:00
Giulio Ganci
7657d05edf
feat(UI): improved topbar look&feel on MacOS
2021-10-23 18:15:32 +02:00
Fabio Di Stasio
30b487c37f
refactor(UI): removed text from refresh buttons
2021-10-20 18:14:02 +02:00
Fabio Di Stasio
aef17be36c
fix(PostgreSQL): issue with uppercase characters in table field names
2021-10-19 17:42:31 +02:00
Giulio Ganci
7dc33c78aa
fix: regression during resize results table on filters change
2021-10-18 21:23:22 +02:00
Giulio Ganci
69cd083054
fix: query failure when a filter with a numeric value is used
2021-10-18 21:13:19 +02:00
Giulio Ganci
91788054e6
feat(UI): hide filter bar if there are no more rows in it
2021-10-18 21:11:09 +02:00
Giulio Ganci
968a67ce3d
refactor(UI): removed duplicate add filter button
2021-10-18 19:15:37 +02:00
Fabio Di Stasio
f9ee7d0450
perf(UI): resize results table on filters change
2021-10-18 11:58:29 +02:00
Giulio Ganci
0e15c39797
feat(UI): multi column table filters
2021-10-17 23:54:00 +02:00
Fabio Di Stasio
8a86344484
refactor(UI): display new shortcuts in empty query tab
2021-10-16 18:46:17 +02:00
Fabio Di Stasio
d2d0c3ca41
refactor(UI): changed query clear shortcut
2021-10-16 18:43:23 +02:00
Giulio Ganci
9046b858b1
feat(UI): ctrl|cmd+t, ctrl|cmd+w shortcut to open/close workspace tabs
2021-10-16 17:05:26 +02:00
Ngô Quốc Đạt
dd25827e40
Add "passphrase" to Vietnamese translation
2021-10-16 18:52:39 +07:00
Fabio Di Stasio
4069ade36d
feat(UI): CTRL+A to select all result rows
2021-10-16 09:58:32 +02:00
Fabio Di Stasio
9407a29922
feat: support to SSH private keys with passphrase, closes #118
2021-10-07 14:58:31 +02:00
Fabio Di Stasio
26446fb7ed
fix: closing ask credential modal during a connection doesn't stops loading, closes #114
2021-10-05 18:20:38 +02:00
isamu
76e5849c78
Add new language: Japanese
2021-10-05 17:22:07 +09:00
Fabio Di Stasio
db1641b74f
fix(UI): window reload pressing enter in schema creation modal, closes #113
2021-10-05 09:16:45 +02:00
Ngo Quoc Dat
a5ca3ea204
Add new language: Tiếng Việt
2021-10-04 18:30:44 +07:00
Fabio Di Stasio
7a63608f54
feat(UI): auto detect system theme as default app theme
2021-10-01 15:48:02 +02:00
Fabio Di Stasio
13aa47cd44
feat: processes list exportation
2021-09-26 11:36:42 +02:00
Fabio Di Stasio
85f625daf7
feat: copy cell/row or kill connections on context menu from processes list
2021-09-26 11:19:48 +02:00
Fabio Di Stasio
3959333662
feat: workspace query history
2021-09-17 18:32:28 +02:00
Fabio Di Stasio
abd46aa322
perf(core): better communication of internal exceptions
2021-09-15 15:31:57 +02:00
Fabio Di Stasio
d4888ad8fb
fix: adding a connection default values not change when switching clients, closes #101
2021-09-15 11:08:00 +02:00
Fabio Di Stasio
95b60df8fc
fix(MySQL): connections stuck at startup if 5 or more tabs are restored
2021-09-13 10:03:27 +02:00
Fabio Di Stasio
265ed66d25
feat: start search when typing with focus on the left bar
2021-09-12 11:55:16 +02:00
Fabio Di Stasio
09c07acd5c
feat: new create trigger function tabs
2021-09-11 10:24:21 +02:00
Fabio Di Stasio
3c5a69adc9
feat: new create scheduler tabs
2021-09-10 18:23:32 +02:00
Fabio Di Stasio
0203f69e95
feat: new create function tabs
2021-09-07 18:20:45 +02:00
Fabio Di Stasio
6115eb9409
refactor: improvements in explorebar events on tables
2021-09-06 18:02:54 +02:00
Fabio Di Stasio
3fd26a0523
feat: new create routine tabs
2021-09-06 17:29:34 +02:00
Fabio Di Stasio
e217d5181b
feat: new create trigger tabs
2021-09-02 18:08:23 +02:00
Fabio Di Stasio
21e3e79ddf
fix(UI): context menu of tables cut if close to bottom edge
2021-08-31 19:58:20 +02:00
Fabio Di Stasio
3ad190b18c
Merge branch 'master' of https://github.com/Fabio286/antares
2021-08-22 10:37:27 +02:00
Fabio Di Stasio
d5b2bde2ea
fix(UI): no round borders on left of file upload inputs
2021-08-22 10:37:23 +02:00
fabio286
a42348ef5c
chore: deletion of wrong file name case component
2021-08-20 13:42:29 +02:00
Fabio Di Stasio
8b93c49778
feat: new create view tabs
2021-08-18 17:28:41 +02:00
Fabio Di Stasio
0842e00098
feat: new table empty state
2021-08-17 18:54:23 +02:00
Fabio Di Stasio
bc82289d54
perf(UI): visual improvements of tables
2021-08-16 19:44:55 +02:00
Fabio Di Stasio
c9fa941578
feat: new create table tabs
2021-08-13 16:50:59 +02:00
Fabio Di Stasio
198368605b
perf(UI): improved view setting tab
2021-08-12 10:07:31 +02:00
Fabio Di Stasio
8f0ac26b69
refactor: better component names
2021-08-12 09:54:13 +02:00
Fabio Di Stasio
b35fc5b78b
fix(UI): multiple temp tabs opened switching to tables from other elements
2021-08-11 18:04:14 +02:00
Fabio Di Stasio
622b519cbb
fix: table options not loaded on restored setting tabs at startup
2021-08-11 16:16:58 +02:00
Fabio Di Stasio
71e2c911ae
perf(UI): element options in setting tabs accessible directly
2021-08-10 18:12:13 +02:00
Fabio Di Stasio
756d49b259
perf(UI): primary app color on selected text backgrouns
2021-08-10 13:14:48 +02:00
Fabio Di Stasio
97b3563e25
chore: update dependencies
2021-08-06 14:38:25 +02:00
Fabio Di Stasio
e834fe31ac
feat(UI): automatic scroll on selected tab
2021-08-05 13:44:48 +02:00
Fabio Di Stasio
065de3a0a2
feat(UI): query tab name based on content
2021-08-05 13:30:33 +02:00
Fabio Di Stasio
1573de5b1f
feat(UI): button to clear sidebar search input
2021-08-05 12:47:24 +02:00
Fabio Di Stasio
04fc1bbee0
feat(UI): automatic scroll to selected tab element in left bar
2021-08-05 12:09:54 +02:00
Fabio Di Stasio
dea378014d
perf: approximate table total updated on table refresh
2021-08-04 15:52:26 +02:00
Fabio Di Stasio
3abff36136
feat: contextual menu option to duplicate table fields
2021-08-04 09:59:50 +02:00