New build

This commit is contained in:
Manuel Cortez 2016-05-25 14:52:55 -05:00
parent 35c85b1c86
commit d745eb85c5
6 changed files with 15 additions and 15 deletions

View File

@ -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.
Version: 2016.04.5
Build date: Appril 5 2016
Version: 2016.05.25
Build date: May 25 2016
[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.

View File

@ -10,7 +10,7 @@
* 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.
* 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.
## Changes for build 2016.04.5 (5/04/2016)

Binary file not shown.

View File

@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
name = "Socializer"
version = "0.12"
version = "0.13"
author = u"Manuel Cortéz"
authorEmail = "manuel@manuelcortez.net"
copyright = u"Copyright (C) 2016, Manuel cortéz."

View File

@ -57,16 +57,16 @@ def get_documentation ():
depth -= 1
return answer
def get_sounds(): return []
# answer = []
# depth = 6
# for root, dirs, files in os.walk('sounds'):
# if depth == 0:
# break
# new = (root, glob(os.path.join(root, "*.ogg")))
# answer.append(new)
# depth -= 1
# return answer
def get_sounds():
answer = []
depth = 6
for root, dirs, files in os.walk('sounds'):
if depth == 0:
break
new = (root, glob(os.path.join(root, "*.ogg")))
answer.append(new)
depth -= 1
return answer
def get_locales():
answer = []

View File

@ -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.",
"downloads":
{"Windows32": "https://github.com/manuelcortez/socializer/blob/master/nightly/socializer-nightly-build.zip?raw=true"}}