https://github.com/jyhong836/vivi
Vivi is a XMPP chatting client on OS X.
https://github.com/jyhong836/vivi
app ios
Last synced: 3 months ago
JSON representation
Vivi is a XMPP chatting client on OS X.
- Host: GitHub
- URL: https://github.com/jyhong836/vivi
- Owner: jyhong836
- License: gpl-2.0
- Created: 2015-07-20T10:08:19.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-10-02T15:53:38.000Z (over 9 years ago)
- Last Synced: 2025-01-17T13:17:47.845Z (5 months ago)
- Topics: app, ios
- Language: Swift
- Homepage:
- Size: 848 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Vivi
Vivi is a XMPP chatting client at OS X. [Swiften](http://swift.im/swiften.html) is used as XMPP client library to communicate with XMPP server.The main language is Swift language. All UI code is programed with Swift. However, the XMPP tool is written with Objective-C and C++, since Swiften is a C++ based lib. The Objective-C and C++ codes are all included in ViviSwiften.framework. The framework provide the protocol for Swift based UI code. As a result, you can implement the protocol of the framework to write your own XMPP client GUI.
### Version 1.0 Features
Here list all features would be implement in Vivi version 1.0.
- [ ] Single chat window.
- [ ] Window split.
- [ ] Notification and reply on notification bar.
- [ ] Contact tag.
- [ ] AIML Chat bot assistant.
- [ ] File transfer.
- [ ] Voice transfer in one button.
- [ ] Voice call.If you have any seggestion or report a bug, please create an issue at [GitHub](https://github.com/jyhong836/Vivi/issues).
### Compile Swiften
Before starting to code, compile the Swiften lib firstly.
+ If you have not installed `libboost*` (check with `ls /usr/local/lib | grep boost`), run below in bash:
```bash
./setupSwiften.sh
```+ If you have installed `libboost*`, still run the command above, and you need to add `/usr/local/include/boost` and `/usr/local/lib/` to `Header Search Paths` and `Library Search Paths` in Xcode Building Settings.
Read `SwiftXMPP/Documentation/BuildingOnUnix` for more details about compiling Swiften.
##### Some Issues
If it occurred to be some **linker error** or **compile error** about Swiften when building Xcode target, please check your linker and c flag settings flow below steps:
1. In xcodeproject porject settings `Build Settings` tab, check the value of `Header Search Paths` and `Library Search Paths` (use the search tool in Build Settings to search the defines). They should point to the dir include Swiften's source dir `Swiften` and library `Swifetn.a`.
2. In xcodeproject porject settings `Build Settings` tab, check the value of `SWIFTEN_LINKER_FLAGS` and `SWIFTEN_C_FLAGS`.The Swiften provide a tool to print the linker and c flag messages:
```bash
cd Frameworks/bin
./swiften-config --libs # print to be linked libs
./swiften-config --cflag # print c++ flags
# ignore the -LXXX or -IXXX output, it has been set in 'Build Phase' and 'Header Search Paths'
```### Development
This client is developed by Junyuan Hong ([email protected]), started at Jul 22, 2015. If you want to take part in development, just contact me.