1. 12 Agu, 2016 11 kayıt (commit)
  2. 11 Agu, 2016 24 kayıt (commit)
  3. 10 Agu, 2016 5 kayıt (commit)
    • Eike Rathke's avatar
      recognize another release's unknown currency saved as symbol we know · a97e6990
      Eike Rathke yazdı
      This may happen when saving a currency with a changed symbol in the
      current release, load it in an older release, save it there and load it
      again in the newer release.
      
      For example DKK
      [$kr.-406] #.##0,00;[RED][$kr.-406] -#.##0,00
      new in master/5.3 (changed symbol from 'kr' to 'kr.')
      loaded and saved in earlier releases writes currency 'kr.' instead of 'DKK'
      reloaded in master since there was no match as currency lead to number format
       #.##0,00 [$kr.]
      
      Change-Id: I5c8f165a2f420d77f5a2c0921c33a57797f92526
      a97e6990
    • Szymon Kłos's avatar
      GSoC notebookbar: changed labels · 554dc4c3
      Szymon Kłos yazdı
      Change-Id: I824e7b871edb9506a25ca7918431bf917e237709
      554dc4c3
    • Szymon Kłos's avatar
      GSoC notebookbar: slot available only in the menubar · d409aeaa
      Szymon Kłos yazdı
      Change-Id: Ifaded8c158515e9d21229f91502a3873f17fc60b
      d409aeaa
    • Miklos Vajna's avatar
      sw undo: add a Repair argument to the .uno:Undo/Redo commands · e9bcd347
      Miklos Vajna yazdı
      Undo/redo is limited to undo actions created by the same view in the LOK
      case, this argument removes this limit. This can be used by a client for
      "document repair" purposes, where undo/redo of others' changes is
      intentional.
      
      The sfx command dispatch has support for FASTCALL slots (a state
      function is not called, the command is always enabled) and also has
      support for state functions, but those functions only get the ID of the
      slots, not its parameters. What is needed here is a command that's
      disabled by default, but in case a Repair argument is used, then it's
      unconditionally enabled. So handle that case in the sfx dispatcher
      directly for now.
      
      Change-Id: I96c1130bf51abcdd722684b1fa4a8277f92fd555
      e9bcd347
    • Eike Rathke's avatar
      XML number format: do not enquote space followed by minus, tdf#97837 follow-up · 4d993ae8
      Eike Rathke yazdı
      Which with
      [$kr.-406] #.##0,00;[RED][$kr.-406] -#.##0,00
      saved and reloaded gave
      [$kr.-406] #.##0,00;[RED][$kr.-406]" -"#.##0,00
      and thus an almost identical duplicated format with the built-in format.
      
      Change-Id: Ie39b97576842bc29ac301d2fe64f7331f6c57fc4
      4d993ae8