Skip to content
This repository was archived by the owner on Jul 27, 2024. It is now read-only.

Commit e582d28

Browse files
committed
Bump to 1.6.1
1 parent 94502be commit e582d28

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

data/com.github.bcedu.vgrive.appdata.xml.in

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,13 @@ Automatically detects changes in local and remote files and syncs them.</p>
3434
</screenshot>
3535
</screenshots>
3636
<releases>
37+
<release version="1.6.1" date="2020-06-13">
38+
<description>
39+
<p>Fix error when checking files with the char '#'.
40+
Update metadata from appdata.
41+
</p>
42+
</description>
43+
</release>
3744
<release version="1.6.0" date="2020-04-15">
3845
<description>
3946
<p>Adapt to changes of Google Drive API.

src/Window.vala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ namespace App {
5353
this.headerbar = new AppHeaderBar (false, this);
5454
this.set_titlebar (this.headerbar);
5555
this.load_window_state ();
56-
this.set_min_size(700, 500);
56+
this.set_min_size(1024, 576);
5757
this.delete_event.connect (save_window_state);
5858
}
5959

@@ -93,7 +93,7 @@ namespace App {
9393
private void load_window_state() {
9494
this.saved_state = AppSettings.get_default();
9595
// Load size
96-
this.set_default_size (this.saved_state.window_width, this.saved_state.window_height);
96+
this.set_default_size (1024, 576);
9797
// Load position
9898
this.move (this.saved_state.window_posx, this.saved_state.window_posy);
9999
// Maximize window if necessary

0 commit comments

Comments
 (0)