Skip to content

Commit

Permalink
Update 3 packages
Browse files Browse the repository at this point in the history
mingw-w64-i686-git (2.48.0.rc0.windows.1-1 -> 2.48.0.rc1.windows.1-1)
mingw-w64-i686-git-doc-html (2.48.0.rc0.windows.1-1 -> 2.48.0.rc1.windows.1-1)
mingw-w64-i686-headers-git (12.0.0.r459.g63f3f2846-2 -> 12.0.0.r459.g63f3f2846-3)

Signed-off-by: Git for Windows Build Agent <[email protected]>
  • Loading branch information
Git for Windows Build Agent committed Jan 1, 2025
1 parent b42589e commit 3dde24a
Show file tree
Hide file tree
Showing 330 changed files with 495 additions and 376 deletions.
Binary file modified cmd/git-gui.exe
Binary file not shown.
Binary file modified cmd/git-receive-pack.exe
Binary file not shown.
Binary file modified cmd/git-upload-pack.exe
Binary file not shown.
Binary file modified cmd/git.exe
Binary file not shown.
Binary file modified cmd/gitk.exe
Binary file not shown.
Binary file modified cmd/scalar.exe
Binary file not shown.
Binary file modified cmd/tig.exe
Binary file not shown.
Binary file modified git-bash.exe
Binary file not shown.
Binary file modified git-cmd.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion mingw32/bin/git-cvsserver
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ use File::Path qw/rmtree/;
use File::Basename;
use Getopt::Long qw(:config require_order no_ignore_case);

my $VERSION = '2.48.0.rc0.windows.1';
my $VERSION = '2.48.0.rc1.windows.1';

my $log = GITCVS::log->new();
my $cfg;
Expand Down
Binary file modified mingw32/bin/git-receive-pack.exe
Binary file not shown.
Binary file modified mingw32/bin/git-shell.exe
Binary file not shown.
Binary file modified mingw32/bin/git-upload-archive.exe
Binary file not shown.
Binary file modified mingw32/bin/git-upload-pack.exe
Binary file not shown.
Binary file modified mingw32/bin/git.exe
Binary file not shown.
86 changes: 62 additions & 24 deletions mingw32/bin/gitk
Original file line number Diff line number Diff line change
Expand Up @@ -2104,6 +2104,10 @@ proc confirm_popup {msg {owner .}} {
return $confirm_ok
}
proc haveselectionclipboard {} {
return [expr {[tk windowingsystem] eq "x11"}]
}
proc setoptions {} {
global use_ttk
Expand Down Expand Up @@ -2224,7 +2228,7 @@ proc makewindow {} {
global diffcontextstring diffcontext
global ignorespace
global maincursor textcursor curtextcursor
global rowctxmenu fakerowmenu mergemax wrapcomment
global rowctxmenu fakerowmenu mergemax wrapcomment wrapdefault
global highlight_files gdttype
global searchstring sstring
global bgcolor fgcolor bglist fglist diffcolors diffbgcolors selectbgcolor
Expand Down Expand Up @@ -2358,7 +2362,7 @@ proc makewindow {} {
set sha1entry .tf.bar.sha1
set entries $sha1entry
set sha1but .tf.bar.sha1label
button $sha1but -text "[mc "SHA1 ID:"] " -state disabled -relief flat \
button $sha1but -text "[mc "Commit ID:"] " -state disabled -relief flat \
-command gotocommit -width 8
$sha1but conf -disabledforeground [$sha1but cget -foreground]
pack .tf.bar.sha1label -side left
Expand Down Expand Up @@ -2566,7 +2570,7 @@ proc makewindow {} {
set ctext .bleft.bottom.ctext
text $ctext -background $bgcolor -foreground $fgcolor \
-state disabled -undo 0 -font textfont \
-yscrollcommand scrolltext -wrap none \
-yscrollcommand scrolltext -wrap $wrapdefault \
-xscrollcommand ".bleft.bottom.sbhorizontal set"
if {$have_tk85} {
$ctext conf -tabstyle wordprocessor
Expand Down Expand Up @@ -7484,7 +7488,7 @@ proc selectline {l isnew {desired_loc {}} {switch_to_patch 0}} {
global mergemax numcommits pending_select
global cmitmode showneartags allcommits
global targetrow targetid lastscrollrows
global autoselect autosellen jump_to_here
global autocopy autoselect autosellen jump_to_here
global vinlinediff
unset -nocomplain pending_select
Expand Down Expand Up @@ -7550,9 +7554,13 @@ proc selectline {l isnew {desired_loc {}} {switch_to_patch 0}} {
$sha1entry delete 0 end
$sha1entry insert 0 $id
if {$autoselect} {
if {$autoselect && [haveselectionclipboard]} {
$sha1entry selection range 0 $autosellen
}
if {$autocopy} {
clipboard clear
clipboard append [string range $id 0 [expr $autosellen - 1]]
}
rhighlight_sel $id
$ctext conf -state normal
Expand Down Expand Up @@ -8897,7 +8905,7 @@ proc sha1change {n1 n2 op} {
if {$state == "normal"} {
$sha1but conf -state normal -relief raised -text "[mc "Goto:"] "
} else {
$sha1but conf -state disabled -relief flat -text "[mc "SHA1 ID:"] "
$sha1but conf -state disabled -relief flat -text "[mc "Commit ID:"] "
}
}
Expand All @@ -8916,7 +8924,7 @@ proc gotocommit {} {
set matches [longid $id]
if {$matches ne {}} {
if {[llength $matches] > 1} {
error_popup [mc "Short SHA1 id %s is ambiguous" $id]
error_popup [mc "Short commit ID %s is ambiguous" $id]
return
}
set id [lindex $matches 0]
Expand All @@ -8933,7 +8941,7 @@ proc gotocommit {} {
return
}
if {[regexp {^[0-9a-fA-F]{4,}$} $sha1string]} {
set msg [mc "SHA1 id %s is not known" $sha1string]
set msg [mc "Commit ID %s is not known" $sha1string]
} else {
set msg [mc "Revision %s is not in the current view" $sha1string]
}
Expand Down Expand Up @@ -11717,12 +11725,13 @@ proc create_prefs_page {w} {
proc prefspage_general {notebook} {
global NS maxwidth maxgraphpct showneartags showlocalchanges
global tabstop limitdiffs autoselect autosellen extdifftool perfile_attrs
global tabstop wrapcomment wrapdefault limitdiffs
global autocopy autoselect autosellen extdifftool perfile_attrs
global hideremotes want_ttk have_ttk maxrefs web_browser
set page [create_prefs_page $notebook.general]
${NS}::label $page.ldisp -text [mc "Commit list display options"]
${NS}::label $page.ldisp -text [mc "Commit list display options"] -font mainfontbold
grid $page.ldisp - -sticky w -pady 10
${NS}::label $page.spacer -text " "
${NS}::label $page.maxwidthl -text [mc "Maximum graph width (lines)"]
Expand All @@ -11735,19 +11744,38 @@ proc prefspage_general {notebook} {
${NS}::checkbutton $page.showlocal -text [mc "Show local changes"] \
-variable showlocalchanges
grid x $page.showlocal -sticky w
${NS}::checkbutton $page.autoselect -text [mc "Auto-select SHA1 (length)"] \
-variable autoselect
spinbox $page.autosellen -from 1 -to 40 -width 4 -textvariable autosellen
grid x $page.autoselect $page.autosellen -sticky w
${NS}::checkbutton $page.hideremotes -text [mc "Hide remote refs"] \
-variable hideremotes
grid x $page.hideremotes -sticky w
${NS}::label $page.ddisp -text [mc "Diff display options"]
${NS}::checkbutton $page.autocopy -text [mc "Copy commit ID to clipboard"] \
-variable autocopy
grid x $page.autocopy -sticky w
if {[haveselectionclipboard]} {
${NS}::checkbutton $page.autoselect -text [mc "Copy commit ID to X11 selection"] \
-variable autoselect
grid x $page.autoselect -sticky w
}
spinbox $page.autosellen -from 1 -to 40 -width 4 -textvariable autosellen
${NS}::label $page.autosellenl -text [mc "Length of commit ID to copy"]
grid x $page.autosellenl $page.autosellen -sticky w
${NS}::label $page.ddisp -text [mc "Diff display options"] -font mainfontbold
grid $page.ddisp - -sticky w -pady 10
${NS}::label $page.tabstopl -text [mc "Tab spacing"]
spinbox $page.tabstop -from 1 -to 20 -width 4 -textvariable tabstop
grid x $page.tabstopl $page.tabstop -sticky w
${NS}::label $page.wrapcommentl -text [mc "Wrap comment text"]
${NS}::combobox $page.wrapcomment -values {none char word} -state readonly \
-textvariable wrapcomment
grid x $page.wrapcommentl $page.wrapcomment -sticky w
${NS}::label $page.wrapdefaultl -text [mc "Wrap other text"]
${NS}::combobox $page.wrapdefault -values {none char word} -state readonly \
-textvariable wrapdefault
grid x $page.wrapdefaultl $page.wrapdefault -sticky w
${NS}::checkbutton $page.ntag -text [mc "Display nearby tags/heads"] \
-variable showneartags
grid x $page.ntag -sticky w
Expand Down Expand Up @@ -11776,7 +11804,7 @@ proc prefspage_general {notebook} {
pack configure $page.webbrowserf.l -padx 10
grid x $page.webbrowserf $page.webbrowser -sticky ew
${NS}::label $page.lgen -text [mc "General options"]
${NS}::label $page.lgen -text [mc "General options"] -font mainfontbold
grid $page.lgen - -sticky w -pady 10
${NS}::checkbutton $page.want_ttk -variable want_ttk \
-text [mc "Use themed widgets"]
Expand All @@ -11795,7 +11823,7 @@ proc prefspage_colors {notebook} {
set page [create_prefs_page $notebook.colors]
${NS}::label $page.cdisp -text [mc "Colors: press to choose"]
${NS}::label $page.cdisp -text [mc "Colors: press to choose"] -font mainfontbold
grid $page.cdisp - -sticky w -pady 10
label $page.ui -padx 40 -relief sunk -background $uicolor
${NS}::button $page.uibut -text [mc "Interface"] \
Expand Down Expand Up @@ -11853,7 +11881,7 @@ proc prefspage_colors {notebook} {
proc prefspage_fonts {notebook} {
global NS
set page [create_prefs_page $notebook.fonts]
${NS}::label $page.cfont -text [mc "Fonts: press to choose"]
${NS}::label $page.cfont -text [mc "Fonts: press to choose"] -font mainfontbold
grid $page.cfont - -sticky w -pady 10
mkfontdisp mainfont $page [mc "Main font"]
mkfontdisp textfont $page [mc "Diff display font"]
Expand All @@ -11866,7 +11894,7 @@ proc doprefs {} {
global oldprefs prefstop showneartags showlocalchanges
global uicolor bgcolor fgcolor ctext diffcolors selectbgcolor markbgcolor
global tabstop limitdiffs autoselect autosellen extdifftool perfile_attrs
global hideremotes want_ttk have_ttk
global hideremotes want_ttk have_ttk wrapcomment wrapdefault
set top .gitkprefs
set prefstop $top
Expand All @@ -11875,7 +11903,7 @@ proc doprefs {} {
return
}
foreach v {maxwidth maxgraphpct showneartags showlocalchanges \
limitdiffs tabstop perfile_attrs hideremotes want_ttk} {
limitdiffs tabstop perfile_attrs hideremotes want_ttk wrapcomment wrapdefault} {
set oldprefs($v) [set $v]
}
ttk_toplevel $top
Expand Down Expand Up @@ -12001,7 +12029,7 @@ proc prefscan {} {
global oldprefs prefstop
foreach v {maxwidth maxgraphpct showneartags showlocalchanges \
limitdiffs tabstop perfile_attrs hideremotes want_ttk} {
limitdiffs tabstop perfile_attrs hideremotes want_ttk wrapcomment wrapdefault} {
global $v
set $v $oldprefs($v)
}
Expand All @@ -12015,7 +12043,8 @@ proc prefsok {} {
global oldprefs prefstop showneartags showlocalchanges
global fontpref mainfont textfont uifont
global limitdiffs treediffs perfile_attrs
global hideremotes
global hideremotes wrapcomment wrapdefault
global ctext
catch {destroy $prefstop}
unset prefstop
Expand Down Expand Up @@ -12064,6 +12093,12 @@ proc prefsok {} {
if {$hideremotes != $oldprefs(hideremotes)} {
rereadrefs
}
if {$wrapcomment != $oldprefs(wrapcomment)} {
$ctext tag conf comment -wrap $wrapcomment
}
if {$wrapdefault != $oldprefs(wrapdefault)} {
$ctext configure -wrap $wrapdefault
}
}
proc formatdate {d} {
Expand Down Expand Up @@ -12532,6 +12567,7 @@ set downarrowlen 5
set mingaplen 100
set cmitmode "patch"
set wrapcomment "none"
set wrapdefault "none"
set showneartags 1
set hideremotes 0
set maxrefs 20
Expand All @@ -12540,6 +12576,7 @@ set maxlinelen 200
set showlocalchanges 1
set limitdiffs 1
set datetimeformat "%Y-%m-%d %H:%M:%S"
set autocopy 0
set autoselect 1
set autosellen 40
set perfile_attrs 0
Expand Down Expand Up @@ -12637,7 +12674,8 @@ config_check_tmp_exists 50
set config_variables {
mainfont textfont uifont tabstop findmergefiles maxgraphpct maxwidth
cmitmode wrapcomment autoselect autosellen showneartags maxrefs visiblerefs
cmitmode wrapcomment wrapdefault autocopy autoselect autosellen
showneartags maxrefs visiblerefs
hideremotes showlocalchanges datetimeformat limitdiffs uicolor want_ttk
bgcolor fgcolor uifgcolor uifgdisabledcolor colors diffcolors mergecolors
markbgcolor diffcontext selectbgcolor foundbgcolor currentsearchhitbgcolor
Expand Down Expand Up @@ -12832,7 +12870,7 @@ if {$::tcl_platform(platform) eq {windows} && [file exists $gitk_prefix/etc/git.
}
}
# wait for the window to become visible
tkwait visibility .
if {![winfo viewable .]} {tkwait visibility .}
set_window_title
update
readrefs
Expand Down
Binary file modified mingw32/bin/scalar.exe
Binary file not shown.
5 changes: 2 additions & 3 deletions mingw32/include/winnt.h
Original file line number Diff line number Diff line change
Expand Up @@ -10211,11 +10211,10 @@ typedef DWORD (WINAPI *PRTL_RUN_ONCE_INIT_FN)(PRTL_RUN_ONCE, PVOID, PVOID *);
PVOID GetFiberData(VOID);

#if defined (__aarch64__) || defined(__arm64ec__)
register struct _TEB *__mingw_current_teb __asm__("x18");
FORCEINLINE struct _TEB *NtCurrentTeb(VOID)
{
struct _TEB *teb;
__asm ("mov %0, x18" : "=r" (teb));
return teb;
return __mingw_current_teb;
}
FORCEINLINE PVOID GetCurrentFiber(VOID)
{
Expand Down
Binary file modified mingw32/libexec/git-core/git-credential-wincred.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion mingw32/libexec/git-core/git-cvsserver
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ use File::Path qw/rmtree/;
use File::Basename;
use Getopt::Long qw(:config require_order no_ignore_case);

my $VERSION = '2.48.0.rc0.windows.1';
my $VERSION = '2.48.0.rc1.windows.1';

my $log = GITCVS::log->new();
my $cfg;
Expand Down
Binary file modified mingw32/libexec/git-core/git-daemon.exe
Binary file not shown.
3 changes: 2 additions & 1 deletion mingw32/libexec/git-core/git-gui.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -1366,7 +1366,6 @@ set current_diff_path {}
set is_3way_diff 0
set is_submodule_diff 0
set is_conflict_diff 0
set diff_empty_count 0
set last_revert {}
set last_revert_enc {}

Expand Down Expand Up @@ -3605,6 +3604,8 @@ $ui_diff tag configure clr1 -font font_diffbold
$ui_diff tag configure clr4 -underline 1

$ui_diff tag conf d_info -foreground blue -font font_diffbold
$ui_diff tag conf d_rescan -foreground blue -underline 1 -font font_diffbold
$ui_diff tag bind d_rescan <Button-1> { clear_diff; rescan ui_ready 0 }

$ui_diff tag conf d_cr -elide true
$ui_diff tag conf d_@ -font font_diffbold
Expand Down
Binary file modified mingw32/libexec/git-core/git-http-backend.exe
Binary file not shown.
Binary file modified mingw32/libexec/git-core/git-http-fetch.exe
Binary file not shown.
Binary file modified mingw32/libexec/git-core/git-http-push.exe
Binary file not shown.
Binary file modified mingw32/libexec/git-core/git-imap-send.exe
Binary file not shown.
Binary file modified mingw32/libexec/git-core/git-remote-ftp.exe
Binary file not shown.
Binary file modified mingw32/libexec/git-core/git-remote-ftps.exe
Binary file not shown.
Binary file modified mingw32/libexec/git-core/git-remote-http.exe
Binary file not shown.
Binary file modified mingw32/libexec/git-core/git-remote-https.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion mingw32/libexec/git-core/git-send-email
Original file line number Diff line number Diff line change
Expand Up @@ -1544,7 +1544,7 @@ sub gen_header {
@recipients = unique_email_list(@recipients,@cc,@initial_bcc);
@recipients = (map { extract_valid_address_or_die($_) } @recipients);
my $date = format_2822_time($time++);
my $gitversion = '2.48.0.rc0.windows.1';
my $gitversion = '2.48.0.rc1.windows.1';
if ($gitversion =~ m/..GIT_VERSION../) {
$gitversion = Git::version();
}
Expand Down
Binary file modified mingw32/libexec/git-core/git-sh-i18n--envsubst.exe
Binary file not shown.
Binary file modified mingw32/libexec/git-core/git-shell.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion mingw32/libexec/git-core/git-svn
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ use vars qw/ $AUTHOR $VERSION
$_revision $_repository
$_q $_authors $_authors_prog %users/;
$AUTHOR = 'Eric Wong <[email protected]>';
$VERSION = '2.48.0.rc0.windows.1';
$VERSION = '2.48.0.rc1.windows.1';

use Carp qw/croak/;
use File::Basename qw/dirname basename/;
Expand Down
Binary file modified mingw32/libexec/git-core/git.exe
Binary file not shown.
Binary file modified mingw32/libexec/git-core/headless-git.exe
Binary file not shown.
Binary file modified mingw32/libexec/git-core/scalar.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion mingw32/share/doc/git-doc/DecisionMaking.html
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ <h2 id="_other_discussion_venues">Other Discussion Venues</h2>
</div>
<div id="footer">
<div id="footer-text">
Last updated 2024-12-17 11:48:26 UTC
Last updated 2024-12-31 09:54:54 UTC
</div>
</div>
</body>
Expand Down
2 changes: 1 addition & 1 deletion mingw32/share/doc/git-doc/MyFirstContribution.html
Original file line number Diff line number Diff line change
Expand Up @@ -2239,7 +2239,7 @@ <h3 id="after-approval"><a class="anchor" href="#after-approval"></a>After Revie
</div>
<div id="footer">
<div id="footer-text">
Last updated 2024-12-17 11:48:26 UTC
Last updated 2024-12-31 09:54:54 UTC
</div>
</div>
</body>
Expand Down
2 changes: 1 addition & 1 deletion mingw32/share/doc/git-doc/MyFirstObjectWalk.html
Original file line number Diff line number Diff line change
Expand Up @@ -1675,7 +1675,7 @@ <h2 id="_wrapping_up">Wrapping Up</h2>
</div>
<div id="footer">
<div id="footer-text">
Last updated 2024-12-17 11:48:26 UTC
Last updated 2024-12-31 09:54:54 UTC
</div>
</div>
</body>
Expand Down
Loading

0 comments on commit 3dde24a

Please sign in to comment.