Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version1.0.2 #549

Merged
merged 3 commits into from
Aug 24, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (

const AppName = "textsecure.nanuc"

const AppVersion = "1.0.1.1"
const AppVersion = "1.0.2"

// Do not allow sending attachments larger than 100M for now
var MaxAttachmentSize int64 = 100 * 1024 * 1024
Expand Down
5 changes: 4 additions & 1 deletion appimage/AppDir/axolotl.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,10 @@
</screenshot>
</screenshots>
<releases>
<release version="1.0.1.1" date="2021-06-18">
<release version="1.0.2" date="2021-08-23">
<url>https://github.com/nanu-c/axolotl/releases/tag/v1.0.2</url>
</release>
<release version="1.0.1.1" date="2021-06-18">
<url>https://github.com/nanu-c/axolotl/releases/tag/v1.0.1.1</url>
</release>
<release version="1.0.1" date="2021-06-18">
Expand Down
2 changes: 1 addition & 1 deletion axolotl-web/src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ library.add(faArrowLeft, faEllipsisV, faPencilAlt, faPlus, faTrash, faPaperPlane
faUserFriends, faTimes, faCheck, faVolumeMute, faHeart, faSearch, faArrowDown)

const app = createApp(App)
app.component('font-awesome-icon', FontAwesomeIcon)
app.component('FontAwesomeIcon', FontAwesomeIcon)
app.mixin({
methods: {
linkify: function (content) {
Expand Down
6 changes: 3 additions & 3 deletions axolotl-web/src/pages/DeviceList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<div class="deviceList">
<!-- The first device is the main device and should not be shown -->
<div v-if="devices && devices.length > 1">
<div v-for="device in devices" :key="device.id" class="row device">
<div v-if="device.id !== 0" class="col-10">
<div v-for="(device, i) in devices" :key="device.id" class="row device">
<div class="col-10">
<div class="device-name">{{ device.name }}</div>
<div class="meta">
<span class="lastSeen">
Expand All @@ -12,7 +12,7 @@
</span>
</div>
</div>
<div class="col-2 actions">
<div v-if="i!== 0" class="col-2 actions">
<button class="btn" @click="delDevice(device.id)">
<font-awesome-icon icon="trash" />
</button>
Expand Down
2 changes: 1 addition & 1 deletion axolotl-web/src/pages/MessageList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@
<div id="chat-bottom" />
</div>
<div
v-translate
v-if="chat.IsGroup && chat.GroupJoinStatus !== 0"
v-translate
class="messageInputBoxDisabled w-100"
>
You have been invited to this group. Accepting invitations is not yet
Expand Down
2 changes: 1 addition & 1 deletion axolotl-web/translations/translations.json

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
1.0.2 (Aug 23 2021)
------------------------------------
* Updated Finnish translation (orenomfi)
* Improve Makefile (olof-nord)
* Fix Linking signal desktop (nanu-c)
* Fix setting a password (nanu-c)
* Lot's of code quality and improvements (nanu-c)


1.0.1.1 (Jul 18 2021)
------------------------------------
* Hotfix: Verification Input fix
Expand Down
2 changes: 1 addition & 1 deletion docs/INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ To build the application, use the following command from the root of this reposi

To install the built snap, use snap:

`sudo snap install axolotl_1.0.1.1_amd64.snap --dangerous`
`sudo snap install axolotl_1.0.2_amd64.snap --dangerous`

**Run**

Expand Down
3 changes: 3 additions & 0 deletions flatpak/org.nanuc.Axolotl.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@
</screenshot>
</screenshots>
<releases>
<release version="1.0.2" date="2021-08-23">
<url>https://github.com/nanu-c/axolotl/releases/tag/v1.0.2</url>
</release>
<release version="1.0.1.1" date="2021-06-18">
<url>https://github.com/nanu-c/axolotl/releases/tag/v1.0.1.1</url>
</release>
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,8 @@ github.com/mutecomm/go-sqlcipher v0.0.0-20190227152316-55dbde17881f h1:hd3r+uv9D
github.com/mutecomm/go-sqlcipher v0.0.0-20190227152316-55dbde17881f/go.mod h1:MyUWrZlB1aI5bs7j9/pJ8ckLLZ4QcCYcNiSbsAW32D4=
github.com/nanu-c/zkgroup v0.8.7 h1:kwrd2UDYhLTVyWQQE1DDbkJDR2oWtwG4r9kKXURnc4I=
github.com/nanu-c/zkgroup v0.8.7/go.mod h1:6c1LFh8Neuzl2qF51yPsH4sdvXFeEdfucfITI4Jbu7o=
github.com/nanu-c/zkgroup v0.8.8 h1:RRwp575zDV6zuAb86kDofSw1KF9MPxtZllvwrTAqRPo=
github.com/nanu-c/zkgroup v0.8.8/go.mod h1:6c1LFh8Neuzl2qF51yPsH4sdvXFeEdfucfITI4Jbu7o=
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e h1:fD57ERR4JtEqsWbfPhv4DMiApHyliiK5xCTNVSPiaAs=
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno=
github.com/nu7hatch/gouuid v0.0.0-20131221200532-179d4d0c4d8d h1:VhgPp6v9qf9Agr/56bj7Y/xa04UccTW04VP0Qed4vnQ=
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "textsecure.nanuc",
"version": "1.0.1.1",
"version": "1.0.2",
"description": "A Signal compatible messaging client for Ubuntu phones",
"title": "Axolotl",
"architecture": "@CLICK_ARCH@",
Expand Down
20 changes: 11 additions & 9 deletions po/ar.po
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ msgstr "أترك المجموعة"
msgid "Creating group"
msgstr ""

#: src/pages/SetPassword.vue:23
#: src/pages/SetPassword.vue:29
msgid "Current password"
msgstr ""

Expand Down Expand Up @@ -232,7 +232,7 @@ msgstr ""
msgid "issues at the bug tracker"
msgstr ""

#: src/pages/DeviceList.vue:8
#: src/pages/DeviceList.vue:9
msgid "Last seen:"
msgstr ""

Expand Down Expand Up @@ -269,7 +269,7 @@ msgstr ""
msgid "New group"
msgstr "مجموعة جديدة"

#: src/pages/SetPassword.vue:16
#: src/pages/SetPassword.vue:17
#, fuzzy
msgid "New password"
msgstr "رسالة جديدة"
Expand All @@ -282,7 +282,7 @@ msgstr ""
msgid "No chats available"
msgstr ""

#: src/pages/DeviceList.vue:19
#: src/pages/DeviceList.vue:21
#, fuzzy
msgid "No linked devices"
msgstr "إنعاش"
Expand Down Expand Up @@ -338,7 +338,7 @@ msgstr ""
msgid "Registered number"
msgstr "سجل"

#: src/pages/SetPassword.vue:19
#: src/pages/SetPassword.vue:23
msgid "Repeat password"
msgstr ""

Expand All @@ -351,6 +351,10 @@ msgstr ""
msgid "Reset encryption"
msgstr "إعادة ضبط جلسة آمنة"

#: src/pages/SetPassword.vue:6
msgid "Restart is required!"
msgstr ""

#: src/components/IdentityModal.vue:14
msgid "Safety numbers of you and"
msgstr ""
Expand All @@ -376,7 +380,7 @@ msgstr ""
msgid "Set encryption password"
msgstr "إعادة ضبط جلسة آمنة"

#: src/pages/SetPassword.vue:26 src/pages/Settings.vue:12
#: src/pages/SetPassword.vue:34 src/pages/Settings.vue:12
msgid "Set password"
msgstr ""

Expand All @@ -389,9 +393,7 @@ msgid "Set username"
msgstr ""

#: src/pages/SetPassword.vue:3
msgid ""
"Setting a password is not advised on devices short in memory. Restart is\n"
" required!"
msgid "Setting a password is not advised on devices short in memory."
msgstr ""

#: src/pages/SetUsername.vue:3
Expand Down
20 changes: 11 additions & 9 deletions po/be.po
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ msgstr "Пакінуць групу"
msgid "Creating group"
msgstr ""

#: src/pages/SetPassword.vue:23
#: src/pages/SetPassword.vue:29
msgid "Current password"
msgstr ""

Expand Down Expand Up @@ -229,7 +229,7 @@ msgstr ""
msgid "issues at the bug tracker"
msgstr ""

#: src/pages/DeviceList.vue:8
#: src/pages/DeviceList.vue:9
msgid "Last seen:"
msgstr ""

Expand Down Expand Up @@ -265,7 +265,7 @@ msgstr ""
msgid "New group"
msgstr "Новая група"

#: src/pages/SetPassword.vue:16
#: src/pages/SetPassword.vue:17
#, fuzzy
msgid "New password"
msgstr "Новае паведамленне"
Expand All @@ -278,7 +278,7 @@ msgstr ""
msgid "No chats available"
msgstr ""

#: src/pages/DeviceList.vue:19
#: src/pages/DeviceList.vue:21
msgid "No linked devices"
msgstr ""

Expand Down Expand Up @@ -333,7 +333,7 @@ msgstr ""
msgid "Registered number"
msgstr "Зарэгістравацца"

#: src/pages/SetPassword.vue:19
#: src/pages/SetPassword.vue:23
msgid "Repeat password"
msgstr ""

Expand All @@ -345,6 +345,10 @@ msgstr ""
msgid "Reset encryption"
msgstr ""

#: src/pages/SetPassword.vue:6
msgid "Restart is required!"
msgstr ""

#: src/components/IdentityModal.vue:14
msgid "Safety numbers of you and"
msgstr ""
Expand All @@ -369,7 +373,7 @@ msgstr ""
msgid "Set encryption password"
msgstr ""

#: src/pages/SetPassword.vue:26 src/pages/Settings.vue:12
#: src/pages/SetPassword.vue:34 src/pages/Settings.vue:12
msgid "Set password"
msgstr ""

Expand All @@ -382,9 +386,7 @@ msgid "Set username"
msgstr ""

#: src/pages/SetPassword.vue:3
msgid ""
"Setting a password is not advised on devices short in memory. Restart is\n"
" required!"
msgid "Setting a password is not advised on devices short in memory."
msgstr ""

#: src/pages/SetUsername.vue:3
Expand Down
20 changes: 11 additions & 9 deletions po/bg.po
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ msgstr "Напусни група"
msgid "Creating group"
msgstr ""

#: src/pages/SetPassword.vue:23
#: src/pages/SetPassword.vue:29
msgid "Current password"
msgstr ""

Expand Down Expand Up @@ -233,7 +233,7 @@ msgstr ""
msgid "issues at the bug tracker"
msgstr ""

#: src/pages/DeviceList.vue:8
#: src/pages/DeviceList.vue:9
msgid "Last seen:"
msgstr ""

Expand Down Expand Up @@ -270,7 +270,7 @@ msgstr ""
msgid "New group"
msgstr "Нова група"

#: src/pages/SetPassword.vue:16
#: src/pages/SetPassword.vue:17
#, fuzzy
msgid "New password"
msgstr "Ново съобщение"
Expand All @@ -283,7 +283,7 @@ msgstr ""
msgid "No chats available"
msgstr ""

#: src/pages/DeviceList.vue:19
#: src/pages/DeviceList.vue:21
#, fuzzy
msgid "No linked devices"
msgstr "Освежи"
Expand Down Expand Up @@ -339,7 +339,7 @@ msgstr ""
msgid "Registered number"
msgstr "Регистрирай"

#: src/pages/SetPassword.vue:19
#: src/pages/SetPassword.vue:23
msgid "Repeat password"
msgstr ""

Expand All @@ -352,6 +352,10 @@ msgstr ""
msgid "Reset encryption"
msgstr "Започни нова сигурна сесия"

#: src/pages/SetPassword.vue:6
msgid "Restart is required!"
msgstr ""

#: src/components/IdentityModal.vue:14
msgid "Safety numbers of you and"
msgstr ""
Expand All @@ -377,7 +381,7 @@ msgstr ""
msgid "Set encryption password"
msgstr "Започни нова сигурна сесия"

#: src/pages/SetPassword.vue:26 src/pages/Settings.vue:12
#: src/pages/SetPassword.vue:34 src/pages/Settings.vue:12
msgid "Set password"
msgstr ""

Expand All @@ -390,9 +394,7 @@ msgid "Set username"
msgstr ""

#: src/pages/SetPassword.vue:3
msgid ""
"Setting a password is not advised on devices short in memory. Restart is\n"
" required!"
msgid "Setting a password is not advised on devices short in memory."
msgstr ""

#: src/pages/SetUsername.vue:3
Expand Down
Loading