From a9d4ae0ef38c65f19d21ad0b1770bf3cc6327195 Mon Sep 17 00:00:00 2001 From: Darcy Wong Date: Thu, 5 May 2022 20:35:57 +0700 Subject: [PATCH] chore: Bump version to 3.1.1.4 (#87) --- CHANGELOG.md | 11 +++++++++++ Install/SpeechAnalyzer.iss | 2 +- Src/Lang/SA_DEU.rc | 4 ++-- Src/Lang/SA_ENU.rc | 4 ++-- Src/SA/SA.rc | Bin 5176 -> 5176 bytes Src/SA/Sa_Doc.cpp | 2 +- 6 files changed, 17 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 07051260..fee0996c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 `` 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 diff --git a/Install/SpeechAnalyzer.iss b/Install/SpeechAnalyzer.iss index e05a5dde..5eaed9e1 100644 --- a/Install/SpeechAnalyzer.iss +++ b/Install/SpeechAnalyzer.iss @@ -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" diff --git a/Src/Lang/SA_DEU.rc b/Src/Lang/SA_DEU.rc index 2cd9f424..27a7c8b7 100644 --- a/Src/Lang/SA_DEU.rc +++ b/Src/Lang/SA_DEU.rc @@ -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 @@ -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" diff --git a/Src/Lang/SA_ENU.rc b/Src/Lang/SA_ENU.rc index ddd57ef0..fcc96f23 100644 --- a/Src/Lang/SA_ENU.rc +++ b/Src/Lang/SA_ENU.rc @@ -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 @@ -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" diff --git a/Src/SA/SA.rc b/Src/SA/SA.rc index 73db19d0d1ba1de0b7b42e826a283eb2b48d0e37..cfcbdee0e82a7bbcbb5b9d9bedcc3832d2951ad6 100644 GIT binary patch delta 25 hcmdm?u|s3SA`V8A&5JqgnHfzcPvq6zEWo3|0RVFC2Z8_q delta 25 hcmdm?u|s3SA`V95&5JqgnHh~IPvq6zEWo3|0RVE+2Y>(o diff --git a/Src/SA/Sa_Doc.cpp b/Src/SA/Sa_Doc.cpp index 2f039cef..96a3dca0 100644 --- a/Src/SA/Sa_Doc.cpp +++ b/Src/SA/Sa_Doc.cpp @@ -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);