File tree 5 files changed +9
-7
lines changed
5 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
5
5
and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
6
6
7
7
## [ Unreleased]
8
+ ## [ 0.50] - 2021-01-01
8
9
### Added
9
10
- ` network_control ` , ` network_enable ` and ` network_disable ` functions
10
11
### Changed
@@ -86,7 +87,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
86
87
### Added
87
88
- Some useful scripts for Orangepi/Raspberrypi boards
88
89
89
- [ Unreleased ] : https://github.com/Moduland/Orangetool/compare/v0.45...dev
90
+ [ Unreleased ] : https://github.com/Moduland/Orangetool/compare/v0.50...dev
91
+ [ 0.50 ] : https://github.com/Moduland/Orangetool/compare/v0.45...v0.50
90
92
[ 0.45 ] : https://github.com/Moduland/Orangetool/compare/v0.35...v0.45
91
93
[ 0.35 ] : https://github.com/Moduland/Orangetool/compare/v0.25...v0.35
92
94
[ 0.25 ] : https://github.com/Moduland/Orangetool/compare/v0.24...v0.25
Original file line number Diff line number Diff line change @@ -84,13 +84,13 @@ By [Moduland Co](http://www.moduland.ir)
84
84
85
85
## Installation
86
86
### Source Code
87
- - Download [ Version 0.45 ] ( https://github.com/moduland/Orangetool/archive/v0.45 .zip ) or [ Latest Source ] ( https://github.com/Moduland/Orangetool/archive/dev.zip )
87
+ - Download [ Version 0.50 ] ( https://github.com/moduland/Orangetool/archive/v0.50 .zip ) or [ Latest Source ] ( https://github.com/Moduland/Orangetool/archive/dev.zip )
88
88
- ` pip3 install -r requirements.txt ` or ` pip install -r requirements.txt ` (Need root access)
89
89
- ` python3 setup.py install ` or ` python setup.py install `
90
90
### PyPI
91
91
92
92
- Check [ Python Packaging User Guide] ( https://packaging.python.org/installing/ )
93
- - ` pip3 install orangetool==0.45 ` or ` pip install orangetool==0.45 ` (Need root access)
93
+ - ` pip3 install orangetool==0.50 ` or ` pip install orangetool==0.50 ` (Need root access)
94
94
<div align =" center " >
95
95
<a href =" https://asciinema.org/a/141548 " target =" _blank " ><img src =" https://asciinema.org/a/141548.png " /></a >
96
96
</div >
Original file line number Diff line number Diff line change 1
1
# -*- coding: utf-8 -*-
2
2
"""Orangetool params."""
3
3
4
- ORANGETOOL_VERSION = "0.45 "
4
+ ORANGETOOL_VERSION = "0.50 "
5
5
UPDATE_URL = "http://www.orangetool.ir/version"
6
6
IP_PATTERN = r"(?:[0-9]{1,3}\.){3}[0-9]{1,3}"
7
7
GLOBAL_IP_API_1 = "http://ipinfo.io/ip"
Original file line number Diff line number Diff line change @@ -29,14 +29,14 @@ def read_description():
29
29
setup (
30
30
name = 'orangetool' ,
31
31
packages = ['orangetool' ],
32
- version = '0.45 ' ,
32
+ version = '0.50 ' ,
33
33
description = 'Some useful script for Orangepi/Raspberrypi boards' ,
34
34
long_description = read_description (),
35
35
long_description_content_type = 'text/markdown' ,
36
36
author = 'Moduland Co' ,
37
37
38
38
url = 'https://github.com/Moduland/Orangetool' ,
39
- download_url = 'https://github.com/Moduland/Orangetool/tarball/v0.45 ' ,
39
+ download_url = 'https://github.com/Moduland/Orangetool/tarball/v0.50 ' ,
40
40
keywords = "orangepi raspberrypi embedded-systems python" ,
41
41
classifiers = [
42
42
'Development Status :: 4 - Beta' ,
Original file line number Diff line number Diff line change 4
4
import sys
5
5
import codecs
6
6
Failed = 0
7
- VERSION = "0.45 "
7
+ VERSION = "0.50 "
8
8
9
9
10
10
SETUP_ITEMS = [
You can’t perform that action at this time.
0 commit comments