Skip to content

Commit

Permalink
Prepare for release, version 0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
danirod committed Dec 23, 2024
1 parent 8c8dad1 commit 1a9e2cc
Show file tree
Hide file tree
Showing 7 changed files with 51 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cartero"
version = "0.1.2"
version = "0.1.3"
edition = "2021"

[features]
Expand Down
21 changes: 21 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# News file for Cartero

## [0.1.3] - 2014-12-23

### Added

* Added a tab to generate a cURL command with the contents of a request.
* Added a preferences dialog to control application settings.
* Added a search functionality (Ctrl-F) to the text area panes.

### Changed

* It is now possible to disable validation of TLS certificates.
* It is now possible to follow redirections when making HTTP requests.
* It is now possible to configure a timeout for the HTTP request.
* It is now possible to customize the font used for the text area panes.
* It is now possible to customize the light or dark appearance of the application.
* Translation updates: Spanish, Tamil.

### Fixed

* Fixed the HTTP response label sometimes having the wrong semantic color.

## [0.1.2] - 2024-10-11

This is a minor release that addresses some issues and fixes some things found.
Expand Down
5 changes: 2 additions & 3 deletions build-aux/macos-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ case "$1" in
devel)
BUNDLE_ID="es.danirod.Cartero.Devel"
APP_NAME="Cartero (Devel)"
APP_VERSION="0.1.2"
APP_VERSION="0.1.3"
MESON_FLAGS="-Dprofile=development"
ICON_PATH="$PWD/data/icons/scalable/apps/es.danirod.Cartero.Devel.svg"
DOC_ICON_PATH="$PWD/data/icons/scalable/mimetypes/es.danirod.Cartero.Devel-request.svg"
;;
stable)
BUNDLE_ID="es.danirod.Cartero"
APP_NAME="Cartero"
APP_VERSION="0.1.2"
APP_VERSION="0.1.3"
MESON_FLAGS="-Dprofile=default"
ICON_PATH="$PWD/data/icons/scalable/apps/es.danirod.Cartero.svg"
DOC_ICON_PATH="$PWD/data/icons/scalable/mimetypes/es.danirod.Cartero-request.svg"
Expand Down Expand Up @@ -257,4 +257,3 @@ cp "$RESOURCES_ROOT/CarteroRequest.iconset/icon_256x256.png" "$RESOURCES_ROOT/Ca
cp "$RESOURCES_ROOT/CarteroRequest.iconset/icon_512x512.png" "$RESOURCES_ROOT/CarteroRequest.iconset/icon_256x256@2x.png"
iconutil -c icns "$RESOURCES_ROOT/CarteroRequest.iconset"
rm -rf "$RESOURCES_ROOT/CarteroRequest.iconset"

4 changes: 2 additions & 2 deletions build-aux/macos-installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ function package_app() {
rm -rf build/cartero-darwin-dmg
}

package_app "build/cartero-darwin/Cartero.app" "build/Cartero-0.1.2.dmg"
package_app "build/cartero-darwin/Cartero (Devel).app" "build/Cartero-0.1.2-devel.dmg"
package_app "build/cartero-darwin/Cartero.app" "build/Cartero-0.1.3.dmg"
package_app "build/cartero-darwin/Cartero (Devel).app" "build/Cartero-0.1.3-devel.dmg"
23 changes: 23 additions & 0 deletions data/cartero.appdata.xml.in.in
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,29 @@
<color scheme_preference="dark" type="primary">#465563</color>
</branding>
<releases>
<release date="2014-12-23" version="0.1.3">
<description translate="no">
<p>Added:</p>
<ul>
<li>Added a tab to generate a cURL command for each request.</li>
<li>Added a preferences dialog to control the application settings.</li>
<li>Added a search functionality (Ctrl-F) to the text area panes.</li>
</ul>
<p>Changed:</p>
<ul>
<li>It is now possible to disable the validation of TLS certificates.</li>
<li>It is now possible to follow redirections when performing an HTTP request.</li>
<li>It is now possible to configure a timeout for the HTTP request.</li>
<li>It is now possible to customize the font used for the text area panes.</li>
<li>It is now possible to customize the light or dark appearance of the application.</li>
<li>Translation updates: Spanish, Tamil.</li>
</ul>
<p>Fixed:</p>
<ul>
<li>Fixed the HTTP response label sometimes having the wrong semantic color.</li>
</ul>
</description>
</release>
<release date="2024-10-11" version="0.1.2">
<description translate="no">
<p>This is a minor release that addresses some issues and fixes some things found.</p>
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
project(
'cartero',
'rust',
version: '0.1.2',
version: '0.1.3',
meson_version: '>= 0.64',
license: 'GPL-3.0-or-later',
)
Expand Down

0 comments on commit 1a9e2cc

Please sign in to comment.