Skip to content

Commit

Permalink
更新 README
Browse files Browse the repository at this point in the history
更新 README
  • Loading branch information
answer-huang committed May 16, 2015
1 parent bcae6ea commit 26c62da
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
11 changes: 7 additions & 4 deletions MyInfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,14 @@ def __init__(self, parent):
wx.StaticText(self, -1, '微博:', pos=(45, 170))
wx.HyperlinkCtrl(self, -1, 'answer-huang', 'http://weibo.com/u/1623064627', pos=(85, 170))

wx.StaticText(self, -1, '邮箱:', pos=(45, 200))
wx.HyperlinkCtrl(self, -1, '[email protected]', 'mailto:[email protected]', pos=(85, 200))
# wx.StaticText(self, -1, '邮箱:', pos=(45, 200))
# wx.HyperlinkCtrl(self, -1, '[email protected]', 'mailto:[email protected]', pos=(85, 200))

wx.StaticText(self, -1, '博客:', pos=(45, 230))
wx.HyperlinkCtrl(self, -1, 'answerhuang.duapp.com', 'http://answerhuang.duapp.com', pos=(85, 230))
wx.StaticText(self, -1, '博客:', pos=(45, 200))
wx.HyperlinkCtrl(self, -1, 'answerhuang.duapp.com', 'http://answerhuang.duapp.com', pos=(85, 200))

wx.StaticText(self, -1, 'GitHub:', pos=(28, 230))
wx.HyperlinkCtrl(self, -1, 'dSYMTools', 'https://github.com/answer-huang/dSYMTools', pos=(85, 230))

def _create_round_corner_mask(self, size, radius, border=0):
(w, h) = size
Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#更新:
###Version 1.0.3 2015-05-16
1.解决文件路径中不能包含空格的 bug。

###Version 1.0.2 2015-05-05
1.由于在 arm64 上 Slide address 变化,现需要提供 Slide address,不然得不到异常地址。
Expand Down Expand Up @@ -62,7 +64,7 @@ Xcode编译项目后,我们会看到一个同名的 dSYM 文件,dSYM 是保

3.对比错误给出的UUID和工具界面中给出的UUID是否一致。

4.将错误地址输入工具的文本框中,点击分析。
4.将错误地址以及 Slide Address 输入工具的文本框中,点击分析。

![dSYMToos][3]

Expand All @@ -74,6 +76,6 @@ Xcode编译项目后,我们会看到一个同名的 dSYM 文件,dSYM 是保
[3]: http://bcs.duapp.com/answerhuang/blog/dsymTool.png
[4]: http://bcs.duapp.com/answerhuang/blog/crashUUID.png
[5]: http://www.cimgf.com/2009/12/23/automatically-save-the-dsym-files/
[6]: http://pan.baidu.com/s/1ntzJsMH
[6]: http://pan.baidu.com/s/1mg01Qha
[7]: https://github.com/answer-huang/dSYMTools
[8]: http://bcs.duapp.com/answerhuang/blog/runScript.png
2 changes: 1 addition & 1 deletion dSYM.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def OnAboutMe(self, event):
aboutMe.ShowModal()
aboutMe.Destroy()

versions = '1.0.2'
versions = '1.0.3'
if __name__ == '__main__':
app = wx.App(redirect=False)
frame = AHFrame(None, 'dSYM文件分析工具' + versions)
Expand Down

0 comments on commit 26c62da

Please sign in to comment.