Skip to content

Commit 90eb509

Browse files
committed
release v0.0.5
1 parent 7f9a0a1 commit 90eb509

File tree

15 files changed

+182
-46
lines changed

15 files changed

+182
-46
lines changed

ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
modemu2k ChangeLog
22

3+
2019-8-23
4+
5+
* v0.0.5 released
6+
37
2019-8-22
48

59
* When making a connection, a message is printed informing the user

Makefile.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
9393
am__aclocal_m4_deps = $(top_srcdir)/build-aux/m4/ax_append_flag.m4 \
9494
$(top_srcdir)/build-aux/m4/ax_cflags_warn_all.m4 \
9595
$(top_srcdir)/build-aux/m4/ax_check_enable_debug.m4 \
96+
$(top_srcdir)/build-aux/m4/ax_is_release.m4 \
9697
$(top_srcdir)/build-aux/m4/ax_require_defined.m4 \
9798
$(top_srcdir)/build-aux/m4/gettext.m4 \
9899
$(top_srcdir)/build-aux/m4/iconv.m4 \

README

Lines changed: 24 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
modemu2k v0.0.5-dev
1+
modemu2k v0.0.5
22
-------------------
33

44
modemu2k is a fork of modemu, originally developed by Toru Egashira
@@ -22,14 +22,6 @@ Home page: <https://github.com/theimpossibleastronaut/modemu2k>
2222
Issues and bug reporting
2323
<https://github.com/theimpossibleastronaut/modemu2k/issues>
2424

25-
For Translators
26-
-----------
27-
28-
We use Transifex to translate the output messages. To start translating
29-
modemu2k, ​create an account in Transifex and ask to join a translation
30-
team (or create a new one) at
31-
https://www.transifex.com/na-309/modemu2k/
32-
3325
Dependencies
3426
------------
3527

@@ -98,6 +90,20 @@ Note: while in the program if backspace doesn't work, use CTRL+H.
9890
A script to invoke minicom as mentioned above will be installed to
9991
your bin directory when `make install` is run.
10092

93+
Escaping to command mode and returning
94+
--------------------------------------
95+
96+
To escape to command mode, use '+++'. Use ATO to return to online mode.
97+
98+
99+
Hanging up a call/closing a connection
100+
------------------------------------
101+
102+
If you are connected to a server where gracefully logging out isn't
103+
possible, to "hang up" or close the connection you can escape to command
104+
mode and enter 'ATH`.
105+
106+
101107
Downloads
102108
---------
103109

@@ -112,3 +118,12 @@ More details are in the QuickStart guide
112118
<https://github.com/theimpossibleastronaut/modemu2k/blob/master/QuickStart>
113119

114120
A man page is also available.
121+
122+
123+
For Translators
124+
-----------
125+
126+
We use Transifex to translate the output messages. To start translating
127+
modemu2k, ​create an account in Transifex and ask to join a translation
128+
team (or create a new one) at
129+
https://www.transifex.com/na-309/modemu2k/

aclocal.m4

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -952,6 +952,7 @@ AC_SUBST([am__untar])
952952
m4_include([build-aux/m4/ax_append_flag.m4])
953953
m4_include([build-aux/m4/ax_cflags_warn_all.m4])
954954
m4_include([build-aux/m4/ax_check_enable_debug.m4])
955+
m4_include([build-aux/m4/ax_is_release.m4])
955956
m4_include([build-aux/m4/ax_require_defined.m4])
956957
m4_include([build-aux/m4/gettext.m4])
957958
m4_include([build-aux/m4/iconv.m4])

build-aux/m4/ax_is_release.m4

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
# ===========================================================================
2+
# https://www.gnu.org/software/autoconf-archive/ax_is_release.html
3+
# ===========================================================================
4+
#
5+
# SYNOPSIS
6+
#
7+
# AX_IS_RELEASE(POLICY)
8+
#
9+
# DESCRIPTION
10+
#
11+
# Determine whether the code is being configured as a release, or from
12+
# git. Set the ax_is_release variable to 'yes' or 'no'.
13+
#
14+
# If building a release version, it is recommended that the configure
15+
# script disable compiler errors and debug features, by conditionalising
16+
# them on the ax_is_release variable. If building from git, these
17+
# features should be enabled.
18+
#
19+
# The POLICY parameter specifies how ax_is_release is determined. It can
20+
# take the following values:
21+
#
22+
# * git-directory: ax_is_release will be 'no' if a '.git' directory exists
23+
# * minor-version: ax_is_release will be 'no' if the minor version number
24+
# in $PACKAGE_VERSION is odd; this assumes
25+
# $PACKAGE_VERSION follows the 'major.minor.micro' scheme
26+
# * micro-version: ax_is_release will be 'no' if the micro version number
27+
# in $PACKAGE_VERSION is odd; this assumes
28+
# $PACKAGE_VERSION follows the 'major.minor.micro' scheme
29+
# * dash-version: ax_is_release will be 'no' if there is a dash '-'
30+
# in $PACKAGE_VERSION, for example 1.2-pre3, 1.2.42-a8b9
31+
# or 2.0-dirty (in particular this is suitable for use
32+
# with git-version-gen)
33+
# * always: ax_is_release will always be 'yes'
34+
# * never: ax_is_release will always be 'no'
35+
#
36+
# Other policies may be added in future.
37+
#
38+
# LICENSE
39+
#
40+
# Copyright (c) 2015 Philip Withnall <philip@tecnocode.co.uk>
41+
# Copyright (c) 2016 Collabora Ltd.
42+
#
43+
# Copying and distribution of this file, with or without modification, are
44+
# permitted in any medium without royalty provided the copyright notice
45+
# and this notice are preserved.
46+
47+
#serial 7
48+
49+
AC_DEFUN([AX_IS_RELEASE],[
50+
AC_BEFORE([AC_INIT],[$0])
51+
52+
m4_case([$1],
53+
[git-directory],[
54+
# $is_release = (.git directory does not exist)
55+
AS_IF([test -d ${srcdir}/.git],[ax_is_release=no],[ax_is_release=yes])
56+
],
57+
[minor-version],[
58+
# $is_release = ($minor_version is even)
59+
minor_version=`echo "$PACKAGE_VERSION" | sed 's/[[^.]][[^.]]*.\([[^.]][[^.]]*\).*/\1/'`
60+
AS_IF([test "$(( $minor_version % 2 ))" -ne 0],
61+
[ax_is_release=no],[ax_is_release=yes])
62+
],
63+
[micro-version],[
64+
# $is_release = ($micro_version is even)
65+
micro_version=`echo "$PACKAGE_VERSION" | sed 's/[[^.]]*\.[[^.]]*\.\([[^.]]*\).*/\1/'`
66+
AS_IF([test "$(( $micro_version % 2 ))" -ne 0],
67+
[ax_is_release=no],[ax_is_release=yes])
68+
],
69+
[dash-version],[
70+
# $is_release = ($PACKAGE_VERSION has a dash)
71+
AS_CASE([$PACKAGE_VERSION],
72+
[*-*], [ax_is_release=no],
73+
[*], [ax_is_release=yes])
74+
],
75+
[always],[ax_is_release=yes],
76+
[never],[ax_is_release=no],
77+
[
78+
AC_MSG_ERROR([Invalid policy. Valid policies: git-directory, minor-version, micro-version, dash-version, always, never.])
79+
])
80+
])

configure

Lines changed: 28 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /bin/sh
22
# Guess values for system-dependent variables and create Makefiles.
3-
# Generated by GNU Autoconf 2.69 for modemu2k 0.0.5-dev.
3+
# Generated by GNU Autoconf 2.69 for modemu2k 0.0.5.
44
#
55
# Report bugs to <andy400-dev@yahoo.com>.
66
#
@@ -580,8 +580,8 @@ MAKEFLAGS=
580580
# Identity of this package.
581581
PACKAGE_NAME='modemu2k'
582582
PACKAGE_TARNAME='modemu2k'
583-
PACKAGE_VERSION='0.0.5-dev'
584-
PACKAGE_STRING='modemu2k 0.0.5-dev'
583+
PACKAGE_VERSION='0.0.5'
584+
PACKAGE_STRING='modemu2k 0.0.5'
585585
PACKAGE_BUGREPORT='andy400-dev@yahoo.com'
586586
PACKAGE_URL='https://github.com/theimpossibleastronaut/modemu2k'
587587

@@ -1272,7 +1272,7 @@ if test "$ac_init_help" = "long"; then
12721272
# Omit some internal or obsolete options to make the list less imposing.
12731273
# This message is too long to be a string in the A/UX 3.1 sh.
12741274
cat <<_ACEOF
1275-
\`configure' configures modemu2k 0.0.5-dev to adapt to many kinds of systems.
1275+
\`configure' configures modemu2k 0.0.5 to adapt to many kinds of systems.
12761276
12771277
Usage: $0 [OPTION]... [VAR=VALUE]...
12781278
@@ -1343,7 +1343,7 @@ fi
13431343

13441344
if test -n "$ac_init_help"; then
13451345
case $ac_init_help in
1346-
short | recursive ) echo "Configuration of modemu2k 0.0.5-dev:";;
1346+
short | recursive ) echo "Configuration of modemu2k 0.0.5:";;
13471347
esac
13481348
cat <<\_ACEOF
13491349
@@ -1447,7 +1447,7 @@ fi
14471447
test -n "$ac_init_help" && exit $ac_status
14481448
if $ac_init_version; then
14491449
cat <<\_ACEOF
1450-
modemu2k configure 0.0.5-dev
1450+
modemu2k configure 0.0.5
14511451
generated by GNU Autoconf 2.69
14521452
14531453
Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1627,7 +1627,7 @@ cat >config.log <<_ACEOF
16271627
This file contains any messages produced by compilers while
16281628
running configure, to aid debugging if configure makes a mistake.
16291629
1630-
It was created by modemu2k $as_me 0.0.5-dev, which was
1630+
It was created by modemu2k $as_me 0.0.5, which was
16311631
generated by GNU Autoconf 2.69. Invocation command line was
16321632
16331633
$ $0 $@
@@ -2492,7 +2492,7 @@ fi
24922492

24932493
# Define the identity of the package.
24942494
PACKAGE='modemu2k'
2495-
VERSION='0.0.5-dev'
2495+
VERSION='0.0.5'
24962496

24972497

24982498
cat >>confdefs.h <<_ACEOF
@@ -2628,8 +2628,24 @@ AM_BACKSLASH='\'
26282628
ac_config_headers="$ac_config_headers src/config.h:config.in"
26292629

26302630

2631-
# RELEASE TODO
2632-
# set to "no"
2631+
2632+
2633+
2634+
2635+
# $is_release = (.git directory does not exist)
2636+
if test -d ${srcdir}/.git; then :
2637+
ax_is_release=no
2638+
else
2639+
ax_is_release=yes
2640+
fi
2641+
2642+
2643+
# Define the variables listed in the second argument if debug is
2644+
# enabled, defaulting to no variables. Defines the variables listed in
2645+
# the third argument if debug is disabled, defaulting to NDEBUG. All
2646+
# lists of variables should be space-separated.
2647+
#
2648+
# A "yes" value will be overridden by the value returned by AX_IS_RELEASE()
26332649

26342650

26352651
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable debugging" >&5
@@ -7433,7 +7449,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
74337449
# report actual input values of CONFIG_FILES etc. instead of their
74347450
# values after options handling.
74357451
ac_log="
7436-
This file was extended by modemu2k $as_me 0.0.5-dev, which was
7452+
This file was extended by modemu2k $as_me 0.0.5, which was
74377453
generated by GNU Autoconf 2.69. Invocation command line was
74387454
74397455
CONFIG_FILES = $CONFIG_FILES
@@ -7500,7 +7516,7 @@ _ACEOF
75007516
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
75017517
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
75027518
ac_cs_version="\\
7503-
modemu2k config.status 0.0.5-dev
7519+
modemu2k config.status 0.0.5
75047520
configured by $0, generated by GNU Autoconf 2.69,
75057521
with options \\"\$ac_cs_config\\"
75067522

configure.ac

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
AC_INIT([modemu2k],
2-
[0.0.5-dev],
2+
[0.0.5],
33
[andy400-dev@yahoo.com],
44
,
55
[https://github.com/theimpossibleastronaut/modemu2k])
@@ -10,8 +10,13 @@ AM_SILENT_RULES([yes])
1010
AC_PREREQ(2.69)
1111
AC_CONFIG_HEADERS([src/config.h:config.in])
1212

13-
# RELEASE TODO
14-
# set to "no"
13+
AX_IS_RELEASE([git-directory])
14+
# Define the variables listed in the second argument if debug is
15+
# enabled, defaulting to no variables. Defines the variables listed in
16+
# the third argument if debug is disabled, defaulting to NDEBUG. All
17+
# lists of variables should be space-separated.
18+
#
19+
# A "yes" value will be overridden by the value returned by AX_IS_RELEASE()
1520
AX_CHECK_ENABLE_DEBUG([yes])
1621

1722
AC_PROG_CC

man/Makefile.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
9292
am__aclocal_m4_deps = $(top_srcdir)/build-aux/m4/ax_append_flag.m4 \
9393
$(top_srcdir)/build-aux/m4/ax_cflags_warn_all.m4 \
9494
$(top_srcdir)/build-aux/m4/ax_check_enable_debug.m4 \
95+
$(top_srcdir)/build-aux/m4/ax_is_release.m4 \
9596
$(top_srcdir)/build-aux/m4/ax_require_defined.m4 \
9697
$(top_srcdir)/build-aux/m4/gettext.m4 \
9798
$(top_srcdir)/build-aux/m4/iconv.m4 \

po/modemu2k.pot

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
#, fuzzy
77
msgid ""
88
msgstr ""
9-
"Project-Id-Version: modemu2k 0.0.5-dev\n"
9+
"Project-Id-Version: modemu2k 0.0.5\n"
1010
"Report-Msgid-Bugs-To: andy400-dev@yahoo.com\n"
11-
"POT-Creation-Date: 2019-08-23 16:17-0500\n"
11+
"POT-Creation-Date: 2019-08-23 16:43-0500\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1414
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -173,11 +173,11 @@ msgid ""
173173
"<https://github.com/theimpossibleastronaut/modemu2k/issues>\n"
174174
msgstr ""
175175

176-
#: src/modemu2k.c:444
176+
#: src/modemu2k.c:450
177177
msgid "To escape to command mode, use '+++'."
178178
msgstr ""
179179

180-
#: src/modemu2k.c:445
180+
#: src/modemu2k.c:451
181181
msgid "Use ATO to return to online mode."
182182
msgstr ""
183183

po/nl_NL.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: modemu2k 0.0.3-dev\n"
1010
"Report-Msgid-Bugs-To: andy400-dev@yahoo.com\n"
11-
"POT-Creation-Date: 2019-08-23 16:17-0500\n"
11+
"POT-Creation-Date: 2019-08-23 16:43-0500\n"
1212
"PO-Revision-Date: 2018-10-14 17:52+0200\n"
1313
"Last-Translator: Martijn de Boer <translations@sexybiggetje.nl>\n"
1414
"Language-Team: Dutch\n"
@@ -198,11 +198,11 @@ msgid ""
198198
"<https://github.com/theimpossibleastronaut/modemu2k/issues>\n"
199199
msgstr ""
200200

201-
#: src/modemu2k.c:444
201+
#: src/modemu2k.c:450
202202
msgid "To escape to command mode, use '+++'."
203203
msgstr ""
204204

205-
#: src/modemu2k.c:445
205+
#: src/modemu2k.c:451
206206
msgid "Use ATO to return to online mode."
207207
msgstr ""
208208

po/zh_CN.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ msgid ""
77
msgstr ""
88
"Project-Id-Version: modemu2k 0.0.3-dev\n"
99
"Report-Msgid-Bugs-To: andy400-dev@yahoo.com\n"
10-
"POT-Creation-Date: 2019-08-23 16:17-0500\n"
10+
"POT-Creation-Date: 2019-08-23 16:43-0500\n"
1111
"PO-Revision-Date: 2018-10-14 17:15+0800\n"
1212
"Last-Translator: U-LAPTOP-S0HDQ8NL\\name1e5s <name1e5s@qq.com>\n"
1313
"Language-Team: Chinese (simplified)\n"
@@ -184,11 +184,11 @@ msgid ""
184184
"<https://github.com/theimpossibleastronaut/modemu2k/issues>\n"
185185
msgstr ""
186186

187-
#: src/modemu2k.c:444
187+
#: src/modemu2k.c:450
188188
msgid "To escape to command mode, use '+++'."
189189
msgstr ""
190190

191-
#: src/modemu2k.c:445
191+
#: src/modemu2k.c:451
192192
msgid "Use ATO to return to online mode."
193193
msgstr ""
194194

scripts/Makefile.am

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
bin_SCRIPTS = \
22
m2k-minicom.sh
33

4+
clean-local:
5+
if test -f m2k-minicom.sh; then \
6+
rm -f m2k-minicom.sh; \
7+
fi
8+
49

0 commit comments

Comments
 (0)