1. 16 Jul, 2016 2 commits
    • Explorer09's avatar
      Mouse-friendly functions bar for meters panel · 0108117d
      Explorer09 authored
      Before:
      SpaceStyle EnterMove  DelDeleteEscDone  |
      ~~~~~      ~~~~~      ~~~      ~~~      |
      UpUp     DnDown  LtLeft  RtRight EnterConfirmDelDeleteEscDone  |
      ~~       ~~      ~~      ~~      ~~~~~       ~~~      ~~~      |
      
      After:
      SpaceStyle EnterMove                                           DelDeleteF10Done
      ~~~~~      ~~~~~      ~~                                       ~~~      ~~~
      SpaceStyle EnterLock  UpUp    DnDown  <-Left  ->Right          DelDeleteF10Done
      ~~~~~      ~~~~~      ~~      ~~      ~~      ~~      ~~       ~~~      ~~~
      
      * Align 'Delete' and 'Done' to the right to match functions on other
        screens. (Accidental clicking is avoided as a side benefit.)
      * You could change meter type while in moving mode. New bar now hints
        this.
      * Two Enter key functions are put in the same place and so mouse clicks
        there act like functions toggle. (The wording change to 'Lock' is
        also to reflect this.)
      * '<-' and '->' instead of 'Lt' and 'Rt' abbreviation as the latter is
        not widely seen and arrows shapes are obvious. :)
      * 'Esc' key for 'Done' in this context may not be intuitive, comparing
        to 'F10'. While I wish there be a Cancel/Undo function for 'Esc', it
        wouldn't hurt if we write 'F10' for 'Done' on functions bar for now.
      0108117d
    • Explorer09's avatar
      Reword 'Type' to 'Style' for meters. · a41c9b39
      Explorer09 authored
      Per @hishamhm's suggestion. This is UI change only.
      In code the class names and symbols still refer them as "modes".
      a41c9b39
  2. 12 Jul, 2016 1 commit
  3. 11 Jul, 2016 1 commit
  4. 23 Jun, 2016 1 commit
  5. 20 Jun, 2016 1 commit
  6. 19 Jun, 2016 3 commits
  7. 18 Jun, 2016 1 commit
  8. 17 Jun, 2016 2 commits
  9. 15 Jun, 2016 3 commits
  10. 04 Jun, 2016 1 commit
  11. 03 Jun, 2016 1 commit
  12. 02 Jun, 2016 3 commits
  13. 30 May, 2016 5 commits
  14. 27 May, 2016 2 commits
  15. 26 May, 2016 2 commits
  16. 25 May, 2016 1 commit
  17. 19 May, 2016 4 commits
  18. 16 May, 2016 1 commit
  19. 08 May, 2016 3 commits
    • Explorer09's avatar
      Update INSTALL text from autoconf-2.69 · c0df4047
      Explorer09 authored
      c0df4047
    • Explorer09's avatar
      Reorder configure macros to avoid "missing script" warning. · b71b07f5
      Explorer09 authored
      3 effects in this commit, with the first being the main one:
      
      1. Fix the "`missing' script is too old or missing" warning. See:
         <https://lists.gnu.org/archive/html/automake/2010-08/msg00108.html>
      
      2. By moving AC_CANONICAL_TARGET down in order, we are now able to
         set the directory for auxiliary scripts. For now it's still './'.
         I added the line "AC_CONFIG_AUX_DIR([.])" to show that the directory
         change is possible.
      
      3. AC_USE_SYSTEM_EXTENSIONS includes checks from AC_PROG_CC, by moving
         the former macro down, we can save size in 'configure' by not
         generating repeated checks.
      b71b07f5
    • Explorer09's avatar
      Replace deprecated autoconf macros. · f0df28a4
      Explorer09 authored
      AC_HELP_STRING -> AS_HELP_STRING
      AC_TRY_COMPILE -> AC_COMPILE_IFELSE([AC_LANG_PROGRAM([...])],...)
      AC_CONFIG_HEADER -> AC_CONFIG_HEADERS
      AC_PROG_LIBTOOL -> LT_INIT
      
      Note: There might be more deprecated macros that I haven't noticed.
      I just wish to avoid painful highlighting from my text editor (gedit)
      that complains about them. :)
      f0df28a4
  20. 07 May, 2016 2 commits