Skip to content

Commit

Permalink
Update version and hopefully fix dev dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
kjlaw89 committed May 4, 2018
1 parent ddf7a00 commit 9e1fee1
Show file tree
Hide file tree
Showing 29 changed files with 51 additions and 45 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
<img src="https://img.shields.io/badge/License-GPL--3.0-blue.svg">
</a>
<a href="https://github.com/kjlaw89/web-watcher/releases">
<img src="https://img.shields.io/badge/Release-v%200.0.1-orange.svg">
<img src="https://img.shields.io/badge/Release-v%201.0.0-orange.svg">
</a>
<a href="https://github.com/kjlaw89/web-watcher/releases/download/0.0.1/com.github.kjlaw89.web-watcher_0.0.1_amd64.deb">
<a href="https://github.com/kjlaw89/web-watcher/releases/download/1.0.0/com.github.kjlaw89.web-watcher_1.0.0_amd64.deb">
<img src="https://img.shields.io/badge/Download-%20Package .deb-yellow.svg">
</a>
</p>
Expand Down
2 changes: 1 addition & 1 deletion debian/changelog
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
com.github.kjlaw89.web-watcher (0.0.1) xenial; urgency=low
com.github.kjlaw89.web-watcher (1.0.0) xenial; urgency=low

* Initial Release

Expand Down
30 changes: 18 additions & 12 deletions meson.build
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
project('com.github.kjlaw89.web-watcher', ['vala', 'c'],
version : '0.0.1',
version : '1.0.0',
license: 'GPL-3.0'
)

Expand All @@ -26,22 +26,28 @@ subdir('data')
subdir('po')
subdir('src')

dependencies = [
dependency('granite'),
dependency('gobject-2.0'),
dependency('gtk+-3.0'),
dependency('glib-2.0'),
dependency('sqlite3'),
dependency('libsoup-2.4'),
dependency('json-glib-1.0'),
dependency('unity'),
dependency('appindicator3-0.1')
]

executable('com.github.kjlaw89.web-watcher',
sources,
gresource,
c_args: c_args,
dependencies :[
dependency('granite'),
dependency('gobject-2.0'),
dependency('gtk+-3.0'),
dependency('glib-2.0'),
dependency('sqlite3'),
dependency('libsoup-2.4'),
dependency('json-glib-1.0'),
dependency('unity'),
dependency('appindicator3-0.1')
],
dependencies: dependencies,
install : true
)

declare_dependency(
dependencies: dependencies
)

meson.add_install_script('post_install.py')
2 changes: 1 addition & 1 deletion po/pt_BR.po
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
msgid ""
msgstr ""
"Project-Id-Version: 0.0.1\n"
"Project-Id-Version: 1.0.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-09-14 22:30-0000\n"
"PO-Revision-Date: 2017-09-14 22:30-0000\n"
Expand Down
2 changes: 1 addition & 1 deletion src/Application.vala
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ namespace App {
* The {@code Application} class is a foundation for all granite-based applications.
*
* @see Granite.Application
* @since 0.0.1
* @since 1.0.0
*/
public class Application : Granite.Application {

Expand Down
4 changes: 2 additions & 2 deletions src/Main.vala
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
*
* @see App.Application
* @return {@code void}
* @since 0.0.1
* @since 1.0.0
*/
public static void main (string [] args) {
var app = new App.Application ();
app.run (args);
}
}
2 changes: 1 addition & 1 deletion src/Window.vala
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ namespace App {
* allowing the user to manipulate the window (resize it, move it, close it, ...).
*
* @see Gtk.ApplicationWindow
* @since 0.0.1
* @since 1.0.0
*/
public class Window : Gtk.ApplicationWindow {

Expand Down
4 changes: 2 additions & 2 deletions src/configs/Constants.vala
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ namespace App.Configs {
* The {@code Constants} class is responsible for defining all
* the constants used in the application.
*
* @since 0.0.1
* @since 1.0.0
*/
public class Constants {
public abstract const string ID = "com.github.kjlaw89.web-watcher";
public abstract const string VERSION = "0.0.1";
public abstract const string VERSION = "1.0.0";
public abstract const string PROGRAM_NAME = "Web Watcher";
public abstract const string APP_YEARS = "2018";
public abstract const string APP_ICON = "com.github.kjlaw89.web-watcher";
Expand Down
2 changes: 1 addition & 1 deletion src/configs/Properties.vala
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ namespace App.Configs {
* The {@code Properties} class is responsible for defining all
* the texts that are displayed in the application and must be translated.
*
* @since 0.0.1
* @since 1.0.0
*/
public class Properties {
}
Expand Down
2 changes: 1 addition & 1 deletion src/configs/Settings.vala
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ namespace App.Configs {
* the texts that are displayed in the application and must be translated.
*
* @see Granite.Services.Settings
* @since 0.0.1
* @since 1.0.0
*/
public class Settings : Granite.Services.Settings {

Expand Down
2 changes: 1 addition & 1 deletion src/controllers/AppController.vala
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ namespace App.Controllers {
/**
* The {@code AppController} class.
*
* @since 0.0.1
* @since 1.0.0
*/
public class AppController {

Expand Down
4 changes: 2 additions & 2 deletions src/database/Database.vala
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ namespace App.Database {
* needed to access and maintain the Sqlite database
*
* @see Sqlite.Database
* @since 0.0.1
* @since 1.0.0
*/
public class DB {

Expand Down Expand Up @@ -80,7 +80,7 @@ namespace App.Database {
value TEXT NOT NULL
);
INSERT INTO `settings` (`key`, `value`) VALUES ('version', '0.0.1');
INSERT INTO `settings` (`key`, `value`) VALUES ('version', '1.0.0');
CREATE INDEX `key` ON `settings` (key);
";

Expand Down
2 changes: 1 addition & 1 deletion src/models/BaseModel.vala
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ namespace App.Models {
/**
* The {@code BaseModel} class.
*
* @since 0.0.1
* @since 1.0.0
*/
public abstract class BaseModel {

Expand Down
2 changes: 1 addition & 1 deletion src/models/ResultModel.vala
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ namespace App.Models {
/**
* The {@code ResultModel} class.
*
* @since 0.0.1
* @since 1.0.0
*/
public class ResultModel : BaseModel {

Expand Down
2 changes: 1 addition & 1 deletion src/models/SiteModel.vala
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ namespace App.Models {
/**
* The {@code SiteModel} class.
*
* @since 0.0.1
* @since 1.0.0
*/
public class SiteModel : BaseModel {

Expand Down
2 changes: 1 addition & 1 deletion src/utils/FileUtil.vala
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ namespace App.Utils {
/**
* The {@code FileUtil} class related to files handling.
*
* @since 0.0.1
* @since 1.0.0
*/
public class FileUtil {

Expand Down
2 changes: 1 addition & 1 deletion src/utils/StringUtil.vala
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ namespace App.Utils {
* Where a {@code boolean} or {@code int} is being returned
* details vary by method.
*
* @since 0.0.1
* @since 1.0.0
*/
public class StringUtil {

Expand Down
2 changes: 1 addition & 1 deletion src/utils/TimeUtil.vala
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ namespace App.Utils {
/**
* The class {@code TimeUtil} handles time-related data.
*
* @since 0.0.1
* @since 1.0.0
*/
public class TimeUtil {

Expand Down
4 changes: 2 additions & 2 deletions src/utils/URLUtil.vala
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ namespace App.Utils {
/**
* The {@code URLUtil} class is responsible for manipulating urls.
*
* @since 0.0.1
* @since 1.0.0
*/
public class URLUtil {

Expand All @@ -49,4 +49,4 @@ namespace App.Utils {
return true;
}
}
}
}
2 changes: 1 addition & 1 deletion src/utils/WidgetUtil.vala
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ namespace App.Utils {
/**
* The {@code WidgetUtil} class is responsible for customizing widget actions.
*
* @since 0.0.1
* @since 1.0.0
*/
public class WidgetUtil {

Expand Down
2 changes: 1 addition & 1 deletion src/views/AppIndicatorView.vala
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ namespace App.Views {
/**
* The {@code AppView} class.
*
* @since 0.0.1
* @since 1.0.0
*/
public class AppIndicatorView : Gtk.Menu {

Expand Down
2 changes: 1 addition & 1 deletion src/views/AppView.vala
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ namespace App.Views {
/**
* The {@code AppView} class.
*
* @since 0.0.1
* @since 1.0.0
*/
public class AppView : Gtk.Grid {

Expand Down
2 changes: 1 addition & 1 deletion src/views/SiteFormView.vala
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ namespace App.Views {
/**
* The {@code AppView} class.
*
* @since 0.0.1
* @since 1.0.0
*/
public class SiteFormView : Gtk.Box {

Expand Down
2 changes: 1 addition & 1 deletion src/views/SiteListView.vala
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ namespace App.Views {
/**
* The {@code SiteListView} class.
*
* @since 0.0.1
* @since 1.0.0
*/
public class SiteListView : Gtk.Viewport {

Expand Down
2 changes: 1 addition & 1 deletion src/views/SiteView.vala
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ namespace App.Views {
/**
* The {@code SiteView} class.
*
* @since 0.0.1
* @since 1.0.0
*/
public class SiteView : Gtk.Box {

Expand Down
2 changes: 1 addition & 1 deletion src/views/WelcomeView.vala
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ namespace App.Views {
/**
* The {@code WelcomeView} class.
*
* @since 0.0.1
* @since 1.0.0
*/
public class WelcomeView : Gtk.Viewport {

Expand Down
2 changes: 1 addition & 1 deletion src/widgets/HeaderBar.vala
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ namespace App.Widgets {
* The {@code HeaderBar} class is responsible for displaying top bar. Similar to a horizontal box.
*
* @see Gtk.HeaderBar
* @since 0.0.1
* @since 1.0.0
*/
public class HeaderBar : Gtk.HeaderBar {

Expand Down
2 changes: 1 addition & 1 deletion src/widgets/IndicatorItem.vala
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ namespace App.Widgets {
* where the user can add and remove sites from the monitor
*
* @see Gtk.Grid
* @since 0.0.1
* @since 1.0.0
*/
public class IndicatorItem : Gtk.ImageMenuItem {

Expand Down
2 changes: 1 addition & 1 deletion src/widgets/SiteItem.vala
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ namespace App.Widgets {
* where the user can add and remove sites from the monitor
*
* @see Gtk.Grid
* @since 0.0.1
* @since 1.0.0
*/
public class SiteItem : Gtk.EventBox {

Expand Down

0 comments on commit 9e1fee1

Please sign in to comment.