summaryrefslogtreecommitdiff
path: root/manual/appendix (follow)
Commit message (Collapse)AuthorAge
* Manual, theme tag chapter: add a 'Hardware Capabilities' section for tags ↵Marianne Arnold2010-10-29
| | | | | | that test hardware capabilities of a target and move the 'radio/clock/touchscreen detected' tags there. Fixes inconsistencies in handling these. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28380 a1c6a512-1295-4272-9138-f99709370657
* Fix the manual for %TpJonathan Gordon2010-10-28
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28371 a1c6a512-1295-4272-9138-f99709370657
* Manual: fix some English in the bar tag options.Alex Parker2010-10-12
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28260 a1c6a512-1295-4272-9138-f99709370657
* Manual: add the missing % for %# in the 'Other tags' theme tag section.Marianne Arnold2010-10-12
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28257 a1c6a512-1295-4272-9138-f99709370657
* skin bar tag: Load an image from a label or filename. i.e %xl(bar_image, ↵Jonathan Gordon2010-10-12
| | | | | | pb.bmp,0,0) %pb(0,0,10,10,bar_image) or %pb(0,0,10,10, pb.bmp) both are acceptable. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28249 a1c6a512-1295-4272-9138-f99709370657
* improvement for bar tag with slider.Teruaki Kawashima2010-10-12
| | | | | | | | -fix bug the slider is drawn outside of the bounds (FS#11658). -offset the slider position so that the center of the slider indicates current position. -add nobar option. if this option is set, the bar isn't drawn at all. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28248 a1c6a512-1295-4272-9138-f99709370657
* Correct the examples of usage of %pS and %pE in the manualAlexander Levin2010-09-24
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28157 a1c6a512-1295-4272-9138-f99709370657
* Manual: add the bar tag themeing possibilites to the manual. Closes bug ↵Alex Parker2010-09-17
| | | | | | FS#11543. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28098 a1c6a512-1295-4272-9138-f99709370657
* Manual: Add the %if tag to the manual. Closes bug FS#11555.Alex Parker2010-09-17
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28097 a1c6a512-1295-4272-9138-f99709370657
* Missed two files in r27823...Marianne Arnold2010-08-16
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27824 a1c6a512-1295-4272-9138-f99709370657
* First step of completing the target rename in the manual. Some target ↵Marianne Arnold2010-08-16
| | | | | | specific options were already renamed in the rest of the source (e.g. see r23883) but not where they are actually set - in the platform files - leading to parts included or excluded incorrectly. The problem exists for more targets, this commit deals with the supported Iaudios first. Rename 'x5' to 'iaudiox5' (do the same for 'm5' and 'm3'), fix small errors or add missing info related to them along the way, use more appropriate options and simplify code a bit where possible. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27823 a1c6a512-1295-4272-9138-f99709370657
* last warning and fix manualJonathan Gordon2010-08-14
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27816 a1c6a512-1295-4272-9138-f99709370657
* Manual: some cosmetic changes in phrasing as well as code... fix typos and ↵Marianne Arnold2010-08-14
| | | | | | RAS syndrome, correct use of dap{} and {daps}. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27809 a1c6a512-1295-4272-9138-f99709370657
* Fix manuals broken by r27787 - underscores have a meaning in tex and need to ↵Marianne Arnold2010-08-13
| | | | | | be escaped. Put the name into quotes like the .bmp above while at it. The way it is done now looks a bit silly but works, feel free to improve. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27804 a1c6a512-1295-4272-9138-f99709370657
* New feature for the %xl (image load) tag. If you give it the filename ↵Jonathan Gordon2010-08-12
| | | | | | | | | | | | | __list_icons__ it will use the list icon strip instead of loading a different bmp. example: %xl(I, __list_icons__, 0, 0) %xd(I, %Li) ^ display the list icon at position 0,0 in that viewport. (you can of course %xd(Ia) if you really wanted also.) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27787 a1c6a512-1295-4272-9138-f99709370657
* Update the manual regarding the bl tag change in r27784. Also fix a typo.Magnus Holmgren2010-08-12
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27785 a1c6a512-1295-4272-9138-f99709370657
* Fix typo that broke the manual.Marianne Arnold2010-08-07
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27739 a1c6a512-1295-4272-9138-f99709370657
* New feature for the %xd() (display a preloaded image) skin tag.Jonathan Gordon2010-08-05
| | | | | | | | | | | | It can now automatically load the correct subimage from a strip (assuming the strip is in the correct order) by giving a tag for the 2nd param. example: %xd(F, %mp) which is equivilant to %?mp<%xd(Fa)|%xd(Fb)|%xd(Fc)|%xd(Fd)|%xd(Fe)> You can also set the subimage offset.. i.e %xd(E, %mm, -1) which means "show nothing for the first value of %mm and use the bitmap strip for the remaining values" if a tag+offset is <0 or greater than the number of subimages in a strip he image is cleared (I'm open to changing this if someone has a better idea) cabbiev2.176x220x16.wps is an example of how to use this git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27717 a1c6a512-1295-4272-9138-f99709370657
* Manual: %Vl tag was in the viewports section but missing from the tag table ↵Alex Parker2010-08-02
| | | | | | in the tags appendix. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27669 a1c6a512-1295-4272-9138-f99709370657
* Manual: add some missing theme tags, and close FS#11472.Alex Parker2010-07-31
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27637 a1c6a512-1295-4272-9138-f99709370657
* Add an entry for WMA Pro in the manual.Mohamed Tarek2010-07-28
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27594 a1c6a512-1295-4272-9138-f99709370657
* TTA should be realtime on all targets now.Nils Wallménius2010-07-19
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27491 a1c6a512-1295-4272-9138-f99709370657
* Bring the layout of the table with config file options in line with the ↵Alexander Levin2010-07-03
| | | | | | other tables in the manual git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27264 a1c6a512-1295-4272-9138-f99709370657
* No need to use textless, textgreater and textbar where <, > and | can be usedAlexander Levin2010-07-02
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27249 a1c6a512-1295-4272-9138-f99709370657
* Onle one table row per WPS tagAlexander Levin2010-07-02
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27248 a1c6a512-1295-4272-9138-f99709370657
* No need to capitalize every wordAlexander Levin2010-07-02
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27247 a1c6a512-1295-4272-9138-f99709370657
* Make the first column in the tag tables narrowerAlexander Levin2010-07-02
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27246 a1c6a512-1295-4272-9138-f99709370657
* Theme tags description: include the part about 'hold' for soft hold targets ↵Marianne Arnold2010-07-01
| | | | | | as well (available there since hm... r13716), put more universally to get rid of special casing. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27224 a1c6a512-1295-4272-9138-f99709370657
* Generalize the description of the %d(N) WPS tagsAlexander Levin2010-07-01
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27221 a1c6a512-1295-4272-9138-f99709370657
* Clarify that we use album artist if available.Jonas Häggqvist2010-07-01
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27215 a1c6a512-1295-4272-9138-f99709370657
* Use normal apostrophes for code. Thanks to fml for pointing out (also for ↵Alex Parker2010-06-20
| | | | | | previoys commit). git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26994 a1c6a512-1295-4272-9138-f99709370657
* Convert the manual to the new theme syntax. As a result, adds the viewport ↵Alex Parker2010-06-20
| | | | | | colour tags which closes FS#11372. Correct multifont tag from %F to %Fl git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26989 a1c6a512-1295-4272-9138-f99709370657
* Add multifont to the manual. Closes FS#11294.Alex Parker2010-06-20
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26987 a1c6a512-1295-4272-9138-f99709370657
* Add WPS hotkey for the D2, and make the tree hotkey only valid for ↵Alex Parker2010-06-14
| | | | | | non-touchscreen targets. This will have to be revisited if we gain touchscreen targets with tree hotkey capabilities. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26848 a1c6a512-1295-4272-9138-f99709370657
* SKIN BREAK: %pb, %bl and %pv (bar types) changed so the image is the last ↵Jonathan Gordon2010-06-09
| | | | | | | | | | param instead of the first. skin updater, skins and manual all updated. NEW PARSER: add an 'N' param type which will accept any number of strings, will cause very big problems if this isnt the last param for a tag. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26727 a1c6a512-1295-4272-9138-f99709370657
* The real reason to change the %C was to remove a very nasty hack!Jonathan Gordon2010-06-08
| | | | | | | | | %CL - load the AA %C - check if AA is avilable %Cd - display the AA git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26696 a1c6a512-1295-4272-9138-f99709370657
* fix the manual alsoJonathan Gordon2010-06-08
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26694 a1c6a512-1295-4272-9138-f99709370657
* USB charging: update manualTorne Wuff2010-06-06
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26633 a1c6a512-1295-4272-9138-f99709370657
* Submit FS#11240 by Raphael Jakse. Allows to reduce volume on WM8985 to -89 ↵Andree Buschmann2010-05-30
| | | | | | dB (e.g. used for Cowon D2). Below -57 dB the line out is affected. The manual is updated accordingly. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26413 a1c6a512-1295-4272-9138-f99709370657
* Consolidate the information on album art into one place.Alex Parker2010-05-29
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26390 a1c6a512-1295-4272-9138-f99709370657
* Only show the section on radio tags if the target has a radio.Alex Parker2010-05-29
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26389 a1c6a512-1295-4272-9138-f99709370657
* Add a brief description of radio art to the manual. Closes FS#11279.Alex Parker2010-05-29
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26388 a1c6a512-1295-4272-9138-f99709370657
* Another go at FS#11295 -- Use nice 'times' glyphs for describing dimensions. ↵Alexander Levin2010-05-20
| | | | | | This time properly implemented. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26198 a1c6a512-1295-4272-9138-f99709370657
* Revert r26171. Special macro for the image base name is needed. Will be ↵Alexander Levin2010-05-19
| | | | | | committed soon. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26173 a1c6a512-1295-4272-9138-f99709370657
* Use nice 'times' glyphs for describing dimensions (FS#11295)Alexander Levin2010-05-19
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26171 a1c6a512-1295-4272-9138-f99709370657
* Fix typoMichael Chicoine2010-05-18
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26124 a1c6a512-1295-4272-9138-f99709370657
* Update the notes for which compression levels of ape are realtime and fix ↵Nils Wallménius2010-05-17
| | | | | | the location of rockbox version in the bug reporting instructions git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26098 a1c6a512-1295-4272-9138-f99709370657
* Format FM frequency depending on the regional settings (FS#11273)Alexander Levin2010-05-15
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26069 a1c6a512-1295-4272-9138-f99709370657
* Correct English.Alex Parker2010-05-13
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25997 a1c6a512-1295-4272-9138-f99709370657
* add the true audio codec.Yoshihisa Uchida2010-05-13
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25995 a1c6a512-1295-4272-9138-f99709370657