Skip to content

Commit

Permalink
chore: Bump version to 3.1.1.4 (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
darcywong00 authored May 5, 2022
1 parent d08470e commit a9d4ae0
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 6 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# SA - 3.1.1.4 5/7/2022
- Updates for Lift export:
- Add feature to save language preferences so they can be restored for future Lift exports
- Remove optional `<span>` elements for Gloss and Reference so there won't be extra whitespace when importing to Fieldworks
- Add feature to export SFM Rows as comma-separated values (.csv). This facilitates exporting wordlists to [Cog](https://software.sil.org/cog/)
- Remove Sign languages (`Zxxx` script) from auto-generated iso639.txt
- Developer Changes:
- Update iso639.txt
- Updated SA project so that it is now built with Microsoft Visual Studio 2022
- Update parse-langtags GitHub action to save artifacts

# SA - 3.1.1.3 3/4/2022
- Fixed bug that caused the 'Esc' key to be unresponsive during Formant Track processing.
- Fix 'Save As' dialog when using .mp3 files
Expand Down
2 changes: 1 addition & 1 deletion Install/SpeechAnalyzer.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "Speech Analyzer"
#define MyAppVersion "3.1.1.3"
#define MyAppVersion "3.1.1.4"
#define MyAppPublisher "SIL International, Inc."
#define MyAppURL "https://software.sil.org/speech-analyzer/"
#define MyAppExeName "SA.exe"
Expand Down
4 changes: 2 additions & 2 deletions Src/Lang/SA_DEU.rc
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 3,1,1,3
FILEVERSION 3,1,1,4
PRODUCTVERSION 2,0,0,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
Expand All @@ -44,7 +44,7 @@ BEGIN
BEGIN
VALUE "CompanyName", "SIL International"
VALUE "FileDescription", "Speech Analyzer Resource DLL"
VALUE "FileVersion", "v3.1.1.3"
VALUE "FileVersion", "v3.1.1.4"
VALUE "InternalName", "SA_DEU"
VALUE "LegalCopyright", "(C) 1996-2022 SIL International"
VALUE "OriginalFilename", "SA_DEU.dll"
Expand Down
4 changes: 2 additions & 2 deletions Src/Lang/SA_ENU.rc
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 3, 1, 1, 3
FILEVERSION 3, 1, 1, 4
PRODUCTVERSION 2, 0, 0, 0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
Expand All @@ -44,7 +44,7 @@ BLOCK "040904e4"
BEGIN
VALUE "CompanyName", "SIL International"
VALUE "FileDescription", "Speech Analyzer Resource DLL"
VALUE "FileVersion", "v3.1.1.3"
VALUE "FileVersion", "v3.1.1.4"
VALUE "InternalName", "SA_ENU"
VALUE "LegalCopyright", "(C) 1996-2022 SIL International"
VALUE "OriginalFilename", "SA_ENU.dll"
Expand Down
Binary file modified Src/SA/SA.rc
Binary file not shown.
2 changes: 1 addition & 1 deletion Src/SA/Sa_Doc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7302,7 +7302,7 @@ void CSaDoc::DoExportLift(CExportLiftSettings & settings) {
Lift13::header header(L"header");
header.fields = fields;

Lift13::lift document(L"Speech Analyzer 3.1.1.3");
Lift13::lift document(L"Speech Analyzer 3.1.1.4");
document.header = header;

ExportSegments(settings, document, skipEmptyGloss, szPath, dataCount, wavCount);
Expand Down

0 comments on commit a9d4ae0

Please sign in to comment.