From 3adf9aa8cf46c11f0d176fae2b2ec1b3f990936b Mon Sep 17 00:00:00 2001 From: Imanol-Mikel Barba Sabariego Date: Thu, 6 Jul 2023 20:14:35 +0200 Subject: [PATCH] Updating version numbers --- gui.py | 2 +- lzari.py | 2 +- mymc.py | 2 +- ps2mc.py | 2 +- ps2mc_dir.py | 2 +- ps2mc_ecc.py | 2 +- ps2save.py | 2 +- round.py | 2 +- verbuild.py | 4 ++-- 9 files changed, 10 insertions(+), 10 deletions(-) diff --git a/gui.py b/gui.py index 14604cd..8246aeb 100755 --- a/gui.py +++ b/gui.py @@ -7,7 +7,7 @@ """Graphical user-interface for mymc.""" -_SCCS_ID = "@(#) mymc gui.py 1.8 22/02/05 19:20:59\n" +_SCCS_ID = "@(#) mymc gui.py 1.9 23/07/06 19:35:21\n" import os import sys diff --git a/lzari.py b/lzari.py index e84732b..a8bc60b 100755 --- a/lzari.py +++ b/lzari.py @@ -11,7 +11,7 @@ a two level dicitionary look up during compression rather than LZARI.C's binary search tree. """ -_SCCS_ID = "@(#) mymc lzari.py 1.6 12/10/04 19:07:53\n" +_SCCS_ID = "@(#) mymc lzari.py 1.7 23/07/06 16:03:53\n" import sys import array diff --git a/mymc.py b/mymc.py index ff06b6c..e2a3c80 100755 --- a/mymc.py +++ b/mymc.py @@ -7,7 +7,7 @@ """A utility for manipulating PS2 memory card images.""" -_SCCS_ID = "@(#) mymc mymc.py 1.13 22/01/15 01:04:45\n"[:-1] +_SCCS_ID = "@(#) mymc mymc.py 1.14 23/07/06 15:51:52\n"[:-1] import sys import os diff --git a/ps2mc.py b/ps2mc.py index 0ce643e..7d1b4c1 100755 --- a/ps2mc.py +++ b/ps2mc.py @@ -7,7 +7,7 @@ """Manipulate PS2 memory card images.""" -_SCCS_ID = "@(#) mymc ps2mc.py 1.11 22/01/15 01:17:07\n" +_SCCS_ID = "@(#) mymc ps2mc.py 1.12 23/07/06 19:48:03\n" import sys import array diff --git a/ps2mc_dir.py b/ps2mc_dir.py index 58f10a5..fb8cc59 100755 --- a/ps2mc_dir.py +++ b/ps2mc_dir.py @@ -7,7 +7,7 @@ """Functions for working with PS2 memory card directory entries.""" -_SCCS_ID = "@(#) mymc ps2mc_dir.py 1.4 12/10/04 19:11:08\n" +_SCCS_ID = "@(#) mymc ps2mc_dir.py 1.5 23/07/06 06:30:13\n" import struct import time diff --git a/ps2mc_ecc.py b/ps2mc_ecc.py index 16d5e21..1c18a2e 100755 --- a/ps2mc_ecc.py +++ b/ps2mc_ecc.py @@ -10,7 +10,7 @@ Routines for calculating the Hamming codes, a simple form of error correcting codes (ECC), as used on PS2 memory cards. """ -_SCCS_ID = "@(#) mymc ps2mc_ecc.py 1.4 07/12/17 02:34:04\n" +_SCCS_ID = "@(#) mymc ps2mc_ecc.py 1.5 23/07/06 16:03:58\n" import array diff --git a/ps2save.py b/ps2save.py index b5f8bc7..f7c3d9c 100755 --- a/ps2save.py +++ b/ps2save.py @@ -7,7 +7,7 @@ # A simple interface for working with various PS2 save file formats. # -_SCCS_ID = "@(#) mymc ps2save.py 1.8 22/01/15 01:25:25\n" +_SCCS_ID = "@(#) mymc ps2save.py 1.9 23/07/06 19:46:30\n" import sys import os diff --git a/round.py b/round.py index 5f06723..a768ee3 100755 --- a/round.py +++ b/round.py @@ -7,7 +7,7 @@ # Simple rounding functions. # -_SCCS_ID = "@(#) mymc round.py 1.3 07/04/17 02:10:27\n" +_SCCS_ID = "@(#) mymc round.py 1.4 23/07/06 02:44:14\n" def div_round_up(a, b): return int((a + b - 1) / b) diff --git a/verbuild.py b/verbuild.py index 71b2f66..7190414 100755 --- a/verbuild.py +++ b/verbuild.py @@ -1,2 +1,2 @@ -MYMC_VERSION_BUILD = r'''7''' -MYMC_VERSION_MAJOR = r'''2''' +MYMC_VERSION_BUILD = r'''0''' +MYMC_VERSION_MAJOR = r'''3'''