mirror of
https://github.com/gryf/fs-uae-wrapper.git
synced 2025-12-19 20:38:06 +01:00
Readme update
This commit is contained in:
25
README.rst
25
README.rst
@@ -136,8 +136,9 @@ Options used:
|
|||||||
``wrapper_archiver`` archiver. If this option is enabled,
|
``wrapper_archiver`` archiver. If this option is enabled,
|
||||||
``wrapper_archiver`` will be required.
|
``wrapper_archiver`` will be required.
|
||||||
|
|
||||||
Let's see some sample config for a game, which is saved as
|
Module ``cd32`` is used for running ``fs-uae`` with compressed CD images. For
|
||||||
``ChaosEngine.fs-uae``:
|
better understanding how it works, let's go through solid example. Here is an
|
||||||
|
fragment of configuration file is saved as ``ChaosEngine.fs-uae``:
|
||||||
|
|
||||||
.. code:: ini
|
.. code:: ini
|
||||||
|
|
||||||
@@ -156,8 +157,9 @@ Let's see some sample config for a game, which is saved as
|
|||||||
|
|
||||||
joystick_port_1_mode = cd32 gamepad
|
joystick_port_1_mode = cd32 gamepad
|
||||||
platform = cd32
|
platform = cd32
|
||||||
|
...
|
||||||
|
|
||||||
Next, the invocation of the wrapper would be as follows:
|
Command line invocation of the wrapper would be as follows:
|
||||||
|
|
||||||
.. code:: shell-session
|
.. code:: shell-session
|
||||||
|
|
||||||
@@ -200,6 +202,13 @@ Options used:
|
|||||||
``wrapper_archiver`` archiver. If this option is enabled,
|
``wrapper_archiver`` archiver. If this option is enabled,
|
||||||
``wrapper_archiver`` will be required.
|
``wrapper_archiver`` will be required.
|
||||||
|
|
||||||
|
This module is quite useful in two use cases. First is a usual work with
|
||||||
|
Workbench, where there is a need to keep changes of filesystem. Second is the
|
||||||
|
opposite - if there is a need to test some software, but not necessary keep it
|
||||||
|
in a Workbench, than it will act as a temporary copy of the system, so that
|
||||||
|
next time fs-uae will be run, there will be no files of tested software
|
||||||
|
cluttering around.
|
||||||
|
|
||||||
Example configuration:
|
Example configuration:
|
||||||
|
|
||||||
.. code:: ini
|
.. code:: ini
|
||||||
@@ -213,13 +222,6 @@ Example configuration:
|
|||||||
wrapper_save_state = 1
|
wrapper_save_state = 1
|
||||||
...
|
...
|
||||||
|
|
||||||
This module is quite useful in two use cases. First is a usual work with
|
|
||||||
Workbench, where there is a need to keep changes of filesystem. Second is the
|
|
||||||
opposite - if there is a need to test some software, but not necessary keep it
|
|
||||||
in a Workbench, than it will act as a temporary copy of the system, so that
|
|
||||||
next time fs-uae will be run, there will be no files of tested software
|
|
||||||
cluttering around.
|
|
||||||
|
|
||||||
And execution is as usual:
|
And execution is as usual:
|
||||||
|
|
||||||
.. code:: shell-session
|
.. code:: shell-session
|
||||||
@@ -246,8 +248,6 @@ Options used:
|
|||||||
|
|
||||||
* ``wrapper`` (required) with ``archive`` as an value
|
* ``wrapper`` (required) with ``archive`` as an value
|
||||||
* ``wrapper_archiver`` (required) archiver to use for storage save state
|
* ``wrapper_archiver`` (required) archiver to use for storage save state
|
||||||
* ``wrapper_gui_msg`` (optional) if set to "1", will display a graphical
|
|
||||||
message during extracting files
|
|
||||||
|
|
||||||
This module is primarily used to run emulator with read only media attached
|
This module is primarily used to run emulator with read only media attached
|
||||||
(like images of floppies or uncompressed CD-ROMs) and its purpose is to
|
(like images of floppies or uncompressed CD-ROMs) and its purpose is to
|
||||||
@@ -264,7 +264,6 @@ Example configuration:
|
|||||||
[config]
|
[config]
|
||||||
wrapper = savestate
|
wrapper = savestate
|
||||||
wrapper_archiver = 7z
|
wrapper_archiver = 7z
|
||||||
wrapper_gui_msg = 1
|
|
||||||
...
|
...
|
||||||
|
|
||||||
And execution is as usual:
|
And execution is as usual:
|
||||||
|
|||||||
2
setup.py
2
setup.py
@@ -7,7 +7,7 @@ from setuptools import setup
|
|||||||
|
|
||||||
setup(name='fs-uae-wrapper',
|
setup(name='fs-uae-wrapper',
|
||||||
packages=['fs_uae_wrapper'],
|
packages=['fs_uae_wrapper'],
|
||||||
version='0.7',
|
version='0.7.1',
|
||||||
description='Automate archives and state for fs-uae',
|
description='Automate archives and state for fs-uae',
|
||||||
author='Roman Dobosz',
|
author='Roman Dobosz',
|
||||||
author_email='gryf73@gmail.com',
|
author_email='gryf73@gmail.com',
|
||||||
|
|||||||
Reference in New Issue
Block a user