Skip to content

Commit

Permalink
Bump 3.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
halx99 committed Mar 12, 2024
1 parent 610b101 commit fb0c5ef
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# wsLongPaths
[![Windows_x86 Build Status](https://github.com/simdsoft/wsLongPaths/workflows/windows_x86/badge.svg)](https://github.com/simdsoft/wsLongPaths/actions?query=workflow%3Awindows_x86)
[![Windows_x64 Build Status](https://github.com/simdsoft/wsLongPaths/workflows/windows_x64/badge.svg)](https://github.com/simdsoft/wsLongPaths/actions?query=workflow%3Awindows_x64)
[![Release](https://img.shields.io/github/v/release/simdsoft/wsLongPaths?include_prereleases&label=release)](../../releases/latest)
[![Downloads](https://img.shields.io/github/downloads/simdsoft/wsLongPaths/total.svg?label=Downloads&colorB=orange)](../../releases/latest)
# wsls
[![Windows_x86 Build Status](https://github.com/simdsoft/wsls/workflows/windows_x86/badge.svg)](https://github.com/simdsoft/wsls/actions?query=workflow%3Awindows_x86)
[![Windows_x64 Build Status](https://github.com/simdsoft/wsls/workflows/windows_x64/badge.svg)](https://github.com/simdsoft/wsls/actions?query=workflow%3Awindows_x64)
[![Release](https://img.shields.io/github/v/release/simdsoft/wsls?include_prereleases&label=release)](../../releases/latest)
[![Downloads](https://img.shields.io/github/downloads/simdsoft/wsls/total.svg?label=Downloads&colorB=orange)](../../releases/latest)

* Purpose: This patch should make any x86/x64 applications support LongPath on win7+
* Feature: This patch can make Android ndk r14 or later support LongPaths on win7+ x64
Expand Down
4 changes: 2 additions & 2 deletions dists/readme.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
* Revision: 3.5
* Since v3.4, download ```ndk-wsls-3.x.zip``` (all binaries were codesignd with digicert issued by trusted authority, such as `Digicert Inc.`) from [releases](https://github.com/simdsoft/wsLongPaths/releases) or build all binaries by youself except gnumake.exe with ```vs2019 + cmake``` before run install.bat, see follow build steps:
* Since v3.4, download ```ndk-wsls-3.x.zip``` (all binaries were codesignd with digicert issued by trusted authority, such as `Digicert Inc.`) from [releases](https://github.com/simdsoft/wsls/releases) or build all binaries by youself except gnumake.exe with ```vs2019 + cmake``` before run install.bat, see follow build steps:
1. Ensure vs2019+ and cmake-3.10 or later installed
2. Run follow commands:
```bat
git clone https://github.com/simdsoft/wsls
cd wsLongPaths
cd wsls
rem Build x86 binaries, android sdk require x86 patch binaries
cmake -B build_x86 -A Win32
Expand Down
4 changes: 2 additions & 2 deletions libwsls/libwsls.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

// TODO: reference any additional headers you need in STDAFX.H
// and not in this file
// version: V3.4.x
// version: V3.5.x
#include <Shlwapi.h>
#include "libwsls.h"
#pragma comment(lib, "Shlwapi.lib")
Expand Down Expand Up @@ -296,7 +296,7 @@ namespace wsls {
{
uncPath.resize(offset + cch);
#if defined(_DEBUG)
_wsystem(sfmt(LR"(echo "wsLongPath.dll: convert NON-UNC long path to UNC Path: %s")", uncPath.c_str()).c_str());
_wsystem(sfmt(LR"(echo "wsls.dll: convert NON-UNC long path to UNC Path: %s")", uncPath.c_str()).c_str());
#endif
return uncPath;
}
Expand Down
Binary file modified test/test.cpp
Binary file not shown.
2 changes: 1 addition & 1 deletion wsls-core/stdafx.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// stdafx.cpp : source file that includes just the standard includes
// wsLongPaths.pch will be the pre-compiled header
// wsls.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information

#include "stdafx.h"
Expand Down

0 comments on commit fb0c5ef

Please sign in to comment.