Skip to content

Commit

Permalink
Transmission OG 3.06 (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
stefantalpalaru authored Aug 13, 2024
1 parent 180cc36 commit 084e519
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 18 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ set(TR_NAME ${PROJECT_NAME})
# "Z" for unsupported trunk builds,
# "0" for stable, supported releases
# these should be the only two lines you need to change
set(TR_USER_AGENT_PREFIX "3.06+")
set(TR_PEER_ID_PREFIX "-TR306Z-")
set(TR_USER_AGENT_PREFIX "3.06")
set(TR_PEER_ID_PREFIX "-TR3060-")

string(REGEX MATCH "^([0-9]+)\\.([0-9]+).*" TR_VERSION "${TR_USER_AGENT_PREFIX}")
set(TR_VERSION_MAJOR "${CMAKE_MATCH_1}")
Expand Down
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## (next)
## [Transmission OG 3.06](https://github.com/stefantalpalaru/transmission-og/releases/tag/3.06) (2024-08-13)

### All Platforms
- Network performance improvements ([#38](https://github.com/stefantalpalaru/transmission-og/pull/38))
Expand Down
26 changes: 13 additions & 13 deletions configure
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.72 for transmission-og 3.06+.
# Generated by GNU Autoconf 2.72 for transmission-og 3.06.
#
# Report bugs to <https://github.com/stefantalpalaru/transmission-og>.
#
Expand Down Expand Up @@ -615,8 +615,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='transmission-og'
PACKAGE_TARNAME='transmission-og'
PACKAGE_VERSION='3.06+'
PACKAGE_STRING='transmission-og 3.06+'
PACKAGE_VERSION='3.06'
PACKAGE_STRING='transmission-og 3.06'
PACKAGE_BUGREPORT='https://github.com/stefantalpalaru/transmission-og'
PACKAGE_URL=''

Expand Down Expand Up @@ -1575,7 +1575,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
'configure' configures transmission-og 3.06+ to adapt to many kinds of systems.
'configure' configures transmission-og 3.06 to adapt to many kinds of systems.

Usage: $0 [OPTION]... [VAR=VALUE]...

Expand Down Expand Up @@ -1650,7 +1650,7 @@ fi

if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of transmission-og 3.06+:";;
short | recursive ) echo "Configuration of transmission-og 3.06:";;
esac
cat <<\_ACEOF

Expand Down Expand Up @@ -1835,7 +1835,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
transmission-og configure 3.06+
transmission-og configure 3.06
generated by GNU Autoconf 2.72

Copyright (C) 2023 Free Software Foundation, Inc.
Expand Down Expand Up @@ -2279,7 +2279,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

It was created by transmission-og $as_me 3.06+, which was
It was created by transmission-og $as_me 3.06, which was
generated by GNU Autoconf 2.72. Invocation command line was

$ $0$ac_configure_args_raw
Expand Down Expand Up @@ -3269,9 +3269,9 @@ ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $
ac_compiler_gnu=$ac_cv_c_compiler_gnu


USERAGENT_PREFIX=3.06+
USERAGENT_PREFIX=3.06

PEERID_PREFIX=-TR306Z-
PEERID_PREFIX=-TR3060-


# Check whether --enable-silent-rules was given.
Expand Down Expand Up @@ -3823,7 +3823,7 @@ fi

# Define the identity of the package.
PACKAGE='transmission-og'
VERSION='3.06+'
VERSION='3.06'


printf "%s\n" "#define PACKAGE \"$PACKAGE\"" >>confdefs.h
Expand Down Expand Up @@ -18632,7 +18632,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu



if test Z = "0"; then
if test 0 = "0"; then
supported_build=yes
CPPFLAGS="$CPPFLAGS -DNDEBUG"
else
Expand Down Expand Up @@ -26848,7 +26848,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
This file was extended by transmission-og $as_me 3.06+, which was
This file was extended by transmission-og $as_me 3.06, which was
generated by GNU Autoconf 2.72. Invocation command line was

CONFIG_FILES = $CONFIG_FILES
Expand Down Expand Up @@ -26911,7 +26911,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config='$ac_cs_config_escaped'
ac_cs_version="\\
transmission-og config.status 3.06+
transmission-og config.status 3.06
configured by $0, generated by GNU Autoconf 2.72,
with options \\"\$ac_cs_config\\"

Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ dnl STATUS: "X" for prerelease beta builds,
dnl "Z" for unsupported trunk builds,
dnl "0" for stable, supported releases
dnl these should be the only two lines you need to change
m4_define([user_agent_prefix],[3.06+])
m4_define([peer_id_prefix],[-TR306Z-])
m4_define([user_agent_prefix],[3.06])
m4_define([peer_id_prefix],[-TR3060-])

AC_INIT([transmission-og],[user_agent_prefix],[https://github.com/stefantalpalaru/transmission-og])
AC_SUBST(USERAGENT_PREFIX,[user_agent_prefix])
Expand Down

0 comments on commit 084e519

Please sign in to comment.