Skip to content

Commit

Permalink
publish new version
Browse files Browse the repository at this point in the history
  • Loading branch information
ppvan committed Mar 21, 2024
1 parent cc4532c commit 241581b
Show file tree
Hide file tree
Showing 19 changed files with 274 additions and 227 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,6 @@ export
/subprojects/blueprint-compiler
/subprojects/libcsv

/.cache
/.cache

/build-aux
14 changes: 8 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,18 @@ Small tool for quick sql query, specialized in PostgresSQL. Written in Vala for
# Features
- Load and save connections.
- Import and Export connections info
- List schema info, tables, views.
- View table columns info, indexes, foreign keys
- View table data, sort by column
- Write query
- Query History
- Hightlight current query
- Export query data

# Installation

## Flatpak file
## Flatpak
> **Recommended**
<a href="https://flathub.org/apps/me.ppvan.psequel">Click here</a> to install app from Flathub.
Expand Down Expand Up @@ -69,16 +72,15 @@ If you use GNOME Builder or Flatpak, dependencies will be installed automaticall
- gtksourceview >= 5.0
- gio >= 2.74
- json-glib >= 1.6
- libadwaita >= 1.0
- postgres-libs >= 15.3
- libadwaita >= 1.4
- postgres-libs >= 16.2
- libcsv >= 3.0

# Contributions
Contributions are welcome.

# FAQ


# Credits

- [Psequel](https://psequel.com/) - MacOS postgresql client. This project is inspired by Psequel.
- [libpg_query](https://github.com/pganalyze/libpg_query) - PostgresSQL parser
- [libcsv](https://github.com/rgamble/libcsv) - Robust C csv library
2 changes: 1 addition & 1 deletion data/me.ppvan.psequel.gschema.xml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
</key>

<key name="auto-exec-history" type="b">
<default>true</default>
<default>false</default>
<summary>Auto Execute History Query</summary>
<description>
Auto Execute History Query when activated, instead of showing the query in the editor.
Expand Down
11 changes: 11 additions & 0 deletions me.ppvan.psequel.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,17 @@
}
]
},
{
"name": "libcsv",
"buildsystem": "meson",
"sources": [
{
"type": "git",
"url": "https://github.com/ppvan/libcsv",
"commit": "c8f01b8b4aa8d8156a624405b8a4c646e3f6efaa"
}
]
},
{
"name": "libquery-vala",
"buildsystem": "meson",
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
project(
'psequel',
['c', 'vala'],
version: '0.1.9',
version: '0.2.0',
meson_version: '>= 1.2.0',
default_options: [
'warning_level=2',
Expand Down
12 changes: 6 additions & 6 deletions res/gtk/datacell.blp
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ menu menu {
}
}

section {
item {
label: _("_Edit Row");
action: "schema.edit";
}
}
// section {
// item {
// label: _("_Edit Row");
// action: "schema.edit";
// }
// }
}

template $PsequelDataCell: Adw.Bin {
Expand Down
9 changes: 9 additions & 0 deletions res/gtk/icons/export-symbolic.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 241581b

Please sign in to comment.