Skip to content
This repository has been archived by the owner on Jul 14, 2018. It is now read-only.

Commit

Permalink
release flag 072
Browse files Browse the repository at this point in the history
  • Loading branch information
vk-cli developers team committed May 22, 2016
1 parent f554d45 commit de0c4ca
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion generateVersion.d
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import std.process, std.stdio, std.string, std.algorithm,

void main() {
const versionNum = "0.7.2";
bool releaseFlag = false;
const releaseFlag = true;
immutable string
lastCommitHash = matchFirst(executeShell("git log -1").output, regex(r"(?:^commit\s+)([0-9a-f]{40})"))[1][0..7],
currentBranch = matchFirst(executeShell("git status").output, regex(r"(?:^On branch\s+)(.+)"))[1];
Expand Down
5 changes: 5 additions & 0 deletions source/vkapi.d
Original file line number Diff line number Diff line change
Expand Up @@ -789,6 +789,7 @@ class AsyncOrder : Thread {
}

private void procOrder() {
dbm("procOrder start");
while(true) {
if(order.length != 0) {
for (int i; i < order.length; ++i) {
Expand Down Expand Up @@ -959,6 +960,9 @@ class Longpoll : Thread {
catch(Exception e) {
dbm("longpoll exception: " ~ e.msg);
}
catch(Error e) {
dbm("longpoll error exception: " ~ e.msg);
}
dbm("longpoll is restarting...");
}
}
Expand Down Expand Up @@ -1294,6 +1298,7 @@ class VkMan {
private void accountInit() {
api.isTokenValid = false;
ps.countermsg = -1;
dbm("asyncLongpoll called");
asyncLongpoll();

nc = new nameCache(api);
Expand Down

0 comments on commit de0c4ca

Please sign in to comment.