AminetAminet
Search:
84450 packages online
About
Recent
Browse
Search
Upload
Setup
Services

util/shell/ViNCEd.lha

Mirror:Random
Showing:m68k-amigaosppc-amigaosppc-morphosi386-arosi386-amithlonppc-warpupppc-powerupgeneric
No screenshot available
Short:ViNCEd, the CON: with ^Z & TAB Expand
Author:thomas.richter at alumni.tu-berlin.de (Thomas Richter)
Uploader:thomas richter alumni tu-berlin de (Thomas Richter)
Type:util/shell
Version:3.106.1
Requires:Any Amiga, kickstart V37 or better (Os 2.0 or better)
Architecture:m68k-amigaos >= 2.0.0
Date:2024-01-17
Download:http://aminet.net/util/shell/ViNCEd.lha - View contents
Readme:http://aminet.net/util/shell/ViNCEd.readme
Downloads:6423

---------------------------------------------------------------------------
Warning: The 3.69 was is the LAST releases that still supported Os 1.x
	 You have been warned. 3.95 requires Os 2.0 or better.
	 Actually, Os 3.1.4 or better is recommended.
---------------------------------------------------------------------------


                        About ViNCEd

----------------------------------------------------------------------------
The latest version (3.106) of the full screen shell editor (CON: replacement)
----------------------------------------------------------------------------

Features:
-Extremly flexible
-Comes with prefs program with nice GUI
-User defineable macros and buttons (gadgets) with parameters
-Full screen editor, not line limited
-Compatible to CON: and ConMan
-VT-220 emulation build in
-ANSI (VT-xxx) colors on request
-Freely configurable keyboard
-ASCII prefs, a standard editor is enough to change them by hand.
-Keypad mode on request (numeric keypad for cursor control)
-Supports control sequences of:
        -CON:
        -VT-220
        -DEC
        -XTerm (Unix Shells) including mouse tracking
        -SGI winterm
        -plus private stuff (set keyboard, colors and font by ctrl seqs)
-TAB expansion, with different TAB requesters as option
-TAB expansion cache
-Colored cursor on request
-Menu, clipboard support build in (no ConClip needed)
-"More than complete" online help plus documentation
-C include files, autodocs for the library included
-Screen title might contain path/fail codes/CLI number & more
-Localizeable (German available, more locales welcome)
-Job control á la unix with Ctrl-Z
        -suspends shell jobs
        -sends shell jobs to forgeground & background
         using tiny shell scripts "fg" and "bg" like unix
	- "screens" support
-documented library for own applications and editor programming
-iconification support
-uses public "tbiclass" gadgets of VisualPrefs, or Massimo's
 toolbutton images if available. 
-easy installation
-full control by single program (SetVNC)
-clipboard support, snip control with middle mouse button or Ctrl-left-Mouse
-can create private screens on request
-font & monitor selectable by prefs
-icon drop, with modifiers for path/name only
-100% assembly language => fast & short (err, as short as I could do it.)

Plus:   It's 100% free! Hey, I must be crazy!

-----------------------------------------------------------------------------

-------- history ----- this is not the complete history, read the guide!----

Changes made for 3.106.1:
	
	The overlay manager of SetVNC had a very minor defect
	that probably never affected its function, but let's
	have it fixed anyhow. ViNCEd itself remains unchanged.

Changes made for 3.106:
	
	When a block mark included blanks between words that were
	compressed away, and the block mark did not start at the
	beginning of the line, printing the gap between words did
	not print the block mark correctly. This happened mostly
	when scrolling.

Changes made for 3.104:
	
	When marking an almost empty window with blank lines for the
	clipboard, ViNCEd may have forgotten to mark the end-of-line of
	some of the empty lines in the window. This was due to one bug in
	a low-level function iterating over lines.

	Thanks to Luca Longone, the italian catalog has been updated!
	Thank you for your contribution!


Changes made for 3.103:

	While there are not many observable changes, the internal structure
	of ViNCEd changed a lot, in preparation for a future major release.
	From the user perspective, the following things changed:
	- The knob size of the horizontal scroll gadget is now computed 
	from the taken scroll space, and no longer from the maximum 
	available space. 
	- Also, the computation of the vertical knob size was incorrect in 
	case a scroll region was installed into the window by means of 
	the CSI n;m r sequence. 	
	- Rewrapping of the window contents with installed scroll region
	might have been off and might have positioned the cursor in the 
	wrong spot upon re-wrapping of the window contents. 
	- If cursor movement was restricted to the visible area, the cursor
	could not move at all in printed output. This now changed such that
	the cursor can move in such areas, provided there is no user input.
	As soon as input appears, cursor movement remains constrained to the
	input.
	- Overriding the CON: mount damaged a dos.library semaphore because
	dos.library creates a mis-aligned "fake" seglist for the ROM-resident
	CON-Handler. Added a workaround, this should prevent system hangs.

	Internal changes:
	- ViNCed no longer relocates dedicated line pointers in its main
	structure upon garbadge collection; instead, ViNCEd uses now a handle
	system with stack-based handle allocation to ensure proper pointer
	relocation. This would allow many more "floating" line pointer in
	future releases.
	- The "word" structure no longer uses offsets from the left window
	edge to indicate the position of a word. Instead, an offset from the
	end of the last word is used. The entire line compaction/expansion was
	rewritten. This, together with the previous choice, and the prop
	gadget change, would enable arbitrary long lines in future releases of
	ViNCEd. Currently, the line length is limited by about 250 characters.
	- Handling of the scroll region was greatly simplified. Instead of
	moving lines around on the "visible line list" upon insertion and
	deletion of lines, the lines in the scroll region are now kept in two
	separate lists which are not touched by the typical editor screen
	manipulations.
	-As a side effect of these changes, the VNC main structure changed in
	some places.


Changes made for 3.102:

	ViNCEd now also delays the allocation of the TmpRas and by that
	avoids any allocation of Chipmem until absolutely needed. If ViNCEd
	is used as boot console, the TmpRas memory blocked MuMove4K from 
	releasing all ChipMem below 32K, and thus blocked its operation.
	Additionally, the memory management and garbadge collector of ViNCEd
	is all new and should perform better. The dynamic line and buffer
	structures require now 8 bytes less per line.
	Also forgot to include the C prototypes for the vnc.library.

Changes made for 3.101:

	ViNCEd now delays loading the icon and workbench libraries, and
	only opens them when they are already in memory. This avoids
	conflicts during early startup if only one of the libraries is replaced
	by LoadModule. While this is potentially a user error, it may be
	helpful to be conservative. ViNCEd now re-attempts to open the
	libraries as soon as the preferences become available, i.e. whenever
	ENV: is created and filled.

Changes made for 3.100:

	When the VNC clip supervisor restarted some of its services,
	it invalidly accessed one of its internal variables as LONG
	rather than BYTE, causing an address fault on the 68000.
	Otherwise, the access was harmless. This was fixed in release
	3.100.

Changes made for 3.99:

	The ViNCEd "mount override" function to replace CON: and RAW:
	did not work correctly in combination with the ViNCEd Boot
	Shim of Os 3.2 and broke the RAW: handler instead of replacing
	it by ViNCEd. This was fixed in 3.99.

Changes made for 3.98:

	If ViNCEd became active before ENV: and LOCALE: were setup,
	the localization wasn't updated for new windows even after
	ENV: became mounted. ViNCEd now also pulls all new system
	preferences once it becomes aware that the preferences system
	becomes active. Also, a new swedish locale is included, thank
	goes to Pär Boberg for tackling this!

Changes made for 3.97:

	When ViNCEd becomes active before the ENV: assign is made,
	ViNCEd did not become aware of preferences changes and hence
	never adapted its settings if changes were made through
	SetVNC. It now re-attempts to register notification events
	every time a ViNCEd window is openend.

Changes made for 3.96:

	When mounted, ViNCEd now automatically fixes its stack size
	to at least 4096 bytes required by the core. This avoids
	problems if ViNCEd is used as CON: replacement and the CON:
	stack size is not fixed by SetPatch as it should.

Changes made for 3.95.1:

	ViNCEd remained unchanged, but SetVNC was updated. First, the
	"simple setup" apparently confused many people as some options
	mentioned in the guide do not appear unless users un-ticked the
	"simple setup" in the first page.
	Second, sizing the sprite for the color setup did not work
	properly on AGA machines with the hires sprite selected, and
	SetVNC did not restore the original resolution of the sprite
	pointer when terminating.

Changes made for 3.95:

	This release resolves one of the "open ends" of ViCNEd. In case
	the "automatic line breaking at the right border" was selected,
	ViNCEd broke the lines as requested, but did not re-compute
	line-breaking when the window was resized. While a lot of 
	preparation work was done to make this possible, the actual
	re-formatting algorithm was missing, and was finally included.

	Note that formatting only applies to printed output, not to
	user input, which continues to scroll.

Changes made for 3.94:

	After 18 years of silence, this is a re-release of ViNCEd under
	my own copyright, and ViNCEd is again freeware.
	This version improves the handling of the "medium mode" such that
	it is fully compatible with the Os 3.2 (v47) version of the shell.
	TAB expansion is then fully done by the shell, bypassing ViNCEd.
	ViNCEd changes now its cursor shape for the shell-driven TAB
	expansion, and sends a ^E to the shell to abort the expansion.
	Also, ViNCEd uses now the intuition v47 sysiclass for iconification
	if this gadget is present.

-----------------------------------------------------------------------------
Notes: 

        Check the TOP_SECRET or ReadMe.First file in this archive!
	Especially, these SHOULD BE RUN FIRST before you start with
	the installation.

        VirusWorkShop seems to have trouble with the overlay file structure
        that is used by the SetVNC program.
        THIS IS NOT A VIRUS! It is a bugfix of the oldish CBM overlay 
        manager which is really buggy!

        To trick VirusWorkshop, the SetVNC program in this archive is
        encoded. Use the "Decode" program from the "Extras" drawer to
        decode manually. The installer script has been updated to do 
        this for you.

-----------------------------------------------------------------------------

Send ideas, improvements, bugreports (please as concrete as possible) to:


        Thomas Richter


EMail:  thomas.richter at alumni.tu-berlin.de

-----------------------------------------------------------------------------

January 2024
        Thomas


Contents of util/shell/ViNCEd.lha
 PERMSSN    UID  GID    PACKED    SIZE  RATIO METHOD CRC     STAMP          NAME
---------- ----------- ------- ------- ------ ---------- ------------ -------------
[Amiga]                    271     628  43.2% -lh5- 4f3a Dec 19  1998 ViNCEd/Antique.info
[Amiga]                    526     953  55.2% -lh5- ecb9 May  1  2000 ViNCEd/Antique/Antique.Readme
[Amiga]                    376     856  43.9% -lh5- 3a56 Oct 18  1998 ViNCEd/Antique/Antique.Readme.info
[Amiga]                     85      92  92.4% -lh5- dc14 Oct 18  1998 ViNCEd/Antique/MountList
[Amiga]                  10589   19608  54.0% -lh5- 997e Oct 18  1998 ViNCEd/Antique/SetVNC
[Amiga]                   9807   17648  55.6% -lh5- ad63 Dec 19  1990 ViNCEd/Antique/SetVNC_1.3
[Amiga]                  14345   21980  65.3% -lh5- 2e3b Dec 19  1990 ViNCEd/Antique/VNC-Handler
[Amiga]                  26752   43328  61.7% -lh5- 89ee Oct 18  1998 ViNCEd/Antique/vnc.library
[Amiga]                    267     628  42.5% -lh5- d193 Dec 19  1998 ViNCEd/AREXX.info
[Amiga]                    179     188  95.2% -lh5- 5fb4 Aug 12  1998 ViNCEd/AREXX/rexxsyslib.pch
[Amiga]                    467     938  49.8% -lh5- 3b24 Dec 24  1998 ViNCEd/ATO.readme
[Amiga]                   1123    2441  46.0% -lh5- 1b62 Feb 28  1998 ViNCEd/ATO.ReadMe.First
[Amiga]                    378     856  44.2% -lh5- 5583 Dec 19  1998 ViNCEd/ATO.ReadMe.First.info
[Amiga]                    375     856  43.8% -lh5- d9dc Dec 19  1998 ViNCEd/ATO.readme.info
[Amiga]                    268     628  42.7% -lh5- 0d18 Dec 19  1998 ViNCEd/C.info
[Amiga]                  29141   56184  51.9% -lh5- 1492 Apr 26 15:54 ViNCEd/C/SetVNC.coded
[Amiga]                    265     628  42.2% -lh5- 21ef Dec 19  1998 ViNCEd/DEVS.info
[Amiga]                    267     628  42.5% -lh5- 7f96 Sep  6  1998 ViNCEd/DEVS/DOSDrivers.info
[Amiga]                    226     325  69.5% -lh5- 8e48 Jan 27  2000 ViNCEd/DEVS/DOSDrivers/NEWCON
[Amiga]                    261     481  54.3% -lh5- 4059 Sep  6  1998 ViNCEd/DEVS/DOSDrivers/NEWCON.info
[Amiga]                    195     270  72.2% -lh5- 6eb0 Jan 27  2000 ViNCEd/DEVS/DOSDrivers/VNC
[Amiga]                    263     481  54.7% -lh5- 9706 Sep  6  1998 ViNCEd/DEVS/DOSDrivers/VNC.info
[Amiga]                    192     262  73.3% -lh5- cb5a Jan 27  2000 ViNCEd/DEVS/DOSDrivers/VNR
[Amiga]                    263     481  54.7% -lh5- 1941 Sep  6  1998 ViNCEd/DEVS/DOSDrivers/VNR.info
[Amiga]                     94     105  89.5% -lh5- 8d7e Apr 24  2000 ViNCEd/DEVS/Mount_NEWCON
[Amiga]                     88     102  86.3% -lh5- fb5c Apr 24  2000 ViNCEd/DEVS/Mount_VNC
[Amiga]                    356    1380  25.8% -lh5- 70e3 Nov  3  1996 ViNCEd/Disk.info
[Amiga]                    276     628  43.9% -lh5- 19be May  1  2000 ViNCEd/Extras.info
[Amiga]                   5274    8424  62.6% -lh5- d732 Sep 27  1998 ViNCEd/Extras/CLIcon
[Amiga]                    316     758  41.7% -lh5- 0a55 May  1  2000 ViNCEd/Extras/CLIcon.info
[Amiga]                     79      87  90.8% -lh5- ce77 Nov  7  1998 ViNCEd/Extras/CONSOLE
[Amiga]                    267     481  55.5% -lh5- 0ba6 May  1  2000 ViNCEd/Extras/CONSOLE.info
[Amiga]                    380     440  86.4% -lh5- 7c07 Apr  6  1997 ViNCEd/Extras/Decode
[Amiga]                   2427    4056  59.8% -lh5- fd28 Dec 21  1997 ViNCEd/Extras/FastFonts
[Amiga]                    271     568  47.7% -lh5- 0a86 May  1  2000 ViNCEd/Extras/FastFonts.info
[Amiga]                    268     628  42.7% -lh5- 3588 Jul 22  2000 ViNCEd/Extras/Fonts.info
[Amiga]                     31     264  11.7% -lh5- df9d Nov  1  1997 ViNCEd/Extras/Fonts/topaz6.font
[Amiga]                   1357    2216  61.2% -lh5- 305e Nov  1  1997 ViNCEd/Extras/Fonts/topaz6/8e
[Amiga]                    309     332  93.1% -lh5- 8b30 Nov 10  1998 ViNCEd/Extras/More.pch
[Amiga]                    297     320  92.8% -lh5- 457b Oct 23  1999 ViNCEd/Extras/More_44.pch
[Amiga]                     93     102  91.2% -lh5- b41a May  1  2000 ViNCEd/Extras/Mount_CONSOLE
[Amiga]                    424     580  73.1% -lh5- 8dee Jan 23  1999 ViNCEd/Extras/NamedConsoleHandler
[Amiga]                    251     284  88.4% -lh5- 14b8 Nov  2  1996 ViNCEd/Extras/PatchAlloc
[Amiga]                    980    1428  68.6% -lh5- a2ac May  1  2000 ViNCEd/Extras/PatchRAM
[Amiga]                   2624    5771  45.5% -lh5- 073a May  1  2000 ViNCEd/Extras/PatchRAM.readme
[Amiga]                    377     856  44.0% -lh5- b0f4 May  1  2000 ViNCEd/Extras/PatchRAM.readme.info
[Amiga]                   1006    1480  68.0% -lh5- d573 Apr 26 18:27 ViNCEd/Extras/RunTool
[Amiga]                   9310   14688  63.4% -lh5- 842a Nov  2  1996 ViNCEd/Extras/spatch
[Amiga]                   5930    9800  60.5% -lh5- d8cd Apr 26 16:12 ViNCEd/Extras/StringSnip
[Amiga]                   1426    2981  47.8% -lh5- 7404 Jan 23  1999 ViNCEd/Extras/StringSnip.prefs
[Amiga]                   4585   11049  41.5% -lh5- a5ce Oct 28  2000 ViNCEd/Extras/StringSnip.readme
[Amiga]                    273     628  43.5% -lh5- d323 Oct 12  2000 ViNCEd/Extras/termcap.info
[Amiga]                    556    1483  37.5% -lh5- 552c Sep  3  2000 ViNCEd/Extras/termcap/amiga-vnc
[Amiga]                    661    1383  47.8% -lh5- 9d85 Sep  3  2000 ViNCEd/Extras/termcap/ti.amiga-vnc
[Amiga]                   4502    7272  61.9% -lh5- 70af Sep 27  1998 ViNCEd/Extras/titlebar.image
[Amiga]                   1872    2916  64.2% -lh5- bfa3 Apr 26 16:11 ViNCEd/Extras/TrueMultiAssigns
[Amiga]                    271     628  43.2% -lh5- bef4 May  1  2000 ViNCEd/Extras/UnixDirs3.info
[Amiga]                   2501    3524  71.0% -lh5- 6928 Mar 21  1997 ViNCEd/Extras/UnixDirs3/UnixDirs3
[Amiga]                  12181   32747  37.2% -lh5- 15f6 Mar 21  1997 ViNCEd/Extras/UnixDirs3/UnixDirs3.guide
[Amiga]                    283     537  52.7% -lh5- 6c6d Aug 20  1997 ViNCEd/Extras/UnixDirs3/UnixDirs3.guide.info
[Amiga]                    783    1701  46.0% -lh5- 241e Aug 20  1997 ViNCEd/Extras/UnixDirs3/UnixDirs3.info
[Amiga]                    465     809  57.5% -lh5- 2584 Mar 21  1997 ViNCEd/Extras/UnixDirs3/UnixDirs3.readme
[Amiga]                    267     628  42.5% -lh5- 0ec8 Dec 19  1998 ViNCEd/Guides.info
[Amiga]                   4428   11823  37.5% -lh5- 652c Sep 27  1998 ViNCEd/Guides/titlebar.guide
[Amiga]                    224     468  47.9% -lh5- 4b2f Sep 11  1998 ViNCEd/Guides/titlebar.guide.info
[Amiga]                 204435  696647  29.3% -lh5- 6c13 Apr 26 15:51 ViNCEd/Guides/ViNCEd.guide
[Amiga]                    273     523  52.2% -lh5- 6521 Aug 11  1998 ViNCEd/Guides/ViNCEd.guide.info
[Amiga]                    273     628  43.5% -lh5- 0287 Dec 19  1998 ViNCEd/Include.info
[Amiga]                    635    1350  47.0% -lh5- 3591 Sep 17  2000 ViNCEd/Include/AmigaE/vnc.m
[Amiga]                   2964    7688  38.6% -lh5- 085a Sep 17  2000 ViNCEd/Include/AmigaE/vnc/Dynamics.e
[Amiga]                    595    1514  39.3% -lh5- 5d8c Sep 17  2000 ViNCEd/Include/AmigaE/vnc/dynamics.m
[Amiga]                    990    2913  34.0% -lh5- b77d Sep 17  2000 ViNCEd/Include/AmigaE/vnc/IO.e
[Amiga]                    273     460  59.3% -lh5- 8d7b Sep 17  2000 ViNCEd/Include/AmigaE/vnc/io.m
[Amiga]                   1879    7509  25.0% -lh5- 6dbd Sep 17  2000 ViNCEd/Include/AmigaE/vnc/Keyboard.e
[Amiga]                   1109    2920  38.0% -lh5- 8221 Sep 17  2000 ViNCEd/Include/AmigaE/vnc/keyboard.m
[Amiga]                    990    3242  30.5% -lh5- e15d Sep 17  2000 ViNCEd/Include/AmigaE/vnc/Macros.e
[Amiga]                    169     346  48.8% -lh5- ab0c Sep 17  2000 ViNCEd/Include/AmigaE/vnc/macros.m
[Amiga]                   1642    4617  35.6% -lh5- a7c9 Sep 17  2000 ViNCEd/Include/AmigaE/vnc/Owner.e
[Amiga]                    548    1112  49.3% -lh5- 9e9d Sep 17  2000 ViNCEd/Include/AmigaE/vnc/owner.m
[Amiga]                    785    2352  33.4% -lh5- 55fa Sep 17  2000 ViNCEd/Include/AmigaE/vnc/Packets.e
[Amiga]                    193     344  56.1% -lh5- 254e Sep 17  2000 ViNCEd/Include/AmigaE/vnc/packets.m
[Amiga]                   3746   12330  30.4% -lh5- 1fbb Sep 17  2000 ViNCEd/Include/AmigaE/vnc/prefs.e
[Amiga]                   1531    4020  38.1% -lh5- f043 Sep 17  2000 ViNCEd/Include/AmigaE/vnc/prefs.m
[Amiga]                    913    2682  34.0% -lh5- bb62 Sep 17  2000 ViNCEd/Include/AmigaE/vnc/Requester.e
[Amiga]                    244     452  54.0% -lh5- edee Sep 17  2000 ViNCEd/Include/AmigaE/vnc/requester.m
[Amiga]                   2357    8077  29.2% -lh5- d955 Sep 17  2000 ViNCEd/Include/AmigaE/vnc/vncbase.e
[Amiga]                    826    1818  45.4% -lh5- 7a15 Sep 17  2000 ViNCEd/Include/AmigaE/vnc/vncbase.m
[Amiga]                   6936   22213  31.2% -lh5- 2a04 Sep 17  2000 ViNCEd/Include/AmigaE/vnc/Window.e
[Amiga]                   2964    7448  39.8% -lh5- 523b Sep 17  2000 ViNCEd/Include/AmigaE/vnc/window.m
[Amiga]                   4171   10992  37.9% -lh5- d3e8 Sep 27  1998 ViNCEd/Include/Autodocs/titlebar.doc
[Amiga]                   2513    7145  35.2% -lh5- 4b14 Apr 26 16:13 ViNCEd/Include/Boopsis_Readme
[Amiga]                    141     190  74.2% -lh5- b006 Sep 27  1998 ViNCEd/Include/clib/titlebarimage_protos.h
[Amiga]                   2469    8949  27.6% -lh5- 9d80 Apr 24  2000 ViNCEd/Include/Examples/ReadConsoleWindow.c
[Amiga]                   1031    2105  49.0% -lh5- ad11 Jul  5  2000 ViNCEd/Include/Examples/ReadMe
[Amiga]                   2699    9135  29.5% -lh5- d148 May 24  2001 ViNCEd/Include/Examples/ReadPrefs.c
[Amiga]                   1918    8189  23.4% -lh5- 8515 May 24  2001 ViNCEd/Include/Examples/ReadWindowSize.c
[Amiga]                   1735    5814  29.8% -lh5- cfef Sep 11  1998 ViNCEd/Include/Examples/TBITest.c
[Amiga]                    157     209  75.1% -lh5- 1175 Apr 24  2000 ViNCEd/Include/fd/ReadMe
[Amiga]                    110     127  86.6% -lh5- 1c8c Sep 27  1998 ViNCEd/Include/fd/titlebarimage_cl.fd
[Amiga]                   2059    5787  35.6% -lh5- 9515 Sep 20  2000 ViNCEd/Include/fd/vnc_lib.fd
[Amiga]                    231     450  51.3% -lh5- 90d1 Sep 27  1998 ViNCEd/Include/images/titlebar.h
[Amiga]                    188     290  64.8% -lh5- 1cfc Aug 22  1998 ViNCEd/Include/include_asm/ReadMe
[Amiga]                    859    3052  28.1% -lh5- bfd6 Apr 24  2000 ViNCEd/Include/include_asm/vnc_lib.i
[Amiga]                    759    1671  45.4% -lh5- e6bf Aug 22  1998 ViNCEd/Include/lib/ReadMe
[Amiga]                   3977   18148  21.9% -lh5- 0aed Aug 22  1998 ViNCEd/Include/lib/vnc_stub.base.lib
[Amiga]                   3997   18292  21.9% -lh5- dacd Aug 22  1998 ViNCEd/Include/lib/vnc_stub.lib
[Amiga]                   3768   17616  21.4% -lh5- cf42 Aug 22  1998 ViNCEd/Include/lib/vnc_stub.rr.base.lib
[Amiga]                   3791   17744  21.4% -lh5- 28ba Aug 22  1998 ViNCEd/Include/lib/vnc_stub.rr.lib
[Amiga]                    104     120  86.7% -lh5- 51e0 Sep 27  1998 ViNCEd/Include/pragma/titlebarimage_pragmas.h
[Amiga]                   1888    8873  21.3% -lh5- eaca Apr 24  2000 ViNCEd/Include/pragma/vnc_pragmas.h
[Amiga]                    139     215  64.7% -lh5- 22de Sep 27  1998 ViNCEd/Include/proto/titlebarimage.h
[Amiga]                    139     223  62.3% -lh5- 80e6 Aug 22  1998 ViNCEd/Include/proto/vnc.h
[Amiga]                   1651    4061  40.7% -lh5- 6c2d Sep 17  2000 ViNCEd/Include/ReadME
[Amiga]                   3128    9103  34.4% -lh5- 97d1 May 13  2001 ViNCEd/Include/vnc/Dynamics.h
[Amiga]                   1037    3000  34.6% -lh5- 89bd May 13  2001 ViNCEd/Include/vnc/IO.h
[Amiga]                   1906    7647  24.9% -lh5- f3a2 May 13  2001 ViNCEd/Include/vnc/Keyboard.h
[Amiga]                   1046    3683  28.4% -lh5- 858f May 13  2001 ViNCEd/Include/vnc/Macros.h
[Amiga]                   1945    6880  28.3% -lh5- 10fb May 13  2001 ViNCEd/Include/vnc/Owner.h
[Amiga]                    735    2215  33.2% -lh5- c143 May 13  2001 ViNCEd/Include/vnc/Packets.h
[Amiga]                   4005   13839  28.9% -lh5- 098c May 24  2001 ViNCEd/Include/vnc/prefs.h
[Amiga]                   2489    9428  26.4% -lh5- c8db May 13  2001 ViNCEd/Include/vnc/VNCBase.h
[Amiga]                   7720   33392  23.1% -lh5- 0d0e May 13  2001 ViNCEd/Include/vnc/window.h
[Amiga]                    269     628  42.8% -lh5- c3d9 Dec 23  1998 ViNCEd/Install.info
[Amiga]                    477     805  59.3% -lh5- fd9c Dec 23  1998 ViNCEd/Install/Deutsch.info
[Amiga]                    469     793  59.1% -lh5- 3fc5 Dec 23  1998 ViNCEd/Install/English.info
[Amiga]                    482     803  60.0% -lh5- a316 Oct  6  2000 ViNCEd/Install/Fran?ais.info
[Amiga]                  38925  131607  29.6% -lh5- 5ef4 Apr 26 18:03 ViNCEd/Install/Install_VNC
[Amiga]                    480     803  59.8% -lh5- a4b4 Oct  6  2000 ViNCEd/Install/Italiano.info
[Amiga]                    479     801  59.8% -lh5- e7a3 Oct  6  2000 ViNCEd/Install/Polski.info
[Amiga]                    483     804  60.1% -lh5- 2cf1 Oct  6  2000 ViNCEd/Install/Slovensko.info
[Amiga]                    267     628  42.5% -lh5- 4aab Dec 19  1998 ViNCEd/LIBS.info
[Amiga]                  75262  124540  60.4% -lh5- 3150 Apr 26 15:10 ViNCEd/LIBS/vnc.library
[Amiga]                    268     628  42.7% -lh5- dab2 Dec 19  1998 ViNCEd/LOCALE.info
[Amiga]                   5396   14324  37.7% -lh5- 342a Nov 12  2000 ViNCEd/LOCALE/Catalogs/deutsch/VNC/VNC.prefs.catalog
[Amiga]                    932    1840  50.7% -lh5- 00e1 Nov 12  2000 ViNCEd/LOCALE/Catalogs/deutsch/VNC/VNC.sys.catalog
[Amiga]                  18550   57716  32.1% -lh5- 768a Nov  7  1998 ViNCEd/LOCALE/Catalogs/Fran?ais/prefs.construct
[Amiga]                   3900   10206  38.2% -lh5- 55ca Jan 16  1999 ViNCEd/LOCALE/Catalogs/Fran?ais/sys.construct
[Amiga]                   5074   13722  37.0% -lh5- ab65 Nov  7  1998 ViNCEd/LOCALE/Catalogs/Fran?ais/VNC/VNC.prefs.catalog
[Amiga]                    945    1914  49.4% -lh5- bd59 Jan 16  1999 ViNCEd/LOCALE/Catalogs/Fran?ais/VNC/VNC.sys.catalog
[Amiga]                  18658   57984  32.2% -lh5- 5c88 Dec 21  1998 ViNCEd/LOCALE/Catalogs/italiano/prefs.construct
[Amiga]                   3865    9934  38.9% -lh5- cca0 Jan 23  1999 ViNCEd/LOCALE/Catalogs/italiano/sys.construct
[Amiga]                   5296   14102  37.6% -lh5- eab8 Dec 23  1998 ViNCEd/LOCALE/Catalogs/italiano/VNC/VNC.prefs.catalog
[Amiga]                    982    1934  50.8% -lh5- 9d15 Jan 23  1999 ViNCEd/LOCALE/Catalogs/italiano/VNC/VNC.sys.catalog
[Amiga]                  18956   57199  33.1% -lh5- 59d9 Oct  1 01:42 ViNCEd/LOCALE/Catalogs/polski/prefs.construct
[Amiga]                   4129   10503  39.3% -lh5- 00d2 Oct  1 01:43 ViNCEd/LOCALE/Catalogs/polski/sys.construct
[Amiga]                   5287   12992  40.7% -lh5- 4f04 Oct  6  2000 ViNCEd/LOCALE/Catalogs/polski/VNC/VNC.prefs.catalog
[Amiga]                    913    1652  55.3% -lh5- a072 Oct  6  2000 ViNCEd/LOCALE/Catalogs/polski/VNC/VNC.sys.catalog
[Amiga]                  18748   57457  32.6% -lh5- 4e10 Dec  5  1998 ViNCEd/LOCALE/Catalogs/slovensko/prefs.construct
[Amiga]                   3899   10110  38.6% -lh5- d149 Jan 23  1999 ViNCEd/LOCALE/Catalogs/slovensko/sys.construct
[Amiga]                   5121   13150  38.9% -lh5- 5489 Dec  5  1998 ViNCEd/LOCALE/Catalogs/slovensko/VNC/VNC.prefs.catalog
[Amiga]                    915    1742  52.5% -lh5- e0ce Jan 23  1999 ViNCEd/LOCALE/Catalogs/slovensko/VNC/VNC.sys.catalog
[Amiga]                   5055   12706  39.8% -lh5- 2922 Dec 19  1998 ViNCEd/LOCALE/Catalogs/suomi/VNC/VNC.prefs.catalog
[Amiga]                    877    1722  50.9% -lh5- cd70 Dec 19  1998 ViNCEd/LOCALE/Catalogs/suomi/VNC/VNC.sys.catalog
[Amiga]                    269     628  42.8% -lh5- f0b6 Dec 19  1998 ViNCEd/Localize!.info
[Amiga]                   4213    6640  63.4% -lh5- 9315 Jan 13  1998 ViNCEd/Localize!/CreateCatalog
[Amiga]                  19451   59570  32.7% -lh5- ff88 Nov 12  2000 ViNCEd/Localize!/prefs.construct
[Amiga]                   2132    5022  42.5% -lh5- e496 Oct  3  1998 ViNCEd/Localize!/ReadMe
[Amiga]                   4121   10676  38.6% -lh5- d57c Nov 12  2000 ViNCEd/Localize!/sys.construct
[Amiga]                    317     632  50.2% -lh5- fe57 Dec 19  1998 ViNCEd/Prefs.info
[Amiga]                   2129    6568  32.4% -lh5- 21ce Aug 22  1998 ViNCEd/Prefs/Env-Archive/Default.Prefs
[Amiga]                    225     479  47.0% -lh5- 1d1b Aug 22  1998 ViNCEd/Prefs/Env-Archive/Default.Prefs.info
[Amiga]                   2116    6536  32.4% -lh5- 5809 Aug 22  1998 ViNCEd/Prefs/Env-Archive/My.Prefs
[Amiga]                    225     479  47.0% -lh5- 1d1b Aug 16  1998 ViNCEd/Prefs/Env-Archive/My.Prefs.info
[Amiga]                   2066    6313  32.7% -lh5- 86d1 Oct 28  2000 ViNCEd/Prefs/Env-Archive/XTerm.Prefs
[Amiga]                    225     479  47.0% -lh5- 1d1b Aug 16  1998 ViNCEd/Prefs/Env-Archive/XTerm.Prefs.info
[Amiga]                    479     697  68.7% -lh5- cde2 May 11  2000 ViNCEd/Prefs/SetVNC.info
[Amiga]                   9427   24730  38.1% -lh5- ce46 Apr 26 16:26 ViNCEd/Readme.First!
[Amiga]                    889    1386  64.1% -lh5- a4a7 Apr 25  1999 ViNCEd/Readme.First!.info
[Amiga]                    267     628  42.5% -lh5- 82c2 Dec 19  1998 ViNCEd/S.info
[Amiga]                     17      17 100.0% -lh0- 10cf Aug 11  1998 ViNCEd/S/bg
[Amiga]                     50      50 100.0% -lh0- 0ae7 Aug 11  1998 ViNCEd/S/fg
[Amiga]                    222     383  58.0% -lh5- 8ae9 Aug 11  1998 ViNCEd/S/fork
[Amiga]                     87     106  82.1% -lh5- a56c Aug 11  1998 ViNCEd/S/History
[Amiga]                     96     103  93.2% -lh5- 55c1 Aug 11  1998 ViNCEd/S/More
[Amiga]                    372     986  37.7% -lh5- 07ac Aug 11  1998 ViNCEd/S/SetFont
[Amiga]                    179     322  55.6% -lh5- 5e90 Aug 11  1998 ViNCEd/S/SetKeyboard
[Amiga]                    349     768  45.4% -lh5- 79b7 Dec 19  1998 ViNCEd/Shell.info
[Amiga]                    342     765  44.7% -lh5- ecad Dec 19  1998 ViNCEd/Shell_VNC.info
[Amiga]                   9427   24730  38.1% -lh5- ce46 Apr 26 16:26 ViNCEd/Top Secret!
[Amiga]                    888    1386  64.1% -lh5- 85de Apr 25  1999 ViNCEd/Top Secret!.info
[Amiga]                   2005    4478  44.8% -lh5- b2c6 Apr 26 19:07 ViNCEd/ViNCEd.readme
---------- ----------- ------- ------- ------ ---------- ------------ -------------
 Total       181 files  774963 2130818  36.4%            Apr 27 00:25

Aminet © 1992-2024 Urban Müller and the Aminet team. Aminet contact address: <aminetaminet net>