Commit 1a07012f75d8e86077690d73917b3759fbe9b52c
1 parent
51cef1a6
Add a warning about bans and break the build on purpose.
Showing
2 changed files
with
11 additions
and
1 deletions
README.md
1 | +# WARNING: Line Corporation is currently banning people for using 3rd party clients | |
2 | + | |
3 | +There are multiple reports of accounts being permanently banned for using 3rd party clients such | |
4 | +as Pidgin. What exactly triggers the ban is unknown, but it's probably best to stick to the | |
5 | +official clients now. | |
6 | + | |
7 | +For this reason I've broken the build on purpose. If you still want to test purple-line, you | |
8 | +should be able to figure out how to fix it yourself. Use at your own risk. | |
9 | + | |
1 | 10 | purple-line |
2 | 11 | =========== |
3 | 12 | |
... | ... | @@ -157,4 +166,4 @@ Features not yet implemented |
157 | 166 | * Open video messages |
158 | 167 | * Sending/receiving "message read" notifications |
159 | 168 | * Check builds on more platforms |
160 | -* Packaging | |
161 | 169 | \ No newline at end of file |
170 | +* Packaging | ... | ... |
libpurple/Makefile
... | ... | @@ -43,6 +43,7 @@ $(MAIN): $(OBJS) $(THRIFT_DEP) |
43 | 43 | strip $(MAIN) |
44 | 44 | |
45 | 45 | .cpp.o: |
46 | + echo -e "\nWARNING: Line Corporation may permanently ban your account for using a 3rd party client. Comment this line out if you're ok with that.\n"; exit 1 | |
46 | 47 | $(CXX) $(CXXFLAGS) -std=c++11 -c $< -o $@ |
47 | 48 | |
48 | 49 | # The Thrift generator generates three files at once, this file shall represent them. | ... | ... |