Skip to content

Commit

Permalink
Bump to 1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bcedu committed Jun 13, 2020
1 parent 94502be commit e582d28
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions data/com.github.bcedu.vgrive.appdata.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,13 @@ Automatically detects changes in local and remote files and syncs them.</p>
</screenshot>
</screenshots>
<releases>
<release version="1.6.1" date="2020-06-13">
<description>
<p>Fix error when checking files with the char '#'.
Update metadata from appdata.
</p>
</description>
</release>
<release version="1.6.0" date="2020-04-15">
<description>
<p>Adapt to changes of Google Drive API.
Expand Down
4 changes: 2 additions & 2 deletions src/Window.vala
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ namespace App {
this.headerbar = new AppHeaderBar (false, this);
this.set_titlebar (this.headerbar);
this.load_window_state ();
this.set_min_size(700, 500);
this.set_min_size(1024, 576);
this.delete_event.connect (save_window_state);
}

Expand Down Expand Up @@ -93,7 +93,7 @@ namespace App {
private void load_window_state() {
this.saved_state = AppSettings.get_default();
// Load size
this.set_default_size (this.saved_state.window_width, this.saved_state.window_height);
this.set_default_size (1024, 576);
// Load position
this.move (this.saved_state.window_posx, this.saved_state.window_posy);
// Maximize window if necessary
Expand Down

0 comments on commit e582d28

Please sign in to comment.