Skip to content

Commit

Permalink
Updated GitExtensions
Browse files Browse the repository at this point in the history
  • Loading branch information
bastianeicher committed Oct 8, 2024
1 parent 4bb33ff commit 9f2a829
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gui/gitextensions.watch.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ def convert(release):
download_url = next(asset['browser_download_url'] for asset in release['assets'] if str.endswith(asset['name'], '.msi'))
return {'version': version, 'download-url': download_url, 'stability': stability, 'released': released}

releases = [convert(release) for release in github.releases('gitextensions/gitextensions') if str.startswith(release['tag_name'], 'v4') and not 'alpha' in release['tag_name']]
releases = [convert(release) for release in github.releases('gitextensions/gitextensions') if str.startswith(release['tag_name'], 'v5') and not 'alpha' in release['tag_name']]
11 changes: 11 additions & 0 deletions gui/gitextensions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -338,6 +338,17 @@
<archive href="https://github.com/gitextensions/gitextensions/releases/download/v4.2.1/GitExtensions-4.2.1.17611-b0c0b2848.msi" size="23248896" type="application/x-msi" extract="SourceDir/GitExtensions"/>
</implementation>
</group>

<group arch="Windows-x86_64">
<requires interface="https://apps.0install.net/dotnet/windowsdesktop-runtime.xml" version="8.0.8..!9.0"/>
<command name="run" path="GitExtensions.exe"/>
<command name="gitex" path="GitExtensions.exe"/>

<implementation version="5.0" released="2024-09-06" stability="stable" id="sha256new_T6AG4OG642H7UVR6NPVVOE753MEX5MGJPTCROFRGJACQ3SXUWZ3Q">
<manifest-digest sha256new="T6AG4OG642H7UVR6NPVVOE753MEX5MGJPTCROFRGJACQ3SXUWZ3Q"/>
<archive href="https://github.com/gitextensions/gitextensions/releases/download/v5.0/GitExtensions-x64-5.0.0.17897-2a3b78b86.msi" size="23101440" type="application/x-msi" extract="SourceDir/GitExtensions"/>
</implementation>
</group>
</group>

<entry-point app-id="GitExtensions" binary-name="GitExtensions" command="run">
Expand Down
4 changes: 2 additions & 2 deletions gui/gitextensions.xml.template
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
<environment insert="pageant.exe" mode="replace" name="GITEXT_PAGEANT"/>
</requires>

<group arch="Windows-*">
<requires interface="https://apps.0install.net/dotnet/windowsdesktop-runtime.xml" version="6.0..!7.0"/>
<group arch="Windows-x86_64">
<requires interface="https://apps.0install.net/dotnet/windowsdesktop-runtime.xml" version="8.0.8..!9.0"/>
<command name="run" path="GitExtensions.exe"/>
<command name="gitex" path="GitExtensions.exe"/>

Expand Down

0 comments on commit 9f2a829

Please sign in to comment.