Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Briar GTK
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
briar
Briar GTK
Commits
b72828da
Verified
Commit
b72828da
authored
4 years ago
by
Nico
Browse files
Options
Downloads
Patches
Plain Diff
Release 0.1.0-beta1
Closes
https://code.briarproject.org/briar/briar-gtk/-/milestones/4
parent
bec85f86
No related branches found
No related tags found
1 merge request
!62
Release first beta
Pipeline
#4799
passed
4 years ago
Stage: test
Changes
4
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
README.md
+5
-6
5 additions, 6 deletions
README.md
briar-gtk/data/app.briar.gtk.metainfo.xml.in
+25
-15
25 additions, 15 deletions
briar-gtk/data/app.briar.gtk.metainfo.xml.in
debian/changelog
+12
-0
12 additions, 0 deletions
debian/changelog
meson.build
+1
-1
1 addition, 1 deletion
meson.build
with
43 additions
and
22 deletions
README.md
+
5
−
6
View file @
b72828da
...
...
@@ -3,12 +3,11 @@
[

](https://code.briarproject.org/briar/briar-gtk/commits/main)
[

](https://code.briarproject.org/briar/briar-gtk/commits/main)
_Warning: This is still in a very early state and should be considered a prototype._
A simple GTK app for
[
Briar
](
https://briar.app
)
, built with Python and GNOME Builder.
It uses
[
python-briar-wrapper
](
https://code.briarproject.org/briar/python-briar-wrapper
)
and the
A GTK app for
[
Briar
](
https://briar.app
)
, built with Python and GNOME Builder.
It uses
[
briar_wrapper
](
https://code.briarproject.org/briar/python-briar-wrapper
)
and the
[
Briar REST API
](
https://code.briarproject.org/briar/briar/blob/master/briar-headless/README.md
)
and therefore requires Java.
Currently, it only supports private chats.

...
...
@@ -20,7 +19,7 @@ For regular updates, check out the Briar tag on
### Flatpak
Alpha releases of
Briar GTK can be installed using Flatpak.
Briar GTK can be installed using Flatpak.
After
[
installing Flatpak
](
https://flatpak.org/setup/
)
, you can install
Briar GTK like this:
```
...
...
@@ -121,7 +120,7 @@ debuild -us -uc
And install the .deb like this:
```
sudo dpkg -i ../briar-gtk_0.1.0-
alph
a1-1_all.deb
sudo dpkg -i ../briar-gtk_0.1.0-
bet
a1-1_all.deb
```
## Internationalization
...
...
This diff is collapsed.
Click to expand it.
briar-gtk/data/app.briar.gtk.metainfo.xml.in
+
25
−
15
View file @
b72828da
...
...
@@ -63,26 +63,36 @@
</provides>
<releases>
<release
version=
"0.1.0-
alpha2
"
date=
"2020-0
7
-1
8
"
>
<release
version=
"0.1.0-
beta1
"
date=
"2020-0
9
-1
0
"
>
<description>
<p>
Show online status of contacts in contact list (#19)
</p>
<p>
Support copying content in messages (#51)
</p>
<p>
Fix bug with Briar messages not having text (#56)
</p>
<p>
Fix bug with contact's name not showing in private messages (#55)
</p>
<p>
Update Briar core to version 1.2.9
Improvements in this version:
</p>
<ul>
<li>
Basic notification support
</li>
<li>
Support for deleting contacts
</li>
<li>
Hugely improved chat UI
</li>
<li>
Full Spanish and German translations
</li>
<li>
Migration to libhandy 1.0
</li>
<li>
Migration to briar_wrapper 0.0.4
</li>
<li>
Many more minor improvements
</li>
</ul>
</description>
<url>
https://code.briarproject.org/briar/briar-gtk/-/tags/0.1.0-beta1
</url>
</release>
<release
version=
"0.1.0-alpha2"
date=
"2020-07-18"
>
<description>
<p>
Lots of software tests
Improvements in this version:
</p>
<ul>
<li>
Show online status of contacts in contact list (#19)
</li>
<li>
Support copying content in messages (#51)
</li>
<li>
Fix bug with Briar messages not having text (#56)
</li>
<li>
Fix bug with contact's name not showing in private messages (#55)
</li>
<li>
Update Briar core to version 1.2.9
</li>
<li>
Lots of software tests
</li>
</ul>
</description>
<url>
https://code.briarproject.org/briar/briar-gtk/-/tags/0.1.0-alpha2
</url>
</release>
...
...
This diff is collapsed.
Click to expand it.
debian/changelog
+
12
−
0
View file @
b72828da
briar-gtk (0.1.0-beta1-1) UNRELEASED; urgency=medium
* Basic notification support
* Support for deleting contacts
* Hugely improved chat UI
* Full Spanish and German translations
* Migration to libhandy 1.0
* Migration to briar_wrapper 0.0.4
* Many more minor improvements
-- Nico Alt <nicoalt@posteo.org> Thu, 10 Sep 2020 17:25:32 +0000
briar-gtk (0.1.0-alpha2-1) UNRELEASED; urgency=medium
* Support copying content in messages (#51)
...
...
This diff is collapsed.
Click to expand it.
meson.build
+
1
−
1
View file @
b72828da
...
...
@@ -4,7 +4,7 @@
project
(
'briar-gtk'
,
version
:
'0.1.0-
alpha2
'
,
version
:
'0.1.0-
beta1
'
,
meson_version
:
'>= 0.50.0'
,
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment