Stringscan

Check-in [1317f8260d]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Prepare Windows build
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 1317f8260de6c74f0f419a1bb6f6adf38a2b168d037e87df8abe71082ee036c1
User & Date: kevin 2018-06-03 21:09:49
Context
2018-06-05
03:16
Rev bump to 1.2 for Windows, extensive re-work of deployment to use shortcuts to rubyw because of crash in linked exe without console check-in: ace55adfc0 user: kevin tags: trunk
2018-06-03
21:09
Prepare Windows build check-in: 1317f8260d user: kevin tags: trunk
21:00
More tweaks check-in: 6a1a59a51c user: kevin tags: trunk
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to buildexe.bat.

1
2
call %1\gcc  icons.o versioninfo.o stringscan.c -m64 -I%2\include\ruby-2.3.0\x64-mingw32 -I%2\include -I%2\include\ruby-2.3.0 -L%2\lib -L%2\bin -L%2%\lib\libx64-msvcrt-ruby230-dll.a -llibx64-msvcrt-ruby230   -lShlwapi -o Stringscan.exe
 
|

1
2
call %1\gcc  icons.o versioninfo.o stringscan.c -m64 -I%2\include\ruby-2.3.0\x64-mingw32 -I%2\include -I%2\include\ruby-2.3.0 -L%2\lib -L%2\bin -L%2%\lib\libx64-msvcrt-ruby230-dll.a -llibx64-msvcrt-ruby230   -lShlwapi -mwindows -o Stringscan.exe
 

Changes to versioninfo.rc.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
1 VERSIONINFO
FILEVERSION 1, 0, 0, 0
PRODUCTVERSION 1, 0, 0, 0
FILEOS 4
FILETYPE 1
{
    BLOCK "StringFileInfo" {
        BLOCK "040904E4" {
            VALUE "FileDescription", "Text Search Tool"
            VALUE "OriginalFilename", "Stringscan"
            VALUE "CompanyName", "WordTech Communications LLC"
            VALUE "FileVersion", "1.0.0"
            VALUE "LegalCopyright", "(c) 2017 WordTech Communications LLC"
            VALUE "ProductName", "Stringscan"
            VALUE "ProductVersion", "1.0.0"
        }
    }
    BLOCK "VarFileInfo" {
        VALUE "Translation", 0x409, 1252
    }
}

|
|








|
|

|






1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
1 VERSIONINFO
FILEVERSION 1, 2, 0, 0
PRODUCTVERSION 1, 2, 0, 0
FILEOS 4
FILETYPE 1
{
    BLOCK "StringFileInfo" {
        BLOCK "040904E4" {
            VALUE "FileDescription", "Text Search Tool"
            VALUE "OriginalFilename", "Stringscan"
            VALUE "CompanyName", "WordTech Communications LLC"
            VALUE "FileVersion", "1.2.0"
            VALUE "LegalCopyright", "(c) 2018 WordTech Communications LLC"
            VALUE "ProductName", "Stringscan"
            VALUE "ProductVersion", "1.2.0"
        }
    }
    BLOCK "VarFileInfo" {
        VALUE "Translation", 0x409, 1252
    }
}