muting: add UI for audio/video muting

update icons for style homogeneity with the new icons for muting

Refs #75159

Change-Id: Idb946dcc987c08a529cc31a1157d7e6cc339577e
12 files changed
tree: 0b8581fae30cc15d3e09a4efa704b7ae573a3daa
  1. cmake/
  2. data/
  3. src/
  4. ui/
  5. .gitignore
  6. CMakeLists.txt
  7. COPYING
  8. Credits.rtf
  9. README.md
README.md

Ring Mac OSX


This is the official Mac port of Ring.

Requirements

  • Ring daemon
  • libRingClient (Qt5 version)
  • Qt5 Core
  • Cocoa framework

Build instructions

  1. mkdir build && cd build

  2. export CMAKE_PREFIX_PATH=<dir_to_qt5>

Now generate an Xcode project with CMake: 4. cmake ../ -DCMAKE_INSTALL_PREFIX=<libringclient_install_path> -G Xcode 5. open Ring.xcodeproj/ 6. Build and run it from Xcode. You can also generate the final Ring.app bundle.

You can also build it from the command line:

  1. cmake ../ -DCMAKE_INSTALL_PREFIX=<libringclient_install_path>
  2. make
  3. open Ring.app/

Debugging

For now, the build type of the client is "Debug" by default, however it is useful to also have the debug symbols of libRingClient. To do this, specify this when compiling libRingClient with '-DCMAKE_BUILD_TYPE=Debug' in the cmake options.