PyFoxFile 0.20.4__tar.gz → 0.20.6__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: PyFoxFile
3
- Version: 0.20.4
3
+ Version: 0.20.6
4
4
  Summary: A tar like file format name foxfile.
5
5
  Home-page: https://github.com/GameMaker2k/PyFoxFile
6
6
  Download-URL: https://github.com/GameMaker2k/PyFoxFile/archive/master.tar.gz
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: PyFoxFile
3
- Version: 0.20.4
3
+ Version: 0.20.6
4
4
  Summary: A tar like file format name foxfile.
5
5
  Home-page: https://github.com/GameMaker2k/PyFoxFile
6
6
  Download-URL: https://github.com/GameMaker2k/PyFoxFile/archive/master.tar.gz
@@ -14,7 +14,7 @@
14
14
  Copyright 2018-2024 Game Maker 2k - http://intdb.sourceforge.net/
15
15
  Copyright 2018-2024 Kazuki Przyborowski - https://github.com/KazukiPrzyborowski
16
16
 
17
- $FileInfo: pyfoxfile.py - Last Update: 9/12/2025 Ver. 0.20.4 RC 1 - Author: cooldude2k $
17
+ $FileInfo: pyfoxfile.py - Last Update: 9/15/2025 Ver. 0.20.6 RC 1 - Author: cooldude2k $
18
18
  '''
19
19
 
20
20
  from __future__ import absolute_import, division, print_function, unicode_literals, generators, with_statement, nested_scopes
@@ -381,12 +381,12 @@ __file_format_extension__ = __file_format_multi_dict__[__file_format_default__][
381
381
  __file_format_dict__ = __file_format_multi_dict__[__file_format_default__]
382
382
  __project__ = __program_name__
383
383
  __project_url__ = "https://github.com/GameMaker2k/PyFoxFile"
384
- __version_info__ = (0, 20, 4, "RC 1", 1)
385
- __version_date_info__ = (2025, 9, 12, "RC 1", 1)
384
+ __version_info__ = (0, 20, 6, "RC 1", 1)
385
+ __version_date_info__ = (2025, 9, 15, "RC 1", 1)
386
386
  __version_date__ = str(__version_date_info__[0]) + "." + str(
387
387
  __version_date_info__[1]).zfill(2) + "." + str(__version_date_info__[2]).zfill(2)
388
388
  __revision__ = __version_info__[3]
389
- __revision_id__ = "$Id: be7ce175b0158341dc4ec24590e146762f619240 $"
389
+ __revision_id__ = "$Id: f6f2d05056de001652427c05b6fb802078d5db1c $"
390
390
  if(__version_info__[4] is not None):
391
391
  __version_date_plusrc__ = __version_date__ + \
392
392
  "-" + str(__version_date_info__[4])
@@ -8600,15 +8600,15 @@ def UnPackFoxFileString(instr, outdir=None, followlink=False, seekstart=0, seeke
8600
8600
 
8601
8601
  def ftype_to_str(ftype):
8602
8602
  mapping = {
8603
- 0: "file",
8604
- 1: "link",
8605
- 2: "symlink",
8606
- 3: "char device",
8607
- 4: "block device",
8608
- 5: "directory",
8609
- 6: "fifo",
8610
- 12: "sparse",
8611
- 14: "device",
8603
+ 0: "file", # file
8604
+ 1: "link", # link
8605
+ 2: "sym", # symlink
8606
+ 3: "cdev", # char device
8607
+ 4: "bdev", # block device
8608
+ 5: "dir", # directory
8609
+ 6: "fifo", # fifo
8610
+ 12: "spar", # sparse
8611
+ 14: "dev", # generic device
8612
8612
  }
8613
8613
  # Default to "file" if unknown
8614
8614
  return mapping.get(ftype, "file")
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "PyFoxFile"
3
- version = "0.20.4"
3
+ version = "0.20.6"
4
4
  readme = "README.md"
5
5
  license = { text = "BSD-3-Clause" }
6
6
  keywords = []
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes