Posted: Tue Dec 02, 2003 9:17 pm
Should be fixed. Could you test the following lib ? : www.purebasic.com/beta/GadgetExtensionFranky wrote:Hi, what about the Spingadgetbug, when do you want to fix it?
http://www.purebasic.com
https://www.purebasic.fr/english/
Should be fixed. Could you test the following lib ? : www.purebasic.com/beta/GadgetExtensionFranky wrote:Hi, what about the Spingadgetbug, when do you want to fix it?
i hope not to be drunked and read correctDoobrey: I will probably release a new amiga just after the linux one.
WOOOOOOOOHOOOOOOOOOOOOOOOOOOOFred wrote:I will probably release a new amiga just after the linux one.
I know about this one, still trying to figure out where the dates are messedGPI wrote:About the smart Update:
I download the complete zip-update-file and after the update i start the smartupdater.
I got the message, that i have newer files than in the update-version.
When i press then no, in the Window stand, that "You have this version installed, you don't need a update".
Multi-language is allready done, but it looks like Fred forgot to includeGPI wrote:Multi-language-Support for the tool would be nice (in pb.pref is the selected language for the editor; btw: the visual Designer should also search in this file to get the default language of the user).
What I get is: (debug and not debug)Fred wrote:Try:
Code: Select all
Structure ColoredPoint Extends Point Color.l EndStructure MyPoint.ColoredPoint\x = 10 MyPoint\y = 100 MyPoint\Color = RGB(10,10,10)
8OI will probably release a new amiga just after the linux one.
I have given this some thought, and i think it would be a usefull thing toV2 wrote:@Freak: Thanks a lot! Is there any possibility to add 'plugins' to your updater so that I can add jaPBe, userlibs from purearea and the code archiv to it? What I mean is everyone (or better: the author of an extraordinary PB part/piece) can write his own plugin for your updater to download the newest available version of his program/code/library...
Code: Select all
[Update1]
File="path\file"
Date=03.12.2003 - 10:00
; maybe a simple hex(date())
Url="blablabla\xyz.zip"
; or any other compressed format.
[Update2]
....
Code: Select all
<?xml version="1.0" ?>
<update updver="0.5" app="My test heading" appver="0.05" date="1070129306" authcode="ad45Aom2VpAal3rLhvfy76fFB5gcotEr">
<author website="http://www.mywebsite.com" email="myemail@ertertert" />
<filelist>
<file name="aspitranslate.pb">
<fileinfo checksum="062d3d8f9fc99e946f81b030730fee07" date="1049062118" saveto="ProgDir\" http="http://dfgdfgdfgdfgdfg" />
</file>
<file name="amigraph.pb" priority="Optional">
<fileinfo checksum="407ee360c75ef59fa2a98d95e13e7982" date="1033945556" saveto="Program\" http="http://www.blahblah.com" />
</file>
<file name="Somefile.dll" priority="High">
<fileinfo checksum="f217ecd7e895717388239fc26bb074db" date="1065292768" saveto="Temp\" http="http://www.blahdy.com" />
<msg>Critical update to fix problems on WindowXP</msg>
</file>
</filelist>
</update>
Code: Select all
;## Example to only update "High Priority" bugfixes
;## It cycles through the update file list, and removes unwanted updates.
;## GetUpdates() downloads the files in the list.
If OpenUpdate(update_url.s)
While ExamineUpdate()
If UpdatePriority()<>#Update_Pri_High
DeleteUpdate()
Else
Debug "New file>"+UpdateFileName()
Endif
Wend
If GetUpdates(#Update_HideProgress)=0
Debug "Update failed :(("
Endif
CloseUpdate()
Endif
Code: Select all
If OpenUpdate(updateurl.s)
GetUpdates()
CloseUpdate()
Endif
Cool! On what Amiga platforms, and to wich version?Doobrey: I will probably release a new amiga just after the linux one.