Skip to content

Commit

Permalink
Prepare for release, version 0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
danirod committed Feb 15, 2025
1 parent 7297018 commit e5c4225
Show file tree
Hide file tree
Showing 7 changed files with 35 additions and 7 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.4"
version = "0.1.5"
edition = "2021"

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

## [0.1.5] - 2025-02-15

### Changed

* Changed the error message when a request uses an unsupported protocol for clarity purposes.
* Translation updates: Czech, French, Brazilian Portuguese.

## Fixed

* Prevents tabs from becoming unresponsive if a request fails in certain conditions.
* Prevents requests from failing if they have a trailing or leading space.
* Requests whose URL start with a variable (bound to something that starts with http or https) can be made again.

## [0.1.4] - 2025-01-26

### Changed
Expand Down
4 changes: 2 additions & 2 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.4"
APP_VERSION="0.1.5"
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.4"
APP_VERSION="0.1.5"
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
4 changes: 2 additions & 2 deletions build-aux/macos-installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ function package_app() {
rm -rf build/cartero-darwin-dmg
}

package_app "build/cartero-darwin/Cartero.app" "build/Cartero-0.1.4.dmg"
package_app "build/cartero-darwin/Cartero (Devel).app" "build/Cartero-0.1.4-devel.dmg"
package_app "build/cartero-darwin/Cartero.app" "build/Cartero-0.1.5.dmg"
package_app "build/cartero-darwin/Cartero (Devel).app" "build/Cartero-0.1.5-devel.dmg"
15 changes: 15 additions & 0 deletions data/cartero.appdata.xml.in.in
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,21 @@
<color scheme_preference="dark" type="primary">#465563</color>
</branding>
<releases>
<release date="2025-02-15" version="0.1.5">
<description translate="no">
<p>Changed:</p>
<ul>
<li>Changed the error message when a request uses an unsupported protocol for clarity purposes.</li>
<li>Translation updates: Czech, French, Brazilian Portuguese.</li>
</ul>
<p>Fixed:</p>
<ul>
<li>Prevents tabs from becoming unresponsive if a request fails in certain conditions.</li>
<li>Prevents requests from failing if they have a trailing or leading space.</li>
<li>Requests whose URL start with a variable (bound to something that starts with http or https) can be made again.</li>
</ul>
</description>
</release>
<release date="2025-01-26" version="0.1.4">
<description translate="no">
<p>Changed:</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.4',
version: '0.1.5',
meson_version: '>= 0.64',
license: 'GPL-3.0-or-later',
)
Expand Down

0 comments on commit e5c4225

Please sign in to comment.