[Pharo-users] Best way to distribut a pharo application to end users ...

2016-07-16 Thread anonyme
Hi, About the best way to distribut a pharo application I understand with documentation about Pharo there is a Moticello packages way but the end user need to install Pharo at first... I was looking for a way like standard windows application with an install procedure with/or building a simp

Re: [Pharo-users] [Pharo-dev] [ANN] file dialog replacement experiment

2016-07-16 Thread Johan Fabry
This is excellent !!! We should change the default file browser to be this one ! -- Does this mail seem too brief? Sorry for that, I don’t mean to be rude! Please see http://emailcharter.org . Johan Fabry - http://pleiad.cl/~jfabry PLEIAD and RyCh labs - Comput

Re: [Pharo-users] [Pharo-dev] how to update monticello cypress repository downloaded from github?

2016-07-16 Thread Nicolas Passerini
AFAIK that is the only way > > 1. delete github-cache folder in the image folder > 2. unload all the loaded packages > 3. execute this script again > At least if you have a metadata less github repository, is that the case? But that was the conclusion to which we arrived with Dale a few weeks ago

Re: [Pharo-users] [Pharo-dev] [ANN] file dialog replacement experiment

2016-07-16 Thread Sven Van Caekenberghe
> On 16 Jul 2016, at 19:05, Peter Uhnák wrote: > > Couple more updates: You rock ! > > If you truncate, you could put the full, non truncated path in a pop over, > > that would be a cheap way to solve that problem, no ? In any case, in my > > testing there was enough space. > > Fixed > > >

[Pharo-users] how to update monticello cypress repository downloaded from github?

2016-07-16 Thread Peter Uhnák
Hi, how can one update a cypress github repository? e.g. I install it like this Metacello new baseline: 'FileDialog'; repository: 'github://peteruhnak/file-dialog/repository'; load. And then later I want to pull latest changes as the repo itself doesn't contain commits I cannot do

Re: [Pharo-users] [Pharo-dev] [ANN] file dialog replacement experiment

2016-07-16 Thread Peter Uhnák
On Fri, Jul 15, 2016 at 2:00 PM, Sven Van Caekenberghe wrote: > > On 14 Jul 2016, at 23:49, Peter Uhnák wrote: > > Hi Sven, > > What I am missing in the UI is some indication of the path that leads to > the current selected file. Right now, I am wondering where exactly I am, I > feel a bit lost

Re: [Pharo-users] SQLite and sure last_insert_rowid

2016-07-16 Thread Sven Van Caekenberghe
> On 16 Jul 2016, at 11:54, Hilaire wrote: > > Hi Sven, > > I know but my questioning is how you will do it properly with Pharo > driver for Sqlite. > In my previous email, I shared how I think doing it but I am not sure it > is the proper way. Ah yes, I didn't read all the way through. > For

Re: [Pharo-users] SQLite and sure last_insert_rowid

2016-07-16 Thread Hilaire
Hi Sven, I know but my questioning is how you will do it properly with Pharo driver for Sqlite. In my previous email, I shared how I think doing it but I am not sure it is the proper way. For example, NBSqlite3ResultSet (specific to Pharo driver) produces rows on demand, is such instance valid on

Re: [Pharo-users] SQLite and sure last_insert_rowid

2016-07-16 Thread Sven Van Caekenberghe
That are SQL 101 questions, this is a Pharo list ;-) You should wrap your SQL statements in a transactions, https://sqlite.org/lang_transaction.html > On 16 Jul 2016, at 08:19, Hilaire wrote: > > Hi guys, > > In a multi-thread context use of Sqlite, I try to find out how one will > fetch secu