Skip to content

Commit

Permalink
2015-10-31 version 0.2.1
Browse files Browse the repository at this point in the history
1.修复错误弹出更新提示的bug
  • Loading branch information
BillBillBillBill committed Oct 30, 2015
1 parent 3ad8ded commit 54b6eff
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 8 deletions.
3 changes: 3 additions & 0 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2015-10-31 version 0.2.1
1.修复错误弹出更新提示的bug

2015-10-13 version 0.2.0
1.打包成单独运行文件,制作了安装脚本,解决依赖问题
2.改为使用pyinstaller打包
Expand Down
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,19 @@ https://github.com/yingDev/Tickeys
# 安装说明
在不同发行版上可能会有因为文件的缺失或者环境不同导致无法使用,需要安装相关依赖。

##下载编译好的程序运行
##下载编译好的程序运行(建议)

* 通过本目录下载Tickeys
* 然后通过 `sudo ./Tickeys` 来打开
* 通过本目录下载Tickeys的压缩包
* 然后通过 `sudo sh install.sh` 来安装
* 然后在终端使用`tickeys`命令运行或在菜单中找到tickeys点击运行
* 打开CLI版本: `sudo ./Tickeys -c`
* 或者运行`sudo sh install.sh`后在终端使用`tickeys`命令运行或在菜单中找到tickeys点击运行
* 或者解压后直接使用`sudo ./Tickeys`运行

##编译安装(需要安装依赖):

* 以下方法需要**先执行**`sudo apt-get install python-dev python-pip python-kivy xdotool`来安装依赖,一般这样就可以满足运行条件了。

#### 快速安装(最方便):执行`sudo apt-get install python-dev python-pip python-kivy xdotool && sudo easy_install tickeys`
#### 快速编译安装:执行`sudo apt-get install python-dev python-pip python-kivy xdotool && sudo easy_install tickeys`

###方法1.自动安装

Expand Down
Binary file not shown.
2 changes: 1 addition & 1 deletion tickeys/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__author__ = 'Huang Xiongbiao'
__email__ = '[email protected]'
__version__ = '0.2.0'
__version__ = '0.2.1'

from run import main

Expand Down
3 changes: 1 addition & 2 deletions tickeys/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,10 @@
import sys
import os
import commands

__version__ = '0.1.7'
import json
import requests

__version__ = '0.2.1'
__author__ = 'Huang xiongbiao([email protected])'


Expand Down

0 comments on commit 54b6eff

Please sign in to comment.