Skip to content
This repository has been archived by the owner on Dec 15, 2022. It is now read-only.

Port to GTK4 #310

Merged
merged 52 commits into from
Jul 23, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
52 commits
Select commit Hold shift + click to select a range
77a37d4
Let's do this
Apr 6, 2021
42eafdf
Almost made it compile
Apr 6, 2021
8fb55a8
Now it compiles
Apr 7, 2021
0618b18
Fix base.ui
Apr 8, 2021
e3f4c8a
Fix TabbedBase
Apr 8, 2021
04a1033
Add sidebar view
Apr 9, 2021
138c6b8
Clean ui files
Apr 9, 2021
2e80689
Sidebar: add account switching mode
Apr 9, 2021
514ee97
Populate sidebar with account actions
Apr 11, 2021
3392547
Fix preferences
Apr 11, 2021
d6bdbd7
Fix view title
Apr 12, 2021
48c1d01
Fix thread view
Apr 13, 2021
d17bd2d
Refactor Streams. Again.
Apr 14, 2021
192b32d
Initial Profile view redesign
Apr 17, 2021
161a5c5
New cache system idea
Apr 20, 2021
808fb95
Save window size
Apr 20, 2021
b80a4ec
Account switching
Apr 21, 2021
b7f5559
Fix NewAccount dialog
Apr 21, 2021
b91cb3d
Sidebar: implement account manager mode
Apr 22, 2021
e501716
Add sidebar toggle button
May 15, 2021
4f51c19
Change some timeline icons
May 15, 2021
3d58e44
Rework image cache
May 16, 2021
5c1a9fe
Leaks. Leaks everywhere.
May 16, 2021
5d49e98
Fix Adw.Avatars not being destroyed. Kinda.
May 18, 2021
59c6013
Fix some leaks for GTK 4.3
Jun 15, 2021
a2d5cbf
Doing something controversial
Jun 18, 2021
cdfe8da
Clean up
Jun 18, 2021
6e10056
Reimplement status actions
Jul 2, 2021
1d25465
Cosmetic tweaks
Jul 5, 2021
9e13b5f
Add desktop notifications
Jul 10, 2021
c454e9c
Profile View: move note field up
Jul 10, 2021
04a062f
Work on notifications
Jul 11, 2021
190eb49
Notifications...
Jul 12, 2021
4344d43
Stuff
Jul 14, 2021
12838b3
Add Background widget
Jul 14, 2021
e7a8d54
Remove old Compose dialog
Jul 16, 2021
2b07c00
Add cw field to Composer
Jul 16, 2021
22f42de
Figure out DropDowns
Jul 16, 2021
960da9f
Make composer actually work
Jul 17, 2021
041fcba
Fix symbolic icon recoloring
Jul 17, 2021
81eb396
Initial attachment box
Jul 18, 2021
f059607
Attachment styling
Jul 19, 2021
b2f589a
Open attachments on click
Jul 19, 2021
414825f
Rename Desktop to Host
Jul 19, 2021
e2c6088
Display attachment descriptions
Jul 19, 2021
01f8a82
ImageCache: Store paintables instead of pixbufs
Jul 19, 2021
1709d41
Cosmetics
Jul 19, 2021
eae389f
Composer: Support replies
Jul 23, 2021
179e721
Remove NYI stuff
Jul 23, 2021
f8458ba
Make sidebar useful
Jul 23, 2021
1b60716
Lists are broken
Jul 23, 2021
bb7c1a8
Bump version
Jul 23, 2021
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
Prev Previous commit
Next Next commit
Clean ui files
  • Loading branch information
Bleak Grey committed Apr 9, 2021
commit 138c6b8b561b592cba6ab068c5ecaaa10a9d56c7
4 changes: 1 addition & 3 deletions data/gresource.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,8 @@
<file alias="app.css">app.css</file>
<file>ui/views/new_account.ui</file>
<file>ui/views/base.ui</file>
<file>ui/views/profile_header.ui</file>
<file>ui/views/sidebar.ui</file>
<file>ui/views/sidebar/view.ui</file>
<file>ui/widgets/status.ui</file>
<file>ui/widgets/accounts_button.ui</file>
<file>ui/widgets/accounts_button_item.ui</file>
<file>ui/widgets/profile_field_row.ui</file>
<file>ui/widgets/timeline_menu.ui</file>
Expand Down
2 changes: 1 addition & 1 deletion data/ui/dialogs/main.ui
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<child type="content">
<object class="AdwLeaflet" id="leaflet">
<property name="can_swipe_back">True</property>
<signal name="notify::transition-running" handler="on_child_transition"/>
<signal name="notify::child-transition-running" handler="on_child_transition"/>
<signal name="notify::visible-child" handler="on_view_changed"/>
</object>
</child>
Expand Down
134 changes: 0 additions & 134 deletions data/ui/views/profile_header.ui

This file was deleted.

31 changes: 0 additions & 31 deletions data/ui/views/sidebar.ui

This file was deleted.

52 changes: 52 additions & 0 deletions data/ui/views/sidebar/view.ui
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<template class="TootleViewsSidebar" parent="GtkBox">
<property name="width_request">300</property>
<property name="orientation">vertical</property>

<child>
<object class="AdwHeaderBar">
<property name="show-start-title-buttons">0</property>
<property name="show-end-title-buttons">0</property>
</object>
</child>

<!-- Profile Header -->
<child>
<object class="GtkGrid" id="header">

</object>
</child>

<child>
<object class="GtkScrolledWindow">
<property name="vexpand">1</property>
<property name="child">
<object class="GtkViewport">
<child>
<object class="GtkStack" id="mode">
<!-- Current account menu -->
<!-- <child> -->

<!-- </child> -->
<!-- Account management -->
<child>
<object class="GtkListBox" id="accounts">

</object>
</child>

</object>
</child>
</object>
</property>
</object>
</child>


<style>
<class name="sidebar"/>
</style>
</template>
</interface>

Loading