Merge pull request 'libcwtch go bump and server fixes' (#234) from macServerFix into trunk
continuous-integration/drone/push Build is passing Details

Reviewed-on: #234
This commit is contained in:
Sarah Jamie Lewis 2021-11-06 00:36:45 +00:00
commit edfc070d9a
11 changed files with 24 additions and 17 deletions

View File

@ -117,7 +117,7 @@ steps:
- echo $BUILDFILES_KEY > ~/id_rsab64
- base64 -d ~/id_rsab64 > ~/id_rsa
- chmod 400 ~/id_rsa
- export DIR=flwtch-`cat VERSION`-`cat BUILDDATE`
- export DIR=flwtch-`cat BUILDDATE`-`cat VERSION`
- mv deploy $DIR
- cp -r coverage/html $DIR/coverage-tests
- cp -r test/failures $DIR/test-failures || true
@ -237,7 +237,7 @@ steps:
- $Env:zipsha = $Env:zip + '.sha512'
- $Env:msix = 'cwtch-install-' + $Env:version + '.msix'
- $Env:msixsha = $Env:msix + '.sha512'
- $Env:buildname = 'flwtch-win-' + $Env:version + '-' + $Env:builddate
- $Env:buildname = 'flwtch-win-' + $Env:builddate + '-' + $Env:version
- $Env:builddir = $Env:buildname
- echo $Env:pfx > codesign.pfx.b64
- certutil -decode codesign.pfx.b64 codesign.pfx
@ -344,7 +344,7 @@ steps:
- echo $BUILDFILES_KEY > ~/id_rsab64
- base64 -d ~/id_rsab64 > ~/id_rsa
- chmod 400 ~/id_rsa
- export DIR=flwtch-macos-`cat VERSION`-`cat BUILDDATE`
- export DIR=flwtch-macos-`cat BUILDDATE`-`cat VERSION`
- mv deploy $DIR
- cd $DIR
- find . -type f -exec shasum -a 512 {} \; > ./../sha512s.txt

View File

@ -1 +1 @@
2021-11-05-01-22-v1.4.0
2021-11-05-20-13-v1.4.1

View File

@ -1 +1 @@
2021-11-05-05-23-v1.4.0
2021-11-06-00-13-v1.4.1

View File

@ -1,6 +1,7 @@
{
"@@locale": "de",
"@@last_modified": "2021-11-04T23:42:54+01:00",
"@@last_modified": "2021-11-05T21:38:20+01:00",
"copyServerKeys": "Copy keys",
"verfiyResumeButton": "Verify\/resume",
"fileCheckingStatus": "Checking download status",
"fileInterrupted": "Interrupted",

View File

@ -1,6 +1,7 @@
{
"@@locale": "en",
"@@last_modified": "2021-11-04T23:42:54+01:00",
"@@last_modified": "2021-11-05T21:38:20+01:00",
"copyServerKeys": "Copy keys",
"verfiyResumeButton": "Verify\/resume",
"fileCheckingStatus": "Checking download status",
"fileInterrupted": "Interrupted",

View File

@ -1,6 +1,7 @@
{
"@@locale": "es",
"@@last_modified": "2021-11-04T23:42:54+01:00",
"@@last_modified": "2021-11-05T21:38:20+01:00",
"copyServerKeys": "Copy keys",
"verfiyResumeButton": "Verify\/resume",
"fileCheckingStatus": "Checking download status",
"fileInterrupted": "Interrupted",

View File

@ -1,10 +1,11 @@
{
"@@locale": "fr",
"@@last_modified": "2021-11-04T23:42:54+01:00",
"verfiyResumeButton": "Verify\/resume",
"fileCheckingStatus": "Checking download status",
"fileInterrupted": "Interrupted",
"fileSavedTo": "Saved to",
"@@last_modified": "2021-11-05T21:38:20+01:00",
"copyServerKeys": "Copy keys",
"verfiyResumeButton": "Vérifier\/reprendre",
"fileCheckingStatus": "Vérification de l'état du téléchargement",
"fileInterrupted": "Interrompu",
"fileSavedTo": "Enregistré dans",
"plainServerDescription": "Nous vous recommandons de protéger vos serveurs Cwtch par un mot de passe. Si vous ne définissez pas de mot de passe sur ce serveur, toute personne ayant accès à cet appareil peut être en mesure d'accéder aux informations concernant ce serveur, y compris les clés cryptographiques sensibles.",
"encryptedServerDescription": "Le chiffrement dun serveur avec un mot de passe le protège des autres personnes qui peuvent également utiliser cet appareil. Les serveurs cryptés ne peuvent pas être déchiffrés, affichés ou accessibles tant que le mot de passe correct nest pas entré pour les déverrouiller.",
"deleteServerConfirmBtn": "Supprimer vraiment le serveur",

View File

@ -1,6 +1,7 @@
{
"@@locale": "it",
"@@last_modified": "2021-11-04T23:42:54+01:00",
"@@last_modified": "2021-11-05T21:38:20+01:00",
"copyServerKeys": "Copy keys",
"verfiyResumeButton": "Verify\/resume",
"fileCheckingStatus": "Checking download status",
"fileInterrupted": "Interrupted",

View File

@ -1,6 +1,7 @@
{
"@@locale": "pl",
"@@last_modified": "2021-11-04T23:42:54+01:00",
"@@last_modified": "2021-11-05T21:38:20+01:00",
"copyServerKeys": "Copy keys",
"verfiyResumeButton": "Verify\/resume",
"fileCheckingStatus": "Checking download status",
"fileInterrupted": "Interrupted",

View File

@ -1,6 +1,7 @@
{
"@@locale": "pt",
"@@last_modified": "2021-11-04T23:42:54+01:00",
"@@last_modified": "2021-11-05T21:38:20+01:00",
"copyServerKeys": "Copy keys",
"verfiyResumeButton": "Verify\/resume",
"fileCheckingStatus": "Checking download status",
"fileInterrupted": "Interrupted",

View File

@ -59,7 +59,7 @@ class _ServerRowState extends State<ServerRow> {
// Copy server button
IconButton(
enableFeedback: true,
tooltip: AppLocalizations.of(context)!.copyAddress,
tooltip: AppLocalizations.of(context)!.copyServerKeys,
icon: Icon(CwtchIcons.address_copy_2, color: Provider.of<Settings>(context).current().mainTextColor()),
onPressed: () {
Clipboard.setData(new ClipboardData(text: server.serverBundle));