-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Metainfo with data for 0.1.1 release
- Loading branch information
Showing
6 changed files
with
77 additions
and
75 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 |
---|---|---|
@@ -1,82 +1,84 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- Copyright 2024 Dani Rodríguez <[email protected]> --> | ||
<component type="desktop-application"> | ||
<!-- Copyright 2024 Dani Rodríguez <[email protected]> --> | ||
<id>@app_id@</id> | ||
<metadata_license>CC0-1.0</metadata_license> | ||
<project_license>GPL-3.0-or-later</project_license> | ||
<name translate="no">Cartero</name> | ||
<summary>Make HTTP requests and test APIs</summary> | ||
<launchable type="desktop-id">@[email protected]</launchable> | ||
|
||
<description> | ||
<p>Cartero is a graphical HTTP client that can be used as a developer tool to test web APIs | ||
and perform all kind of HTTP requests to web servers. It is compatible with any REST, | ||
SOAP or XML-RPC API and it supports multiple request methods as well as attaching body | ||
payloads to compatible requests.</p> | ||
<p>Cartero is a graphical HTTP client that can be used as a developer tool to test web APIs and perform all kind of HTTP requests to web servers. It is compatible with any REST, SOAP or XML-RPC API and it supports multiple request methods as well as attaching body payloads to compatible requests.</p> | ||
<p>Features:</p> | ||
<ul> | ||
<li>Loads and saves to plain Git-friendly TOML files, so that you can own your data.</li> | ||
<li>Customization and modification of the request headers and body payloads.</li> | ||
<li>Variable binding for API keys and other secret information.</li> | ||
</ul> | ||
</description> | ||
|
||
<screenshots> | ||
<screenshot type="default"> | ||
<image> | ||
https://raw.githubusercontent.com/danirod/cartero/trunk/data/screenshots/cartero-default.png</image> | ||
<image>https://raw.githubusercontent.com/danirod/cartero/trunk/data/screenshots/cartero-default.png</image> | ||
<caption>Main window of Cartero</caption> | ||
</screenshot> | ||
<screenshot> | ||
<image> | ||
https://raw.githubusercontent.com/danirod/cartero/trunk/data/screenshots/cartero-headers.png</image> | ||
<image>https://raw.githubusercontent.com/danirod/cartero/trunk/data/screenshots/cartero-headers.png</image> | ||
<caption>Modifying HTTP headers</caption> | ||
</screenshot> | ||
<screenshot> | ||
<image> | ||
https://raw.githubusercontent.com/danirod/cartero/trunk/data/screenshots/cartero-payload.png</image> | ||
<image>https://raw.githubusercontent.com/danirod/cartero/trunk/data/screenshots/cartero-payload.png</image> | ||
<caption>Setting the request payload</caption> | ||
</screenshot> | ||
</screenshots> | ||
|
||
<recommends> | ||
<control>keyboard</control> | ||
<control>pointing</control> | ||
<display_length compare="ge">480</display_length> | ||
</recommends> | ||
|
||
<url type="homepage">https://cartero.danirod.es</url> | ||
<url type="vcs-browser">https://github.com/danirod/cartero</url> | ||
<url type="bugtracker">https://github.com/danirod/cartero/issues</url> | ||
<developer_name translate="no">Dani Rodríguez</developer_name> | ||
|
||
<developer id="com.github.danirod"> | ||
<name translate="no">Dani Rodríguez</name> | ||
</developer> | ||
<update_contact>[email protected]</update_contact> | ||
<content_rating type="oars-1.0" /> | ||
<content_rating type="oars-1.0"></content_rating> | ||
<translation type="gettext">cartero</translation> | ||
|
||
<branding> | ||
<color type="primary" scheme_preference="light">#edf0f1</color> | ||
<color type="primary" scheme_preference="dark">#465563</color> | ||
<color scheme_preference="light" type="primary">#edf0f1</color> | ||
<color scheme_preference="dark" type="primary">#465563</color> | ||
</branding> | ||
|
||
<releases> | ||
<release version="0.1.0" date="2024-07-26"> | ||
<release date="2024-07-30" version="0.1.1"> | ||
<description translate="no"> | ||
<p>Initial release. I've crafted a MVP that consolidates the most important features to | ||
start using Cartero. Some features has been delayed for a future release, but there is | ||
already enough features for it to be useful.</p> | ||
<p>This is a minor release that addresses some issues and small changes found in the last couple of days. It accepts feedback from the community and even some pull requests received in the last days.</p> | ||
<p>Changed:</p> | ||
<ul> | ||
<li>Pressing the Enter key while focusing the request URL entry will now send the HTTP request</li> | ||
<li>The response body page is now the default page for the response notebook</li> | ||
<li>The HTTP status code will now use semantic colors to report the status code category (success, client error, server error...)</li> | ||
<li>Provided a Metainfo file for submission into Flathub</li> | ||
<li>Translation updates</li> | ||
</ul> | ||
<p>Fixed:</p> | ||
<ul> | ||
<li>The application may not open files when running as a Flatpak in sandbox mode</li> | ||
<li>The Nix flake did not build due to some missing dependencies</li> | ||
<li>Clicking on any link on Microsoft Windows did not open the default web browser</li> | ||
</ul> | ||
</description> | ||
</release> | ||
<release date="2024-07-26" version="0.1.0"> | ||
<description translate="no"> | ||
<p>Initial release. I've crafted a MVP that consolidates the most important features to start using Cartero. Some features has been delayed for a future release, but there is already enough features for it to be useful.</p> | ||
<p>Added:</p> | ||
<ul> | ||
<li>A fully functional HTTP client with support for multiple request methods, and payload | ||
types.</li> | ||
<li>A variable engine that allows to move things such as API keys, passwords or hostnames | ||
into a variable that can be injected later into the URL or other headers.</li> | ||
<li>A fully functional HTTP client with support for multiple request methods, and payload types.</li> | ||
<li>A variable engine that allows to move things such as API keys, passwords or hostnames into a variable that can be injected later into the URL or other headers.</li> | ||
<li>File support to load and store requests for a future session.</li> | ||
</ul> | ||
</description> | ||
</release> | ||
</releases> | ||
</component> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ msgid "" | |
msgstr "" | ||
"Project-Id-Version: cartero\n" | ||
"Report-Msgid-Bugs-To: https://github.com/danirod/cartero/issues\n" | ||
"POT-Creation-Date: 2024-07-30 15:27+0200\n" | ||
"POT-Creation-Date: 2024-07-30 16:10+0200\n" | ||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" | ||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | ||
"Language-Team: LANGUAGE <[email protected]>\n" | ||
|
@@ -21,42 +21,42 @@ msgstr "" | |
msgid "Make HTTP requests and test APIs" | ||
msgstr "" | ||
|
||
#: data/cartero.appdata.xml.in.in:12 | ||
#: data/cartero.appdata.xml.in.in:11 | ||
msgid "" | ||
"Cartero is a graphical HTTP client that can be used as a developer tool to " | ||
"test web APIs and perform all kind of HTTP requests to web servers. It is " | ||
"compatible with any REST, SOAP or XML-RPC API and it supports multiple " | ||
"request methods as well as attaching body payloads to compatible requests." | ||
msgstr "" | ||
|
||
#: data/cartero.appdata.xml.in.in:16 | ||
#: data/cartero.appdata.xml.in.in:12 | ||
msgid "Features:" | ||
msgstr "" | ||
|
||
#: data/cartero.appdata.xml.in.in:18 | ||
#: data/cartero.appdata.xml.in.in:14 | ||
msgid "" | ||
"Loads and saves to plain Git-friendly TOML files, so that you can own your " | ||
"data." | ||
msgstr "" | ||
|
||
#: data/cartero.appdata.xml.in.in:19 | ||
#: data/cartero.appdata.xml.in.in:15 | ||
msgid "" | ||
"Customization and modification of the request headers and body payloads." | ||
msgstr "" | ||
|
||
#: data/cartero.appdata.xml.in.in:20 | ||
#: data/cartero.appdata.xml.in.in:16 | ||
msgid "Variable binding for API keys and other secret information." | ||
msgstr "" | ||
|
||
#: data/cartero.appdata.xml.in.in:28 | ||
#: data/cartero.appdata.xml.in.in:22 | ||
msgid "Main window of Cartero" | ||
msgstr "" | ||
|
||
#: data/cartero.appdata.xml.in.in:33 | ||
#: data/cartero.appdata.xml.in.in:26 | ||
msgid "Modifying HTTP headers" | ||
msgstr "" | ||
|
||
#: data/cartero.appdata.xml.in.in:38 | ||
#: data/cartero.appdata.xml.in.in:30 | ||
msgid "Setting the request payload" | ||
msgstr "" | ||
|
||
|
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 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
Oops, something went wrong.