Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble-iphoneos.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/Source
AgeCommit message (Collapse)Author
2021-01-25modernize project config & upgrade MumbleKit to current masterAndreas Hubel
2017-09-08Use 1003001001 as the CFBundleVersion (decimalized version of 1.3.1).Mikkel Krautz
This adds a CFBundleVersion of 1003001001. The meaning behind the number is: 1 - Major version 003 - Minor version 001 - Patch version 001 - Build number
2017-09-03MUCertificateViewController: auto-size table view cells.Mikkel Krautz
2017-09-03MUCertificateViewController: avoid fancy newline formatting of cert digests.Mikkel Krautz
This only looks good on devices that use the traditional iPhone screen width. Now that we support multiple widths, avoid any fancy formatting.
2017-09-03Merge PR #115: MUMessageBubbleTableViewCell: do not hardcode screen width.Mikkel Krautz
2017-09-03MUMessageBubbleTableViewCell: do not hardcode screen width.Mikkel Krautz
2017-09-03MUCertificateCreationProgressView: re-work to scale to newer screen sizes.Mikkel Krautz
2017-09-03Merge PR #113: MUCertificateCreationView: add constraints for UITextFields ↵Mikkel Krautz
in UITableViewCell contentView.
2017-09-03MUCertificateCreationView: add constraints for UITextFields in ↵Mikkel Krautz
UITableViewCell contentView.
2017-09-03Fix text field sizing when editing an access token.Mikkel Krautz
2017-09-03Fix size of text fields when adding/editing a favourite server.Mikkel Krautz
2017-08-27Merge PR #108: Add .xib-based launch screenMikkel Krautz
2017-08-27Add .xib-based launch screenMikkel Krautz
2016-12-03Merge PR #105: Info.plist: add NSMicrophoneUsageDescription.Mikkel Krautz
2016-12-03Info.plist: add NSMicrophoneUsageDescription.Mikkel Krautz
2016-11-28MUConnectionController: respect the user's TCP mode setting.Mikkel Krautz
2016-11-27Update Mumble to use Xcode 8.1's default settings.Mikkel Krautz
2015-10-20Dependencies/plcrashreporter, .gitmodules, Mumble.xcodeproj, MUAppDelegate: ↵Mikkel Krautz
remove plcrashreporter.
2014-04-06Source/Info.plist: bump version to 1.3.1.Mikkel Krautz
2014-04-06MUImageViewController: fix warning for unused 'img' variable.Mikkel Krautz
2014-04-06MUServerButton: fix NS(U)Integer format strings.Mikkel Krautz
2014-04-06ARM64 fixes.Mikkel Krautz
2014-03-12MUActionSheet, MUActionSheetBackgroundView, MUActionSheetButton: remove.Mikkel Krautz
2014-03-12MUMessagesViewController: fix MUMessageReceiverButton size on iOS 7.1.3.0Mikkel Krautz
2014-03-12MUMessageBubbleTableViewCell, Resources: adjust chat bubbles for iOS 7 look.Mikkel Krautz
2014-03-12Add iOS 7 launch screen images and icons.Mikkel Krautz
2014-03-12MUMessageRecipientViewController: fix off-by-one error caused by manual user ↵Mikkel Krautz
index calculation.
2014-03-12MUServerViewController, MUMessageRecipientViewController: fix cell ↵Mikkel Krautz
indentation on iOS 7 via newly added MUServerTableViewCell.
2014-03-12MUCountryServerListController: fix look and feel on iOS 7.Mikkel Krautz
2014-03-12MUCertificatePreferencesViewController: fix detail disclosure accessory ↵Mikkel Krautz
button on iOS 7.
2014-03-12MUMessagesViewController: visual tweaks for iOS 7.Mikkel Krautz
2014-03-12MUConnectionController, MUHorizontalFlipTransitionDelegate: fix horizontal ↵Mikkel Krautz
flip transition on iOS 7.
2014-03-12MUMessagesViewController: iOS 7 fixes.Mikkel Krautz
2014-03-11iOS 7 UI: work in progress.Mikkel Krautz
2014-03-10MUOperatingSystem: add a mechanism for easily querying the OS version.Mikkel Krautz
2014-01-26MUApplicationDelegate: explicitly disable mixer debugging for all builds.Mikkel Krautz
2014-01-26MUApplicationDelegate: remove unused MKAudioDelegate protocol and its methods.Mikkel Krautz
2013-11-23MUConnectionController: fix alert view bug on iOS 7.Mikkel Krautz
Add a runloop wait inside hideConnectingView to fix an issue where our certificate accept alert view would be hidden (or any alert view shown almost immediately after the "connecting" alert view). Also, change the dismiss call for the "connecting" alert view to dismiss the alert view with an animation. This gives a better feel on pre-iOS 7 devices, now that we have to perform the runloop wait anyway.
2013-11-23MUAudioMixerDebugViewController: add view controller for viewing mixer debug ↵Mikkel Krautz
info.
2013-11-23Info.plist: bump version to 1.2.3.Mikkel Krautz
2013-11-23MUServerViewController: force PTT to turn off when the app is backgrounded.Mikkel Krautz
This change implements a mechanism in MUServerViewController that will turn off forceTransmit when the app is sent to the background. It also ensures that the table view is redrawn (such that the user's talk state is correctly reflected) before the app is backgrounded. This ensures that when the user returns to the app, there will not be split second where he can see himself shown as speaking in the user list, potentially causing a lot of confusion. Fixes #72.
2013-09-17Use lowercase icon filenames.v1.2.2Mikkel Krautz
2013-09-17MUCertificateDiskImportViewController: use MKCertificate (OpenSSL) for most ↵Mikkel Krautz
of the heavy lifting when importing. Fixes StartSSL client cert chain import. We now use the new certificatesWithPKCS12:password: method on MKCertificate to convert a PKCS12 blob into an array of MKCertificates, instead of depending on SecPKCS12Import for the whole import process. For the leaf, we export it and its private key as a separate PKCS12 blob and *only* use SecPKCS12Import on that, yielding us a SecIdentityRef we can import into the app's keychain. For the non-leaf certificates, we simply iterate through them, convert them to SecCertificateRefs and import them into the keychain. Fixes #71.
2013-09-17Info.plist: drop version down to 1.2.2.Mikkel Krautz
2013-09-17MUAdvancedAudioPreferencesViewController, MUApplicationDelegate: add ↵Mikkel Krautz
preference for forcing CELT mode when using Opus.
2013-09-17MUAdvancedAudioPreferencesViewController, MUApplicationDelegate: add ↵Mikkel Krautz
speakerphone mode.
2013-06-13MUApplicationDelegate: use Opus (and fall back to CELT) for the 'Low' ↵Mikkel Krautz
quality mode. Murmur 1.2.4 enforces that clients use Opus when in Opus mode. This means that the iOS client's Speex packets will be silently discarded by Murmur.
2013-06-09MUTextMessage: use passed-in date instead of [NSDate date] in factory method.Mikkel Krautz
2013-06-09Info.plist: bump version to 1.3.Mikkel Krautz
2013-06-03Mumble.xcodeproj, Info.plist: remove some iPad specific settings to ensure ↵v1.2Mikkel Krautz
the phone UI idiom is always triggered.