Differences From Artifact [57b8cc6801]:
- File
iOS/AboutController.swift
— part of check-in
[2c5f88ebb0]
at
2019-06-16 05:25:10
on branch trunk
— iOS: Migrate to Swift
This is in preparation for moving to SwiftUI at some point. (user: js, size: 3132) [annotate] [blame] [check-ins using]
To Artifact [42b59bb48a]:
- File iOS/AboutController.swift — part of check-in [eb35826d25] at 2019-06-16 17:26:34 on branch trunk — Rename project to CryptoPassphrase (user: js, size: 3246) [annotate] [blame] [check-ins using]
1 2 3 | /* * Copyright (c) 2016 - 2019 Jonathan Schleifer <js@heap.zone> * | | | 1 2 3 4 5 6 7 8 9 10 11 | /* * Copyright (c) 2016 - 2019 Jonathan Schleifer <js@heap.zone> * * https://heap.zone/git/cryptopassphrase.git * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice is present in all copies. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
︙ | ︙ | |||
36 37 38 39 40 41 42 | "<head>" + "<style type='text/css'>" + "body {" + " font-family: sans-serif;" + "}" + "" + "#title {" + | | > > | | > | | 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 | "<head>" + "<style type='text/css'>" + "body {" + " font-family: sans-serif;" + "}" + "" + "#title {" + " font-size: 2.1em;" + " font-weight: bold;" + " text-align: center;" + "}" + "" + "#copyright {" + " font-size: 0.9em;" + " font-weight: bold;" + " text-align: center;" + "}" + "</style>" + "</head>" + "<body>" + "<div id='title'>" + " CryptoPassphrase \(version ?? "")" + "</div>" + "<div id='copyright'>" + " Copyright © 2016 - 2019 Jonathan Schleifer" + "</div>" + "<p name='free_software'>" + " CryptoPassphrase is free software and the source code is" + " available at" + " <a href='https://heap.zone/cryptopassphrase/'>here</a>." + "</p>" + "<p name='objfw'>" + " It makes use of the" + " <a href='https://heap.zone/objfw/'>ObjFW</a> framework and" + " also uses its scrypt implementation." + "</p>" + "</body>" + |
︙ | ︙ |