Skip to content

Commit

Permalink
v4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
robertying committed Sep 1, 2020
1 parent 863ebe6 commit a6b326d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,16 +53,16 @@ Please use a config file and make sure you are the only one who can access it.

<del>For OpenWrt users, you can download prebuilt binary from [releases](https://github.com/robertying/tunet-c/releases).</del>

_**There are no prebuilt binary for newer versions. The following guide only serves as a reference.**_
_**There is no prebuilt binary for newer versions. The following guide only serves as a reference for installation. You need to [compile the binary](#Build-From-Source) by yourself.**_

Upload them to your router and use `opkg` to install packages.

For example, if you are using a `mipsel_24kc` router and packages are uploaded to `/tmp`, run:

```sh
opkg install /tmp/libtidy_5.7.28-1_mipsel_24kc.ipk
opkg install /tmp/libtunet_3.0.0-1_mipsel_24kc.ipk
opkg install /tmp/tunet_3.0.0-1_mipsel_24kc.ipk
opkg install /tmp/libtunet_4.0.0-1_mipsel_24kc.ipk
opkg install /tmp/tunet_4.0.0-1_mipsel_24kc.ipk
```

You could add an init script to run `tunet` on boot.
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AC_INIT([tunet], [3.0.0], [https://github.com/robertying/tunet-c])
AC_INIT([tunet], [4.0.0], [https://github.com/robertying/tunet-c])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE([foreign -Wall])
Expand Down
4 changes: 2 additions & 2 deletions openwrt/tunet/Makefile
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
include $(TOPDIR)/rules.mk

PKG_NAME:=tunet
PKG_VERSION:=3.0.0
PKG_VERSION:=4.0.0
PKG_RELEASE:=1

PKG_MAINTAINER:=Rui Ying <yingrui205@gmail.com>
PKG_LICENSE:=MIT

PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://github.com/robertying/tunet-c/releases/download/v$(PKG_VERSION)
PKG_HASH:=7b4da4268ba9745117064cd38cc74a4a2e577b5a3d0f8b4fa448e86d4f80a0bd
PKG_HASH:=554ca8bf1ebf85e5331da987a3d1f7eae2e2f8a979cf91f055d40d751554896a

PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)

Expand Down

0 comments on commit a6b326d

Please sign in to comment.