Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: tari-project/wallet-ios
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: tari-project/wallet-ios
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: feature/chat
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 19 commits
  • 190 files changed
  • 2 contributors

Commits on May 17, 2024

  1. Recipient's Address Trimming (#1062)

    - Now, the entered Tari Address on the add recipient screen will be trimmed before it will be used by the view model.
    TruszczynskiA committed May 17, 2024
    Configuration menu
    Copy the full SHA
    bba3861 View commit details
    Browse the repository at this point in the history

Commits on Jun 13, 2024

  1. Bug - No node selected (#1067)

    Fixed reported issue. Now, the random node will be selected when no node is selected on start.
    TruszczynskiA authored Jun 13, 2024
    Configuration menu
    Copy the full SHA
    d7034a4 View commit details
    Browse the repository at this point in the history

Commits on Jun 18, 2024

  1. Static analyzer warnings (#1068)

    - Removed warnings provided by static analyzer.
    TruszczynskiA authored Jun 18, 2024
    Configuration menu
    Copy the full SHA
    d9759dd View commit details
    Browse the repository at this point in the history

Commits on Jun 20, 2024

  1. Send button doesn't start transaction flow (#1070)

    - Fixed reported issue. Now, the send button on the contact book screen will again start the transaction flow with the selected contact.
    TruszczynskiA authored Jun 20, 2024
    Configuration menu
    Copy the full SHA
    d53f9f5 View commit details
    Browse the repository at this point in the history
  2. iOS 15 "deprecated" warnings (#1069)

    - Updated code to remove all deprecated warnings from the project.
    TruszczynskiA authored Jun 20, 2024
    Configuration menu
    Copy the full SHA
    cad2799 View commit details
    Browse the repository at this point in the history

Commits on Jun 24, 2024

  1. [Bug] Available to Spend Balance

    - Fixed issue with available balance. Now the time-locked tokes will be subtracted from the available balance.
    TruszczynskiA committed Jun 24, 2024
    Configuration menu
    Copy the full SHA
    82ed004 View commit details
    Browse the repository at this point in the history
  2. Address poisoning prevention (#1030)

    - Added address poisoning prevention feature. Now when the user has a contact that is similar to another, he will be asked for confirmation or to switch to another one.
    TruszczynskiA committed Jun 24, 2024
    Configuration menu
    Copy the full SHA
    be92dc7 View commit details
    Browse the repository at this point in the history
  3. FFI Update (#1039)

    - Updated FFI framework to v1.0.0-alpha.1
    - Adjusted code to the new FFI version
    - Updated min. valid FFI version to v1.0.0-alpha.1
    TruszczynskiA committed Jun 24, 2024
    Configuration menu
    Copy the full SHA
    cfa259b View commit details
    Browse the repository at this point in the history
  4. Revert "available to spend" back to "available" balance. (#1038)

    - Replaced availableToSpend property to the available variable,
    - Removed availableToSpend combined property from WalletBalance
    TruszczynskiA committed Jun 24, 2024
    Configuration menu
    Copy the full SHA
    a736838 View commit details
    Browse the repository at this point in the history
  5. Generated Asset Symbols (#1049)

    - Turned on generated asset symbols in project settings
    - Converted new Theme variables to generated asset symbols
    - Converted older vector assets to the Generated Asset Symbols
    TruszczynskiA committed Jun 24, 2024
    Configuration menu
    Copy the full SHA
    a7fb9d9 View commit details
    Browse the repository at this point in the history
  6. SwiftLint - Clean up (#1007)

    - Updated SwiftLint config
    - Fixed SwiftLint warnings
    - Removed dead code
    TruszczynskiA committed Jun 24, 2024
    Configuration menu
    Copy the full SHA
    58d51c8 View commit details
    Browse the repository at this point in the history
  7. [Chat] Conversations List (#999)

    - Implemented basic chat list functionality. The new screen shows the list of existing conversations.
    - Moved contact book from 3rd to 2nd tab
    - Moved Tari Store from 2nd tab to settings
    - Added chat to the 3rd tab
    TruszczynskiA committed Jun 24, 2024
    Configuration menu
    Copy the full SHA
    2ca388e View commit details
    Browse the repository at this point in the history
  8. [Chat] Start/Enter Conversation (#1003)

    - The user is now able to start a new conversation or continue the existing one
    - Messages in the conversation thread are sorted by date and separated by day
    TruszczynskiA committed Jun 24, 2024
    Configuration menu
    Copy the full SHA
    c3d1adb View commit details
    Browse the repository at this point in the history
  9. [Chat] Basic conversation flow (#1009)

    - The user is now able to send and receive messages
    - The user is now able to see other users' online status
    - Updated update_dependencies.sh script. Now, it will update both WalletFFI and ChatFFI frameworks.
    - Updated FFI frameworks to v1.0.0-rc.1
    TruszczynskiA committed Jun 24, 2024
    Configuration menu
    Copy the full SHA
    ce0cf7d View commit details
    Browse the repository at this point in the history
  10. [Chat] Advanced conversation flow (#1060)

    - Added send, request and gif message attachments.
    TruszczynskiA committed Jun 24, 2024
    Configuration menu
    Copy the full SHA
    651872e View commit details
    Browse the repository at this point in the history
  11. Message Attachment Overlay (#1063)

    - Replaced attachment bar with new attachment overlay
    TruszczynskiA committed Jun 24, 2024
    Configuration menu
    Copy the full SHA
    f68ecd3 View commit details
    Browse the repository at this point in the history
  12. [Chat] Replay Action (#1064)

    - Added reply action. Now user can attach another message to the chat message.
    TruszczynskiA committed Jun 24, 2024
    Configuration menu
    Copy the full SHA
    5c61221 View commit details
    Browse the repository at this point in the history
  13. Chat - Improvements (#1065)

    - Fixed the issue when the user is unable to send a message after he attaches a GIF or token request.
    - Fixed issue with transaction chat messages. Now the user can replay that kind of message.
    - Fixed issue with the list of available conversations. Now, conversations that have only transaction chat messages are visible on the list.
    - Fixed issue with GIF that came from the transaction message. Now they are parsed and presented on the conversation thread.
    - Added spinner to the GifView. The new element will be presented when GIF is downloaded from the internet.
    - Fixed issue with GIF aspect ratio. Now the view will keep the right aspect ratio on the cells that were reused by the graphic engine.
    - Unread messages count is now presented on the conversations list screen.
    - Fixed minor issues with sorting messages.
    - Fixed issue with sending empty messages. Now, the user cannot send empty messages anymore.
    - Fixed issue with scrolling to the bottom. Now, the conversation thread will scroll to the bottom correctly when the user enters the screen and when the conversation is scrolled to the very bottom and new message comes.
    - Removed the chat button from the rotary menu for the external contacts.
    - Added search feature to the "start new conversation" flow.
    - The user now can start the conversation from the "start new conversation" flow by entering a valid Tari address into the search field.
    TruszczynskiA committed Jun 24, 2024
    Configuration menu
    Copy the full SHA
    45197f7 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    7101886 View commit details
    Browse the repository at this point in the history
Loading