Skip to content

Commit

Permalink
Merge pull request #23 from H3rz3n/testing
Browse files Browse the repository at this point in the history
Fixed AMD iGPUs support
  • Loading branch information
H3rz3n authored Nov 25, 2024
2 parents ae81fc0 + d703b13 commit 6195fb3
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion create_archive.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/bash
clear
version="2.2.0"
version="2.2.1"

mv davinci-helper davinci-helper-${version}
tar -cvzf davinci-helper-${version}.tar.gz davinci-helper-${version}
Expand Down
Binary file removed davinci-helper-2.2.0.tar.gz
Binary file not shown.
Binary file added davinci-helper-2.2.1.tar.gz
Binary file not shown.
5 changes: 4 additions & 1 deletion davinci-helper.spec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Name: davinci-helper

# APP VERSION
Version: 2.2.0
Version: 2.2.1

# RELEASE AND DISTRIBUTION VERSION
Release: 1
Expand Down Expand Up @@ -92,6 +92,9 @@ sudo systemctl restart polkit

# CHANGELOG OF THE VERSION
%changelog
* Mon Nov 25 2024 Lorenzo Maiuri <lorenzo.maiuri@ik.me> - 2.2.1-1
- Fixed support for AMD iGPUs.

* Sun Nov 24 2024 Lorenzo Maiuri <lorenzo.maiuri@ik.me> - 2.2.0-1
- Switched from moviepy to FFPROBE for media info.
- Added support for AMD iGPU 880M and 890M.
Expand Down
2 changes: 1 addition & 1 deletion davinci-helper/data/desktop/com.davinci.helper.app.desktop
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[Desktop Entry]
Type=Application
Version=2.2.0
Version=2.2.1
Name=DaVinci Helper
Exec=davinci-helper
Icon=davinci_helper_icon.svg
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,15 +127,13 @@
<releases>

<!-- RELEASE NOTE START-->
<release version="2.2.0" date="2024-11-24">
<release version="2.2.1" date="2024-11-25">

<!-- DESCRIPTION START -->
<description>

<ul>
<li>Switched from moviepy to FFPROBE for media info</li>
<li>Added support for AMD iGPU 880M and 890M</li>
<li>Improved GPU driver installer performance</li>
<li>Fixed support for AMD iGPUs</li>
</ul>

<!-- DESCRIPTION END -->
Expand Down
2 changes: 1 addition & 1 deletion davinci-helper/davinci_helper/functions/logic/app_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
app_name = "DaVinci Helper"

# APP VERSION
app_version = "v2.2.0"
app_version = "v2.2.1"

# APP ICON
app_icon = "davinci_helper_icon"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def find_gpu_vendor ():
#-----------------------------------------------------------------------------------------------------

# ACQUIRING THE GPU VENDOR
gpu_lspci = subprocess.run("lspci | grep -i vga", shell=True, capture_output=True, text=True )
gpu_lspci = subprocess.run("lspci | grep -Ei 'vga|display'", shell=True, capture_output=True, text=True )

# MAKING LOWERCASE ALL THE STRING CHARACTER
gpu_lspci = gpu_lspci.stdout.lower()
Expand Down
2 changes: 1 addition & 1 deletion davinci-helper/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "davinci-helper"
version = "2.2.0"
version = "2.2.1"
description = "A helper app to help you install DaVinci Resolve."
readme = "README.md"
license = {text = "GPL-3.0"}
Expand Down

0 comments on commit 6195fb3

Please sign in to comment.