Welcome, Guest
Username: Password: Remember me
General discussions, feature requests for CodeTyphon Project and discussions that don't fit in any of the other specific CodeTyphon forum categories.
  • Page:
  • 1

TOPIC:

Portable ? 12 years 1 month ago #1722

  • Johan
  • Johan's Avatar Topic Author
  • Offline
  • Junior Member
  • Junior Member
  • Posts: 24
  • Thank you received: 2
Hi,

Thanks for this great tool, I wonder if it would be possible to create a Portable version?
regards,
Johan

Please Log in or Create an account to join the conversation.

Re: Portable ? 12 years 1 month ago #1728

  • Sternas Stefanos
  • Sternas Stefanos's Avatar
  • Offline
  • Moderator
  • Moderator
  • Ex Pilot, M.Sc, Ph.D
  • Posts: 4512
  • Thank you received: 1101
Thanks Sir,
No portable plan for now (sorry)
CodeTyphon is a large Programming studio
only the source after installation has size 1.6 Gbytes
after build BigIDE has about 2.5-3.5 Gbytes
with 86 Pages and 1009 Visual Components
so, we can't pack our "monster"
PilotLogic Architect and Core Programmer
Attachments:

Please Log in or Create an account to join the conversation.

Last edit: by Sternas Stefanos.

Re: Portable ? 12 years 3 weeks ago #1790

  • 4aiman
  • 4aiman's Avatar
  • Offline
  • Junior Member
  • Junior Member
  • Comix creator
  • Posts: 227
  • Thank you received: 12
Cop, if you want portable edition for windows, then look for "cameyo" - it's a tool similar to thinstall, but free.
With it you could create portable version of CT.
All you need are:
- launch cameyo and let it scan your system;
- install CT;
- remove unnecessary things (demos, etc); *optional
- let cameyo pack your installation.

Having this done you will pocess portable package of CT for windows, working in XP,vista,seven (I'm not sure 'bout 8).
Cameyo archives all files into ONE executable (which launches VERY fast), so there's no need in additional setup, editing configs or so.
コンソールマニアック
The following user(s) said Thank You: Jose Torres

Please Log in or Create an account to join the conversation.

Re: Portable ? 12 years 3 weeks ago #1803

  • Johan
  • Johan's Avatar Topic Author
  • Offline
  • Junior Member
  • Junior Member
  • Posts: 24
  • Thank you received: 2
Will check this out, but never heard of this before looks promising. :-)

Please Log in or Create an account to join the conversation.

Re: Portable ? 11 years 7 months ago #2527

  • supperbond
  • supperbond's Avatar
  • Offline
  • New Member
  • New Member
  • Posts: 1
  • Thank you received: 1
In my opinion, "portable" means all the config files are in the program folder and the whole program can be copied to another computer without the loss of the config files. It is nothing to do with the size and you do not need to "pack".

I have installed the CT and it works well for me, thanks for providing this wonderful software. :) But the Lazarus uses the system folder %APPDATA% to store it's config file which means that when I copy the whole CT to another computer, I would loss all the config files. So is there any possible to move the config files from the system folder to CT installed folder and let the Lazarus load the config files from installed folder and then the CT would become portable ?

Please Log in or Create an account to join the conversation.

Portable ? 11 years 7 months ago #2538

  • Irwanto
  • Irwanto's Avatar
  • Offline
  • New Member
  • New Member
  • Posts: 10
  • Thank you received: 2
if prefer like if codetyphon can installed in another drive like USB Hard drive,
and all setting could be backup or restore if we want to use in different computer

Please Log in or Create an account to join the conversation.

Portable ? 11 years 7 months ago #2544

  • Rain
  • Rain's Avatar
  • Offline
  • Junior Member
  • Junior Member
  • Posts: 69
  • Thank you received: 8
A quasi portable solution did the XAMPP people find:
The installation directory has to be \XAMPP\
but the drive letter does not matter.

The same approach (without breaking the current way of working) would be possible to be applied for CodeTyphon, by just omitting the drive letter, and start all fixed path in the different scripts just with
\codetyphon and not with c:\codetyphon

And the settings Dir is already settable in the command line:
startlazarus.exe --primary-config-path=F:\laz\config01

Please Log in or Create an account to join the conversation.

Portable ? 11 years 6 months ago #2591

  • mariuszekpl
  • mariuszekpl's Avatar
  • Offline
  • New Member
  • New Member
  • Posts: 15
  • Thank you received: 2
In windows exist simlinks like in linux :)

CREATE PORTABLE USB
1) Install CT in c:\codetyphon
2) Move c:\codetyphon to USB
3) Move %appdata%\lazarus32 to USB

USE PORTABLE CT
3) Create junction USB:\codetyphon -> c:\codetyphon
4) Create junction USB:\lazarus32 -> %appdata%\lazarus32

It is all ?

Please Log in or Create an account to join the conversation.

Portable ? 11 years 6 months ago #2592

  • Irwanto
  • Irwanto's Avatar
  • Offline
  • New Member
  • New Member
  • Posts: 10
  • Thank you received: 2
do you test it ?
may be with full tutorial

Please Log in or Create an account to join the conversation.

Portable ? 11 years 6 months ago #2594

  • 4aiman
  • 4aiman's Avatar
  • Offline
  • Junior Member
  • Junior Member
  • Comix creator
  • Posts: 227
  • Thank you received: 12
FAT32 does NOT have symlinks feature, so you'll need to have your pen drive formatted as NTFS, which definitely will result in sllower access time and will slow down both read and write...
Anyway you could try it out :)
コンソールマニアック

Please Log in or Create an account to join the conversation.

Portable ? 11 years 6 months ago #2597

  • mariuszekpl
  • mariuszekpl's Avatar
  • Offline
  • New Member
  • New Member
  • Posts: 15
  • Thank you received: 2

4aiman wrote: FAT32 does NOT have symlinks feature, so you'll need to have your pen drive formatted as NTFS, which definitely will result in sllower access time and will slow down both read and write...
Anyway you could try it out :)


It is only half true ;)

If you have USB (f:\) formated FAT32 and system (c:\) formated NTFS is posible create junction
mklink /j c:\codetyphon f:\codetyphon
I tested and it works OK

Please Log in or Create an account to join the conversation.

Portable ? 11 years 6 months ago #2598

  • 4aiman
  • 4aiman's Avatar
  • Offline
  • Junior Member
  • Junior Member
  • Comix creator
  • Posts: 227
  • Thank you received: 12
As for now, let us forget about differences between symlinks and junction points ;)

And then... why "half true"? ;)
You wouldn't argue if I say that this is working only because NTFS make your PC think that FAT32 drive is the part of NTFS volume, would you? ;)

And furthermore, mklink is win vista+ feature, so XP users have only junction points.
コンソールマニアック

Please Log in or Create an account to join the conversation.

Last edit: by 4aiman.

Portable ? 11 years 6 months ago #2600

  • mariuszekpl
  • mariuszekpl's Avatar
  • Offline
  • New Member
  • New Member
  • Posts: 15
  • Thank you received: 2
In XP to create junction is linkd.exe
It is part of Windows Server 2003 Resource Kit Tools

I always use Junction , Codetyphon files are on E: disk but Codetyphon think it is c:\Codetyphon , and it works OK
The following user(s) said Thank You: 4aiman

Please Log in or Create an account to join the conversation.

Portable ? 11 years 6 months ago #2602

  • 4aiman
  • 4aiman's Avatar
  • Offline
  • Junior Member
  • Junior Member
  • Comix creator
  • Posts: 227
  • Thank you received: 12
I know how one could do that and where to get Win Server 2003 RKT.
And I've never argued with you in the point where "it works OK" - just want to warn those who still have FAT32 on their HDDs, to show that symlinks aren't exactly junction points and to say that XP users have to use junction points (which you repeated as well) ;)

But thanks anyway.
And I'm sure you'll be thanked million times for the above link too ;)
コンソールマニアック

Please Log in or Create an account to join the conversation.

Last edit: by 4aiman.
  • Page:
  • 1