-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Successful Build of Signed Release 6.35.0
- Loading branch information
Showing
11 changed files
with
37 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
version: 6.34.0 | ||
version: 6.35.0 | ||
files: | ||
- url: signal-desktop_6.34.0_arm64.deb | ||
sha512: ej4ZQ/GyZaISkJOSkV88DgGEDe27mjmYuXJ/xbWW0rt1m2QX3VDo6z1sIDYWXhtF57qSL3nAeOgdRb5PCWq6gQ== | ||
size: 106258912 | ||
path: signal-desktop_6.34.0_arm64.deb | ||
sha512: ej4ZQ/GyZaISkJOSkV88DgGEDe27mjmYuXJ/xbWW0rt1m2QX3VDo6z1sIDYWXhtF57qSL3nAeOgdRb5PCWq6gQ== | ||
releaseDate: '2023-10-16T04:26:49.401Z' | ||
- url: signal-desktop_6.35.0_arm64.deb | ||
sha512: PKcA9UEZ/hEXDz/R15D5fz7jjRMy3l/k+2LKA1L67wC3vpG/qci/PWhm1dr14KURwg5D8YQKdXacT4YZVA7n9Q== | ||
size: 106221956 | ||
path: signal-desktop_6.35.0_arm64.deb | ||
sha512: PKcA9UEZ/hEXDz/R15D5fz7jjRMy3l/k+2LKA1L67wC3vpG/qci/PWhm1dr14KURwg5D8YQKdXacT4YZVA7n9Q== | ||
releaseDate: '2023-10-22T23:26:25.153Z' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
7a3e1943f1b265a212909392915f3c0e01840dedbb9a3998b9727fc5b596d2bb759b6417dd50e8eb3d6c2036165e1b45e7ba922f79c078e81d45be4f096aba81 release/signal-desktop_6.34.0_arm64.deb | ||
3ca700f54119fe11170f3fd1d790f97f3ee38d1332de5fe4fb62ca0352faef00b7be91bfa9c8bf3d6866d5daf5e0a511c20e43f1840a75769c4f8619540ee7f5 release/signal-desktop_6.35.0_arm64.deb | ||
Public Key: 0558260a88ff08f8dddf791fe73b9457917830506be3d8dbc1311e8d769c5ac777 | ||
Build Complete on 10/16/23 at 04:27 UTC | ||
Build Complete on 10/22/23 at 23:27 UTC |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Git LFS file not shown
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
a2934cd393ecd02afc61ecccbf83f28ab7844a0a73d94dc48b7bd1387a9ab73db07a36222be55230ec19973ecc6c7c31327c7e78c8ac75fd6453be998b016b8b |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/bin/bash | ||
|
||
Last_Version_Number=6.35 | ||
Version_Number=$(echo "$Last_Version_Number + .01" | bc -l) | ||
Last_Branch_Number=$Last_Version_Number.x | ||
Branch_Number=$Version_Number.x | ||
|
||
sed -i s/signal-desktop_$(echo $Last_Version_Number).0_arm64.deb/signal-desktop_$(echo $Version_Number).0_arm64.deb/g _layouts/default.html | ||
|
||
sed -i s/$(echo $Last_Version_Number)/$(echo $Version_Number)/g README.md | ||
|
||
sed -i s/$(echo $Last_Branch_Number)/$(echo $Branch_Number)/g Dockerfile | ||
|
||
sed -i s/Last_Version_Number=$Last_Version_Number/Last_Version_Number=$Version_Number/g increment.sh | ||
|
||
echo Version Incremented From v$Last_Version_Number To v$Version_Number | ||
|
||
exit |