Product rename (#4)

* feat: update app identifiers and development team for iOS and macOS builds

* feat: rename AmneziaVPN to DefaultVPN in iOS configuration and code references

* Complete rename

* Missed folder renamed

* Translation removed from commit

* Another step of renaming

* submodule reverted
This commit is contained in:
Yaroslav 2025-03-25 16:12:13 +01:00 committed by GitHub
parent ab9248032c
commit e12e9a6587
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
136 changed files with 588 additions and 588 deletions

View file

@ -173,7 +173,7 @@ PageType {
id: clientLogs
readonly property string title: qsTr("Client logs")
readonly property string description: qsTr("AmneziaVPN logs")
readonly property string description: qsTr("DefaultVPN logs")
readonly property bool isVisible: true
readonly property var openLogsHandler: function() {
SettingsController.openLogsFolder()
@ -181,11 +181,11 @@ PageType {
readonly property var exportLogsHandler: function() {
var fileName = ""
if (GC.isMobile()) {
fileName = "AmneziaVPN.log"
fileName = "DefaultVPN.log"
} else {
fileName = SystemController.getFileName(qsTr("Save"),
qsTr("Logs files (*.log)"),
StandardPaths.standardLocations(StandardPaths.DocumentsLocation) + "/AmneziaVPN",
StandardPaths.standardLocations(StandardPaths.DocumentsLocation) + "/DefaultVPN",
true,
".log")
}
@ -202,7 +202,7 @@ PageType {
id: serviceLogs
readonly property string title: qsTr("Service logs")
readonly property string description: qsTr("AmneziaVPN-service logs")
readonly property string description: qsTr("DefaultVPN-service logs")
readonly property bool isVisible: !GC.isMobile()
readonly property var openLogsHandler: function() {
SettingsController.openServiceLogsFolder()
@ -210,11 +210,11 @@ PageType {
readonly property var exportLogsHandler: function() {
var fileName = ""
if (GC.isMobile()) {
fileName = "AmneziaVPN-service.log"
fileName = "DefaultVPN-service.log"
} else {
fileName = SystemController.getFileName(qsTr("Save"),
qsTr("Logs files (*.log)"),
StandardPaths.standardLocations(StandardPaths.DocumentsLocation) + "/AmneziaVPN-service",
StandardPaths.standardLocations(StandardPaths.DocumentsLocation) + "/DefaultVPN-service",
true,
".log")
}