Skip to content

Commit

Permalink
Set minimum macOS version to 12 (#67)
Browse files Browse the repository at this point in the history
IB-7825

Signed-off-by: Raul Metsma <[email protected]>
  • Loading branch information
metsma authored Jun 18, 2024
1 parent c770d9e commit 794a5dc
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions distribution.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ https://developer.apple.com/library/mac/documentation/DeveloperTools/Reference/I
<script>
<![CDATA[
function pm_install_check() {
if(system.compareVersions(system.version.ProductVersion, '10.16.0') < 0) {
if(system.compareVersions(system.version.ProductVersion, '12.0') < 0) {
my.result.title = system.localizedString('SU_ERROR');
my.result.message = system.localizedString('SU_11');
my.result.message = system.localizedString('SU_12');
my.result.type = 'Fatal';
return false;
}
Expand Down
2 changes: 1 addition & 1 deletion resources/English.lproj/Localizable.strings
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"SU_TITLE" = "eID Software";
"SU_ERROR" = "Error";
"SU_11" = "macOS must be 11 or newer.";
"SU_12" = "macOS must be 12 or newer.";
"SU_BASE" = "Base components";
"SU_FIREFOX" = "Firefox authentication and signing support";
"SU_CHROME" = "Chrome authentication and signing support";
Expand Down
2 changes: 1 addition & 1 deletion resources/et.lproj/Localizable.strings
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"SU_TITLE" = "eID tarkvara";
"SU_ERROR" = "Viga";
"SU_11" = "macOS peab olema 11 või uuem.";
"SU_12" = "macOS peab olema 12 või uuem.";
"SU_BASE" = "Baas komponendid";
"SU_FIREFOX" = "Firefox isikutuvastamise ja allkirjastamise tugi";
"SU_CHROME" = "Chrome isikutuvastamise ja allkirjastamise tugi";
Expand Down
2 changes: 1 addition & 1 deletion resources/ru.lproj/Localizable.strings
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"SU_TITLE" = "eID программное обеспечение";
"SU_ERROR" = "Ошибка";
"SU_11" = "Версия macOS должна быть 11 или новее.";
"SU_12" = "Версия macOS должна быть 12 или новее.";
"SU_BASE" = "Базовые компоненты";
"SU_FIREFOX" = "Поддержка аутентификации и электронной подписи в Firefox";
"SU_CHROME" = "Поддержка аутентификации и электронной подписи в Chrome";
Expand Down

0 comments on commit 794a5dc

Please sign in to comment.