Desktop tool for browsing account info from EVE-Online
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. <?xml version="1.0"?>
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>EVE Tool</title>
  5. <style type="text/css">
  6. body {
  7. margin: 50px 100px;
  8. background-color: #ccc;
  9. }
  10. #page {
  11. background-color: white;
  12. border: 1px solid #999;
  13. }
  14. h1 {
  15. margin: 0px;
  16. padding: 5px;
  17. border-bottom: 1px solid #999;
  18. background-color: #BBB;
  19. }
  20. h1 img {
  21. height: 1.0em;
  22. vertical-align: middle;
  23. padding-bottom: 2px;
  24. }
  25. h2 {
  26. font-size: 1em;
  27. text-transform: uppercase;
  28. border-bottom: 2px solid #BBB;
  29. padding: 0px;
  30. line-height: 0.9em;
  31. margin: 15px 0px 0px 0px;
  32. }
  33. #content {
  34. padding: 5px 10px;
  35. margin-right: 170px;
  36. border-right: 1px solid #999;
  37. line-height: 1.9em;
  38. }
  39. #screenshots {
  40. padding: 5px 10px;
  41. float: right;
  42. width: 150px;
  43. }
  44. #screenshots h2 {
  45. margin-bottom: 15px;
  46. }
  47. #screenshots a {
  48. display: block;
  49. text-align: center;
  50. margin: 10px 0px;
  51. }
  52. #screenshots img {
  53. border: 0px;
  54. }
  55. </style>
  56. </head>
  57. <body>
  58. <div id="page">
  59. <h1><img src="icon.png" alt="EVE Tool logo"/> EVE Tool</h1>
  60. <div id="screenshots">
  61. <h2>Screenshots</h2>
  62. <a href="et-5.png"><img src="thumbs/et-5.png" alt="Eve-tool screenshot"/></a>
  63. <a href="et-14.png"><img src="thumbs/et-14.png" alt="Eve-tool screenshot"/></a>
  64. <a href="et-16.png"><img src="thumbs/et-16.png" alt="Eve-tool screenshot"/></a>
  65. </div>
  66. <div id="content">
  67. <h2>About EVE Tool</h2>
  68. <p>
  69. "EVE Tool" is an application for players of the MMORPG
  70. <a href="http://www.eve-online.com/">EVE-Online</a>.
  71. It allows players to access and analyse data while out of game.
  72. It retrieves information from the official EVE API, as well as
  73. from a custom API built around the database export provided by CCP.
  74. </p>
  75. <h2>Changelog</h2>
  76. <h3>v0.2 &rarr; v0.3</h3>
  77. <ul>
  78. <li>Added functionality to execute code to migrate between database versions</li>
  79. <li>The API library now parses the race of ships</li>
  80. <li>All images are now cached locally</li>
  81. <li>Added API library support for skill queues</li>
  82. <li>The number of pending image requests is now shown in the status bar</li>
  83. </ul>
  84. <h3>v0.1 &rarr; v0.2</h3>
  85. <ul>
  86. <li>'Listable' pages may now have their elements grouped</li>
  87. <li>'Listable' pages may now be sorted</li>
  88. <li>Removed 'time to level' retrievable that caused errors</li>
  89. <li>Added a configuration dialog for 'listable' pages</li>
  90. <li>Added a new ships page</li>
  91. <li>Most heavy lifting is now done in the background, instead of blocking the UI</li>
  92. <li>Added a configuration file manager</li>
  93. <li>The previously selected character is now remembered across sessions</li>
  94. <li>The database files created by ET are now stored in its config directory, not the CWD</li>
  95. <li>Removed the non-functioning filter button from the overview page</li>
  96. <li>The menu is now refreshed when new information is retrieved about the character, so pages are enabled without manually repicking the character</li>
  97. </ul>
  98. </div>
  99. </div>
  100. <script>
  101. (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  102. (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  103. m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  104. })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
  105. ga('create', 'UA-54779037-3', 'auto');
  106. ga('send', 'pageview');
  107. </script>
  108. </body>
  109. </html>