Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions public/locales/en/translations.json
Original file line number Diff line number Diff line change
Expand Up @@ -181,8 +181,17 @@
"Try changing your search filters": "Try changing your search filters",
"Delete contact": "Delete contact",
"Visibility": "Visibility",
"Visibility info": "Determine who can view this contact: public, private, or shared with specific groups",
"Everybody": "Everybody",
"Only me": "Only me",
"Public": "Public",
"Private": "Private",
"Groups": "Groups",
"Choose one or more groups": "Choose one or more groups",
"Selected": "Selected",
"No groups available": "No groups available",
"Select at least one group": "Select at least one group",
"Cannot create contact": "You do not have permission to create this contact",
"Open contact menu": "Open contact menu",
"Last switchboard calls": "Last switchboard calls",
"Last personal calls": "Last personal calls",
Expand Down
8 changes: 8 additions & 0 deletions public/locales/it/translations.json
Original file line number Diff line number Diff line change
Expand Up @@ -181,8 +181,16 @@
"Try changing your search filters": "Prova a cambiare i tuoi filtri di ricerca",
"Delete contact": "Elimina contact",
"Visibility": "Visibilità",
"Visibility info": "Determina chi può vedere questo contatto: pubblico, privato o condiviso con gruppi specifici",
"Only me": "Solo me",
"Public": "Public",
"Private": "Privato",
"Groups": "Gruppi",
"Choose one or more groups": "Scegli uno o più gruppi",
"Selected": "Selezionati",
"No groups available": "Nessun gruppo disponibile",
"Select at least one group": "Seleziona almeno un gruppo",
"Cannot create contact": "Non hai il permesso di creare questo contatto",
"Open contact menu": "Open contact menu",
"Last switchboard calls": "Last switchboard calls",
"Last personal calls": "Last personal calls",
Expand Down
14 changes: 9 additions & 5 deletions src/main/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -848,11 +848,15 @@ async function createNethLink(show: boolean = true) {
}

async function checkForUpdate() {
Log.info('Current app version:', app.getVersion(), 'check for updates...')
const latestVersionData = await NetworkController.instance.get(GIT_RELEASES_URL)
Log.info('Head add version:', latestVersionData.name)
if (latestVersionData.name !== ("v" + app.getVersion()) || isDev()) {
NethLinkController.instance.sendUpdateNotification()
try {
Log.info('Current app version:', app.getVersion(), 'check for updates...')
const latestVersionData = await NetworkController.instance.get(GIT_RELEASES_URL)
Log.info('Head add version:', latestVersionData.name)
if (latestVersionData.name !== ("v" + app.getVersion()) || isDev()) {
NethLinkController.instance.sendUpdateNotification()
}
} catch (error: any) {
Log.warning('Skipping update check after network error', error?.message || error)
}
}

Expand Down
9 changes: 9 additions & 0 deletions src/renderer/public/locales/en/translations.json
Original file line number Diff line number Diff line change
Expand Up @@ -181,8 +181,17 @@
"Try changing your search filters": "Try changing your search filters",
"Delete contact": "Delete contact",
"Visibility": "Visibility",
"Visibility info": "Determine who can view this contact: public, private, or shared with specific groups",
"Everybody": "Everybody",
"Only me": "Only me",
"Public": "Public",
"Private": "Private",
"Groups": "Groups",
"Choose one or more groups": "Choose one or more groups",
"Selected": "Selected",
"No groups available": "No groups available",
"Select at least one group": "Select at least one group",
"Cannot create contact": "You do not have permission to create this contact",
"Open contact menu": "Open contact menu",
"Last switchboard calls": "Last switchboard calls",
"Last personal calls": "Last personal calls",
Expand Down
11 changes: 10 additions & 1 deletion src/renderer/public/locales/it/translations.json
Original file line number Diff line number Diff line change
Expand Up @@ -181,8 +181,17 @@
"Try changing your search filters": "Prova a cambiare i tuoi filtri di ricerca",
"Delete contact": "Elimina contact",
"Visibility": "Visibilità",
"Visibility info": "Determina chi può vedere questo contatto: pubblico, privato o condiviso con gruppi specifici",
"Everybody": "Tutti",
"Only me": "Solo me",
"Public": "Public",
"Public": "Pubblico",
"Private": "Privato",
"Groups": "Gruppi",
"Choose one or more groups": "Scegli uno o più gruppi",
"Selected": "Selezionati",
"No groups available": "Nessun gruppo disponibile",
"Select at least one group": "Seleziona almeno un gruppo",
"Cannot create contact": "Non hai il permesso di creare questo contatto",
"Open contact menu": "Open contact menu",
"Last switchboard calls": "Last switchboard calls",
"Last personal calls": "Last personal calls",
Expand Down
Loading
Loading