Skip to content

Commit

Permalink
v0.6.8
Browse files Browse the repository at this point in the history
  • Loading branch information
nanu-c committed Oct 2, 2019
1 parent 16307f1 commit 0551c39
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (

var AppName = "textsecure.nanuc"

var AppVersion = "0.6.7"
var AppVersion = "0.6.8"

// Do not allow sending attachments larger than 100M for now
var MaxAttachmentSize int64 = 100 * 1024 * 1024
Expand Down
1 change: 0 additions & 1 deletion axolotl-web/src/pages/MessageList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,6 @@ export default {
document.addEventListener("scroll", (e) => {
var scrolled = document.scrollingElement.scrollTop;
if(scrolled==0){
console.log("load more messages")
this.$store.dispatch("getMoreMessages");
}
});
Expand Down
1 change: 0 additions & 1 deletion axolotl-web/src/store/store.js
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,6 @@ export default new Vuex.Store({
"name": data.name,
"members": data.members,
}
console.log(message);
Vue.prototype.$socket.send(JSON.stringify(message))

}
Expand Down
2 changes: 1 addition & 1 deletion click/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "textsecure.nanuc",
"version": "0.6.7",
"version": "0.6.8",
"description": "A Signal compatible messaging client for Ubuntu phones",
"title": "Signal",
"architecture": "armhf",
Expand Down
6 changes: 6 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
0.6.8 (Sept 30 2019) Axolotl-Alpha
--------------------
* creat Group Chats
* sort chat list
* cleanup log

0.6.7 (Sept 30 2019) Axolotl-Alpha
--------------------
* fix entering new chat and show first sent message
Expand Down
1 change: 0 additions & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@ func runElectron() {
Width: astilectron.PtrInt(600),
})
w.Create()
w.OpenDevTools()
// Blocking pattern
a.Wait()
}
Expand Down

0 comments on commit 0551c39

Please sign in to comment.