forked from GOG-Nebula/galaxy-integration-steam
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Squash issues and update batch file
Fixed license.txt - missed a merge commit message mistake Updated auto-copy-windows to use a full path. Was not done on nebula so i didn't break the reviews, but now that squashing did that anyway, i might as well.
- Loading branch information
Showing
3 changed files
with
13 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,6 @@ MIT License | |
Copyright (c) 2021-2023, FriendsOfGalaxy, Slo, Andrew Baumher, TheSentry, Thibmo et.al. | ||
Portions of this code Copyright (c) 2015-2023, Rossen Georgiev <[email protected]> | ||
Portions of this code Copyright (c) 2017-2023, Hiroyuki Takagi | ||
>>>>>>> 4429a71 (Dealing with getting the proto files properly parsed and built so the plugin works from task.py. Not finished; switching gears to localization so i don't go insane.) | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,12 @@ | ||
@echo off | ||
setlocal | ||
setlocal enabledelayedexpansion | ||
cd /d %~dp0 | ||
|
||
set "PLUGIN_PATH=%localappdata%\GOG.com\Galaxy\plugins\installed\steam_ca27391f-2675-49b1-92c0-896d43afa4f8" | ||
|
||
rmdir /S /Q -rf "%PLUGIN_PATH%" | ||
mkdir "%PLUGIN_PATH%" | ||
powershell "[Environment]::CurrentDirectory = Get-Location; Expand-Archive '.\windows.zip' -DestinationPath '%PLUGIN_PATH%'" | ||
|
||
set zip_file=%~dp0windows.zip | ||
echo Extracting %zip_file% | ||
powershell Expand-Archive '%zip_file%' -DestinationPath '%PLUGIN_PATH%' |