###Scripts version 2076###

This commit is contained in:
castro-fidel 2022-01-26 18:49:15 +03:00
parent cb7dffc70a
commit 9df1ff96dd
4 changed files with 10 additions and 4 deletions

@ -2,6 +2,9 @@ You can help us in the development of the project on the website: https://boosty
----------------------------------------- -----------------------------------------
Changelog: Changelog:
###Scripts version 2076###
* HOTFIX - create symlink
###Scripts version 2075### ###Scripts version 2075###
* HOTFIX - fixed OpenGL mode * HOTFIX - fixed OpenGL mode

@ -2,8 +2,11 @@
----------------------------------------- -----------------------------------------
История изменений: История изменений:
###Scripts version 2076###
* HOTFIX - создание симлинков
###Scripts version 2075### ###Scripts version 2075###
* HOTFIX - исправлен режим запуска OpenGL * HOTFIX - исправлен режим запуска OpenGL
###Scripts version 2072-2074### ###Scripts version 2072-2074###
* HOTFIX - исправлен запуск League of Legends * HOTFIX - исправлен запуск League of Legends

@ -76,8 +76,8 @@ try_remove_dir () {
export -f try_remove_dir export -f try_remove_dir
try_force_link_file () { try_force_link_file () {
if [ -z "$2" ] ; then if [ ! -f "$1" ] ; then print_info "file $1 not found for link"
print_error "no way to link file $1" elif [ -z "$2" ] ; then print_error "no way to link file $1"
else else
ln -sf "$1" "$2" ln -sf "$1" "$2"
[ "$?" != 0 ] && print_error "failed to link file $1 to $2" || return 0 [ "$?" != 0 ] && print_error "failed to link file $1 to $2" || return 0

@ -1,6 +1,6 @@
#!/bin/bash #!/bin/bash
#Author: Castro-Fidel (PortWINE-Linux.ru) #Author: Castro-Fidel (PortWINE-Linux.ru)
#SCRIPTS_NEXT_VERSION=2075 #SCRIPTS_NEXT_VERSION=2076
#PORT_NEXT_VERSION=97 #PORT_NEXT_VERSION=97
######################################################################## ########################################################################
export PW_MANGOHUD=1 export PW_MANGOHUD=1