diff --git a/new/ConvertFCMtoFM2.html b/new/ConvertFCMtoFM2.html new file mode 100644 index 00000000..ce54d7c6 --- /dev/null +++ b/new/ConvertFCMtoFM2.html @@ -0,0 +1,68 @@ + + + + + +Convert FCM to FM2 + + + + +
+
+
+
+
+
+
+
+

Convert FCM to FM2

+

This page documents the conversion process of .fcm to .fm2. It also documents known issues with conversion as well as known cases where conversion fails.

+

FCEUX uses the file format .fm2. It does NOT play .fcm files (Older versions of FCEU). However any .fcm file can be converted to .fm2 by opening FCEUX and going to tools > Convert .fm2. You can mass convert files by highlighting them in the open dialog box. On the SDL build, you can run ./fceux --fcmconvert filename.fcm

+

See also:

+
  • FM2 format
  • +
  • FCM format
  • +
  • Movie making
  • +

    FM2 concept

    +

    The old FCEUltra had a big problem with its movie recording. Every single movie was recorded with power-on, followed by a savestate. This means that WRAM (or save RAM) was being stored in its initialized state. As a consequence, many games that use save systems would go through an accelerated boot process since the save files were already initialized.

    +

    Typically, a movie maker would load his game and let it sit at the title screen while he sipped his drink or adjusted his pants or steeled his nerves or whatever and then triggered the movie record. At that point the savefile was initialized, and the recording was already compromised. +

    When preparing FCEUX for release, we decided that this was unacceptable. Therefore, every FCEUX movie is recorded from a fresh power-on with no WRAM or save RAM. Additionally, the "record from reset" was taken out because it is even worse. Now the game would be starting from initialized WRAM and initialized main ram. This can further confuse matters.

    +

    So, your movies might desync because on FCEUX the game is taking longer to boot, while it is initializing its WRAM and/or main ram.

    +

    Luckily, these are often easy to fix: since FM2 is a text format, it is trivial to insert additional empty frames into the correct locations during the game boot-up process. We have successfully used this approach to salvage a few movies. So, if you have trouble, let us know, and maybe since we have a bit of experience, we can help.

    +

    Also, when a game is initializing, I bet it is uncommon for the RNG to be running so you might get lucky there also.

    +

    Another trick is to add a boot-up time window to the beginning of your movie. Add empty frames to the very beginning, followed by the very first converted frame which should include a reset flag. This simulates what FCEUltra did, giving the game time to initialize its WRAM and possibly main RAM before your input events begin.

    +

    We have been excruciatingly careful not to do anything else which would adversely affect synching. We take this seriously. We have only found few desynching movies so far that we aren't able to fix.

    +

    Sync issues

    +

    Nearly all published .fcm files will convert without problem

    +

    Exceptions are noted: +

  • Any movie made with FCEU .10 or earlier (such as Dragon's Lair, Powerblade
  • +
  • Any Dragon Warrior 4 movie due to quirky VRAM handling of this game. Movies will only sync in the version in which they were created.
  • +
  • Any movie that starts from savestate (since savestates aren't compatible between FCEU and FCEUX) (Note: old savestates from 0.98.x can be loaded into FCEUX. However, they can not be used with movies since the new savestates handle movie data in drastically different ways.)
  • +
  • Battle Toads from FCEU .12 - Due to significant mapper 7 changes since FCEU .13
  • +

    +

    Converting from FMV to FCM to FM2 may work, but it fails at least for these movies:

    +
    Boku Dracula-kun by Phil and Genisto
    +

    Known desyncs fixed with added frames

    +

    Some movies will desync but can be fixed by adding frames to the beginning of the movie. Basically any movie that was recorded from soft reset and uses battery backed ram will probably desync. This is because the soft reset allowed the SRAM to be cleared ahead of time, so frames were not needed to clear it in the movie (This is arguably cheating anyway, and recording from soft reset was removed in FCEUX).

    +

    Known desyncs that were fixed by adding frames:

    +
    Legent of Zelda "1st Quest" by Baxter and Phil - 3 frames added
    +
    Vice: Project Doom by FunkDoc - 10 frames added
    +

    Known desyncs that could not be snced (to our knowledge)

    +

    Movies that don't meet the above criteria but desync anyway

    +
    Addams Family - Nothing up to 16 frames worked
    +
    Kattou Ninden Teyandee by Ferret Warlord - Nothing up to 16 frames worked
    +
    Dragon Warrior by acmlm - Adding 2 frames makes it sync up to around 46540
    +

    +
    +
    + + + + + + + diff --git a/new/FM2.html b/new/FM2.html new file mode 100644 index 00000000..4f87a519 --- /dev/null +++ b/new/FM2.html @@ -0,0 +1,133 @@ + + + + + +FM2 + + + + +
    +
    +
    +
    +
    +
    +
    +
    +

    FM2 Movie file format

    +

    FM2 is the movie capture format of FCEUX

    +

    FM2 file format description

    +

    FCEUX uses a new movie file format - .fm2

    +

    This differs from the previous FCE Ultra movie format (.fcm) in the following ways:

    +
  • It is completely text based; allowing easy movie editing/splicing
  • +
  • An imbedded GUID so FCEUX can tell if a savestate belongs to a particular movie file
  • +
  • Movies recorded from Start (Power-on) no longer have a redundant savestate
  • +
  • Contains mouse input for recording the Zapper and Arkanoid Paddle input
  • +

    +

    Format

    +

    FM2 is ASCII plain text. It consists of several key-value pairs followed by an inputlog section.

    +

    The inputlog section can be identified by its starting with a | (pipe). The inputlog section terminates at eof. Newlines may be \r\n or \n

    +

    Key-value pairs consist of a key identifier, followed by a space separator, followed by the value text. Value text is always terminated by a newline, which the value text will not include. The value text is parsed differently depending on the type of the key. The key-value pairs may be in any order, except that the first key must be version.

    +

    Integer keys (also used for Booleans, with a 1 or 0) will have a value that is a simple integer not to exceed 32bits

    +
  • version (required) - the version of the movie file format; for now it is always 3
  • +
  • emuVersion (required) - the version of the emulator used to produce the movie
  • +
  • rerecordCount (optional) - the rerecord count
  • +
  • palFlag (bool) (optional) - true if the movie uses pal timing
  • +
  • fourscore (bool) (*note C) - true if a fourscore was used
  • +
  • port0, port1 (*note C) - indicates the types of input devices. Supported values are: +
      SI_GAMEPAD = 1
    +
      SI_ZAPPER = 2
    +
  • +
  • port2 (required) - indicates the type of the FCExp port device which was attached. Supported values are: +
      SIFC_NONE = 0
    +
  • +

    Header

    +

    String keys have values that consist of the remainder of the key-value pair line. As a consequence, string values cannot contain newlines.

    +
  • romFilename (required) - the name of the file used to record the movie
  • +
  • comment (optional) - simply a memo. +
  • by convention, the first token in the comment value is the subject of the comment.
  • +
  • by convention, subsequent comments with the same subject will have their ordering preserved and may be used to approximate multiline comments.
  • +
  • by convention, the author of the movie should be stored in comment(s) with a subject of: author
  • + +
  • subtitle (optional) - a message that will be displayed on screen when movie is played back (unless Subtitles are turned off, see Movie options). +
  • by convention, subtitles will begin with the word subtitle
  • +
  • by convention, an integer value will proceed which will indicate the frame that the subtitle will be displayed
  • +
  • by convention, a string of text will follow which will be the string displayed
  • +
  • example: +
  • subtitle 1000 Level Two
  • +
  • At frame 1000 the words "Level Two" will be displayed on the screen
  • + + +

    Hex string keys (used for binary blobs) will have a value that is like 0x0123456789ABCDEF...

    +
  • romChecksum (required) - the MD5 hash of the ROM which was used to record the movie
  • +
  • savestate (optional) - a fcs savestate blob, in case a movie was recorded from savestate
  • +

    GUID keys have a value which is in the standard GUID format: 452DE2C3-EF43-2FA9-77AC-0677FC51543B

    +
  • GUID (required) a unique identifier for a movie, generated when the movie is created, which is used when loading a savestate to make sure it belongs to the current movie.
  • +

    Inputlog

    +

    The inputlog section consists of lines beginning and ending with a | (pipe). The fields are as follows, except as noted in note C.

    + + + + + + + +
    cport0port1port2
    +

    Field c is a variable length decimal integer which is a bitfield corresponding to miscellaneous input states which are valid at the start of the frame. Current values for this are

    +
  • MOVIECMD_RESET = 1
  • +

    The format of port0, port1, port2 depends on which types of devices were attached.

    +

    SI_GAMEPAD

    +
  • the field consists of eight characters which constitute a bitfield.
  • +
  • any character other than ' ' or '.' means that the button was pressed. By convention, the following mnemonics will be used in a column to remind us of which button corresponds to which column: +
  • RLDUTSBA (Right,Left,Down,Up,sTart,Select,B,A)
  • + +

    SI_ZAPPER

    +
  • XXX YYY B Q Z
  • +
  • XXX: %03d, the x position of the mouse
  • +
  • YYY: %03d, the y position of the mouse
  • +
  • B: %1d, 1 if the mouse button is pressed; 0 if not
  • +
  • Q: %1d, an internal value used by the emulator's zapper code (this is most unfortunate..)
  • +
  • Z: %d, a variable-length decimal integer; an internal value used by the emulator's zapper code (this is even more unfortunate..)
  • + +

    SIFC_NONE

    +
  • this field must always be empty
  • +

    Notes

    +

    There is no key-value pair that indicates the length of the movie. This must be read by scanning the inputlog and counting the number of lines.

    +

    All movies start from power-on, unless a savestate key-value is present

    +

    If a fourscore is used, then port0 and port1 are irrelevant and ignored

    +

    If fourscore, the input types must all be gamepads +

    {player1 player2 player3 player4}
    +
    + + + + + + + + + +
    cABSTUDLRABSTUDLRABSTUDLRABSTUDLRport2
    +
    +

    +

    If fourscore is not used, then port0 and port1 are required

    +

    Emulator framerate constants

    +

    FCEUX uses these framerate constants:

    +
  • NTSC: 1008307711 /256/65536 = 60.099822938442230224609375
  • +
  • PAL : 838977920 /256/65536 = 50.00698089599609375
  • +

    +
    +
    + + + + + + + diff --git a/new/TODO.txt b/new/TODO.txt index 194dc874..c944e266 100644 --- a/new/TODO.txt +++ b/new/TODO.txt @@ -1,5 +1,4 @@ Make a header with navigation buttons for all pages -Modify H3 css with a different gray shade -Make the li css property the same color as H3 -Add a link to the manual on documentation -Make sure all pages of a name \ No newline at end of file +Add a link to the manual on documentation, add a section for movie recording as well, in that section add links to fm2, fcm and convert fcm +Convert FCM to FM2 - add links on see also list +Home image (SMB3) needs to be to have some kind of text wrap \ No newline at end of file diff --git a/new/_vti_cnf/ConvertFCMtoFM2.html b/new/_vti_cnf/ConvertFCMtoFM2.html new file mode 100644 index 00000000..65eb01cf --- /dev/null +++ b/new/_vti_cnf/ConvertFCMtoFM2.html @@ -0,0 +1,21 @@ +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|03 Dec 2009 17:06:09 -0000 +vti_extenderversion:SR|12.0.0.4518 +vti_author:SR|AD-PC\\Owner +vti_modifiedby:SR|AD-PC\\Owner +vti_timecreated:TR|21 Nov 2009 03:58:11 -0000 +vti_title:SR|Convert FCM to FM2 +vti_backlinkinfo:VX| +vti_nexttolasttimemodified:TW|03 Dec 2009 16:49:20 -0000 +vti_cacheddtm:TX|03 Dec 2009 17:06:09 -0000 +vti_filesize:IR|6051 +vti_cachedtitle:SR|Convert FCM to FM2 +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|Q|fceux.css H|http://tasvideos.org/192M.html H|http://tasvideos.org/193M.html H|http://tasvideos.org/519M.html H|http://tasvideos.org/355M.html H|http://tasvideos.org/89M.html H|http://tasvideos.org/868M.html H|http://tasvideos.org/222M.html H|http://tasvideos.org/1021M.html H|http://tasvideos.org/589M.html H|http://tasvideos.org/469M.html H|home.html H|download.html H|documentation.html H|version.html H|contact.html +vti_cachedsvcrellinks:VX|FQUS|fceux.css NHHS|http://tasvideos.org/192M.html NHHS|http://tasvideos.org/193M.html NHHS|http://tasvideos.org/519M.html NHHS|http://tasvideos.org/355M.html NHHS|http://tasvideos.org/89M.html NHHS|http://tasvideos.org/868M.html NHHS|http://tasvideos.org/222M.html NHHS|http://tasvideos.org/1021M.html NHHS|http://tasvideos.org/589M.html NHHS|http://tasvideos.org/469M.html FHUS|home.html FHUS|download.html FHUS|documentation.html FHUS|version.html FHUS|contact.html +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|HTTP-EQUIV=Content-Type text/html;\\ charset=utf-8 +vti_charset:SR|utf-8 diff --git a/new/_vti_cnf/FM2.html b/new/_vti_cnf/FM2.html new file mode 100644 index 00000000..38b5e95c --- /dev/null +++ b/new/_vti_cnf/FM2.html @@ -0,0 +1,21 @@ +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|03 Dec 2009 16:20:58 -0000 +vti_extenderversion:SR|12.0.0.4518 +vti_author:SR|AD-PC\\Owner +vti_modifiedby:SR|AD-PC\\Owner +vti_timecreated:TR|21 Nov 2009 03:58:11 -0000 +vti_title:SR|FM2 +vti_backlinkinfo:VX| +vti_nexttolasttimemodified:TW|03 Dec 2009 16:20:42 -0000 +vti_cacheddtm:TX|03 Dec 2009 16:20:58 -0000 +vti_filesize:IR|7137 +vti_cachedtitle:SR|FM2 +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|Q|fceux.css H|home.html H|download.html H|documentation.html H|version.html H|contact.html +vti_cachedsvcrellinks:VX|FQUS|fceux.css FHUS|home.html FHUS|download.html FHUS|documentation.html FHUS|version.html FHUS|contact.html +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|HTTP-EQUIV=Content-Type text/html;\\ charset=utf-8 +vti_charset:SR|utf-8 diff --git a/new/_vti_cnf/TODO.txt b/new/_vti_cnf/TODO.txt new file mode 100644 index 00000000..570086a1 --- /dev/null +++ b/new/_vti_cnf/TODO.txt @@ -0,0 +1,7 @@ +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|03 Dec 2009 17:17:08 -0000 +vti_extenderversion:SR|12.0.0.4518 +vti_cacheddtm:TX|03 Dec 2009 14:30:16 -0000 +vti_filesize:IR|215 +vti_backlinkinfo:VX| +vti_modifiedby:SR|AD-PC\\Owner diff --git a/new/_vti_cnf/contact.html b/new/_vti_cnf/contact.html index d70670df..9bda123f 100644 --- a/new/_vti_cnf/contact.html +++ b/new/_vti_cnf/contact.html @@ -1,13 +1,13 @@ vti_encoding:SR|utf8-nl vti_author:SR|AD-PC\\Owner vti_modifiedby:SR|AD-PC\\Owner -vti_timelastmodified:TR|17 Nov 2009 21:58:20 -0000 +vti_timelastmodified:TR|21 Nov 2009 03:58:11 -0000 vti_timecreated:TR|26 Sep 2009 01:08:30 -0000 vti_title:SR|contact vti_extenderversion:SR|12.0.0.4518 -vti_backlinkinfo:VX|contact.html home.html download.html documentation.html version.html +vti_backlinkinfo:VX|contact.html home.html download.html FM2.html ConvertFCMtoFM2.html documentation.html version.html vti_nexttolasttimemodified:TW|17 Nov 2009 21:57:35 -0000 -vti_cacheddtm:TX|17 Nov 2009 21:58:20 -0000 +vti_cacheddtm:TX|21 Nov 2009 03:58:11 -0000 vti_filesize:IR|1260 vti_cachedtitle:SR|contact vti_cachedbodystyle:SR| diff --git a/new/_vti_cnf/documentation.html b/new/_vti_cnf/documentation.html index c085e488..8c86d3f1 100644 --- a/new/_vti_cnf/documentation.html +++ b/new/_vti_cnf/documentation.html @@ -1,15 +1,15 @@ vti_encoding:SR|utf8-nl vti_author:SR|AD-PC\\Owner vti_modifiedby:SR|AD-PC\\Owner -vti_timelastmodified:TR|02 Oct 2009 15:44:18 -0000 +vti_timelastmodified:TR|03 Dec 2009 15:23:35 -0000 vti_timecreated:TR|23 Sep 2009 14:13:18 -0000 -vti_title:SR|Untitled 1 +vti_title:SR|Documentation vti_extenderversion:SR|12.0.0.4518 -vti_backlinkinfo:VX|contact.html home.html download.html documentation.html version.html -vti_nexttolasttimemodified:TW|26 Sep 2009 01:23:06 -0000 -vti_cacheddtm:TX|02 Oct 2009 15:44:18 -0000 -vti_filesize:IR|1272 -vti_cachedtitle:SR|Untitled 1 +vti_backlinkinfo:VX|contact.html home.html download.html FM2.html ConvertFCMtoFM2.html documentation.html version.html +vti_nexttolasttimemodified:TW|21 Nov 2009 03:58:11 -0000 +vti_cacheddtm:TX|03 Dec 2009 15:23:35 -0000 +vti_filesize:IR|1275 +vti_cachedtitle:SR|Documentation vti_cachedbodystyle:SR| vti_cachedlinkinfo:VX|Q|fceux.css H|{54E785A1-1E42-4B8F-B3E2-94BAA91750B9}.htm H|home.html H|download.html H|documentation.html H|version.html H|contact.html vti_cachedsvcrellinks:VX|FQUS|fceux.css NHUS|{54E785A1-1E42-4B8F-B3E2-94BAA91750B9}.htm FHUS|home.html FHUS|download.html FHUS|documentation.html FHUS|version.html FHUS|contact.html diff --git a/new/_vti_cnf/download.html b/new/_vti_cnf/download.html index d2250b50..0fb5216f 100644 --- a/new/_vti_cnf/download.html +++ b/new/_vti_cnf/download.html @@ -1,15 +1,15 @@ vti_encoding:SR|utf8-nl vti_author:SR|AD-PC\\Owner vti_modifiedby:SR|AD-PC\\Owner -vti_timelastmodified:TR|17 Nov 2009 21:50:26 -0000 +vti_timelastmodified:TR|03 Dec 2009 15:22:32 -0000 vti_timecreated:TR|23 Sep 2009 14:12:20 -0000 -vti_title:SR|Untitled 1 +vti_title:SR|Downloads vti_extenderversion:SR|12.0.0.4518 -vti_backlinkinfo:VX|contact.html home.html download.html documentation.html version.html -vti_nexttolasttimemodified:TW|17 Nov 2009 21:49:28 -0000 -vti_cacheddtm:TX|17 Nov 2009 21:50:26 -0000 -vti_filesize:IR|1184 -vti_cachedtitle:SR|Untitled 1 +vti_backlinkinfo:VX|contact.html home.html download.html FM2.html ConvertFCMtoFM2.html documentation.html version.html +vti_nexttolasttimemodified:TW|21 Nov 2009 03:58:11 -0000 +vti_cacheddtm:TX|03 Dec 2009 15:22:32 -0000 +vti_filesize:IR|1183 +vti_cachedtitle:SR|Downloads vti_cachedbodystyle:SR| vti_cachedlinkinfo:VX|Q|fceux.css H|http://fceux.com/zip H|https://sourceforge.net/projects/fceultra/files/Binaries/2.1.2\\ binaries/fceux-2.1.2-win32.zip/download H|https://sourceforge.net/projects/fceultra/files/Source\\ Code/2.1.2\\ src/fceux-2.1.2.src.tar.bz2/download H|home.html H|download.html H|documentation.html H|version.html H|contact.html vti_cachedsvcrellinks:VX|FQUS|fceux.css NHHS|http://fceux.com/zip NHSS|https://sourceforge.net/projects/fceultra/files/Binaries/2.1.2\\ binaries/fceux-2.1.2-win32.zip/download NHSS|https://sourceforge.net/projects/fceultra/files/Source\\ Code/2.1.2\\ src/fceux-2.1.2.src.tar.bz2/download FHUS|home.html FHUS|download.html FHUS|documentation.html FHUS|version.html FHUS|contact.html diff --git a/new/_vti_cnf/fceux-2.0.2.htm b/new/_vti_cnf/fceux-2.0.2.htm new file mode 100644 index 00000000..8bba77d1 --- /dev/null +++ b/new/_vti_cnf/fceux-2.0.2.htm @@ -0,0 +1,21 @@ +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|30 Nov 2009 00:07:58 -0000 +vti_extenderversion:SR|12.0.0.4518 +vti_author:SR|AD-PC\\Owner +vti_modifiedby:SR|AD-PC\\Owner +vti_timecreated:TR|30 Nov 2009 00:07:58 -0000 +vti_cacheddtm:TX|30 Nov 2009 00:07:58 -0000 +vti_filesize:IR|985 +vti_cachedtitle:SR|FCEUX Help +vti_cachedlinkinfo:VX|F|files/toc.htm F|files/{E3064992-D632-4845-8F38-20ED1A58E4D2}.htm +vti_cachedsvcrellinks:VX|FFUS|files/toc.htm FFUS|files/{E3064992-D632-4845-8F38-20ED1A58E4D2}.htm +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|generator HelpNDoc\\ Free +vti_charset:SR|utf-8 +vti_generator:SR|HelpNDoc Free +vti_hasframeset:BR|true +vti_title:SR|FCEUX Help +vti_backlinkinfo:VX| diff --git a/new/_vti_cnf/fceux.css b/new/_vti_cnf/fceux.css index 9ce8d585..063ee572 100644 --- a/new/_vti_cnf/fceux.css +++ b/new/_vti_cnf/fceux.css @@ -1,10 +1,12 @@ vti_encoding:SR|utf8-nl vti_author:SR|AD-PC\\Owner vti_modifiedby:SR|AD-PC\\Owner -vti_timelastmodified:TR|17 Nov 2009 23:38:28 -0000 +vti_timelastmodified:TR|03 Dec 2009 17:28:20 -0000 vti_timecreated:TR|23 Sep 2009 14:27:32 -0000 vti_extenderversion:SR|12.0.0.4518 -vti_backlinkinfo:VX|contact.html home.html download.html version.html documentation.html -vti_nexttolasttimemodified:TW|17 Nov 2009 23:37:49 -0000 -vti_cacheddtm:TX|17 Nov 2009 23:38:28 -0000 -vti_filesize:IR|579 +vti_backlinkinfo:VX|contact.html home.html download.html FM2.html ConvertFCMtoFM2.html version.html documentation.html +vti_nexttolasttimemodified:TW|03 Dec 2009 17:28:15 -0000 +vti_cacheddtm:TX|03 Dec 2009 17:28:20 -0000 +vti_filesize:IR|918 +vti_cachedlinkinfo:VX|S|assests/ICON_1.ICO +vti_cachedsvcrellinks:VX|FSUS|assests/ICON_1.ICO diff --git a/new/_vti_cnf/home.html b/new/_vti_cnf/home.html index 9562c1eb..4ddb3256 100644 --- a/new/_vti_cnf/home.html +++ b/new/_vti_cnf/home.html @@ -1,14 +1,14 @@ vti_encoding:SR|utf8-nl vti_author:SR|AD-PC\\Owner vti_modifiedby:SR|AD-PC\\Owner -vti_timelastmodified:TR|02 Oct 2009 15:48:22 -0000 +vti_timelastmodified:TR|03 Dec 2009 14:30:16 -0000 vti_timecreated:TR|23 Sep 2009 14:11:28 -0000 vti_title:SR|FCEUX vti_extenderversion:SR|12.0.0.4518 -vti_backlinkinfo:VX|contact.html home.html download.html version.html documentation.html +vti_backlinkinfo:VX|contact.html home.html download.html FM2.html ConvertFCMtoFM2.html version.html documentation.html vti_nexttolasttimemodified:TW|02 Oct 2009 15:43:50 -0000 -vti_cacheddtm:TX|02 Oct 2009 15:43:50 -0000 -vti_filesize:IR|1384 +vti_cacheddtm:TX|03 Dec 2009 14:30:16 -0000 +vti_filesize:IR|4481 vti_cachedtitle:SR|FCEUX vti_cachedbodystyle:SR| vti_cachedlinkinfo:VX|Q|fceux.css S|assests/NES.png S|assests/Famicom.jpg S|assests/FCEUX-main.png H|home.html H|download.html H|documentation.html H|version.html H|contact.html diff --git a/new/_vti_cnf/pressrelease-2.0.0.html b/new/_vti_cnf/pressrelease-2.0.0.html new file mode 100644 index 00000000..99a0b9a9 --- /dev/null +++ b/new/_vti_cnf/pressrelease-2.0.0.html @@ -0,0 +1,14 @@ +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|03 Dec 2009 14:30:16 -0000 +vti_extenderversion:SR|12.0.0.4518 +vti_author:SR|AD-PC\\Owner +vti_modifiedby:SR|AD-PC\\Owner +vti_timecreated:TR|03 Dec 2009 14:30:16 -0000 +vti_cacheddtm:TX|03 Dec 2009 14:30:16 -0000 +vti_filesize:IR|337 +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_charset:SR|utf-8 +vti_backlinkinfo:VX|version.html diff --git a/new/_vti_cnf/pressrelease-2.0.1.html b/new/_vti_cnf/pressrelease-2.0.1.html new file mode 100644 index 00000000..e6e92fc0 --- /dev/null +++ b/new/_vti_cnf/pressrelease-2.0.1.html @@ -0,0 +1,14 @@ +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|03 Dec 2009 14:30:16 -0000 +vti_extenderversion:SR|12.0.0.4518 +vti_author:SR|AD-PC\\Owner +vti_modifiedby:SR|AD-PC\\Owner +vti_timecreated:TR|03 Dec 2009 14:30:16 -0000 +vti_cacheddtm:TX|03 Dec 2009 14:30:16 -0000 +vti_filesize:IR|365 +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_charset:SR|utf-8 +vti_backlinkinfo:VX|version.html diff --git a/new/_vti_cnf/pressrelease-2.0.2.html b/new/_vti_cnf/pressrelease-2.0.2.html new file mode 100644 index 00000000..0ddc340d --- /dev/null +++ b/new/_vti_cnf/pressrelease-2.0.2.html @@ -0,0 +1,14 @@ +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|03 Dec 2009 14:30:16 -0000 +vti_extenderversion:SR|12.0.0.4518 +vti_author:SR|AD-PC\\Owner +vti_modifiedby:SR|AD-PC\\Owner +vti_timecreated:TR|03 Dec 2009 14:30:16 -0000 +vti_cacheddtm:TX|03 Dec 2009 14:30:16 -0000 +vti_filesize:IR|3911 +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_charset:SR|utf-8 +vti_backlinkinfo:VX|version.html diff --git a/new/_vti_cnf/pressrelease-2.0.3.html b/new/_vti_cnf/pressrelease-2.0.3.html new file mode 100644 index 00000000..708b88c8 --- /dev/null +++ b/new/_vti_cnf/pressrelease-2.0.3.html @@ -0,0 +1,14 @@ +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|03 Dec 2009 14:30:16 -0000 +vti_extenderversion:SR|12.0.0.4518 +vti_author:SR|AD-PC\\Owner +vti_modifiedby:SR|AD-PC\\Owner +vti_timecreated:TR|03 Dec 2009 14:30:16 -0000 +vti_cacheddtm:TX|03 Dec 2009 14:30:16 -0000 +vti_filesize:IR|2805 +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_charset:SR|utf-8 +vti_backlinkinfo:VX|version.html diff --git a/new/_vti_cnf/pressrelease-2.1.1.html b/new/_vti_cnf/pressrelease-2.1.1.html new file mode 100644 index 00000000..af150879 --- /dev/null +++ b/new/_vti_cnf/pressrelease-2.1.1.html @@ -0,0 +1,14 @@ +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|03 Dec 2009 14:30:16 -0000 +vti_extenderversion:SR|12.0.0.4518 +vti_author:SR|AD-PC\\Owner +vti_modifiedby:SR|AD-PC\\Owner +vti_timecreated:TR|03 Dec 2009 14:30:16 -0000 +vti_cacheddtm:TX|03 Dec 2009 14:30:16 -0000 +vti_filesize:IR|3926 +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_charset:SR|utf-8 +vti_backlinkinfo:VX|version.html diff --git a/new/_vti_cnf/pressrelease-2.1.2.html b/new/_vti_cnf/pressrelease-2.1.2.html new file mode 100644 index 00000000..d134641c --- /dev/null +++ b/new/_vti_cnf/pressrelease-2.1.2.html @@ -0,0 +1,17 @@ +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|03 Dec 2009 14:30:16 -0000 +vti_extenderversion:SR|12.0.0.4518 +vti_author:SR|AD-PC\\Owner +vti_modifiedby:SR|AD-PC\\Owner +vti_timecreated:TR|03 Dec 2009 14:30:16 -0000 +vti_cacheddtm:TX|03 Dec 2009 14:30:16 -0000 +vti_filesize:IR|2682 +vti_cachedtitle:SR|Press Release 2.1.2 +vti_cachedbodystyle:SR| +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_charset:SR|utf-8 +vti_title:SR|Press Release 2.1.2 +vti_backlinkinfo:VX|version.html diff --git a/new/_vti_cnf/pressrelease-2.1.html b/new/_vti_cnf/pressrelease-2.1.html new file mode 100644 index 00000000..91dc5879 --- /dev/null +++ b/new/_vti_cnf/pressrelease-2.1.html @@ -0,0 +1,14 @@ +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|03 Dec 2009 14:30:16 -0000 +vti_extenderversion:SR|12.0.0.4518 +vti_author:SR|AD-PC\\Owner +vti_modifiedby:SR|AD-PC\\Owner +vti_timecreated:TR|03 Dec 2009 14:30:16 -0000 +vti_cacheddtm:TX|03 Dec 2009 14:30:16 -0000 +vti_filesize:IR|7833 +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_charset:SR|utf-8 +vti_backlinkinfo:VX| diff --git a/new/_vti_cnf/version.html b/new/_vti_cnf/version.html index cd7ecbb1..92d6a609 100644 --- a/new/_vti_cnf/version.html +++ b/new/_vti_cnf/version.html @@ -1,18 +1,18 @@ vti_encoding:SR|utf8-nl vti_author:SR|AD-PC\\Owner vti_modifiedby:SR|AD-PC\\Owner -vti_timelastmodified:TR|02 Oct 2009 15:44:01 -0000 +vti_timelastmodified:TR|03 Dec 2009 17:12:18 -0000 vti_timecreated:TR|23 Sep 2009 14:12:55 -0000 -vti_title:SR|Untitled 1 +vti_title:SR|FCEUX versions vti_extenderversion:SR|12.0.0.4518 -vti_backlinkinfo:VX|contact.html home.html download.html documentation.html version.html -vti_nexttolasttimemodified:TW|26 Sep 2009 01:33:52 -0000 -vti_cacheddtm:TX|02 Oct 2009 15:44:01 -0000 -vti_filesize:IR|6555 -vti_cachedtitle:SR|Untitled 1 +vti_backlinkinfo:VX|contact.html home.html download.html FM2.html ConvertFCMtoFM2.html documentation.html version.html +vti_nexttolasttimemodified:TW|03 Dec 2009 17:11:54 -0000 +vti_cacheddtm:TX|03 Dec 2009 17:12:18 -0000 +vti_filesize:IR|7222 +vti_cachedtitle:SR|FCEUX versions vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|Q|fceux.css H|http://www.geocities.co.jp/Playtown/2004/fce.htm H|http://tasvideos.org H|http://code.google.com/p/fceu/ H|http://www.the-interweb.com/serendipity/index.php H|http://www.ximwix.net/boneyard/design19/xb/texthooker.htm H|http://sourceforge.net/projects/fceumm/ H|home.html H|download.html H|documentation.html H|version.html H|contact.html -vti_cachedsvcrellinks:VX|FQUS|fceux.css NHHS|http://www.geocities.co.jp/Playtown/2004/fce.htm NHHS|http://tasvideos.org NHHS|http://code.google.com/p/fceu/ NHHS|http://www.the-interweb.com/serendipity/index.php NHHS|http://www.ximwix.net/boneyard/design19/xb/texthooker.htm NHHS|http://sourceforge.net/projects/fceumm/ FHUS|home.html FHUS|download.html FHUS|documentation.html FHUS|version.html FHUS|contact.html +vti_cachedlinkinfo:VX|Q|fceux.css H|pressrelease-2.1.2.html H|pressrelease-2.1.1.html H|pressrelease-2.1.0.html H|pressrelease-2.0.3.html H|pressrelease-2.0.2.html H|pressrelease-2.0.1.html H|pressrelease-2.0.0.html H|http://www.geocities.co.jp/Playtown/2004/fce.htm H|http://tasvideos.org H|http://code.google.com/p/fceu/ H|http://www.the-interweb.com/serendipity/index.php H|http://www.ximwix.net/boneyard/design19/xb/texthooker.htm H|http://sourceforge.net/projects/fceumm/ H|home.html H|download.html H|documentation.html H|version.html H|contact.html +vti_cachedsvcrellinks:VX|FQUS|fceux.css FHUS|pressrelease-2.1.2.html FHUS|pressrelease-2.1.1.html NHUS|pressrelease-2.1.0.html FHUS|pressrelease-2.0.3.html FHUS|pressrelease-2.0.2.html FHUS|pressrelease-2.0.1.html FHUS|pressrelease-2.0.0.html NHHS|http://www.geocities.co.jp/Playtown/2004/fce.htm NHHS|http://tasvideos.org NHHS|http://code.google.com/p/fceu/ NHHS|http://www.the-interweb.com/serendipity/index.php NHHS|http://www.ximwix.net/boneyard/design19/xb/texthooker.htm NHHS|http://sourceforge.net/projects/fceumm/ FHUS|home.html FHUS|download.html FHUS|documentation.html FHUS|version.html FHUS|contact.html vti_cachedneedsrewrite:BR|false vti_cachedhasbots:BR|false vti_cachedhastheme:BR|false diff --git a/new/_vti_pvt/doctodep.btr b/new/_vti_pvt/doctodep.btr index eb9ff342..9f23fe2c 100644 Binary files a/new/_vti_pvt/doctodep.btr and b/new/_vti_pvt/doctodep.btr differ diff --git a/new/_vti_pvt/linkinfo.btr b/new/_vti_pvt/linkinfo.btr index c3f296ec..12d570f6 100644 Binary files a/new/_vti_pvt/linkinfo.btr and b/new/_vti_pvt/linkinfo.btr differ diff --git a/new/_vti_pvt/service.cnf b/new/_vti_pvt/service.cnf index 4329448c..6458ac1c 100644 --- a/new/_vti_pvt/service.cnf +++ b/new/_vti_pvt/service.cnf @@ -16,7 +16,7 @@ vti_navbuttonnextlabel:SR|Next vti_approvallevels:VR|Approved Rejected Pending\\ Review vti_showhiddenpages:IR|1 vti_hassearchbot:BR|false -vti_dependenciesood:IR|0 +vti_dependenciesood:IR|1 vti_navbuttonhomelabel:SR|Home vti_featurelist:VX|vti_ACAll vti_ServiceMarkUrlDirBrowse vti_ServiceMarkUrlDirExec vti_ServiceMarkUrlDirScript vti_ACIPAddresses vti_ServerEmailTransport vti_ServerIndexServer vti_ServerASP vti_ServerCollab vti_ServerWebParts vti_RulesScript vti_TimedDocEvents vti_categories:VR|Travel Expense\\ Report Business Competition Goals/Objectives Ideas Miscellaneous Waiting VIP In\\ Process Planning Schedule diff --git a/new/assests/_vti_cnf/CheatSearch.PNG b/new/assests/_vti_cnf/CheatSearch.PNG new file mode 100644 index 00000000..acce1b25 --- /dev/null +++ b/new/assests/_vti_cnf/CheatSearch.PNG @@ -0,0 +1,9 @@ +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|21 Nov 2009 04:16:36 -0000 +vti_extenderversion:SR|12.0.0.4518 +vti_author:SR|AD-PC\\Owner +vti_modifiedby:SR|AD-PC\\Owner +vti_timecreated:TR|21 Nov 2009 04:16:36 -0000 +vti_cacheddtm:TX|21 Nov 2009 04:16:36 -0000 +vti_filesize:IR|16994 +vti_backlinkinfo:VX| diff --git a/new/assests/_vti_cnf/CodeDataLogger.png b/new/assests/_vti_cnf/CodeDataLogger.png new file mode 100644 index 00000000..a07a1297 --- /dev/null +++ b/new/assests/_vti_cnf/CodeDataLogger.png @@ -0,0 +1,9 @@ +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|21 Nov 2009 00:03:35 -0000 +vti_extenderversion:SR|12.0.0.4518 +vti_author:SR|AD-PC\\Owner +vti_modifiedby:SR|AD-PC\\Owner +vti_timecreated:TR|21 Nov 2009 00:03:35 -0000 +vti_cacheddtm:TX|21 Nov 2009 00:03:35 -0000 +vti_filesize:IR|12154 +vti_backlinkinfo:VX| diff --git a/new/assests/_vti_cnf/Debugger.PNG b/new/assests/_vti_cnf/Debugger.PNG new file mode 100644 index 00000000..df06af5b --- /dev/null +++ b/new/assests/_vti_cnf/Debugger.PNG @@ -0,0 +1,9 @@ +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|21 Nov 2009 04:32:35 -0000 +vti_extenderversion:SR|12.0.0.4518 +vti_author:SR|AD-PC\\Owner +vti_modifiedby:SR|AD-PC\\Owner +vti_timecreated:TR|21 Nov 2009 04:32:35 -0000 +vti_cacheddtm:TX|21 Nov 2009 04:32:35 -0000 +vti_filesize:IR|28719 +vti_backlinkinfo:VX| diff --git a/new/assests/_vti_cnf/GGEncoder.PNG b/new/assests/_vti_cnf/GGEncoder.PNG new file mode 100644 index 00000000..2ab38687 --- /dev/null +++ b/new/assests/_vti_cnf/GGEncoder.PNG @@ -0,0 +1,9 @@ +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|21 Nov 2009 04:40:53 -0000 +vti_extenderversion:SR|12.0.0.4518 +vti_author:SR|AD-PC\\Owner +vti_modifiedby:SR|AD-PC\\Owner +vti_timecreated:TR|21 Nov 2009 04:40:53 -0000 +vti_cacheddtm:TX|21 Nov 2009 04:40:53 -0000 +vti_filesize:IR|7970 +vti_backlinkinfo:VX| diff --git a/new/assests/_vti_cnf/HexEditor.PNG b/new/assests/_vti_cnf/HexEditor.PNG new file mode 100644 index 00000000..62415c9e --- /dev/null +++ b/new/assests/_vti_cnf/HexEditor.PNG @@ -0,0 +1,9 @@ +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|21 Nov 2009 14:32:34 -0000 +vti_extenderversion:SR|12.0.0.4518 +vti_author:SR|AD-PC\\Owner +vti_modifiedby:SR|AD-PC\\Owner +vti_timecreated:TR|21 Nov 2009 14:32:34 -0000 +vti_cacheddtm:TX|21 Nov 2009 14:32:34 -0000 +vti_filesize:IR|13085 +vti_backlinkinfo:VX| diff --git a/new/assests/_vti_cnf/ICON_1.ico b/new/assests/_vti_cnf/ICON_1.ico index c9e01159..b19ecd63 100644 --- a/new/assests/_vti_cnf/ICON_1.ico +++ b/new/assests/_vti_cnf/ICON_1.ico @@ -1,9 +1,9 @@ vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|21 Jun 2009 02:40:19 -0000 +vti_timelastmodified:TR|21 Nov 2009 03:58:11 -0000 vti_extenderversion:SR|12.0.0.4518 vti_author:SR|AD-PC\\Owner vti_modifiedby:SR|AD-PC\\Owner vti_timecreated:TR|21 Jun 2009 02:40:19 -0000 vti_cacheddtm:TX|21 Jun 2009 02:40:19 -0000 vti_filesize:IR|2238 -vti_backlinkinfo:VX| +vti_backlinkinfo:VX|fceux.css diff --git a/new/assests/_vti_cnf/InputConfig.png b/new/assests/_vti_cnf/InputConfig.png new file mode 100644 index 00000000..94e46ff7 --- /dev/null +++ b/new/assests/_vti_cnf/InputConfig.png @@ -0,0 +1,9 @@ +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|21 Nov 2009 00:54:50 -0000 +vti_extenderversion:SR|12.0.0.4518 +vti_author:SR|AD-PC\\Owner +vti_modifiedby:SR|AD-PC\\Owner +vti_timecreated:TR|21 Nov 2009 00:54:50 -0000 +vti_cacheddtm:TX|21 Nov 2009 00:54:50 -0000 +vti_filesize:IR|14754 +vti_backlinkinfo:VX| diff --git a/new/assests/_vti_cnf/NES.png b/new/assests/_vti_cnf/NES.png index 3f255770..e7087793 100644 --- a/new/assests/_vti_cnf/NES.png +++ b/new/assests/_vti_cnf/NES.png @@ -1,10 +1,10 @@ vti_encoding:SR|utf8-nl -vti_timelastmodified:TW|26 Sep 2009 04:19:50 -0000 +vti_timelastmodified:TR|21 Nov 2009 18:44:34 -0000 vti_extenderversion:SR|12.0.0.4518 vti_author:SR|AD-PC\\Owner vti_modifiedby:SR|AD-PC\\Owner vti_timecreated:TR|26 Sep 2009 02:57:30 -0000 vti_backlinkinfo:VX|home.html vti_nexttolasttimemodified:TW|26 Sep 2009 04:19:50 -0000 -vti_cacheddtm:TX|26 Sep 2009 04:19:50 -0000 +vti_cacheddtm:TX|21 Nov 2009 18:44:34 -0000 vti_filesize:IR|5661 diff --git a/new/assests/_vti_cnf/NametableViewer.png b/new/assests/_vti_cnf/NametableViewer.png new file mode 100644 index 00000000..f5bce79f --- /dev/null +++ b/new/assests/_vti_cnf/NametableViewer.png @@ -0,0 +1,9 @@ +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|21 Nov 2009 01:13:23 -0000 +vti_extenderversion:SR|12.0.0.4518 +vti_author:SR|AD-PC\\Owner +vti_modifiedby:SR|AD-PC\\Owner +vti_timecreated:TR|21 Nov 2009 01:13:23 -0000 +vti_cacheddtm:TX|21 Nov 2009 01:13:23 -0000 +vti_filesize:IR|13596 +vti_backlinkinfo:VX| diff --git a/new/assests/_vti_cnf/PPUViewer.png b/new/assests/_vti_cnf/PPUViewer.png new file mode 100644 index 00000000..47e61137 --- /dev/null +++ b/new/assests/_vti_cnf/PPUViewer.png @@ -0,0 +1,9 @@ +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|21 Nov 2009 02:26:06 -0000 +vti_extenderversion:SR|12.0.0.4518 +vti_author:SR|AD-PC\\Owner +vti_modifiedby:SR|AD-PC\\Owner +vti_timecreated:TR|21 Nov 2009 02:26:06 -0000 +vti_cacheddtm:TX|21 Nov 2009 02:26:06 -0000 +vti_filesize:IR|11694 +vti_backlinkinfo:VX| diff --git a/new/assests/_vti_cnf/Palette.png b/new/assests/_vti_cnf/Palette.png new file mode 100644 index 00000000..356ec69c --- /dev/null +++ b/new/assests/_vti_cnf/Palette.png @@ -0,0 +1,9 @@ +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|21 Nov 2009 01:20:43 -0000 +vti_extenderversion:SR|12.0.0.4518 +vti_author:SR|AD-PC\\Owner +vti_modifiedby:SR|AD-PC\\Owner +vti_timecreated:TR|21 Nov 2009 01:20:43 -0000 +vti_cacheddtm:TX|21 Nov 2009 01:20:43 -0000 +vti_filesize:IR|7333 +vti_backlinkinfo:VX| diff --git a/new/assests/_vti_cnf/RamSearch.PNG b/new/assests/_vti_cnf/RamSearch.PNG new file mode 100644 index 00000000..f812123e --- /dev/null +++ b/new/assests/_vti_cnf/RamSearch.PNG @@ -0,0 +1,9 @@ +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|21 Nov 2009 04:51:35 -0000 +vti_extenderversion:SR|12.0.0.4518 +vti_author:SR|AD-PC\\Owner +vti_modifiedby:SR|AD-PC\\Owner +vti_timecreated:TR|21 Nov 2009 04:51:35 -0000 +vti_cacheddtm:TX|21 Nov 2009 04:51:35 -0000 +vti_filesize:IR|23541 +vti_backlinkinfo:VX| diff --git a/new/assests/_vti_cnf/RamWatch.PNG b/new/assests/_vti_cnf/RamWatch.PNG new file mode 100644 index 00000000..9a97aaf5 --- /dev/null +++ b/new/assests/_vti_cnf/RamWatch.PNG @@ -0,0 +1,9 @@ +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|21 Nov 2009 14:00:45 -0000 +vti_extenderversion:SR|12.0.0.4518 +vti_author:SR|AD-PC\\Owner +vti_modifiedby:SR|AD-PC\\Owner +vti_timecreated:TR|21 Nov 2009 14:00:45 -0000 +vti_cacheddtm:TX|21 Nov 2009 14:00:45 -0000 +vti_filesize:IR|15526 +vti_backlinkinfo:VX| diff --git a/new/assests/_vti_cnf/SoundConfig.png b/new/assests/_vti_cnf/SoundConfig.png new file mode 100644 index 00000000..6d01c2eb --- /dev/null +++ b/new/assests/_vti_cnf/SoundConfig.png @@ -0,0 +1,9 @@ +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|21 Nov 2009 02:45:24 -0000 +vti_extenderversion:SR|12.0.0.4518 +vti_author:SR|AD-PC\\Owner +vti_modifiedby:SR|AD-PC\\Owner +vti_timecreated:TR|21 Nov 2009 02:45:24 -0000 +vti_cacheddtm:TX|21 Nov 2009 02:45:24 -0000 +vti_filesize:IR|12527 +vti_backlinkinfo:VX| diff --git a/new/assests/_vti_cnf/TASEdit.PNG b/new/assests/_vti_cnf/TASEdit.PNG new file mode 100644 index 00000000..0e2babca --- /dev/null +++ b/new/assests/_vti_cnf/TASEdit.PNG @@ -0,0 +1,9 @@ +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|21 Nov 2009 14:18:09 -0000 +vti_extenderversion:SR|12.0.0.4518 +vti_author:SR|AD-PC\\Owner +vti_modifiedby:SR|AD-PC\\Owner +vti_timecreated:TR|21 Nov 2009 14:18:09 -0000 +vti_cacheddtm:TX|21 Nov 2009 14:18:09 -0000 +vti_filesize:IR|19107 +vti_backlinkinfo:VX| diff --git a/new/assests/_vti_cnf/TraceLogger.png b/new/assests/_vti_cnf/TraceLogger.png new file mode 100644 index 00000000..ed492211 --- /dev/null +++ b/new/assests/_vti_cnf/TraceLogger.png @@ -0,0 +1,9 @@ +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|21 Nov 2009 03:08:14 -0000 +vti_extenderversion:SR|12.0.0.4518 +vti_author:SR|AD-PC\\Owner +vti_modifiedby:SR|AD-PC\\Owner +vti_timecreated:TR|21 Nov 2009 03:08:14 -0000 +vti_cacheddtm:TX|21 Nov 2009 03:08:14 -0000 +vti_filesize:IR|18502 +vti_backlinkinfo:VX| diff --git a/new/assests/_vti_cnf/VideoConfig.png b/new/assests/_vti_cnf/VideoConfig.png new file mode 100644 index 00000000..d1e68836 --- /dev/null +++ b/new/assests/_vti_cnf/VideoConfig.png @@ -0,0 +1,9 @@ +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|21 Nov 2009 03:44:32 -0000 +vti_extenderversion:SR|12.0.0.4518 +vti_author:SR|AD-PC\\Owner +vti_modifiedby:SR|AD-PC\\Owner +vti_timecreated:TR|21 Nov 2009 03:44:32 -0000 +vti_cacheddtm:TX|21 Nov 2009 03:44:32 -0000 +vti_filesize:IR|16093 +vti_backlinkinfo:VX| diff --git a/new/assests/_vti_cnf/valid-xhtml11 b/new/assests/_vti_cnf/valid-xhtml11 new file mode 100644 index 00000000..53d42d37 --- /dev/null +++ b/new/assests/_vti_cnf/valid-xhtml11 @@ -0,0 +1,6 @@ +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|21 Jun 2009 02:40:23 -0000 +vti_extenderversion:SR|12.0.0.4518 +vti_cacheddtm:TX|21 Jun 2009 02:40:23 -0000 +vti_filesize:IR|1917 +vti_backlinkinfo:VX| diff --git a/new/assests/_vti_cnf/vcss b/new/assests/_vti_cnf/vcss new file mode 100644 index 00000000..eb7131c1 --- /dev/null +++ b/new/assests/_vti_cnf/vcss @@ -0,0 +1,6 @@ +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|21 Jun 2009 02:40:23 -0000 +vti_extenderversion:SR|12.0.0.4518 +vti_cacheddtm:TX|21 Jun 2009 02:40:23 -0000 +vti_filesize:IR|1547 +vti_backlinkinfo:VX| diff --git a/new/documentation.html b/new/documentation.html index 694d051c..dc69aee5 100644 --- a/new/documentation.html +++ b/new/documentation.html @@ -3,7 +3,7 @@ -Untitled 1 +Documentation