Re: fwGestalt() function

2024-07-15 Thread Paul Dupuis via use-livecode
With due credit to Richard for the original, you might want to update it for today's disk sizes, This adds GB and TB function Bytes2Size n   set the numberformat to "0.#"   if n < 1024 then     put n &" bytes" into n   else     put n / 1024 into n     if n < 1024 then   put n &" KB" into n  

Re: fwGestalt() function

2024-07-15 Thread Bob Sneidar via use-livecode
Spell Correction: Avilable disk space: 454737.3 MB Bob S > On Jul 15, 2024, at 4:24 PM, Bob Sneidar wrote: > > Thanks Richard. > > Bob S > > >> On Jul 15, 2024, at 4:07 PM, Richard Gaskin via use-livecode >> wrote: >> >> function Bytes2Size n >> set the numberformat to "0.#" >> if n

Re: fwGestalt() function

2024-07-15 Thread Bob Sneidar via use-livecode
Thanks Richard. Bob S On Jul 15, 2024, at 4:07 PM, Richard Gaskin via use-livecode wrote: function Bytes2Size n set the numberformat to "0.#" if n < 1024 then put n &" bytes" into n else put n / 1024 into n if n < 1024 then put n &" k" into n else put n / 1024 &" MB" into n

Re: fwGestalt() function

2024-07-15 Thread Richard Gaskin via use-livecode
Bob Sneidar wrote: > I got ahold of a function someone wrote years ago called fwGestalt(). It > looks to > provide information about the current application it belongs to in a report. > However it is calling a function called Bytes2Size() which apparently converts > hard drive space from bytes to

fwGestalt() function

2024-07-15 Thread Bob Sneidar via use-livecode
I got ahold of a function someone wrote years ago called fwGestalt(). It looks to provide information about the current application it belongs to in a report. However it is calling a function called Bytes2Size() which apparently converts hard drive space from bytes to actual free space. Does any

Re: [ ANN ] Release 9.6.13 RC-1

2024-07-15 Thread Bob Sneidar via use-livecode
You can also get it from the Check For Updates menu option of the Help menu in LC. Bob S > On Jul 15, 2024, at 1:31 PM, matthias rebbe via use-livecode > wrote: > > I found the link here > https://livecode.com/account/products/livecode > > and then in the dropdown menu in the second sectio

Re: [ ANN ] Release 9.6.13 RC-1

2024-07-15 Thread matthias rebbe via use-livecode
I found the link here https://livecode.com/account/products/livecode and then in the dropdown menu in the second section where the RC builds are listed. See a screenshot here https://livecode.dermattes.de/images/9_6_13_rc1.jpg Regards, Matthias > Am 15.07.2024 um 21:18 schrieb Richard Gaskin

Re: [ ANN ] Release 9.6.13 RC-1

2024-07-15 Thread Richard Gaskin via use-livecode
Panos wrote: > We are pleased to announce the release of LiveCode 9.6.13 RC-1. ... > You can find the release in your LiveCode account area or get > it via the automatic updater. Thank you for the release. The Windows pasting issue is especially noteworthy, much appreciated. I don't see 9.6.13

[ ANN ] Release 9.6.13 RC-1

2024-07-15 Thread panagiotis merakos via use-livecode
Dear list members, We are pleased to announce the release of LiveCode 9.6.13 RC-1. LiveCode 9.6.13 RC-1 comes with 11 bugfixes and performance improvements, including support for building against API 34 on Android, and a new version of Google's in-app billing library used for in-app purchase. Bot