Skip to content

Commit

Permalink
64 bit patch (#470)
Browse files Browse the repository at this point in the history
* 64 bit patch

* Fix build issues

* minor changes

* Revert "minor changes"

This reverts commit 1b5a057.

* Revert "Fix build issues"

This reverts commit 1d1b866.

* fix code.

* Update Modify.cpp

* disable exception handling

* ResolveNuGetPackages

* Update BlockTheSpot.vcxproj

* Update BlockTheSpot.vcxproj

* Update BlockTheSpot.vcxproj

* fix appveyor compile

* full x64

---------

Co-authored-by: Khunpon Pond <[email protected]>


x64 code by @ejaxh without you this won't possible!
  • Loading branch information
Nuzair46 authored Jul 26, 2023
1 parent 3d2ebc4 commit 987cd4e
Show file tree
Hide file tree
Showing 52 changed files with 3,417 additions and 12,313 deletions.
11 changes: 3 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,14 @@
################################################################################


/src/Release
/src/Debug
*.sln
/Debug
/Release
/src/x64
/x64
*.exp
*.iobj
*.ipdb
*.pdb
*.lib
*.dll
*.aps
*.zip
/.vs
/src/.vs/BlockTheSpot/v16
/src/.vs/BlockTheSpot
/src/.vs
25 changes: 25 additions & 0 deletions BlockTheSpot.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.6.33829.357
MinimumVisualStudioVersion = 10.0.40219.1
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "BlockTheSpot", "src\BlockTheSpot.vcxproj", "{DCC156A5-5810-4C3B-B95D-A168CEAA3629}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|x64 = Debug|x64
Release|x64 = Release|x64
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{DCC156A5-5810-4C3B-B95D-A168CEAA3629}.Debug|x64.ActiveCfg = Debug|x64
{DCC156A5-5810-4C3B-B95D-A168CEAA3629}.Debug|x64.Build.0 = Debug|x64
{DCC156A5-5810-4C3B-B95D-A168CEAA3629}.Release|x64.ActiveCfg = Release|x64
{DCC156A5-5810-4C3B-B95D-A168CEAA3629}.Release|x64.Build.0 = Release|x64
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {AA3D23C9-D1E4-4F39-A15C-42B6F2FD8E76}
EndGlobalSection
EndGlobal
9 changes: 3 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,13 @@

<center>
<h1 align="center">BlockTheSpot</h1>
<h4 align="center">A multi-purpose adblocker and skip-bypass for the <strong>Spotify for Windows (32 bit)</strong> </h4>
<h4 align="center">A multi-purpose adblocker and skip-bypass for the <strong>Spotify for Windows (64 bit)</strong> </h4>
<h5 align="center">Please support Spotify by purchasing premium</h5>
<p align="center">
<strong>Last updated:</strong> 17 July 2023<br>
<strong>Last tested version:</strong>1.2.15.828.g79f41970
<strong>Last updated:</strong> 24 July 2023<br>
<strong>Last tested version:</strong>1.2.16.947.gcfbaa410
</p>
</center>
### ***
See https://github.com/mrpond/BlockTheSpot/issues/461 if you got ads back.
I will make 64 bit version when I had time.

### Features:
* Unlocks all premium features except downloads.
Expand Down
8 changes: 4 additions & 4 deletions config.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[Config]
Block_Ads=1
Block_Banner=1
Enable_Developer=1
;Log system
Log = 0
BlockAds = 1
Developer = 1
Banner = 1
Enable_Log=0
Binary file added packages/Detours.4.0.1/.signature.p7s
Binary file not shown.
Binary file added packages/Detours.4.0.1/Detours.4.0.1.nupkg
Binary file not shown.
13 changes: 13 additions & 0 deletions packages/Detours.4.0.1/build/native/Detours.targets
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" >
<ItemDefinitionGroup>
<ClCompile>
<AdditionalIncludeDirectories>$(MSBuildThisFileDirectory)..\..\lib\native\include\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
</ClCompile>
<Link>
<AdditionalLibraryDirectories Condition="'$(PlatformTarget)'=='x64'">$(MSBuildThisFileDirectory)..\..\lib\native\libs\x64;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<AdditionalLibraryDirectories Condition="'$(PlatformTarget)'=='x86'">$(MSBuildThisFileDirectory)..\..\lib\native\libs\x86;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<AdditionalDependencies>detours.lib;%(AdditionalDependencies)</AdditionalDependencies>
</Link>
</ItemDefinitionGroup>
</Project>
Loading

0 comments on commit 987cd4e

Please sign in to comment.