Delphi-PRAXiS
Seite 1 von 2  1 2      

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Sonstige Fragen zu Delphi (https://www.delphipraxis.net/19-sonstige-fragen-zu-delphi/)
-   -   Delphi Delphi Starter Edition spezielle fragen (https://www.delphipraxis.net/196329-delphi-starter-edition-spezielle-fragen.html)

KodeZwerg 12. Mai 2018 10:26

Delphi Starter Edition spezielle fragen
 
Hallo, wenn jemand die Delphi Starter Edition hat, kannst Du mir bitte den Gefallen tun und mal nach diesen Dingen schauen:
  • Mit RegEdit nach
    Delphi-Quellcode:
    HKEY/Software/Embarcadero/BDS/
    surfen und mir die Nummer nennen die da steht.
  • Mir das default Installationsverzeichniss nennen.
  • Mir die VER Nummer nennen, Tokyo hat VER320 zum Beispiel.
  • Ein neues Projekt starten, speichern, mit Notepad die .dproj Datei öffnen und mir die ProjectVersion Zahl geben.


Das wäre nett wenn mir jemand diese Infos zur Verfügung stellen kann.

Der schöne Günther 12. Mai 2018 11:04

AW: Delphi Starter Edition spezielle fragen
 
  • Unter
    Delphi-Quellcode:
    Computer\HKEY_CURRENT_USER\Software\Embarcadero\BDS
    gibt es einen Unterschlüssel mit
    Delphi-Quellcode:
    19.0
  • Mein Installationsverzeichnis ist, wie vorgeschlagen,
    Delphi-Quellcode:
    C:\Program Files (x86)\Embarcadero\Studio\19.0
  • Der Dialog unter Hilfe -> Info sagt "Embarcadero® RAD Studio 10.2 Version 25.0.29899.2631 "
  • Im Quellcode haben die Konstanten CompilerVersion und RtlVersion beide den Wert 32

Die .proj fängt folgendermaßen an:

Delphi-Quellcode:
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
    <PropertyGroup>
        <ProjectGuid>{DE493A20-5709-476F-AADD-E12EDBE1FF23}</ProjectGuid>
        <ProjectVersion>18.4</ProjectVersion>
        <FrameworkType>None</FrameworkType>
        <MainSource>Project1.dpr</MainSource>
        <Base>True</Base>
        <Config Condition="'$(Config)'==''">Debug</Config>
        <Platform Condition="'$(Platform)'==''">Win32</Platform>
        <TargetedPlatforms>1</TargetedPlatforms>
        <AppType>Console</AppType>
    </PropertyGroup>

KodeZwerg 12. Mai 2018 11:08

AW: Delphi Starter Edition spezielle fragen
 
Vielen Dank für prompte Reaktion und Thema beendet.
....ist ja identisch mit Tokyo 10.2.3, gut zu Wissen, Danke!

Uwe Raabe 12. Mai 2018 12:27

AW: Delphi Starter Edition spezielle fragen
 
Eine Liste der ProjectVersion-Werte, die mir in den letzen Jahren so untergekommen sind:
Code:
2007: N/A
2009: 12.0
2010: 12.0
XE: 12.2
XE.1: 12.3
XE2: 13.4
XE3: 14.3
XE4: 14.4
XE5: 15.1
XE6: 15.4
XE7: 16.0
XE7.1: 16.1
XE8: 17.2
10: 18.0
10.0.1: 18.1
10.1: 18.1
10.1.2: 18.2
10.2.2: 18.3
10.2.3: 18.4

KodeZwerg 12. Mai 2018 12:41

AW: Delphi Starter Edition spezielle fragen
 
Danke Uwe, falls Du Deine Liste erweitern möchtest, hier hab ich meine Informationen her.

himitsu 12. Mai 2018 12:52

AW: Delphi Starter Edition spezielle fragen
 
Wieso sollte es anders sein?

Die IDE ist immer die Selbe, egal welche Edition.

KodeZwerg 12. Mai 2018 13:15

AW: Delphi Starter Edition spezielle fragen
 
Zitat:

Zitat von Uwe Raabe (Beitrag 1401917)
Code:
10.1.2: 18.2
10.2.2: 18.3
10.2.3: 18.4

Also Delphi Berlin 10.1.2 = 18.2, bist Du Dir da sicher?


Zitat:

Zitat von himitsu (Beitrag 1401919)
Die IDE ist immer die Selbe, egal welche Edition.

Genau das wollte hiermit heraus finden :-)

Uwe Raabe 12. Mai 2018 13:27

AW: Delphi Starter Edition spezielle fragen
 
Zitat:

Zitat von KodeZwerg (Beitrag 1401922)
Also Delphi Berlin 10.1.2 = 18.2, bist Du Dir da sicher?

Jupp!

KodeZwerg 12. Mai 2018 13:35

AW: Delphi Starter Edition spezielle fragen
 
Zitat:

Delphi 2007: empty
Delphi 2009 and 2010: 12.0
Delphi XE: 12.2
Delphi XE Update1: 12.3
Delphi XE2: 13.4
Delphi XE3: 14.3
Delphi XE4: 14.4
Delphi XE4 Update1: 14.6
Delphi XE5: 15.1 or 15.3
Delphi XE6: 15.4
Delphi XE7: 16.0
Delphi XE7 Update1: 16.1
Delphi XE8: 17.2
Delphi 10 Seattle: 18.0
Delphi 10 Seattle Update1: 18.1
Delphi 10.1 Berlin: 18.1 (ouch!)
Delphi 10.2 Tokyo: 18.2
Delphi 10.2 Tokyo Update2: 18.3
Delphi 10.2 Tokyo Update3: 18.4
Ich habe mal die beiden Listen gemerged und Tokyo 10.2 fängt da auch mit 18.2 an, hat Emba da doppelt vergessen die Nummer zu erhöhen?

Wäre es demzufolge so Korrekt?:
Zitat:

Delphi 2007: empty
Delphi 2009 and 2010: 12.0
Delphi XE: 12.2
Delphi XE Update1: 12.3
Delphi XE2: 13.4
Delphi XE3: 14.3
Delphi XE4: 14.4
Delphi XE4 Update1: 14.6
Delphi XE5: 15.1 or 15.3
Delphi XE6: 15.4
Delphi XE7: 16.0
Delphi XE7 Update1: 16.1
Delphi XE8: 17.2
Delphi 10 Seattle: 18.0
Delphi 10 Seattle Update1: 18.1
Delphi 10.1 Berlin: 18.1 (ouch!) <<<-----
Delphi 10.1 Berlin Update1: 18.2
Delphi 10.2 Tokyo: 18.2 (ouch!) <<<-----
Delphi 10.2 Tokyo Update2: 18.3
Delphi 10.2 Tokyo Update3: 18.4

himitsu 12. Mai 2018 13:44

AW: Delphi Starter Edition spezielle fragen
 
Wieso vergessen?
Wenn sich nichts ändert, dann braucht man auch die Nummer nicht zu erhöhen.

2006/2007 hatten sogar die DCUs intern die selbe Version.


Alle Zeitangaben in WEZ +1. Es ist jetzt 03:09 Uhr.
Seite 1 von 2  1 2      

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024 by Thomas Breitkreuz