1. 24 Aug, 2017 - 2 commits
  2. 21 Aug, 2017 - 2 commits
  3. 16 Aug, 2017 - 2 commits
    • Jarkko Koivikko's avatar
      3rdparty/t9write: unpack.py: Allow duplicate file names · d256ad12
      Jarkko Koivikko authored
      
      This change allows the rules with same input file name (but
      with different directory prefix) to co-exist. It works by
      removing the already matched input file from the "zip list".
      However, this only works if the rules are ordered correctly,
      i.e. the most exact ones being first in the list.
      
      Consider the following example:
      
      'data/arabic': [
          '*/Arabic/_databas_le.bin',
      ],
      'data': [
          '*/_databas_le.bin',
      ]
      
      Without this change the later rule will override the
      file entry already copied for 'data/arabic'. But with
      'Arabic/_databas_le.bin' removed from the input list, it
      will not be matched.
      
      Change-Id: Ifd06125d1519c45dba077e50f69769fdb0070351
      Reviewed-by: default avatarMitch Curtis <mitch.curtis@qt.io>
      d256ad12
    • Jarkko Koivikko's avatar
      3rdparty/t9write: Add input directory argument · bc84550e
      Jarkko Koivikko authored
      
      Accept directory as an input argument in addition to zip file.
      
      Change-Id: I2faf446f7636d190941fae0f76e569cb1e7c332e
      Reviewed-by: default avatarMitch Curtis <mitch.curtis@qt.io>
      bc84550e
  4. 08 Jul, 2017 - 1 commit