Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
KazukiPrzyborowski authored Apr 13, 2024
1 parent ed2f7b9 commit e0f4d59
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions phpcatfile.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
$info['program_name'] = "PHPCatFile";
$info['project'] = $info['program_name'];
$info['project_url'] = "https://github.com/GameMaker2k/PyCatFile";
$info['version_info'] = [0, 7, 6, "RC 1", 1];
$info['version_info'] = [0, 7, 8, "RC 1", 1];
$info['version_id'] = "$Id$";
$info['version_date_info'] = [2024, 4, 10, "RC 1", 1];
$info['version_date_info'] = [2024, 4, 12, "RC 1", 1];
$info['version_date'] = $info['version_date_info'][0].".".str_pad($info['version_date_info'][1], 2, "-=", STR_PAD_LEFT).".".str_pad($info['version_date_info'][2], 2, "-=", STR_PAD_LEFT);
if($info['version_info'][4]!==Null) {
$info['version_date_plusrc'] = $info['version_date']."-".$info['version_date_info'][4]; }
Expand Down
4 changes: 2 additions & 2 deletions pycatfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,8 @@
__file_format_list__ = [__file_format_name__, __file_format_magic__, __file_format_lower__, __file_format_len__, __file_format_hex__, __file_format_delimiter__, __file_format_ver__, __use_new_style__, __use_advanced_list__, __use_alt_inode__];
__project__ = __program_name__;
__project_url__ = "https://github.com/GameMaker2k/PyCatFile";
__version_info__ = (0, 7, 6, "RC 1", 1);
__version_date_info__ = (2024, 4, 10, "RC 1", 1);
__version_info__ = (0, 7, 8, "RC 1", 1);
__version_date_info__ = (2024, 4, 12, "RC 1", 1);
__version_date__ = str(__version_date_info__[0]) + "." + str(__version_date_info__[1]).zfill(2) + "." + str(__version_date_info__[2]).zfill(2);
__revision__ = __version_info__[3];
__revision_id__ = "$Id$";
Expand Down

0 comments on commit e0f4d59

Please sign in to comment.