-
Notifications
You must be signed in to change notification settings - Fork 668
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Adrien JUND
committed
Sep 20, 2016
1 parent
a9bea0c
commit 42e7a7b
Showing
10 changed files
with
73 additions
and
21 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
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
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
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
; *** dokan1.ddf example *** | ||
; | ||
.OPTION EXPLICIT ; Generate errors | ||
.Set CabinetFileCountThreshold=0 | ||
.Set FolderFileCountThreshold=0 | ||
.Set FolderSizeThreshold=0 | ||
.Set MaxCabinetSize=0 | ||
.Set MaxDiskFileCount=0 | ||
.Set MaxDiskSize=0 | ||
.Set CompressionType=MSZIP | ||
.Set Cabinet=on | ||
.Set Compress=on | ||
; Specify file name for new cab file | ||
.Set CabinetNameTemplate=Dokanx64.cab | ||
; Specify the subdirectory for the files. | ||
; Your cab file should not have files at the root level, | ||
; and each driver package must be in a separate subfolder. | ||
.Set DestinationDir=Dokanx64 | ||
; Specify files to be included in cab file | ||
..\x64\Win10Release\sys\dokan.inf | ||
..\x64\Win10Release\sys\dokan1.sys |
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
; *** dokan1.ddf example *** | ||
; | ||
.OPTION EXPLICIT ; Generate errors | ||
.Set CabinetFileCountThreshold=0 | ||
.Set FolderFileCountThreshold=0 | ||
.Set FolderSizeThreshold=0 | ||
.Set MaxCabinetSize=0 | ||
.Set MaxDiskFileCount=0 | ||
.Set MaxDiskSize=0 | ||
.Set CompressionType=MSZIP | ||
.Set Cabinet=on | ||
.Set Compress=on | ||
; Specify file name for new cab file | ||
.Set CabinetNameTemplate=Dokanx86.cab | ||
; Specify the subdirectory for the files. | ||
; Your cab file should not have files at the root level, | ||
; and each driver package must be in a separate subfolder. | ||
.Set DestinationDir=Dokanx86 | ||
; Specify files to be included in cab file | ||
..\Win32\Win10Release\sys\dokan.inf | ||
..\Win32\Win10Release\sys\dokan1.sys |
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,19 +1,19 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Include> | ||
<?define ProductName="Dokan Library" ?> | ||
<?define ProductCodeX64="{65A3A964-3DC3-0100-0000-160729112819}" ?> | ||
<?define ProductCodeX64="{65A3A964-3DC3-0100-0000-160920154832}" ?> | ||
<?define UpgradeCodeX64="{2EF80C64-08A6-4FE1-BE92-13FD293C831B}" ?> | ||
<?define ProductCodeX86="{65A3A986-3DC3-0100-0000-160729112819}" ?> | ||
<?define ProductCodeX86="{65A3A986-3DC3-0100-0000-160920154832}" ?> | ||
<?define UpgradeCodeX86="{2EF80C86-08A6-4FE1-BE92-13FD293C831B}" ?> | ||
<?define ProviderKey="{5F030BFA-CE6E-408A-9694-F593B319DBBE}" ?> | ||
<?define BundleUpgradeCode="{A30D29CD-FA58-4542-8D41-7EDD1FB1EE5A}" ?> | ||
<?define BaseVersion="1.0.0" ?> | ||
<?define MajorVersion="1" ?> | ||
<?define BuildVersion="4000" ?> | ||
<?define BuildVersion="5000" ?> | ||
<?define CompanyName="Dokany Project" ?> | ||
<?define ShortCompanyName="Dokany Project" ?> | ||
<?define UpdateURL="https://dokan-dev.github.io/" ?> | ||
<?define InstallerVersion="500" ?> | ||
<?define Compressed="no" ?> | ||
<?define Compressed="yes" ?> | ||
<?define BuildCygwin="true" ?> | ||
</Include> |
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
42e7a7b
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yay, you made it at last! Congratulations on finishing the 1.0 final release!
42e7a7b
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
took time ^^ but it is part of your work also ! @viciousviper ! Ty !