Skip to content

Commit

Permalink
修改说明。
Browse files Browse the repository at this point in the history
  • Loading branch information
oldj authored and unknown committed Sep 28, 2011
1 parent e72b0f0 commit a627387
Show file tree
Hide file tree
Showing 10 changed files with 27 additions and 42 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,10 @@ Switch Host!
更新历史:
----------

- 2011-09-02 发布 0.1.0 版,完成基本功能。
- 2011-09-28 发布 0.1.4 版,新增“添加”、“删除”按钮;hosts 内容修改后自动保存;修改若干 bug。
- 2011-09-19 发布 0.1.3 版,修复若干 bug。
- 2011-09-15 发布 0.1.2 版,添加主面板,可以主面板上对 hosts 进行增加、删除、编辑、重命名等操作。
- 2011-09-02 发布 0.1.0 版,完成基本功能。

开发计划:
----------
Expand All @@ -23,3 +25,4 @@ Switch Host!
- 自动监测当前使用的 hosts,如果有修改马上刷新
- 可选择是否修改注册表以便让 IE 浏览器在修改 hosts 后马上更新
- 增加快捷键
- hosts 内容配色方案
12 changes: 0 additions & 12 deletions src/main.py

This file was deleted.

29 changes: 0 additions & 29 deletions src/setup.py

This file was deleted.

Binary file added ui/img/accept.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added ui/img/add.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added ui/img/asterisk_yellow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added ui/img/delete.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added ui/img/disk.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added ui/img/door.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
23 changes: 23 additions & 0 deletions ui/img/mkicon2.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# -*- coding: utf-8 -*-

import glob

def main():

icons2 = {}

for fn in glob.glob("*.png"):
if fn.startswith("icon_"):
continue

c = open(fn, "rb").read()
icons2[fn.partition(".")[0]] = c

open("icons.py", "w").write(repr(icons2))


if __name__ == "__main__":

main()


0 comments on commit a627387

Please sign in to comment.