R3vo/Sandbox – User

From Bohemia Interactive Community
< R3vo
Categories:
mNo edit summary
mNo edit summary
 
(270 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{SideTOC}}
= Mobile To-Do =
=Introduction=
''A list of things that would improve mobile compatibility''
Each key on any keyboard has a unique Direct Input Keyboard (DIK) code. They are '''not''' character symbols. They refer to the position of the key on the keyboard. That means, that depending on the keyboard layout, the actually key can changes, but its position is always identical. This is useful to '''fulfill ergonomic needs'''.


'''In addition to that, using DIK codes has more advantages:'''
* Recognize keys that can not be represented in character equivalents. Function keys for example have no character set code.
* Using the defines below, makes using key codes easier in configs, since the actual code is replaced by an rememberable string e.g., DIK_K instead of 0x25.
* Unique DIK codes exist for numeric pad '9' versus standard key '9'. These are key-codes, not, characters.


''Lou thinks just because the list is empty there is nothing left to improve. Only if he knew.''


{{Informative|Specific keys cannot be detected with DIK codes, since the position of the keys changes with the Keyboard layout (Qwerty, [http://en.wikipedia.org/wiki/Dvorak_Simplified_Keyboard Dvorak])|}}
= Done =


* Creator dlc template needs a noresize.
** {{Link|Spearhead_1944}}
* Long command names should wrap
** {{Link|removeAllUserActionEventHandlers}}


=Usage in scripts=
* See also entries on command and function pages are broken
DIK codes are '''always''' accompanied by the state of the SHIFT, ALT, and CTRL keys. Any script can differentiate between 'Q' and ALT-Q.
** {{Link|parsingNamespace}}


{{Informative|For parameters passed to key event handlers see [[User_Interface_Event_Handlers#onKeyDown|onKeyDown]] EH.}}
* Command and function template layout wastes a lot of space due to the two column design


=Headers=
* Tables with fixed widths need to be avoided. If they are too wide use noresize class wrapper
===Personal Tools===
** {{Link|Arma_3:_Visual_Upgrade}}
#include "\bin\dikCodes.h"


==={{arma3}}===
* YouTube embeds and images should not have a fixed width
#include "\a3\ui_f\hpp\definedikcodes.inc"
** {{Link|Category:DayZ}}
 
** {{Link|Spearhead_1944_Frontline_Function}}
=Defines=
** It is because the youtube template has a hardcoded minimum width. This should get removed
{{Informative|These DIK code #defines, refer to a US QWERTY layout.}}
===Alphabetic sort===
====F1..15====
<pre>
DIK_F1              0x3B
DIK_F2              0x3C
DIK_F3              0x3D
DIK_F4              0x3E
DIK_F5              0x3F
DIK_F6              0x40
DIK_F7              0x41
DIK_F8              0x42
DIK_F9              0x43
DIK_F10            0x44
DIK_F11            0x57
DIK_F12            0x58
DIK_F13            0x64    /*                     (NEC PC98) */
DIK_F14            0x65    /*                    (NEC PC98) */
DIK_F15            0x66    /*                    (NEC PC98) */
</pre>
====0..9====
<pre>
DIK_0              0x0B
DIK_1              0x02
DIK_2              0x03
DIK_3              0x04
DIK_4              0x05
DIK_5              0x06
DIK_6              0x07
DIK_7              0x08
DIK_8              0x09
DIK_9              0x0A
DIK_NUMPAD0        0x52
DIK_NUMPAD1        0x4F
DIK_NUMPAD2        0x50
DIK_NUMPAD3        0x51
DIK_NUMPAD4        0x4B
DIK_NUMPAD5        0x4C
DIK_NUMPAD6        0x4D
DIK_NUMPAD7        0x47
DIK_NUMPAD8        0x48
DIK_NUMPAD9        0x49
</pre>
====alpha====
<pre>
DIK_A              0x1E
DIK_B              0x30
DIK_C              0x2E
DIK_D              0x20
DIK_E              0x12
DIK_F              0x21
DIK_G              0x22
DIK_H              0x23
DIK_I              0x17
DIK_J              0x24
DIK_K              0x25
DIK_L              0x26
DIK_M              0x32
DIK_N              0x31
DIK_O              0x18
DIK_P              0x19
DIK_Q              0x10
DIK_R              0x13
DIK_S              0x1F
DIK_T              0x14
DIK_U              0x16
DIK_V              0x2F
DIK_W              0x11
DIK_X              0x2D
DIK_Y              0x15
DIK_Z              0x2C
</pre>
====Controls====
<pre>
DIK_ESCAPE          0x01
DIK_TAB            0x0F
DIK_LSHIFT          0x2A
DIK_RSHIFT          0x36
DIK_LCONTROL        0x1D
DIK_RCONTROL        0x9D
DIK_BACK            0x0E    /* backspace */
DIK_BACKSPACE      DIK_BACK
DIK_RETURN          0x1C    /* Enter on main keyboard */
DIK_NUMPADENTER    0x9C    /* Enter on numeric keypad */
DIK_LMENU          0x38    /* left Alt */
DIK_LALT            DIK_LMENU
DIK_SPACE          0x39
DIK_CAPITAL        0x3A    /* capslock */
DIK_CAPSLOCK        DIK_CAPITAL
DIK_NUMLOCK        0x45
DIK_SCROLL          0x46    /* Scroll Lock */
DIK_RMENU          0xB8    /* right Alt */
DIK_RALT            DIK_RMENU          /* right Alt */
</pre>
====Graphics====
<pre>
DIK_AT              0x91    /*                    (NEC PC98) */
DIK_COLON          0x92    /*                    (NEC PC98) */
DIK_UNDERLINE      0x93    /*                    (NEC PC98) */
DIK_MINUS          0x0C    /* - on main keyboard */
DIK_EQUALS          0x0D
DIK_LBRACKET        0x1A
DIK_RBRACKET        0x1B
DIK_SEMICOLON      0x27
DIK_APOSTROPHE      0x28
DIK_GRAVE          0x29    /* accent grave */
DIK_BACKSLASH      0x2B
DIK_COMMA          0x33
DIK_PERIOD          0x34    /* . on main keyboard */
DIK_SLASH          0x35    /* / on main keyboard */
DIK_MULTIPLY        0x37    /* * on numeric keypad */
DIK_NUMPADSTAR      DIK_MULTIPLY
DIK_SUBTRACT        0x4A    /* - on numeric keypad */
DIK_ADD            0x4E    /* + on numeric keypad */
DIK_DECIMAL        0x53    /* . on numeric keypad */
DIK_NUMPADEQUALS    0x8D    /* = on numeric keypad (NEC PC98) */
DIK_NUMPADMINUS    DIK_SUBTRACT        /* - on numeric keypad */
DIK_NUMPADPLUS      DIK_ADD            /* + on numeric keypad */
DIK_NUMPADPERIOD    DIK_DECIMAL        /* . on numeric keypad */
DIK_NUMPADSLASH    DIK_DIVIDE          /* / on numeric keypad */
</pre>
====KataKana====
<pre>
DIK_KANA            0x70    /* (Japanese keyboard)            */
DIK_ABNT_C1        0x73    /* / ? on Portugese (Brazilian) keyboards */
DIK_CONVERT        0x79    /* (Japanese keyboard)            */
DIK_NOCONVERT      0x7B    /* (Japanese keyboard)            */
DIK_YEN            0x7D    /* (Japanese keyboard)            */
DIK_OEM_102        0x56    /* < > | on UK/Germany keyboards */
DIK_ABNT_C2        0x7E    /* Numpad . on Portugese (Brazilian) keyboards */
DIK_PREVTRACK      0x90    /* Previous Track (DIK_CIRCUMFLEX on Japanese keyboard) */
DIK_KANJI          0x94    /* (Japanese keyboard)            */
DIK_STOP            0x95    /*                    (NEC PC98) */
DIK_AX              0x96    /*                    (Japan AX) */
DIK_UNLABELED      0x97    /*                        (J3100) */
DIK_NUMPADCOMMA    0xB3    /* , on numeric keypad (NEC PC98) */
/* Alternate names for keys originally not used on US keyboards. */
DIK_CIRCUMFLEX      DIK_PREVTRACK      /* Japanese keyboard */
</pre>
====Apps====
<pre>
DIK_NEXTTRACK      0x99    /* Next Track */
DIK_MUTE            0xA0    /* Mute */
DIK_CALCULATOR      0xA1    /* Calculator */
DIK_PLAYPAUSE      0xA2    /* Play / Pause */
DIK_MEDIASTOP      0xA4    /* Media Stop */
DIK_VOLUMEDOWN      0xAE    /* Volume - */
DIK_VOLUMEUP        0xB0    /* Volume + */
DIK_WEBHOME        0xB2    /* Web home */
DIK_SYSRQ          0xB7
DIK_PAUSE          0xC5    /* Pause */
DIK_APPS            0xDD    /* AppMenu key */
DIK_POWER          0xDE    /* System Power */
DIK_SLEEP          0xDF    /* System Sleep */
DIK_WAKE            0xE3    /* System Wake */
DIK_WEBSEARCH      0xE5    /* Web Search */
DIK_WEBFAVORITES    0xE6    /* Web Favorites */
DIK_WEBREFRESH      0xE7    /* Web Refresh */
DIK_WEBSTOP        0xE8    /* Web Stop */
DIK_WEBFORWARD      0xE9    /* Web Forward */
DIK_WEBBACK        0xEA    /* Web Back */
DIK_MYCOMPUTER      0xEB    /* My Computer */
DIK_MAIL            0xEC    /* Mail */
DIK_MEDIASELECT    0xED    /* Media Select */
</pre>
====ArrowKeypad====
<pre>
DIK_HOME            0xC7    /* Home on arrow keypad */
DIK_UP              0xC8    /* UpArrow on arrow keypad */
DIK_PRIOR          0xC9    /* PgUp on arrow keypad */
DIK_LEFT            0xCB    /* LeftArrow on arrow keypad */
DIK_RIGHT          0xCD    /* RightArrow on arrow keypad */
DIK_END            0xCF    /* End on arrow keypad */
DIK_DOWN            0xD0    /* DownArrow on arrow keypad */
DIK_NEXT            0xD1    /* PgDn on arrow keypad */
DIK_INSERT          0xD2    /* Insert on arrow keypad */
DIK_DELETE          0xD3    /* Delete on arrow keypad */
DIK_UPARROW        DIK_UP              /* UpArrow on arrow keypad */
DIK_PGUP            DIK_PRIOR          /* PgUp on arrow keypad */
DIK_LEFTARROW      DIK_LEFT            /* LeftArrow on arrow keypad */
DIK_RIGHTARROW      DIK_RIGHT          /* RightArrow on arrow keypad */
DIK_DOWNARROW      DIK_DOWN            /* DownArrow on arrow keypad */
DIK_PGDN            DIK_NEXT            /* PgDn on arrow keypad */
</pre>
====other====
<pre>
DIK_LWIN            0xDB    /* Left Windows key */
DIK_RWIN            0xDC    /* Right Windows key */
</pre>
 
===Numeric sort===
<pre>
DIK_ESCAPE          0x01
DIK_1              0x02
DIK_2              0x03
DIK_3              0x04
DIK_4              0x05
DIK_5              0x06
DIK_6              0x07
DIK_7              0x08
DIK_8              0x09
DIK_9              0x0A
DIK_0              0x0B
DIK_MINUS          0x0C    /* - on main keyboard */
DIK_EQUALS          0x0D
DIK_BACK            0x0E    /* backspace */
DIK_TAB            0x0F
DIK_Q              0x10
DIK_W              0x11
DIK_E              0x12
DIK_R              0x13
DIK_T              0x14
DIK_Y              0x15
DIK_U              0x16
DIK_I              0x17
DIK_O              0x18
DIK_P              0x19
DIK_LBRACKET        0x1A
DIK_RBRACKET        0x1B
DIK_RETURN          0x1C    /* Enter on main keyboard */
DIK_LCONTROL        0x1D
DIK_A              0x1E
DIK_S              0x1F
DIK_D              0x20
DIK_F              0x21
DIK_G              0x22
DIK_H              0x23
DIK_J              0x24
DIK_K              0x25
DIK_L              0x26
DIK_SEMICOLON      0x27
DIK_APOSTROPHE      0x28
DIK_GRAVE          0x29    /* accent grave */
DIK_LSHIFT          0x2A
DIK_BACKSLASH      0x2B
DIK_Z              0x2C
DIK_X              0x2D
DIK_C              0x2E
DIK_V              0x2F
DIK_B              0x30
DIK_N              0x31
DIK_M              0x32
DIK_COMMA          0x33
DIK_PERIOD          0x34    /* . on main keyboard */
DIK_SLASH          0x35    /* / on main keyboard */
DIK_RSHIFT          0x36
DIK_MULTIPLY        0x37    /* * on numeric keypad */
DIK_LMENU          0x38    /* left Alt */
DIK_SPACE          0x39
DIK_CAPITAL        0x3A
DIK_F1              0x3B
DIK_F2              0x3C
DIK_F3              0x3D
DIK_F4              0x3E
DIK_F5              0x3F
DIK_F6              0x40
DIK_F7              0x41
DIK_F8              0x42
DIK_F9              0x43
DIK_F10            0x44
DIK_NUMLOCK        0x45
DIK_SCROLL          0x46    /* Scroll Lock */
DIK_NUMPAD7        0x47
DIK_NUMPAD8        0x48
DIK_NUMPAD9        0x49
DIK_SUBTRACT        0x4A    /* - on numeric keypad */
DIK_NUMPAD4        0x4B
DIK_NUMPAD5        0x4C
DIK_NUMPAD6        0x4D
DIK_ADD            0x4E    /* + on numeric keypad */
DIK_NUMPAD1        0x4F
DIK_NUMPAD2        0x50
DIK_NUMPAD3        0x51
DIK_NUMPAD0        0x52
DIK_DECIMAL        0x53    /* . on numeric keypad */
DIK_OEM_102        0x56    /* < > | on UK/Germany keyboards */
DIK_F11            0x57
DIK_F12            0x58
DIK_F13            0x64    /*                    (NEC PC98) */
DIK_F14            0x65    /*                    (NEC PC98) */
DIK_F15            0x66    /*                    (NEC PC98) */
DIK_KANA            0x70    /* (Japanese keyboard)            */
DIK_ABNT_C1        0x73    /* / ? on Portugese (Brazilian) keyboards */
DIK_CONVERT        0x79    /* (Japanese keyboard)            */
DIK_NOCONVERT      0x7B    /* (Japanese keyboard)            */
DIK_YEN            0x7D    /* (Japanese keyboard)            */
DIK_ABNT_C2        0x7E    /* Numpad . on Portugese (Brazilian) keyboards */
DIK_NUMPADEQUALS    0x8D    /* = on numeric keypad (NEC PC98) */
DIK_PREVTRACK      0x90    /* Previous Track (DIK_CIRCUMFLEX on Japanese keyboard) */
DIK_AT              0x91    /*                    (NEC PC98) */
DIK_COLON          0x92    /*                    (NEC PC98) */
DIK_UNDERLINE      0x93    /*                    (NEC PC98) */
DIK_KANJI          0x94    /* (Japanese keyboard)            */
DIK_STOP            0x95    /*                    (NEC PC98) */
DIK_AX              0x96    /*                    (Japan AX) */
DIK_UNLABELED      0x97    /*                        (J3100) */
DIK_NEXTTRACK      0x99    /* Next Track */
DIK_NUMPADENTER    0x9C    /* Enter on numeric keypad */
DIK_RCONTROL        0x9D
DIK_MUTE            0xA0    /* Mute */
DIK_CALCULATOR      0xA1    /* Calculator */
DIK_PLAYPAUSE      0xA2    /* Play / Pause */
DIK_MEDIASTOP      0xA4    /* Media Stop */
DIK_VOLUMEDOWN      0xAE    /* Volume - */
DIK_VOLUMEUP        0xB0    /* Volume + */
DIK_WEBHOME        0xB2    /* Web home */
DIK_NUMPADCOMMA    0xB3    /* , on numeric keypad (NEC PC98) */
DIK_DIVIDE          0xB5    /* / on numeric keypad */
DIK_SYSRQ          0xB7
DIK_RMENU          0xB8    /* right Alt */
DIK_PAUSE          0xC5    /* Pause */
DIK_HOME            0xC7    /* Home on arrow keypad */
DIK_UP              0xC8    /* UpArrow on arrow keypad */
DIK_PRIOR          0xC9    /* PgUp on arrow keypad */
DIK_LEFT            0xCB    /* LeftArrow on arrow keypad */
DIK_RIGHT          0xCD    /* RightArrow on arrow keypad */
DIK_END            0xCF    /* End on arrow keypad */
DIK_DOWN            0xD0    /* DownArrow on arrow keypad */
DIK_NEXT            0xD1    /* PgDn on arrow keypad */
DIK_INSERT          0xD2    /* Insert on arrow keypad */
DIK_DELETE          0xD3    /* Delete on arrow keypad */
DIK_LWIN            0xDB    /* Left Windows key */
DIK_RWIN            0xDC    /* Right Windows key */
DIK_APPS            0xDD    /* AppMenu key */
DIK_POWER          0xDE    /* System Power */
DIK_SLEEP          0xDF    /* System Sleep */
DIK_WAKE            0xE3    /* System Wake */
DIK_WEBSEARCH      0xE5    /* Web Search */
DIK_WEBFAVORITES    0xE6    /* Web Favorites */
DIK_WEBREFRESH      0xE7    /* Web Refresh */
DIK_WEBSTOP        0xE8    /* Web Stop */
DIK_WEBFORWARD      0xE9    /* Web Forward */
DIK_WEBBACK        0xEA    /* Web Back */
DIK_MYCOMPUTER      0xEB    /* My Computer */
DIK_MAIL            0xEC    /* Mail */
DIK_MEDIASELECT    0xED    /* Media Select */
 
/* Alternate names for keys, to facilitate transition from DOS. */
DIK_BACKSPACE      DIK_BACK            /* backspace */
DIK_NUMPADSTAR      DIK_MULTIPLY        /* * on numeric keypad */
DIK_LALT            DIK_LMENU          /* left Alt */
DIK_CAPSLOCK        DIK_CAPITAL        /* CapsLock */
DIK_NUMPADMINUS    DIK_SUBTRACT        /* - on numeric keypad */
DIK_NUMPADPLUS      DIK_ADD            /* + on numeric keypad */
DIK_NUMPADPERIOD    DIK_DECIMAL        /* . on numeric keypad */
DIK_NUMPADSLASH    DIK_DIVIDE          /* / on numeric keypad */
DIK_RALT            DIK_RMENU          /* right Alt */
DIK_UPARROW        DIK_UP              /* UpArrow on arrow keypad */
DIK_PGUP            DIK_PRIOR          /* PgUp on arrow keypad */
DIK_LEFTARROW      DIK_LEFT            /* LeftArrow on arrow keypad */
DIK_RIGHTARROW      DIK_RIGHT          /* RightArrow on arrow keypad */
DIK_DOWNARROW      DIK_DOWN            /* DownArrow on arrow keypad */
DIK_PGDN            DIK_NEXT            /* PgDn on arrow keypad */
 
/* Alternate names for keys originally not used on US keyboards. */
DIK_CIRCUMFLEX      DIK_PREVTRACK      /* Japanese keyboard */
</pre>
 
=German keyboard=
{| class="wikitable sortable" style="text-align:center"
!Number
!Key Name
!Number
!Key Name
!Number
!Key Name
|-
| 1 || ESC || 11 || 0 || 21 || Z
|-
| 2 || 1 || 12 || ß || 22 || U
|-
| 3 || 2 || 13 || ´ || 23 || I
|-
| 4 || 3 || 14 || BACKSPACE || 24 || O
|-
| 5 || 4 || 15 || TAB || 25 || P
|-
| 6 || 5 || 16 || Q || 26 || Ü
|-
| 7 || 6 || 17 || W || ||
|-
| 8 || 7 || 18 || E || 28 || ENTER
|-
| 9 || 8 || 19 || R || 29 || STRGL
|-
| 10 || 9 || 20 || T || 30 || A
|-
| 31 || S || 41 || ^ || 51 || ,
|-
| 32 || D || 42 || SHIFTL || 52 || .
|-
| 33 || F || 43 || # || 53 || -
|-
| 34 || G || 44 || Y || 54 || SHIFTR
|-
| 35 || H || 45 || X || 55 || NUM_*
|-
| 36 || J || 46 || C || 56 || ALT
|-
| 37 || K || 47 || V || 57 || SPACE
|-
| 38 || L || 48 || B || 58 || CAPS
|-
| 39 || Ö || 49 || N || 59 || F1
|-
| 40 || Ä || 50 || M || 60 || F2
|-
| 61 || F3 || 71 || NUM_7 || 81 || NUM_3
|-
| 62 || F4 || 72 || NUM_8 || 82 || NUM_0
|-
| 63 || F5 || 73 || NUM_9 || 83 || NUM_,
|-
| 64 || F6 || 74 || NUM_- ||  ||
|-
| 65 || F7 || 75 || NUM_4 ||  ||
|-
| 66 || F8 || 76 || NUM_5 || 86 || <
|-
| 67 || F9 || 77 || NUM_6 || 87 || F11
|-
| 68 || F10 || 78 || NUM_+ || 88 || F12
|-
| 69 || NUM || 79 || NUM_1 ||  ||
|-
| 70 || SCROLL || 80 || NUM_2 ||  ||
|-
| 156 || NUM_ENTER || 200 || UP || 211 || DELETE
|-
| 157 || STRGR || 201 || PAGEUP || 219 || WINR
|-
|  ||  || 220 || WINL || ||
|-
| 181 || NUM_/ || 203 || LEFT || 221 || APP
|-
| 183 || PRINT ||  ||  || ||
|-
| 184 || ALTGR || 205 || RIGHT || NOT DEFINED || +
|-
| 197 || PAUSE || 207 || END ||  ||
|-
| 199 || POS1 || 208 || DOWN ||  ||
|-
|  ||  || 209 || PAGEDOWN ||  ||
|-
|  ||  || 210 || INSERT ||  ||
|}
 
=French keyboard=
{| class="wikitable" style="text-align:center"
!Number
!Key Name
!Number
!Key Name
!Number
!Key Name
|-
| 1 || ESC || 11 || 0 || 21 || Y
|-
| 2 || 1 || 12 || ) || 22 || U
|-
| 3 || 2 || 13 || = || 23 || I
|-
| 4 || 3 || 14 || BACKSPACE || 24 || O
|-
| 5 || 4 || 15 || TAB || 25 || P
|-
| 6 || 5 || 16 || A || 26 || ^
|-
| 7 || 6 || 17 || Z || 27 || $
|-
| 8 || 7 || 18 || E || 28 || ENTER
|-
| 9 || 8 || 19 || R || 29 || CTRLG
|-
| 10 || 9 || 20 || T || 30 || Q
|-
|-
| 31 || S || 41 || ² || 51 || ;
|-
| 32 || D || 42 || SHIFTL || 52 || :
|-
| 33 || F || 43 || * || 53 || !
|-
| 34 || G || 44 || W || 54 || SHIFTR
|-
| 35 || H || 45 || X || 55 || NUM_*
|-
| 36 || J || 46 || C || 56 || ALT
|-
| 37 || K || 47 || V || 57 || SPACE
|-
| 38 || L || 48 || B || 58 || CAPS
|-
| 39 || M || 49 || N || 59 || F1
|-
| 40 || ù || 50 || , || 60 || F2
|-
| 61 || F3 || 71 || NUM_7 || 81 || NUM_3
|-
| 62 || F4 || 72 || NUM_8 || 82 || NUM_0
|-
| 63 || F5 || 73 || NUM_9 || 83 || NUM_.
|-
| 64 || F6 || 74 || NUM_- ||  ||
|-
| 65 || F7 || 75 || NUM_4 ||  ||
|-
| 66 || F8 || 76 || NUM_5 || 86 || <
|-
| 67 || F9 || 77 || NUM_6 || 87 || F11
|-
| 68 || F10 || 78 || NUM_+ || 88 || F12
|-
| 69 || NUM || 79 || NUM_1 ||  ||
|-
| 70 || SCROLL || 80 || NUM_2 ||  ||
|-
| 156 || NUM_ENTER || 200 || UP || 211 || DELETE
|-
| 157 || CTRLR || 201 || PAGEUP || 219 || WINR
|-
|  ||  || 220 || WINL || ||
|-
| 181 || NUM_/ || 203 || LEFT || 221 || APP
|-
| 183 || PRINT ||  ||  || ||
|-
| 184 || ALTGR || 205 || RIGHT || NOT DEFINED || +
|-
| 197 || PAUSE || 207 || END ||  ||
|-
| 199 || POS1 || 208 || DOWN ||  ||
|-
|  ||  || 209 || PAGEDOWN ||  ||
|-
|  ||  || 210 || INSERT ||  ||
|}
 
[[Category:Reference Lists]]
[[Category:Scripting Topics]]

Latest revision as of 18:11, 18 May 2025

Mobile To-Do

A list of things that would improve mobile compatibility


Lou thinks just because the list is empty there is nothing left to improve. Only if he knew.

Done

  • Command and function template layout wastes a lot of space due to the two column design
  • Tables with fixed widths need to be avoided. If they are too wide use noresize class wrapper