This commit is contained in:
JHubi1 2025-03-14 21:09:42 +01:00
parent 861e6b5484
commit 14a3bf22d2
No known key found for this signature in database
GPG Key ID: F538DC3FC5B07498
4 changed files with 3 additions and 9 deletions

View File

@ -90,7 +90,7 @@ jobs:
- uses: subosito/flutter-action@v2
with:
flutter-version: 3.29.0
- name: Get flutter version with yq in one step
- name: Get flutter version
id: version
shell: pwsh
run: |

View File

@ -15,7 +15,7 @@ migration:
- platform: root
create_revision: 35c388afb57ef061d06a39b537336c87e0e3d1b1
base_revision: 35c388afb57ef061d06a39b537336c87e0e3d1b1
- platform: android
- platform: windows
create_revision: 35c388afb57ef061d06a39b537336c87e0e3d1b1
base_revision: 35c388afb57ef061d06a39b537336c87e0e3d1b1

View File

@ -9,12 +9,6 @@
<application>
<!-- Windows 10 and Windows 11 -->
<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/>
<!-- Windows 8.1 -->
<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/>
<!-- Windows 8 -->
<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/>
<!-- Windows 7 -->
<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>
</application>
</compatibility>
</assembly>

View File

@ -110,7 +110,7 @@ procedure CurUninstallStepChanged (CurUninstallStep: TUninstallStep);
case CurUninstallStep of
usPostUninstall:
begin
mres := SuppressibleMsgBox('Do you want to Remove settings?', mbConfirmation, MB_YESNO or MB_DEFBUTTON2)
mres := SuppressibleMsgBox('Do you want to Remove settings?', mbConfirmation, MB_YESNO or MB_DEFBUTTON2, IDYES)
if mres = IDYES then
DelTree(ExpandConstant('{userappdata}\JHubi1\Ollama App'), True, True, True);
end;