Skip to content

Commit 8a51ef8

Browse files
committed
Release 5.9.2
1 parent 56bd22f commit 8a51ef8

File tree

5 files changed

+35
-27
lines changed

5 files changed

+35
-27
lines changed

.github/workflows/ci.yml

+10-14
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,6 @@ jobs:
3737
- name: packaging
3838
run: |
3939
make -j -C dist/debian
40-
- uses: actions/upload-artifact@v4
41-
with:
42-
name: iaito-amd64.deb
43-
path: dist/debian/*/*.deb
4440
acr-linux:
4541
runs-on: ubuntu-20.04
4642
steps:
@@ -295,7 +291,7 @@ jobs:
295291
- name: Prepare release notes
296292
run: ./scripts/release-notes.sh | tee ./RELEASE_NOTES.md
297293
- name: Download artifacts
298-
uses: actions/download-artifact@v2
294+
uses: actions/download-artifact@v4
299295
with:
300296
path: dist/artifacts
301297
- name: Display structure of downloaded files
@@ -340,12 +336,12 @@ jobs:
340336
asset_path: dist/artifacts/iaito.zip/iaito.zip
341337
asset_name: iaito-${{ steps.version.outputs.string }}-w64.zip
342338
asset_content_type: application/zip
343-
- name: Upload Windows executable
344-
uses: actions/upload-release-asset@v1
345-
env:
346-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
347-
with:
348-
upload_url: ${{ steps.create_release.outputs.upload_url }}
349-
asset_path: dist/artifacts/iaito.exe/iaito.exe
350-
asset_name: iaito-${{ steps.version.outputs.string }}.exe
351-
asset_content_type: application/zip
339+
# - name: Upload Windows executable
340+
# uses: actions/upload-release-asset@v1
341+
# env:
342+
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
343+
# with:
344+
# upload_url: ${{ steps.create_release.outputs.upload_url }}
345+
# asset_path: dist/artifacts/iaito.exe/iaito.exe
346+
# asset_name: iaito-${{ steps.version.outputs.string }}.exe
347+
# asset_content_type: application/zip

configure

+9-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
2-
# This script was automatically generated by ACR v2.1.2
2+
# This script was automatically generated by ACR v2.1.4
33
# @author: pancake <nopcode.org>
44
# @url: http://www.nopcode.org
55
# @repo: git clone https://github.com/radare/acr
@@ -113,12 +113,12 @@ done
113113
: ${INSTALL_PROGRAM_STRIP:=${INSTALL} -m 755 -s}
114114
: ${INSTALL_MAN:=${INSTALL} -m 444}
115115
: ${INSTALL_LIB:=${INSTALL} -m 755 -c}
116-
PKGNAME='iaito' ; VERSION='5.9.0' ; VERSION_MAJOR=5; VERSION_MINOR=9; VERSION_PATCH=0; VERSION_NUMBER=50900; CONTACT_MAIL="[email protected]" ; CONTACT_NAME="pancake" ; CONTACT="pancake <[email protected]>" ;
116+
PKGNAME='iaito' ; VERSION='5.9.2' ; VERSION_MAJOR=5; VERSION_MINOR=9; VERSION_PATCH=2; VERSION_NUMBER=50902; CONTACT_MAIL="[email protected]" ; CONTACT_NAME="pancake" ; CONTACT="pancake <[email protected]>" ;
117117
}
118118

119119
show_usage() {
120120
cat <<EOF2
121-
'configure' configures iaito-5.9.0 to adapt to many kinds of systems.
121+
'configure' configures iaito-5.9.2 to adapt to many kinds of systems.
122122
123123
Usage: ./configure [OPTION]... [VAR=VALUE]...
124124
@@ -194,10 +194,10 @@ ocho() {
194194

195195
show_version() {
196196
if [ "$QUIET" = 1 ]; then
197-
echo "5.9.0"
197+
echo "5.9.2"
198198
exit 0
199199
fi
200-
echo "iaito-5.9.0 configuration script done with acr v2.1.2.
200+
echo "iaito-5.9.2 configuration script done with acr v2.1.4.
201201
The 'Free Software Foundation' message is only for autodetection.
202202
Originally written by pancake <nopcode.org>."
203203
exit 0
@@ -226,7 +226,7 @@ case $flag in
226226
show_version ; ;;
227227
-r|--r|--report)
228228
echo "PKGNAME: iaito"
229-
echo "VERSION: 5.9.0"
229+
echo "VERSION: 5.9.2"
230230
echo "AUTHOR: pancake"
231231
echo "EMAIL: [email protected]"
232232
echo "LANGS: c++"
@@ -343,6 +343,7 @@ exit 1
343343
if [ 0 = 0 ]; then echo ${CPP}; else
344344
echo "ERROR: ${CPP} cannot parse sources"; fi
345345
ochof "checking for pkg-config... "
346+
ENVWORDS="${ENVWORDS} HAVE_PKGCONFIG"
346347
if [ -n "$PKGCONFIG" ]; then
347348
if [ -x "$PKGCONFIG" ]; then
348349
_HAVE_PKGCONFIG="${PKGCONFIG}"
@@ -366,7 +367,9 @@ else
366367
fi
367368
if [ -n "${PKGCONFIG}" ]; then
368369
ocho ${PKGCONFIG}
370+
HAVE_PKGCONFIG=1
369371
else
372+
HAVE_PKGCONFIG=0
370373
echo "Cannot find pkg-config or pkgconf in PATH" >&2
371374
exit 1
372375
ocho no; fi

configure.acr

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PKGNAME iaito
2-
VERSION 5.9.0
2+
VERSION 5.9.2
33
CONTACT pancake ; [email protected]
44

55
LANG_CXX!

src/Iaito.pro

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ TARGET = iaito
44

55
IAITO_VERSION_MAJOR = 5
66
IAITO_VERSION_MINOR = 9
7-
IAITO_VERSION_PATCH = 0
7+
IAITO_VERSION_PATCH = 2
88

99
CONFIG+=app_bundle
1010
# LIBS+= -dead_strip

src/org.radare.iaito.appdata.xml

+14-5
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,22 @@
4242
<name>radare</name>
4343
</developer>
4444
<releases>
45-
<release version="5.9.0" date="2024-3-31">
45+
<release version="5.9.2" date="2024-05-24">
46+
<description>
47+
<p>Add macos-arm64 builds in the CI</p>
48+
<p>Honor Ps/Po error code when saving/loading projects and show proper error message</p>
49+
<p>Zoom font size with control+wheel in the disassembly widget</p>
50+
<p>Initial r2ui ui command to script the GUI</p>
51+
<p>Sync with r2-5.9.2</p>
52+
</description>
53+
</release>
54+
<release version="5.9.0" date="2024-03-31">
4655
<description>
4756
<p>Stability fixes after lots of testing</p>
4857
<p>Sync with r2-5.9, stay source compatible with 5.8</p>
4958
</description>
5059
</release>
51-
<release version="5.8.8" date="2023-3-15">
60+
<release version="5.8.8" date="2023-06-20">
5261
<description>
5362
<p>Fix startup crash caused by UB</p>
5463
<p>Fix crash when loading Settings</p>
@@ -62,15 +71,15 @@
6271
<p>In sync with r2-5.8.x, but works with 5.8.9 too</p>
6372
</description>
6473
</release>
65-
<release version="5.8.6" date="2023-3-15">
74+
<release version="5.8.6" date="2023-03-21">
6675
<description>
6776
<p>Build fixes</p>
6877
<p>Disable debugger projects</p>
6978
<p>Better qt6 support</p>
7079
<p>File selection is required to fix a crash</p>
7180
</description>
7281
</release>
73-
<release version="5.8.4" date="2023-3-15">
82+
<release version="5.8.4" date="2023-03-15">
7483
<description>
7584
<p>Complete port to Qt6</p>
7685
<p>Fix the empty import widget</p>
@@ -79,7 +88,7 @@
7988
<p>Use R_LOG APIs instead of eprintf calls</p>
8089
</description>
8190
</release>
82-
<release version="5.8.2" date="2023-1-1">
91+
<release version="5.8.2" date="2023-01-01">
8392
<description>
8493
<p>Alphabetically sort io and arch comboboxes</p>
8594
<p>Fix assert in release builds</p>

0 commit comments

Comments
 (0)