File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 3535 'robotide.preferences' : ['settings.cfg' ],
3636 'robotide.widgets' : ['*.png' , '*.gif' , '*.ico' ],
3737 'robotide.messages' : ['*.html' ],
38+ 'robotide.application' : ['*.html' , '*.css' ],
3839 'robotide.publish.htmlmessages' : ['no_robot.html' ],
3940 'robotide.postinstall' : ['RIDE.app/Contents/PkgInfo' , 'RIDE.app/Contents/Info.plist' ,
4041 'RIDE.app/Contents/MacOS/RIDE' , 'RIDE.app/Contents/Resources/*.icns' ]
Original file line number Diff line number Diff line change 1717import wx
1818from wx import Colour
1919from wx .lib .ClickableHtmlWindow import PyClickableHtmlWindow
20+ from os .path import abspath , join , dirname
2021
2122from ..action import ActionInfo
2223from ..version import VERSION
@@ -65,7 +66,7 @@ def show_changelog(self, event=None):
6566 if not self ._dialog :
6667 self ._dialog = HtmlDialog ('Offline Change Log' , 'Check the online version at https://github.com/robotframework/RIDE/blob/master/CHANGELOG.adoc' )
6768 self ._dialog .SetSize (800 , 800 )
68- self ._dialog .html_wnd .LoadFile (os . path . abspath ("application/ CHANGELOG.html" ))
69+ self ._dialog .html_wnd .LoadFile (join ( dirname ( abspath (__file__ )), " CHANGELOG.html" ))
6970 self ._dialog .html_wnd .SetBackgroundColour (self .general_settings ['background help' ])
7071 self ._dialog .html_wnd .SetForegroundColour (self .general_settings ['foreground text' ])
7172 self ._dialog .Show ()
You can’t perform that action at this time.
0 commit comments