Skip to content

Commit d703280

Browse files
committed
bump: version 1.4.4
1 parent 8fd1a47 commit d703280

4 files changed

Lines changed: 11 additions & 11 deletions

File tree

bin/hbbuilder_win.exe

0 Bytes
Binary file not shown.

source/hbbuilder_linux.prg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ function Main()
5555
nInsW := Int( nScreenW * 0.18 ) + 20 // ~18% of screen width + 20px
5656

5757
// === Window 1: Main Bar (full screen width) ===
58-
DEFINE FORM oIDE TITLE "HbBuilder 1.4.2 - Visual IDE for Harbour" ;
58+
DEFINE FORM oIDE TITLE "HbBuilder 1.4.4 - Visual IDE for Harbour" ;
5959
SIZE nScreenW, nBarH FONT "Sans", 11 APPBAR
6060

6161
UI_FormSetPos( oIDE:hCpp, 0, 0 )
@@ -4103,7 +4103,7 @@ static function ShowAbout()
41034103

41044104
local cMsg := ""
41054105

4106-
cMsg += "Harbour Builder 1.4.2" + Chr(10)
4106+
cMsg += "Harbour Builder 1.4.4" + Chr(10)
41074107
cMsg += "Visual development environment for Harbour" + Chr(10)
41084108
cMsg += Chr(10)
41094109
cMsg += "(c) 2025-2026 The Harbour Project" + Chr(10)

source/hbbuilder_macos.prg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ function Main()
9090
nInsW := Int( nScreenW * 0.19 ) // ~19% of screen width
9191

9292
// === Window 1: Main Bar (full screen width) ===
93-
DEFINE FORM oIDE TITLE "HbBuilder 1.4.2 - Visual IDE for Harbour" ;
93+
DEFINE FORM oIDE TITLE "HbBuilder 1.4.4 - Visual IDE for Harbour" ;
9494
SIZE nScreenW, nBarH FONT "Helvetica Neue", 12 APPBAR
9595

9696
UI_FormSetPos( oIDE:hCpp, 0, 0 )
@@ -5510,7 +5510,7 @@ static function ShowAbout()
55105510

55115511
local cMsg := ""
55125512

5513-
cMsg += "Harbour Builder 1.4.2" + Chr(10)
5513+
cMsg += "Harbour Builder 1.4.4" + Chr(10)
55145514
cMsg += "Visual development environment for Harbour" + Chr(10)
55155515
cMsg += Chr(10)
55165516
cMsg += "(c) 2025-2026 The Harbour Project" + Chr(10)

source/hbbuilder_win.prg

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ function Main()
135135
// === Window 1: Main Bar (full screen width) ===
136136
cCompLabel := "Visual IDE for Harbour"
137137

138-
DEFINE FORM oIDE TITLE "HbBuilder 1.4.2 - " + cCompLabel ;
138+
DEFINE FORM oIDE TITLE "HbBuilder 1.4.4 - " + cCompLabel ;
139139
SIZE nScreenW, nBarH FONT "Segoe UI", nUIFont APPBAR
140140

141141
UI_FormSetPos( oIDE:hCpp, 0, 0 )
@@ -3733,11 +3733,11 @@ static function SelectCompiler()
37333733
cSelectedCompiler := aCompilers[nSel][1]
37343734
nSelectedCompIdx := nSel
37353735
// Update IDE title bar
3736-
UI_SetProp( oIDE:hCpp, "cText", "HbBuilder 1.4.2 - [" + aCompilers[nSel][2] + "]" )
3736+
UI_SetProp( oIDE:hCpp, "cText", "HbBuilder 1.4.4 - [" + aCompilers[nSel][2] + "]" )
37373737
else
37383738
cSelectedCompiler := ""
37393739
nSelectedCompIdx := 0
3740-
UI_SetProp( oIDE:hCpp, "cText", "HbBuilder 1.4.2 - [Auto]" )
3740+
UI_SetProp( oIDE:hCpp, "cText", "HbBuilder 1.4.4 - [Auto]" )
37413741
endif
37423742
endif
37433743
@@ -3767,7 +3767,7 @@ static function SelectFlavor()
37673767
IniWrite( "IDE", "Flavor", cSelectedFlavor )
37683768
// Force rescan so titles/labels refresh on next build
37693769
aCompilers := nil
3770-
UI_SetProp( oIDE:hCpp, "cText", "HbBuilder 1.4.2 - [" + cSelectedFlavor + "]" )
3770+
UI_SetProp( oIDE:hCpp, "cText", "HbBuilder 1.4.4 - [" + cSelectedFlavor + "]" )
37713771
MsgInfo( "Flavor set to: " + cSelectedFlavor + Chr(10) + Chr(10) + ;
37723772
"Active on next build (F9).", "Harbour Flavor" )
37733773
endif
@@ -3910,7 +3910,7 @@ static function TBRun()
39103910
aCI := GetCompilerInfo()
39113911
// Update title with compiler info on first build
39123912
if aCI != nil
3913-
UI_SetProp( oIDE:hCpp, "cText", "HbBuilder 1.4.2 - [" + aCI[2] + "]" )
3913+
UI_SetProp( oIDE:hCpp, "cText", "HbBuilder 1.4.4 - [" + aCI[2] + "]" )
39143914
endif
39153915
if aCI == nil
39163916
ShowNoCompilerDialog()
@@ -3931,7 +3931,7 @@ static function TBRun()
39313931
if aCompilers[i][1] == "bcc"
39323932
aCI := aCompilers[i]
39333933
cCompiler := "bcc"
3934-
UI_SetProp( oIDE:hCpp, "cText", "HbBuilder 1.4.2 - [" + aCI[2] + "]" )
3934+
UI_SetProp( oIDE:hCpp, "cText", "HbBuilder 1.4.4 - [" + aCI[2] + "]" )
39353935
exit
39363936
endif
39373937
next
@@ -6938,7 +6938,7 @@ static function ShowAbout()
69386938
69396939
local cMsg := ""
69406940
6941-
cMsg += "Harbour Builder 1.4.2" + Chr(10)
6941+
cMsg += "Harbour Builder 1.4.4" + Chr(10)
69426942
cMsg += "Visual development environment for Harbour" + Chr(10)
69436943
cMsg += Chr(10)
69446944
cMsg += "(c) 2025-2026 The Harbour Project" + Chr(10)

0 commit comments

Comments
 (0)