Skip to content

Commit

Permalink
v0.78.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
VHSgunzo committed Apr 3, 2024
1 parent 06dba96 commit 089c29c
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# v0.78.4.1

* Fix getting icon from dll when creating shortcut from `.lnk` and `.url` files
* Add DB script for `TimeShift`

# v0.78.3.9

* Update [obs-vkcapture-lw](https://github.com/VHSgunzo/obs-vkcapture-lw/releases/tag/v1.5.0) `v1.5.0`
Expand Down
3 changes: 3 additions & 0 deletions db/TimeShift.lwdb
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#DB# TimeShift # DB_EXES=('TimeShift.exe')

CPU_LIMIT='8'
10 changes: 7 additions & 3 deletions lux-wine
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

export LW_VERSION="0.78.3.9"
export LW_VERSION="0.78.4.1"
export LW_DEVELOPERS="VHSgunzo"

export RED='\033[1;91m'
Expand Down Expand Up @@ -3886,7 +3886,9 @@ shrt_from_lnk() {
*.[Ii][Cc][Oo]) SHRT_PATH="$(dirname "$lnk_exe_ico")"
exe_ico="$lnk_exe_ico"
get_shrt_data ;;
*.[Ee][Xx][Ee]) LU_EXE="$lnk_exe_ico" get_shrt_data "$lnk_exe_ico" ;;
*.[Ee][Xx][Ee]|\
*.[Dd][Ll][Ll]) LU_EXE="$lnk_exe_ico" get_shrt_data "$lnk_exe_ico" ;;
*) false ;;
esac
[ "$?" == 0 ]||get_shrt_data "$LU_EXE"
else get_shrt_data "$LU_EXE"
Expand Down Expand Up @@ -3971,7 +3973,9 @@ shrt_from_url() {
*.[Ii][Cc][Oo]) SHRT_PATH="$(dirname "$url_exe_ico")"
exe_ico="$url_exe_ico"
get_shrt_data ;;
*.[Ee][Xx][Ee]) LU_EXE="$url_exe_ico" get_shrt_data "$url_exe_ico" ;;
*.[Ee][Xx][Ee]|\
*.[Dd][Ll][Ll]) LU_EXE="$url_exe_ico" get_shrt_data "$url_exe_ico" ;;
*) false ;;
esac
[ "$?" == 0 ]||get_shrt_data "$LU_EXE"
else get_shrt_data "$LU_EXE"
Expand Down
4 changes: 2 additions & 2 deletions lwrap/PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Maintainer: VHSgunzo <vhsgunzo.github.io>

pkgname='lwrap'
pkgver='0.78.3'
pkgrel='9'
pkgver='0.78.4'
pkgrel='1'
pkgdesc='Lux Wine wrapper for RunImage container'
arch=('x86_64')
url='https://github.com/VHSgunzo/lux-wine'
Expand Down

0 comments on commit 089c29c

Please sign in to comment.