Compare commits
46 Commits
8b3e1b777b
...
06c50154fc
| Author | SHA1 | Date | |
|---|---|---|---|
| 06c50154fc | |||
| a70df6529f | |||
| 715affe733 | |||
| 05f428d722 | |||
| 16a635c379 | |||
| b34086fb38 | |||
| d442acce6a | |||
| d10196cc31 | |||
| 2250718e8a | |||
| 25b720cea3 | |||
| 7736b3a8a1 | |||
| bef82cb96e | |||
| 6acd7a27ff | |||
| 006c63bdc8 | |||
| 9e257d1a07 | |||
| ba4de73562 | |||
| 123b648700 | |||
| e61f9681c1 | |||
| 9dde8d4a9f | |||
| c7d94629ed | |||
| 69914107d2 | |||
| cde67d82ca | |||
| 4e826bb9ae | |||
| 18128ad9f2 | |||
| c70a3128a1 | |||
| a4f72962fd | |||
| 965308db8f | |||
| 23627322dd | |||
| a3f84d2db6 | |||
| f85a11b54d | |||
| 479a5651b6 | |||
| b43f5a423c | |||
| a605139210 | |||
| aedc053e5b | |||
| 166ad6469a | |||
| 5273d7c552 | |||
| a0b7f80a3f | |||
| 07d81e6a74 | |||
| 875948264e | |||
| 24d85389ac | |||
| 3f5771c69a | |||
| 35a7907d72 | |||
| 6d21a91df9 | |||
| be67215786 | |||
| af90ba0550 | |||
| cb755136ca |
+292
-167
File diff suppressed because it is too large
Load Diff
Executable
+59
@@ -0,0 +1,59 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
# âe contents of this file are subject to the Common Public Attribution
|
||||
# License Version 1.0 (the âcenseâ you may not use this file except in
|
||||
# compliance with the License. You may obtain a copy of the License at
|
||||
# https://opensource.org/licenses/CPAL-1.0. The License is based on the Mozilla Public License Version
|
||||
# 1.1 but Sections 14 and 15 have been added to cover use of software over a
|
||||
# computer network and provide for limited attribution for the Original
|
||||
# Developer. In addition, Exhibit A has been modified to be consistent with
|
||||
# Exhibit B.
|
||||
#
|
||||
# Software distributed under the License is distributed on an â ISâasis,
|
||||
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
# for THE SPecific language governing rights and limitations under the
|
||||
# License.
|
||||
#
|
||||
# The Original Code is audiogame manager.
|
||||
#
|
||||
# The Original Developer is not the Initial Developer and is . If
|
||||
# left blank, the Original Developer is the Initial Developer.
|
||||
#
|
||||
# The Initial Developer of the Original Code is Billy "Storm Dragon" Wolfe. All portions of
|
||||
# the code written by Billy Wolfe are Copyright (c) 2020. All Rights
|
||||
# Reserved.
|
||||
#
|
||||
# Contributor Michael Taboada.
|
||||
#
|
||||
# Attribution Copyright Notice: Audiogame manager copyright 2020 Storm Dragon. All rights reserved.
|
||||
#
|
||||
# Attribution Phrase (not exceeding 10 words): A Stormux project
|
||||
#
|
||||
# Attribution URL: https://stormgames.wolfe.casa
|
||||
#
|
||||
# Graphic Image as provided in the Covered Code, if any.
|
||||
#
|
||||
# Display of Attribution Information is required in Larger
|
||||
# Works which are defined in the CPAL as a work which combines Covered Code
|
||||
# or portions thereof with code not governed by the terms of the CPAL.
|
||||
|
||||
# Provisional new functionality to be able to source functions from agm:
|
||||
export agmNoLaunch="true"
|
||||
sourcePath="$(readlink -f "$0")"
|
||||
sourcePath="${sourcePath%/*/*.sh}/audiogame-manager.sh"
|
||||
source "${sourcePath}"
|
||||
|
||||
# All functions should be available at this point.
|
||||
export game="Conjury"
|
||||
export WINEPREFIX="$HOME/.local/wine/conjury"
|
||||
|
||||
# Make sure both nvda2speechd 64 and 32 bit are available.
|
||||
# This is needed to work around the change from 64 bit to 32 bit game.
|
||||
download "https://github.com/RastislavKish/nvda2speechd/releases/download/v0.1/nvda2speechd64.dll" "https://github.com/RastislavKish/nvda2speechd/releases/download/v0.1/nvda2speechd32.dll"
|
||||
|
||||
# Now it should be as simple as running get_steam to redownload the game.
|
||||
get_steam 2684520 "https://store.steampowered.com/app/2684520/Conjury/"
|
||||
find "$WINEPREFIX/drive_c/Program Files/Conjury" -type f -path '*/x86_64/nvdaControllerClient.dll' -exec cp -v "$cache/nvda2speechd64.dll" "{}" \;
|
||||
find "$WINEPREFIX/drive_c/Program Files/Conjury" -type f -path '*/x86/nvdaControllerClient.dll' -exec cp -v "$cache/nvda2speechd32.dll" "{}" \;
|
||||
|
||||
exit 0
|
||||
Executable
+53
@@ -0,0 +1,53 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
# âe contents of this file are subject to the Common Public Attribution
|
||||
# License Version 1.0 (the âcenseâ you may not use this file except in
|
||||
# compliance with the License. You may obtain a copy of the License at
|
||||
# https://opensource.org/licenses/CPAL-1.0. The License is based on the Mozilla Public License Version
|
||||
# 1.1 but Sections 14 and 15 have been added to cover use of software over a
|
||||
# computer network and provide for limited attribution for the Original
|
||||
# Developer. In addition, Exhibit A has been modified to be consistent with
|
||||
# Exhibit B.
|
||||
#
|
||||
# Software distributed under the License is distributed on an â ISâasis,
|
||||
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
# for THE SPecific language governing rights and limitations under the
|
||||
# License.
|
||||
#
|
||||
# The Original Code is audiogame manager.
|
||||
#
|
||||
# The Original Developer is not the Initial Developer and is . If
|
||||
# left blank, the Original Developer is the Initial Developer.
|
||||
#
|
||||
# The Initial Developer of the Original Code is Billy "Storm Dragon" Wolfe. All portions of
|
||||
# the code written by Billy Wolfe are Copyright (c) 2020. All Rights
|
||||
# Reserved.
|
||||
#
|
||||
# Contributor Michael Taboada.
|
||||
#
|
||||
# Attribution Copyright Notice: Audiogame manager copyright 2020 Storm Dragon. All rights reserved.
|
||||
#
|
||||
# Attribution Phrase (not exceeding 10 words): A Stormux project
|
||||
#
|
||||
# Attribution URL: https://stormgames.wolfe.casa
|
||||
#
|
||||
# Graphic Image as provided in the Covered Code, if any.
|
||||
#
|
||||
# Display of Attribution Information is required in Larger
|
||||
# Works which are defined in the CPAL as a work which combines Covered Code
|
||||
# or portions thereof with code not governed by the terms of the CPAL.
|
||||
|
||||
cache="${XDG_CACHE_HOME:-$HOME/.cache}/audiogame-manager"
|
||||
updateURL="https://www.kaldobsky.com/audiogames"
|
||||
updateFiles=("rettou.zip")
|
||||
|
||||
|
||||
# Download and extract updates
|
||||
for i in "${updateFiles[@]}" ; do
|
||||
rm -fv "${cache}/${i}"
|
||||
curl -L4 -C - --retry 10 --output "${cache}/$i" "${updateURL}/$i"
|
||||
unzip -o -d ~/".local/wine/aprone/drive_c/Program Files/rettou" "${cache}/${i}"
|
||||
done | dialog --progressbox "Updating Rettou, please wait..." -1 -1
|
||||
|
||||
|
||||
exit 0
|
||||
Reference in New Issue
Block a user