Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
rickybassom committed Jul 25, 2020
1 parent 60b90af commit 526d6bd
Show file tree
Hide file tree
Showing 12 changed files with 31 additions and 20 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ sudo ninja install

```sh
dpkg-buildpackage -us -uc
sudo dpkg -i com.github.rickybassom.date-countdown_0.1.8_amd64.deb (or the equivalent)
sudo dpkg -i com.github.rickybassom.date-countdown_0.1.9_amd64.deb (or the equivalent)
```

## Flatpak
Expand Down
5 changes: 5 additions & 0 deletions data/com.github.rickybassom.date-countdown.appdata.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@
<value key="x-appcenter-suggested-price">2</value>
</custom>
<releases>
<release version="0.1.9" date="2020-07-26">
<description>
<p>Update GitHub username for links</p>
</description>
</release>
<release version="0.1.8" date="2020-07-18">
<description>
<p>Fixed single countdown poover cliping bug</p>
Expand Down
4 changes: 2 additions & 2 deletions data/icons/128/com.github.rickybassom.date-countdown.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions data/icons/16/com.github.rickybassom.date-countdown.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions data/icons/24/com.github.rickybassom.date-countdown.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions data/icons/32/com.github.rickybassom.date-countdown.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions data/icons/48/com.github.rickybassom.date-countdown.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions data/icons/64/com.github.rickybassom.date-countdown.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
com.github.rickybassom.date-countdown (0.1.9) xenial; urgency=medium

* Github username update

-- Ricky Bassom <[email protected]> Sun, 26 Jun 2020 13:09:00 -0800

com.github.rickybassom.date-countdown (0.1.8) xenial; urgency=medium

* Fixed single countdown poover cliping bug
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
project('com.github.rickybassom.date-countdown', 'vala', 'c', version: '0.1.8', license: 'GPL-3.0+')
project('com.github.rickybassom.date-countdown', 'vala', 'c', version: '0.1.9', license: 'GPL-3.0+')

gnome = import('gnome')
i18n = import('i18n')
Expand Down
8 changes: 4 additions & 4 deletions src/Application.vala
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2017 Ricky Bassom (https://github.com/rickybas)
* Copyright (c) 2017 Ricky Bassom (https://github.com/rickybassom)
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public
Expand All @@ -20,7 +20,7 @@

public class DateCountdown : Gtk.Application {
public DateCountdown () {
Object (application_id: "com.github.rickybas.date-countdown",
Object (application_id: "com.github.rickybassom.date-countdown",
flags: ApplicationFlags.FLAGS_NONE);
}

Expand All @@ -32,7 +32,7 @@ public class DateCountdown : Gtk.Application {

var app_window = new MainWindow (this);

var settings = new Settings ("com.github.rickybas.date-countdown");
var settings = new Settings ("com.github.rickybassom.date-countdown");

var window_x = settings.get_int ("window-x");
var window_y = settings.get_int ("window-y");
Expand All @@ -49,7 +49,7 @@ public class DateCountdown : Gtk.Application {
add_accelerator ("<Control>q", "app.quit", null);

var provider = new Gtk.CssProvider ();
provider.load_from_resource ("com/github/rickybas/date-countdown/Application.css");
provider.load_from_resource ("com/github/rickybassom/date-countdown/Application.css");
Gtk.StyleContext.add_provider_for_screen (Gdk.Screen.get_default (), provider, Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION);

quit_action.activate.connect (() => {
Expand Down
4 changes: 2 additions & 2 deletions src/MainWindow.vala
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2017 Ricky Bassom (https://github.com/rickybas)
* Copyright (c) 2017 Ricky Bassom (https://github.com/rickybassom)
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public
Expand Down Expand Up @@ -52,7 +52,7 @@ public class MainWindow : Gtk.Dialog {

public MainWindow (Gtk.Application application) {
Object (application: application,
icon_name: "com.github.rickybas.date-countdown",
icon_name: "com.github.rickybassom.date-countdown",
resizable: false,
title: _("Date Countdown"));
}
Expand Down

0 comments on commit 526d6bd

Please sign in to comment.