Skip to content

Commit b6144e0

Browse files
authoredDec 23, 2017
Merge pull request #83 from muammar/devel
v0.3.8
2 parents 8da40ef + 814b4a5 commit b6144e0

File tree

456 files changed

+15858
-11658
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

456 files changed

+15858
-11658
lines changed
 

‎CONTRIBUTING.md

+35-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,35 @@
1-
If you are interested in contributing to this project, please visit the [Development](https://github.com/muammar/mkchromecast/wiki/development) section in the Wiki.
1+
Contributing
2+
============
3+
4+
If you want to contribute, help me improving this application by [reporting
5+
issues](https://github.com/muammar/mkchromecast/issues), [creating pull
6+
requests](https://github.com/muammar/mkchromecast/pulls) with your development/improvement.
7+
If your case is the latter, visit
8+
[Development](https://github.com/muammar/mkchromecast/wiki/development) section
9+
in the Wiki.
10+
11+
Other way of contributing is donating on my Paypal so I can drink a beer or eat
12+
a Pizza :).
13+
[![paypal](https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif)](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=RZLF7TDCAXT9Q&lc=US&item_name=mkchromecast&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted)
14+
15+
List of contributors
16+
--------------------
17+
18+
| Author | loc | coms | fils | distribution |
19+
| ----------------------- | ------ | ---- | ---- | ------------ |
20+
| Muammar El Khatib | 354456 | 992 | 1248 | 100/98.8/99.0 |
21+
| Morten Linderud | 35 | 2 | 4 | 0.0/ 0.2/ 0.3 |
22+
| terencode | 22 | 2 | 1 | 0.0/ 0.2/ 0.1 |
23+
| Elias Tandel Barrionovo | 15 | 2 | 1 | 0.0/ 0.2/ 0.1 |
24+
| HairyFotr | 4 | 1 | 3 | 0.0/ 0.1/ 0.2 |
25+
| Maccer1 | 3 | 1 | 1 | 0.0/ 0.1/ 0.1 |
26+
| Matthew Aguirre | 1 | 1 | 1 | 0.0/ 0.1/ 0.1 |
27+
| Guillaume Roche | 1 | 1 | 1 | 0.0/ 0.1/ 0.1 |
28+
| Steindi01 | 0 | 1 | 0 | 0.0/ 0.1/ 0.0 |
29+
| Ioan Loosley | 0 | 1 | 0 | 0.0/ 0.1/ 0.0 |
30+
31+
32+
**Date**: Mon Jul 17 18:36:19 EDT 2017.
33+
34+
A more up-to-date list can be see at
35+
[mkchromecast/graphs/contributors](https://github.com/muammar/mkchromecast/graphs/contributors).

‎Makefile

+4-4
Original file line numberDiff line numberDiff line change
@@ -54,16 +54,16 @@ debug:
5454
sed -i -e 's/tray = args.tray/tray = True/g' mkchromecast/__init__.py
5555
sed -i -e 's/debug = args.debug/debug = True/g' mkchromecast/__init__.py
5656
python3 setup.py py2app
57-
cp -R /usr/local/Cellar/qt/5.8.0_2/plugins dist/mkchromecast.app/Contents/PlugIns
58-
/usr/local/Cellar/qt/5.8.0_2/bin/macdeployqt dist/mkchromecast.app
57+
cp -R /usr/local/Cellar/qt/5.9.1/plugins dist/Mkchromecast.app/Contents/PlugIns
58+
/usr/local/Cellar/qt/5.9.1/bin/macdeployqt dist/Mkchromecast.app
5959

6060
# This target creates a standalone app with debugging disabled
6161
deploy:
6262
sed -i -e 's/tray = args.tray/tray = True/g' mkchromecast/__init__.py
6363
sed -i -e 's/debug = args.debug/debug = False/g' mkchromecast/__init__.py
6464
python3 setup.py py2app
65-
cp -R /usr/local/Cellar/qt/5.8.0_2/plugins dist/mkchromecast.app/Contents/PlugIns
66-
/usr/local/Cellar/qt/5.8.0_2/bin/macdeployqt dist/mkchromecast.app -dmg
65+
cp -R /usr/local/Cellar/qt/5.9.1/plugins dist/Mkchromecast.app/Contents/PlugIns
66+
/usr/local/Cellar/qt/5.9.1/bin/macdeployqt dist/Mkchromecast.app -dmg
6767

6868
# This cleans
6969
clean:

0 commit comments

Comments
 (0)