Changes between Version 10 and Version 11 of ProjectSkin
- Timestamp:
- Nov 6, 2007, 3:10:58 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ProjectSkin
v10 v11 42 42 All file_info records must appear before the project_files record. As with all BOINC files, project files are immutable. If you want to change the contents of a file, you must use a new physical name. 43 43 44 Project Icon A project icon is a 40x40 image, PNG, JPG, GIF, or BMP format. Transparency is not supported in GIF and PNG images. 44 == Project Icon == 45 A project icon is a 40x40 image, PNG, JPG, GIF, or BMP format. Transparency is not supported in GIF and PNG images. 45 46 46 47 An example would look like this: … … 66 67 * The physical name for the project icon is 'stat_icon_01.png' while the logical name for the project icon is 'stat_icon'. The manager looks for 'stat_icon' and resolves it to a physical name. 67 68 68 Application Slideshow You can have one or more images displayed in the Simple GUI when BOINC is running one of your apps. Each image can have a height up to 126px and a width up to 290px, and can be any of the following image types: PNG, JPG, GIF, and BMP. 69 == Application Slideshow == 70 You can have one or more images displayed in the Simple GUI when BOINC is running one of your apps. 71 Each image can have a height up to 126px and a width up to 290px, 72 and can be any of the following image types: PNG, JPG, GIF, and BMP. 69 73 70 An example would look like this: 74 The logical names of these files must be either: 75 76 * slideshow_APPNAME_NN where APPNAME is the (short) application name, and NN is an integer (00 to 99). This provides a slide show for a particular application. 77 * slideshow_NN provides a slide show for all (other) applications. 78 79 The physical names can be anything you want. 80 81 An example: 71 82 72 83 {{{ 73 84 #!xml 74 85 <file_info> 75 <name> slideshow_exampleapp_01_00.png</name>76 <url>http://www.example.com/download/ slideshow_exampleapp_01_00.png</url>86 <name>image0.png</name> 87 <url>http://www.example.com/download/image0.png</url> 77 88 <md5_cksum>186c5385c8f2a48ccc7e4f64251fcda1</md5_cksum> 78 89 </file_info> 79 90 <file_info> 80 <name> slideshow_exampleapp_02_01.png</name>81 <url>http://www.example.com/download/ slideshow_exampleapp_02_01.png</url>91 <name>image1.png</name> 92 <url>http://www.example.com/download/image1.png</url> 82 93 <md5_cksum>3b262da3d69d6b9eb55add88b66cdab4</md5_cksum> 83 94 </file_info> 84 95 <project_files> 85 96 <file_ref> 86 <file_name> slideshow_exampleapp_01_00.png</file_name>97 <file_name>image0.png</file_name> 87 98 <open_name>slideshow_exampleapp_00</open_name> 88 99 </file_ref> 89 100 <file_ref> 90 <file_name> slideshow_exampleapp_02_01.png</file_name>101 <file_name>image1.png</file_name> 91 102 <open_name>slideshow_exampleapp_01</open_name> 92 103 </file_ref> … … 94 105 }}} 95 106 96 In this example: 97 98 {{{ 99 #!xml 100 slideshow_exampleapp_02_01.png 101 }}} 102 103 'slideshow_' labels it as a slideshow file, 'exampleapp' is the application short name, '02' is the index of the slide within the slideshow, and 01 is the version of the file. 107 In the logical name ''slideshow_exampleapp_02'', 108 'slideshow_' labels it as a slideshow file, 'exampleapp' is the application short name, and '02' is the index of the slide within the slideshow. 104 109 105 110 == Example ==