AVRco 6.0 Test

pvs-deck
PowerUser
Avatar
Gender:
Age: 53
Homepage: pvs-deck.de
Posts: 1341
Registered: 02 / 2009
Subject:

Re: AVRco 6.0 Test

 · 
Posted: 29.06.2023 - 17:45  ·  #49
Hallo Frank,

hat das evtl. was mit Deinem Installationspfad zu tun? Lass es mal auf dem Standardpfad "C:\Program Files (x86)\AVRco", evtl. gibt es da in deinem "C:\AVRco...." Zugriffbeschränkungen für die Installation.

Thorsten
Merlin
Administrator
Avatar
Gender:
Age: 24
Posts: 1408
Registered: 03 / 2005
Subject:

Re: AVRco 6.0 Test

 · 
Posted: 29.06.2023 - 18:02  ·  #50
Hello Thorsten.

Thank you for your tests, which confirm my own.

Today, however I tested with W11 and can confirm that it behaved as described by Frank. That must mean that MSI, which installShield uses, behaves differently between W10 and W11. MSI is a Microsoft product.

It would be a massive help, Thorsten, if you could try W11 and confirm my findings.

I have no idea how to resolve that issue. My best (only) solution for the moment is to suggest Frank and other users that use W11, is that they install v6.00.00 and I supply a zip file for the updated compiler.

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

Hallo Thorsten.

Danke für Deine Tests, die meine eigenen bestätigen.

Heute habe ich allerdings mit W11 getestet und kann bestätigen, dass es sich so verhält wie von Frank beschrieben. Das muss bedeuten, dass MSI, das installShield verwendet, sich zwischen W10 und W11 unterschiedlich verhält. MSI ist ein Microsoft-Produkt.

Es wäre eine große Hilfe, Thorsten, wenn du W11 ausprobieren und meine Ergebnisse bestätigen könntest.

Ich habe keine Ahnung, wie ich dieses Problem lösen kann. Meine beste (einzige) Lösung im Moment ist, Frank und anderen Benutzern, die W11 verwenden, vorzuschlagen, dass sie v6.00.00 installieren und ich eine Zip-Datei für den aktualisierten Compiler bereitstelle.
Merlin
Administrator
Avatar
Gender:
Age: 24
Posts: 1408
Registered: 03 / 2005
Subject:

Re: AVRco 6.0 Test

 · 
Posted: 29.06.2023 - 18:06  ·  #51
PS. It is not the install directory. You get the same issue with the standard directory.

PS. Es ist nicht das Installationsverzeichnis. Sie erhalten das gleiche Problem mit dem Standardverzeichnis.
Merlin
Administrator
Avatar
Gender:
Age: 24
Posts: 1408
Registered: 03 / 2005
Subject:

Re: AVRco 6.0 Test

 · 
Posted: 06.07.2023 - 18:44  ·  #52
Hello all.

I have done extensive tests with the latest version of msi and install shield. Nothing I have tried works. I am totally at a loss now. The old msi worked fine, but the setting that was required to make it work no longer does. Until Microsoft resolves this (if they ever do) my only option is to make every update a full install or provide all future updates as a zip download. :-(

Ich habe umfangreiche Tests mit der neuesten Version von msi und install shield durchgeführt. Nichts, was ich ausprobiert habe, funktioniert. Ich bin jetzt völlig ratlos. Die alte msi-Datei hat gut funktioniert, aber die Einstellung, die dafür erforderlich war, funktioniert nicht mehr. Bis Microsoft dieses Problem löst (falls sie es jemals tun), bleibt mir nur die Möglichkeit, jedes Update vollständig zu installieren oder alle zukünftigen Updates als Zip-Download bereitzustellen :-(
Harry
Moderator
Avatar
Gender:
Location: zwischen Augsburg und Ulm
Age: 59
Posts: 2133
Registered: 03 / 2003
Subject:

Re: AVRco 6.0 Test

 · 
Posted: 08.07.2023 - 10:05  ·  #53
Hallo Merlin,

Update von 6.00.00 auf 6.00.02 war nur über den PED32 möglich. Der PED32new hat das Update nicht angezeigt.
Nach der Installation ist der PED32new verschwunden.

Und ich kann weiterhin folgenden Code nicht Compilieren. Es sieht so aus, als ob der Zeilenumbruch nicht erkannt wird. In einer Zeile geschrieben, kann ich es compilieren. :D
-----------------------------------------------------------------------------------------------------
Hello Merlin,

Update from 6.00.00 to 6.00.02 was only possible via the PED32. The PED32new did not display the update.
After the installation, the PED32new disappeared.

And I still cannot compile the following code. It looks like the line break is not recognised. Written in one line, I can compile it. :D
-----------------------------------------------------------------------------------------------------


Code

Function Dir2Target(Lat,Lon,Dist:Fix64):Fix64;        // Angle from actual position to target
  Var Angle      : Fix64;                             // for S and W-Positions use negative values
      DistDummy  : Fix64;                             // with Sin/Cos/ArcCos
      fLat, fLon : Fix64;
  Begin
    NG:=Copy(NMEA.GPSLat,1,2);                        // NMEA-String to Fix64
    NM:=Copy(NMEA.GPSLat,3,7);
    EG:=Copy(NMEA.GPSLon,1,3);
    EM:=Copy(NMEA.GPSLon,4,7);
    fNMEA.LatG:=StrToFix64(NG);
    fNMEA.LatM:=StrToFix64(NM);
    fNMEA.LonG:=StrToFix64(EG);
    fNMEA.LonM:=StrToFix64(EM);
    fLat:=fNMEA.LatG+(fNMEA.LatM/60);
    fLon:=fNMEA.LonG+(fNMEA.LonM/60);
    DistDummy:=Dist/6378.137;
    Angle:=Fix64ArcCos(((Fix64Sin(Lat/180*Fix64Pi))-(Fix64Sin(fLat/180*Fix64Pi)*Fix64Cos(DistDummy)))/
           (Fix64Cos(fLat/180*Fix64Pi)*Fix64Sin(DistDummy)));
    Return(Angle);
  End Dir2Target;


[Edit]
Ich habe den PED32new von einer alten Sicherung zurück kopiert und kann ihn jetzt wieder starten :)

I have copied the PED32new back from an old backup and can now start it again :)

I use Windows 7 !!!
Attachments
AVRco 6.0 Test
Filename: Bild_2023-07-08_095934035.png
Filesize: 18.21 KB
Title:
Download counter: 88
Merlin
Administrator
Avatar
Gender:
Age: 24
Posts: 1408
Registered: 03 / 2005
Subject:

Re: AVRco 6.0 Test

 · 
Posted: 08.07.2023 - 11:39  ·  #54
Hi Harry.

The msi issue is ongoing. It is actually across windows versions, but not all variants of each version are affected. I will resolve it with the next release but unfortunately the only solution will make updates take longer to download :-(. I will need to change the way I organise my updates so it won't be a quick fix, I am afraid.

Your split line problem, could you do me a favour and send your project (with the split line) via pm and I will try to resolve it.

====================================================================================

Das msi-Problem ist noch nicht gelöst. Es betrifft eigentlich alle Windows-Versionen, aber nicht alle Varianten jeder Version sind betroffen. Ich werde das Problem mit der nächsten Version beheben, aber leider wird die einzige Lösung dafür sorgen, dass das Herunterladen der Updates länger dauert :-(. Ich werde die Art und Weise, wie ich meine Updates organisiere, ändern müssen, also wird es keine schnelle Lösung sein, fürchte ich.

Könnten Sie mir einen Gefallen tun und mir Ihr Projekt (mit der geteilten Zeile) per PM schicken und ich werde versuchen, das Problem zu lösen.
TheBeginner
Schreiberling
Avatar
Gender: n/a
Location: Wunsiedel Bayern
Age: 67
Posts: 766
Registered: 06 / 2013
Subject:

Re: AVRco 6.0 Test

 · 
Posted: 09.07.2023 - 17:21  ·  #55
Hello everyone, what I noticed is that when you install the update, the entire installation folder is deleted. After that, only a few files will be installed. You can see it when you have the Installation Ortner open.
I always thought that only a few files would be replaced with an update.

Greeting Frank



Hallo allerseits, was mir aufgefallen ist, das wenn man das update Installiert, das der komplette Installations Ordner gelöscht wird. Danach werden nur ein paar Datein Installiert. Man sieht es wenn man das Installations Ortner auf hat.
Ich dachte immer das bei einen Update nur ein paar Datein ersetzt werden.

Gruß Frank
Merlin
Administrator
Avatar
Gender:
Age: 24
Posts: 1408
Registered: 03 / 2005
Subject:

Re: AVRco 6.0 Test

 · 
Posted: 10.07.2023 - 11:07  ·  #56
You are absolutely right Frank, but that no longer works on some (many) machines. I have not changed the way I do anything, but will have to in the future.

As far as I can determine, msi by default creates a log of what has been installed and when there is a new install it removes any files and directories that are not in the new install. There is a flag to tell it not to create this log but it seems that on the latest versions of msi this flag is ignored. I cannot find a way around this. The only possibility is, pain though it is, to put every file in every install. I am testing that theory today.
Selected quotes for multi-quoting:   0

Registered users in this topic

Currently no registered users in this section

The statistic shows who was online during the last 5 minutes. Updated every 90 seconds.
MySQL Queries: 16 · Cache Hits: 15   136   151 · Page-Gen-Time: 0.051084s · Memory Usage: 2 MB · GZIP: on · Viewport: SMXL-HiDPI