Skip to content

Commit

Permalink
version 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] committed Aug 22, 2022
1 parent c309ecd commit 2ef7605
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 8 deletions.
7 changes: 4 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ HARDWARE_PLATFORM := $(shell uname --machine)
CURRENT_DIR := $(shell pwd)

define APPDATA_TEXT=
\\t\t\t<release version="$(NEW_VERSION)" date="$(shell date --rfc-3339='date')">\n\
\t\t\t\t\t<url>https://github.com/nanu-c/axolotl/releases/tag/v$(NEW_VERSION)</url>\n\
\t\t\t</release>
\\t\t<release version="$(NEW_VERSION)" date="$(shell date --rfc-3339='date')">\n\
\t\t\t\t<url>https://github.com/nanu-c/axolotl/releases/tag/v$(NEW_VERSION)</url>\n\
\t\t</release>
endef
export APPDATA_TEXT

Expand Down Expand Up @@ -118,6 +118,7 @@ else
@sed -i 's/$(AXOLOTL_VERSION)/$(NEW_VERSION)/' manifest.json
@sed -i 's/$(AXOLOTL_VERSION)/$(NEW_VERSION)/' app/config/config.go
@sed -i 's/$(AXOLOTL_VERSION)/$(NEW_VERSION)/' snap/snapcraft.yaml
@sed -i 's/$(AXOLOTL_VERSION)/$(NEW_VERSION)/' docs/INSTALL.md
@sed -i "32i $$APPDATA_TEXT" appimage/AppDir/axolotl.appdata.xml
@sed -i "32i $$APPDATA_TEXT" flatpak/org.nanuc.Axolotl.appdata.xml
@echo "Update complete"
Expand Down
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.4.0"
const AppVersion = "1.5.0"

// Do not allow sending attachments larger than 100M for now
const MaxAttachmentSize int64 = 100 * 1024 * 1024
Expand Down
3 changes: 3 additions & 0 deletions appimage/AppDir/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.5.0" date="2022-08-22">
<url>https://github.com/nanu-c/axolotl/releases/tag/v1.5.0</url>
</release>
<release version="1.4.0" date="2022-08-19">
<url>https://github.com/nanu-c/axolotl/releases/tag/v1.4.0</url>
</release>
Expand Down
8 changes: 7 additions & 1 deletion docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
1.5.0 (Aug 22 2022)
------------------------------------
* update crayfish to a more recent libsignal version @nanu-c + @jonnius
* fix rust build in ci @jonnius
* fix names in groups @nanu-c

1.4.0 (Aug 19 2022)
------------------------------------
* update axolotl-web depencies to latest versions @nanu-c
* update axolotl-web dependencies to latest versions @nanu-c
* update protobufs @nanu-c

1.3.1 (Aug 2 2022)
Expand Down
2 changes: 1 addition & 1 deletion docs/INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,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.4.0_amd64.snap --dangerous`
`sudo snap install axolotl_1.5.0_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.5.0" date="2022-08-22">
<url>https://github.com/nanu-c/axolotl/releases/tag/v1.5.0</url>
</release>
<release version="1.4.0" date="2022-08-19">
<url>https://github.com/nanu-c/axolotl/releases/tag/v1.4.0</url>
</release>
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.4.0",
"version": "1.5.0",
"description": "A Signal compatible messaging client for Ubuntu phones",
"title": "Axolotl",
"architecture": "@CLICK_ARCH@",
Expand Down
2 changes: 1 addition & 1 deletion snap/snapcraft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ grade: stable
confinement: strict
base: core20
icon: snap/gui/axolotl.png
version: "1.4.0"
version: "1.5.0"
architectures:
- build-on: amd64
- build-on: arm64
Expand Down

0 comments on commit 2ef7605

Please sign in to comment.