Skip to content

Commit cc577a5

Browse files
authored
Update to version 0.3 (#4)
- Switch to using explorer command verbs for adding to the context menu. - Fix issue with packing to a glb from a special folder (e.g., Downloads) where it would open the destination folder in a new explorer window. - Add a Windows Application Packaging Project to enable submission to the Windows Store. - Add icons to context menu items.
1 parent 69e00a3 commit cc577a5

71 files changed

Lines changed: 1585 additions & 847 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
.vs
2-
bin
3-
obj
4-
*.user
5-
/Source/packages
6-
/Source/Setup/Debug
7-
/Source/Setup/Release
1+
.vs
2+
Build
3+
*.aps
4+
*.user

Figures/Pack1.png

73.2 KB
Loading

Figures/Pack2.png

4.79 KB
Loading

Figures/Unpack1.png

60.1 KB
Loading

Figures/Unpack2.png

25.6 KB
Loading

Figures/Unpack3.png

250 Bytes
Loading

README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,12 @@
22
Microsoft Windows shell extensions that pack .gltf to .glb and unpack .glb to .gltf
33

44
# Installing
5-
1. Download the latest installer `glTF-Shell-Extensions.msi` from [Releases](https://github.com/bghgary/glTF-Shell-Extensions/releases).
6-
2. Unblock the installer file to avoid security warnings.
7-
3. Double-click the installer file.
5+
This tool is distributed through the Windows Store. Install the latest version [here](https://www.microsoft.com/store/apps/9NPGVJ9N57MV).
86

97
# Usage
108
## Packing `.gltf` to `.glb`
119

12-
Right-click on a `.gltf` file and select `Pack to Binary glTF...`.
10+
Right-click on a `.gltf` file and select `Pack to Binary glTF`.
1311

1412
![](/Figures/Pack1.png)
1513

@@ -19,7 +17,7 @@ Select a name for the new `.glb` file.
1917

2018
## Unpacking `.glb` to `.gltf`
2119

22-
Right-click on a `.glb` file and select `Unpack to glTF...`.
20+
Right-click on a `.glb` file and select `Unpack to glTF`.
2321

2422
![](/Figures/Unpack1.png)
2523

Source/Assets/App.png

15.9 KB
Loading

Source/Assets/Logo.ico

1.32 KB
Binary file not shown.

Source/Directory.Build.props

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<Project>
2+
<PropertyGroup>
3+
<BuildDir>$([MSBuild]::NormalizeDirectory($(MSBuildThisFileDirectory)..))Build\$(MSBuildProjectName)\</BuildDir>
4+
5+
<BaseIntermediateOutputPath>$(BuildDir)obj\</BaseIntermediateOutputPath>
6+
<IntermediateOutputPath>$(BaseIntermediateOutputPath)$(Configuration)\$(Platform)\</IntermediateOutputPath>
7+
<OutputPath>$(BuildDir)bin\$(Configuration)\$(Platform)\</OutputPath>
8+
9+
<IntDir>$(IntermediateOutputPath)</IntDir>
10+
<OutDir>$(OutputPath)</OutDir>
11+
12+
<PlatformSpecificBundleArtifactsListDir>$(BuildDir)BundleArtifacts\</PlatformSpecificBundleArtifactsListDir>
13+
</PropertyGroup>
14+
</Project>

0 commit comments

Comments
 (0)