19 lines
3.0 KiB
Typst
19 lines
3.0 KiB
Typst
#import "style.typ": abstract
|
|
|
|
#let pl_body = "Niniejsza praca dotyczy implementacji mobilnej aplikacji do współtworzenia notatek tekstowych w architekturze Peer-To-Peer, przeznaczonej na urządzenia z systemem iOS. Główną motywacją podjętego tematu jest ograniczenie współczesnych narzędzi do wspólnej edycji dokumentów, takich jak Google Docs, które wymagają stałego dostępu do Internetu oraz pośrednictwa scentralizowanych serwerów - nawet gdy wszyscy współpracownicy znajdują się w tej samej sieci lokalnej. Zaproponowane rozwiązanie umożliwia bezpośrednią komunikację między urządzeniami bez udziału zewnętrznej infrastruktury sieciowej. Aplikacja została zbudowana w języku Swift z wykorzystaniem frameworka SwiftUI oraz Multipeer Connectivity. W pracy omówiono teoretyczne podstawy systemów synchronizacji danych w czasie rzeczywistym, a także możliwości komunikacji P2P dostępne na platformach firmy Apple."
|
|
|
|
#let en_body = "This thesis concerns the implementation of a mobile peer-to-peer collaborative note-taking application for devices running iOS. The primary motivation is to address a fundamental limitation of contemporary collaborative editing tools such as Google Docs, which require continuous Internet access and rely on centralized servers to mediate all data exchange - even when all collaborating users are present on the same local network. The proposed solution enables direct device-to-device communication, eliminating the need for any external network infrastructure. The application was built in Swift using the SwiftUI framework and Multipeer Connectivity framework. The thesis covers the theoretical foundations of real-time data synchronization systems, as well as the peer-to-peer communication capabilities available within the Apple's systems."
|
|
|
|
#let pl_keywords = "Peer-To-Peer, współtworzenie dokumentów, iOS, Multipeer Connectivity, Swift, SwiftUI, ewentualna zbieżność"
|
|
|
|
#let en_keywords = "Peer-To-Peer, collaborative editing, iOS, Multipeer Connectivity, Swift, SwiftUI, eventual consistency"
|
|
|
|
#abstract(
|
|
pl-body: pl_body,
|
|
pl-keywords: pl_keywords,
|
|
en-body: [
|
|
This thesis concerns the implementation of a mobile peer-to-peer collaborative note-taking application for devices running iOS. The primary motivation is to address a fundamental limitation of contemporary collaborative editing tools such as Google Docs, which require continuous Internet access and rely on centralized servers to mediate all data exchange - even when all collaborating users are present on the same local network. The proposed solution enables direct device-to-device communication, eliminating the need for any external network infrastructure. The application was built in Swift using the SwiftUI framework and Multipeer Connectivity framework. The thesis covers the theoretical foundations of real-time data synchronization systems, as well as the peer-to-peer communication capabilities available within the Apple's systems.
|
|
],
|
|
en-keywords: en_keywords,
|
|
)
|