New build
This commit is contained in:
parent
35c85b1c86
commit
d745eb85c5
@ -8,8 +8,8 @@ Socializer's functionality is far to be perfect, in fact there are lots of metho
|
|||||||
|
|
||||||
Before downloading, take in to account the following: This source code is completely experimental. The current functionality in this application is not very useful. If you decide to use nightly build versions, take into account that this doesn't work as an application for everyday use yet.
|
Before downloading, take in to account the following: This source code is completely experimental. The current functionality in this application is not very useful. If you decide to use nightly build versions, take into account that this doesn't work as an application for everyday use yet.
|
||||||
|
|
||||||
Version: 2016.04.5
|
Version: 2016.05.25
|
||||||
Build date: Appril 5 2016
|
Build date: May 25 2016
|
||||||
[Download socializer weekly build](https://github.com/manuelcortez/socializer/blob/master/nightly/socializer-nightly-build.zip?raw=true)
|
[Download socializer weekly build](https://github.com/manuelcortez/socializer/blob/master/nightly/socializer-nightly-build.zip?raw=true)
|
||||||
|
|
||||||
I have started this effort as an open source project on Feb 13, 2016. Pull requests and bug reports are welcome. Socializer is not a definitive name for this project, it could be changed in future.
|
I have started this effort as an open source project on Feb 13, 2016. Pull requests and bug reports are welcome. Socializer is not a definitive name for this project, it could be changed in future.
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
* Posts from twitter are displayed in a better way (newline characters (\n) are handled properly instead being displayed).
|
* Posts from twitter are displayed in a better way (newline characters (\n) are handled properly instead being displayed).
|
||||||
* In the play all function, everything should be cleaned before start the new playback.
|
* In the play all function, everything should be cleaned before start the new playback.
|
||||||
* Now links included in text of a comment are included as attachments (links are "untitled" because it isn't possible to retrieve information for every link without performance issues). This is especially useful when someone posts a link from Twitter.
|
* Now links included in text of a comment are included as attachments (links are "untitled" because it isn't possible to retrieve information for every link without performance issues). This is especially useful when someone posts a link from Twitter.
|
||||||
* Chat support: There is a new kind of buffer, named chat buffer, wich allows you to have a conversation with someone of your friends. If you receive a message while socializer is opened it will create a chat buffer under chats with the last 200 messages between you and your friend. You can send a message by writing in the edit box and pressing send or enter.
|
* Chat support: There is a new kind of buffer, named chat buffer, wich allows you to have a conversation with someone of your friends. If you receive a message while socializer is opened it will create a chat buffer under chats with the last 200 messages between you and your friend. You can send a message by writing in the edit box and pressing send or enter. At the moment chats buffers can't be removed. Will be added this possibility in the near future.
|
||||||
* Added your friendlist as a buffer. You can create chats from there by using the send message button.
|
* Added your friendlist as a buffer. You can create chats from there by using the send message button.
|
||||||
|
|
||||||
## Changes for build 2016.04.5 (5/04/2016)
|
## Changes for build 2016.04.5 (5/04/2016)
|
||||||
|
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
name = "Socializer"
|
name = "Socializer"
|
||||||
version = "0.12"
|
version = "0.13"
|
||||||
author = u"Manuel Cortéz"
|
author = u"Manuel Cortéz"
|
||||||
authorEmail = "manuel@manuelcortez.net"
|
authorEmail = "manuel@manuelcortez.net"
|
||||||
copyright = u"Copyright (C) 2016, Manuel cortéz."
|
copyright = u"Copyright (C) 2016, Manuel cortéz."
|
||||||
|
20
src/setup.py
20
src/setup.py
@ -57,16 +57,16 @@ def get_documentation ():
|
|||||||
depth -= 1
|
depth -= 1
|
||||||
return answer
|
return answer
|
||||||
|
|
||||||
def get_sounds(): return []
|
def get_sounds():
|
||||||
# answer = []
|
answer = []
|
||||||
# depth = 6
|
depth = 6
|
||||||
# for root, dirs, files in os.walk('sounds'):
|
for root, dirs, files in os.walk('sounds'):
|
||||||
# if depth == 0:
|
if depth == 0:
|
||||||
# break
|
break
|
||||||
# new = (root, glob(os.path.join(root, "*.ogg")))
|
new = (root, glob(os.path.join(root, "*.ogg")))
|
||||||
# answer.append(new)
|
answer.append(new)
|
||||||
# depth -= 1
|
depth -= 1
|
||||||
# return answer
|
return answer
|
||||||
|
|
||||||
def get_locales():
|
def get_locales():
|
||||||
answer = []
|
answer = []
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{"current_version": "0.12",
|
{"current_version": "0.13",
|
||||||
"description": "Some bugfixes, included a changelog which can be accessed through the help menu.",
|
"description": "Some bugfixes, included a changelog which can be accessed through the help menu.",
|
||||||
"downloads":
|
"downloads":
|
||||||
{"Windows32": "https://github.com/manuelcortez/socializer/blob/master/nightly/socializer-nightly-build.zip?raw=true"}}
|
{"Windows32": "https://github.com/manuelcortez/socializer/blob/master/nightly/socializer-nightly-build.zip?raw=true"}}
|
Loading…
Reference in New Issue
Block a user