Changeset 135
- Timestamp:
- 12/23/06 14:14:27 (2 years ago)
- Files:
-
- trunk/src/org/thestaticvoid/iriverter/AboutDialog.java (modified) (1 diff)
- trunk/src/org/thestaticvoid/iriverter/ConverterUI.java (modified) (6 diffs)
- trunk/src/org/thestaticvoid/iriverter/HelpBrowser.java (modified) (3 diffs)
- trunk/src/org/thestaticvoid/iriverter/doc/images/convert-22.png (added)
- trunk/src/org/thestaticvoid/iriverter/doc/images/convert-24.png (deleted)
- trunk/src/org/thestaticvoid/iriverter/doc/images/directory-24.png (deleted)
- trunk/src/org/thestaticvoid/iriverter/doc/images/dvd-24.png (deleted)
- trunk/src/org/thestaticvoid/iriverter/doc/images/singlevideo-24.png (deleted)
- trunk/src/org/thestaticvoid/iriverter/doc/using.xml (modified) (4 diffs)
- trunk/src/org/thestaticvoid/iriverter/icons/back-22.png (added)
- trunk/src/org/thestaticvoid/iriverter/icons/back-24.png (deleted)
- trunk/src/org/thestaticvoid/iriverter/icons/convert-22.png (added)
- trunk/src/org/thestaticvoid/iriverter/icons/convert-24.png (deleted)
- trunk/src/org/thestaticvoid/iriverter/icons/directory-16.png (added)
- trunk/src/org/thestaticvoid/iriverter/icons/directory-22.png (added)
- trunk/src/org/thestaticvoid/iriverter/icons/directory-24.png (deleted)
- trunk/src/org/thestaticvoid/iriverter/icons/dvd-16.png (added)
- trunk/src/org/thestaticvoid/iriverter/icons/dvd-22.png (added)
- trunk/src/org/thestaticvoid/iriverter/icons/dvd-24.png (deleted)
- trunk/src/org/thestaticvoid/iriverter/icons/forward-22.png (added)
- trunk/src/org/thestaticvoid/iriverter/icons/forward-24.png (deleted)
- trunk/src/org/thestaticvoid/iriverter/icons/home-24.png (deleted)
- trunk/src/org/thestaticvoid/iriverter/icons/iriverter-64.png (added)
- trunk/src/org/thestaticvoid/iriverter/icons/iriverter.png (deleted)
- trunk/src/org/thestaticvoid/iriverter/icons/iriverter.svg (added)
- trunk/src/org/thestaticvoid/iriverter/icons/singlevideo-16.png (added)
- trunk/src/org/thestaticvoid/iriverter/icons/singlevideo-22.png (added)
- trunk/src/org/thestaticvoid/iriverter/icons/singlevideo-24.png (deleted)
- trunk/web/iriverter.gif (modified) (previous)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/org/thestaticvoid/iriverter/AboutDialog.java
r133 r135 51 51 shell.setLayout(gridLayout); 52 52 53 InputStream is = getClass().getResourceAsStream("icons/iriverter .png");53 InputStream is = getClass().getResourceAsStream("icons/iriverter-64.png"); 54 54 Image image = new Image(Display.getDefault(), is); 55 55 trunk/src/org/thestaticvoid/iriverter/ConverterUI.java
r134 r135 52 52 shell = new Shell(display); 53 53 shell.setText("iriverter"); 54 InputStream is = getClass().getResourceAsStream("icons/iriverter .png");54 InputStream is = getClass().getResourceAsStream("icons/iriverter-64.png"); 55 55 shell.setImage(new Image(display, is)); 56 56 GridLayout gridLayout = new GridLayout(); … … 312 312 if (entry.isDirectory() && !extractedFile.exists()) 313 313 extractedFile.mkdirs(); 314 else if (!e xtractedFile.exists() || entry.getTime() > extractedFile.lastModified()) {314 else if (!entry.isDirectory() && (!extractedFile.exists() || entry.getTime() > extractedFile.lastModified())) { 315 315 OutputStream out = new FileOutputStream(extractedFile); 316 316 … … 346 346 347 347 convertTool = new ToolItem(toolBar, SWT.PUSH); 348 InputStream is = getClass().getResourceAsStream("icons/convert-2 4.png");348 InputStream is = getClass().getResourceAsStream("icons/convert-22.png"); 349 349 convertTool.setImage(new Image(display, is)); 350 350 convertTool.setToolTipText("Convert"); … … 354 354 355 355 newSingleVideoTool = new ToolItem(toolBar, SWT.PUSH); 356 is = getClass().getResourceAsStream("icons/singlevideo-2 4.png");356 is = getClass().getResourceAsStream("icons/singlevideo-22.png"); 357 357 newSingleVideoTool.setImage(new Image(display, is)); 358 358 newSingleVideoTool.setToolTipText("Single Video"); … … 360 360 361 361 newDirectoryTool = new ToolItem(toolBar, SWT.PUSH); 362 is = getClass().getResourceAsStream("icons/directory-2 4.png");362 is = getClass().getResourceAsStream("icons/directory-22.png"); 363 363 newDirectoryTool.setImage(new Image(display, is)); 364 364 newDirectoryTool.setToolTipText("Directory"); … … 366 366 367 367 newDVDTool = new ToolItem(toolBar, SWT.PUSH); 368 is = getClass().getResourceAsStream("icons/dvd-2 4.png");368 is = getClass().getResourceAsStream("icons/dvd-22.png"); 369 369 newDVDTool.setImage(new Image(display, is)); 370 370 newDVDTool.setToolTipText("DVD"); trunk/src/org/thestaticvoid/iriverter/HelpBrowser.java
r117 r135 48 48 49 49 back = new ToolItem(toolBar, SWT.PUSH); 50 InputStream is = getClass().getResourceAsStream("icons/back-2 4.png");50 InputStream is = getClass().getResourceAsStream("icons/back-22.png"); 51 51 back.setImage(new Image(display, is)); 52 52 back.setEnabled(false); … … 54 54 55 55 forward = new ToolItem(toolBar, SWT.PUSH); 56 is = getClass().getResourceAsStream("icons/forward-2 4.png");56 is = getClass().getResourceAsStream("icons/forward-22.png"); 57 57 forward.setImage(new Image(display, is)); 58 58 forward.setEnabled(false); … … 62 62 63 63 home = new ToolItem(toolBar, SWT.PUSH); 64 is = getClass().getResourceAsStream("icons/home-2 4.png");64 is = getClass().getResourceAsStream("icons/home-22.png"); 65 65 home.setImage(new Image(display, is)); 66 66 home.addSelectionListener(this); trunk/src/org/thestaticvoid/iriverter/doc/using.xml
r124 r135 29 29 <guisubmenu>New</guisubmenu> 30 30 <guimenuitem>Single Video</guimenuitem> 31 </menuchoice>, press <guiicon><inlinegraphic fileref="images/singlevideo-2 4.png" /></guiicon> on the toolbar, or drag a supported video from your file manager to the iriverter window.</para>31 </menuchoice>, press <guiicon><inlinegraphic fileref="images/singlevideo-22.png" /></guiicon> on the toolbar, or drag a supported video from your file manager to the iriverter window.</para> 32 32 33 33 <para>Finally select your input and output videos if necessary.</para> … … 46 46 <guisubmenu>New</guisubmenu> 47 47 <guimenuitem>Directory</guimenuitem> 48 </menuchoice>, press <guiicon><inlinegraphic fileref="images/directory-2 4.png" /></guiicon> on the toolbar, or drag a directory from your file manager to the iriverter window.</para>48 </menuchoice>, press <guiicon><inlinegraphic fileref="images/directory-22.png" /></guiicon> on the toolbar, or drag a directory from your file manager to the iriverter window.</para> 49 49 50 50 <para>iriverter will automatically suggest a new output directory for the converted files, but you can change that as you wish. iriverter will convert all of the supported videos in the selected input directory and its subdirectories if specified and will change their endings to <filename>.h300.avi</filename> or <filename>.pmp.avi</filename> depending on your device so you don't need to worry about it overwriting your original videos.</para> … … 62 62 <guisubmenu>New</guisubmenu> 63 63 <guimenuitem>DVD</guimenuitem> 64 </menuchoice>, press <guiicon><inlinegraphic fileref="images/dvd-2 4.png" /></guiicon> on the toolbar, or drag your DVD drive icon from your file manager to the iriverter window.</para>64 </menuchoice>, press <guiicon><inlinegraphic fileref="images/dvd-22.png" /></guiicon> on the toolbar, or drag your DVD drive icon from your file manager to the iriverter window.</para> 65 65 66 66 <para>If you have a DVD in the drive already (and it is mounted if you are using Linux), iriverter will automatically detect the drive and the DVD's titles, chapters and languages. Otherwise you need to put the DVD in the drive (and mount it on Linux) and select "Other..." from the DVD Drive drop-down box and pick the appropriate drive (or mount point in Linux).</para> … … 126 126 <guimenu>Jobs</guimenu> 127 127 <guimenuitem>Convert...</guimenuitem> 128 </menuchoice> or press <guiicon><inlinegraphic fileref="images/convert-2 4.png" /></guiicon> on the toolbar. A popup will appear indicating the conversion progress along with any questions like overwriting files and possible errors.</para>128 </menuchoice> or press <guiicon><inlinegraphic fileref="images/convert-22.png" /></guiicon> on the toolbar. A popup will appear indicating the conversion progress along with any questions like overwriting files and possible errors.</para> 129 129 </sect2> 130 130 </sect1>
