Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ Makefile
*.vcxproj.*
*.xcodeproj/
*.xcworkspace
*.log

# IDE files
.idea/
Expand Down
3 changes: 2 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
## change log

### HEAD
- Updated to Steamworks SDK v1.46.
- Updated to Steamworks SDK v1.49.
- Added SteamInventory interface.
- Added `SteamUserCallback.onAuthSessionTicket()`. (#83)

### [1.8.0]
Expand Down
2 changes: 1 addition & 1 deletion build-natives/build-win.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ solution "steamworks4j"
platforms { "x32", "x64" }

-- Premake 5.0.0 alpha 11 : SDK version needs to be specified for VS2017
systemversion("10.0.14393.0")
systemversion("10.0.18362.0")

includedirs {
"../java-wrapper/src/main/native/include/jni",
Expand Down
4 changes: 2 additions & 2 deletions java-wrapper/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,10 @@ static boolean isIsNativeAPILoaded() {
return (intp) SteamHTTP();
*/

static native long getSteamInventoryPointer(); /*
return (intp) SteamInventory();
*/

static native long getSteamMatchmakingPointer(); /*
return (intp) SteamMatchmaking();
*/
Expand Down
Loading