-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* refactor: clean up project metadata * chore: update postgres version
- Loading branch information
Showing
7 changed files
with
100 additions
and
112 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
on: | ||
push: | ||
branches: [main] | ||
pull_request: | ||
name: Build flatpak | ||
jobs: | ||
flatpak: | ||
name: "Flatpak" | ||
runs-on: ubuntu-latest | ||
container: | ||
image: bilelmoussaoui/flatpak-github-actions:gnome-44 | ||
options: --privileged | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: flatpak/flatpak-github-actions/flatpak-builder@v6 | ||
with: | ||
bundle: palette.flatpak | ||
manifest-path: me.ppvan.psequel.json | ||
cache-key: flatpak-builder-${{ github.sha }} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<component type="desktop-application"> | ||
<id>me.ppvan.psequel</id> | ||
|
||
<name>psequel</name> | ||
<summary>A simple SQL client</summary> | ||
|
||
<metadata_license>MIT</metadata_license> | ||
<project_license>GPL-3.0-or-later</project_license> | ||
|
||
<recommends> | ||
<display_length compare="ge">960</display_length> | ||
</recommends> | ||
|
||
<description> | ||
<p>Psequel is a modern, yet minial SQL client.</p> | ||
<ul> | ||
<li>Create connection, import, export connection to database</li> | ||
<li>View tables, scshema, views, columns, indexes, foreign key</li> | ||
<li>Execute query, query history</li> | ||
</ul> | ||
|
||
<p> | ||
This project is not a part of or affiliated with PostgreSQL. | ||
</p> | ||
</description> | ||
<content_rating type="oars-1.1" /> | ||
<provides> | ||
<binary>psequel</binary> | ||
</provides> | ||
<url type="homepage">https://github.com/ppvan/psequel</url> | ||
<url type="bugtracker">https://github.com/ppvan/psequel/issues</url> | ||
|
||
<developer id="io.github.jtheoof"> | ||
<name>Jeremy Attali</name> | ||
<url>https://github.com/jtheoof</url> | ||
</developer> | ||
<launchable type="desktop-id">me.ppvan.psequel.desktop</launchable> | ||
<screenshots> | ||
<screenshot type="default"> | ||
<image>https://raw.githubusercontent.com/ppvan/psequel/main/screenshots/screenshot1.png</image> | ||
</screenshot> | ||
<screenshot> | ||
<image>https://raw.githubusercontent.com/ppvan/psequel/main/screenshots/screenshot2.png</image> | ||
</screenshot> | ||
<screenshot> | ||
<image>https://raw.githubusercontent.com/ppvan/psequel/main/screenshots/screenshot3.png</image> | ||
</screenshot> | ||
<screenshot> | ||
<image>https://raw.githubusercontent.com/ppvan/psequel/main/screenshots/screenshot4.png</image> | ||
</screenshot> | ||
</screenshots> | ||
|
||
<releases> | ||
<release version="0.1.9" date="2023-02-18"> | ||
<description> | ||
<p>Clean up and bug fix</p> | ||
<p>Show number of tables and views</p> | ||
</description> | ||
</release> | ||
<release version="0.1.5" date="2023-08-15"> | ||
<description> | ||
<p>Basic autocompletion</p> | ||
</description> | ||
</release> | ||
<release version="0.1.4" date="2023-08-11"> | ||
<description> | ||
<p>First Release</p> | ||
</description> | ||
</release> | ||
</releases> | ||
</component> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.