From 97c546610d2805b026809e8709950a231e1820e9 Mon Sep 17 00:00:00 2001 From: Craig Everett Date: Wed, 15 Oct 2025 15:52:46 +0900 Subject: [PATCH] Verup deps, and start listening for gproc messages at startup --- ebin/gajumine.app | 2 +- src/gajumine.erl | 3 ++- src/gmc_con.erl | 2 +- src/gmc_conf.erl | 2 +- src/gmc_gui.erl | 2 +- src/gmc_sup.erl | 2 +- zomp.meta | 6 +++--- 7 files changed, 10 insertions(+), 9 deletions(-) diff --git a/ebin/gajumine.app b/ebin/gajumine.app index 09b6de7..4b36edf 100644 --- a/ebin/gajumine.app +++ b/ebin/gajumine.app @@ -3,6 +3,6 @@ {registered,[]}, {included_applications,[]}, {applications,[stdlib,kernel]}, - {vsn,"0.3.1"}, + {vsn,"0.3.2"}, {modules,[gajumine,gmc_con,gmc_conf,gmc_gui,gmc_sup]}, {mod,{gajumine,[]}}]}. diff --git a/src/gajumine.erl b/src/gajumine.erl index 6008b58..79a15ff 100644 --- a/src/gajumine.erl +++ b/src/gajumine.erl @@ -3,7 +3,7 @@ %%% @end -module(gajumine). --vsn("0.3.1"). +-vsn("0.3.2"). -behavior(application). -author("Craig Everett "). -copyright("QPQ AG "). @@ -29,6 +29,7 @@ start(normal, _Args) -> {ok, _} = application:ensure_all_started(ssl), ok = application:ensure_started(hakuzaru), ok = application:ensure_started(zxwidgets), + ok = application:ensure_started(gproc), gmc_sup:start_link(). diff --git a/src/gmc_con.erl b/src/gmc_con.erl index d31e513..2ed7b01 100644 --- a/src/gmc_con.erl +++ b/src/gmc_con.erl @@ -3,7 +3,7 @@ %%% @end -module(gmc_con). --vsn("0.3.1"). +-vsn("0.3.2"). -author("Craig Everett "). -copyright("QPQ AG "). -license("GPL-3.0-or-later"). diff --git a/src/gmc_conf.erl b/src/gmc_conf.erl index fb947a0..8d26073 100644 --- a/src/gmc_conf.erl +++ b/src/gmc_conf.erl @@ -3,7 +3,7 @@ %%% @end -module(gmc_conf). --vsn("0.3.1"). +-vsn("0.3.2"). -author("Craig Everett "). -copyright("QPQ AG "). -license("GPL-3.0-or-later"). diff --git a/src/gmc_gui.erl b/src/gmc_gui.erl index c427cc1..605dd19 100644 --- a/src/gmc_gui.erl +++ b/src/gmc_gui.erl @@ -3,7 +3,7 @@ %%% @end -module(gmc_gui). --vsn("0.3.1"). +-vsn("0.3.2"). -author("Craig Everett "). -copyright("QPQ AG "). -license("GPL-3.0-or-later"). diff --git a/src/gmc_sup.erl b/src/gmc_sup.erl index e567608..878a47a 100644 --- a/src/gmc_sup.erl +++ b/src/gmc_sup.erl @@ -12,7 +12,7 @@ %%% @end -module(gmc_sup). --vsn("0.3.1"). +-vsn("0.3.2"). -behaviour(supervisor). -author("Craig Everett "). -copyright("QPQ AG "). diff --git a/zomp.meta b/zomp.meta index 912233e..b2e38c4 100644 --- a/zomp.meta +++ b/zomp.meta @@ -4,14 +4,14 @@ {prefix,"gmc"}. {desc,"Mining client for the Gajumaru Root"}. {author,"Craig Everett"}. -{package_id,{"qpq","gajumine",{0,3,1}}}. -{deps,[{"uwiger","gmhive_client",{0,6,0}}, +{package_id,{"qpq","gajumine",{0,3,2}}}. +{deps,[{"uwiger","gmhive_protocol",{0,2,0}}, + {"uwiger","gmhive_client",{0,8,2}}, {"uwiger","gmcuckoo",{1,2,4}}, {"uwiger","gmhive_worker",{0,5,1}}, {"qpq","cuckoo_cpu",{0,3,2}}, {"uwiger","gmconfig",{0,1,2}}, {"uwiger","gproc",{1,0,1}}, - {"uwiger","gmhive_protocol",{0,1,1}}, {"uwiger","enoise",{1,3,0}}, {"uwiger","setup",{2,2,4}}, {"otpr","hakuzaru",{0,6,1}},