Most retarded fucking change in the world for R27

This commit is contained in:
Craig Everett 2024-12-11 21:13:49 +09:00
parent 5069ebe3b8
commit a9e5bb7d39
60 changed files with 25 additions and 24 deletions

View File

@ -3,7 +3,7 @@
# A convenience script that will download the ZX installer, unpack it, and clean up.
# For maximum portability this script uses the gzipped package version.
version=0.12.7
version=0.13.6
zx="zx-$version"
tarball="$zx.tar.gz"
target="https://zxq9.com/projects/zomp/$tarball"

View File

@ -44,6 +44,7 @@ for rc in "$HOME/.profile" "$HOME/.bashrc" "$HOME/.bash_profile"
echo "Path adjustment found in $rc."
else
echo "Path adjustment not found in $rc. Adding it."
echo "\n" >> "$rc"
echo "export PATH=\"\$HOME/bin:\$PATH\"" >> "$rc"
fi
else

View File

@ -1 +1 @@
0.13.5
0.13.6

View File

@ -1,6 +1,6 @@
{application,zx,
[{description,"An Erlang development tool and Zomp user client"},
{vsn,"0.13.5"},
{vsn,"0.13.6"},
{applications,[stdlib,kernel]},
{modules,[zx,zx_auth,zx_conn,zx_conn_sup,zx_daemon,zx_key,
zx_lib,zx_local,zx_net,zx_peer,zx_peer_man,

View File

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -24,7 +24,7 @@
%%% @end
-module(zx).
-vsn("0.13.5").
-vsn("0.13.6").
-behavior(application).
-author("Craig Everett <zxq9@zxq9.com>").
-copyright("Craig Everett <zxq9@zxq9.com>").

View File

@ -9,7 +9,7 @@
%%% @end
-module(zx_auth).
-vsn("0.13.5").
-vsn("0.13.6").
-author("Craig Everett <zxq9@zxq9.com>").
-copyright("Craig Everett <zxq9@zxq9.com>").
-license("GPL-3.0").

View File

@ -7,7 +7,7 @@
%%% @end
-module(zx_conn).
-vsn("0.13.5").
-vsn("0.13.6").
-author("Craig Everett <zxq9@zxq9.com>").
-copyright("Craig Everett <zxq9@zxq9.com>").
-license("GPL-3.0").

View File

@ -5,7 +5,7 @@
%%% @end
-module(zx_conn_sup).
-vsn("0.13.5").
-vsn("0.13.6").
-behavior(supervisor).
-author("Craig Everett <zxq9@zxq9.com>").
-copyright("Craig Everett <zxq9@zxq9.com>").

View File

@ -138,7 +138,7 @@
%%% @end
-module(zx_daemon).
-vsn("0.13.5").
-vsn("0.13.6").
-behavior(gen_server).
-author("Craig Everett <zxq9@zxq9.com>").
-copyright("Craig Everett <zxq9@zxq9.com>").

View File

@ -8,7 +8,7 @@
%%% @end
-module(zx_key).
-vsn("0.13.5").
-vsn("0.13.6").
-author("Craig Everett <zxq9@zxq9.com>").
-copyright("Craig Everett <zxq9@zxq9.com>").
-license("GPL-3.0").

View File

@ -10,7 +10,7 @@
%%% @end
-module(zx_lib).
-vsn("0.13.5").
-vsn("0.13.6").
-author("Craig Everett <zxq9@zxq9.com>").
-copyright("Craig Everett <zxq9@zxq9.com>").
-license("GPL-3.0").

View File

@ -6,7 +6,7 @@
%%% @end
-module(zx_local).
-vsn("0.13.5").
-vsn("0.13.6").
-author("Craig Everett <zxq9@zxq9.com>").
-copyright("Craig Everett <zxq9@zxq9.com>").
-license("GPL-3.0").
@ -259,7 +259,7 @@ project_check(P = #project{id = PackageID}, Continue, Retry) ->
2 -> Continue(P);
3 -> ok
end;
maybe ->
weather_permitting ->
Message =
"~n∑(。・Д・。)???~nHmmm...~n"
"zx_daemon wasn't able to check whether this package already exists.~n"
@ -1894,7 +1894,7 @@ package_exists({Realm, Package, _}) ->
{ok, ID} = zx_daemon:list(Realm),
case zx_daemon:wait_result(ID) of
{ok, Packages} -> lists:member(Package, Packages);
_ -> maybe
_ -> weather_permitting
end.

View File

@ -5,7 +5,7 @@
%%% @end
-module(zx_net).
-vsn("0.13.5").
-vsn("0.13.6").
-author("Craig Everett <zxq9@zxq9.com>").
-copyright("Craig Everett <zxq9@zxq9.com>").
-license("GPL-3.0").

View File

@ -8,7 +8,7 @@
%%% @end
-module(zx_peer).
-vsn("0.13.5").
-vsn("0.13.6").
-author("Craig Everett <zxq9@zxq9.com>").
-copyright("Craig Everett <zxq9@zxq9.com>").
-license("GPL-3.0").

View File

@ -9,7 +9,7 @@
%%% @end
-module(zx_peer_man).
-vsn("0.13.5").
-vsn("0.13.6").
-behavior(gen_server).
-author("Craig Everett <zxq9@zxq9.com>").
-copyright("Craig Everett <zxq9@zxq9.com>").

View File

@ -6,7 +6,7 @@
%%% @end
-module(zx_peer_sup).
-vsn("0.13.5").
-vsn("0.13.6").
-behaviour(supervisor).
-author("Craig Everett <zxq9@zxq9.com>").
-copyright("Craig Everett <zxq9@zxq9.com>").

View File

@ -10,7 +10,7 @@
%%% @end
-module(zx_peers).
-vsn("0.13.5").
-vsn("0.13.6").
-behavior(supervisor).
-author("Craig Everett <zxq9@zxq9.com>").
-copyright("Craig Everett <zxq9@zxq9.com>").

View File

@ -5,7 +5,7 @@
%%% @end
-module(zx_proxy).
-vsn("0.13.5").
-vsn("0.13.6").
-author("Craig Everett <zxq9@zxq9.com>").
-copyright("Craig Everett <zxq9@zxq9.com>").
-license("GPL-3.0").

View File

@ -5,7 +5,7 @@
%%% @end
-module(zx_sup).
-vsn("0.13.5").
-vsn("0.13.6").
-behavior(supervisor).
-author("Craig Everett <zxq9@zxq9.com>").
-copyright("Craig Everett <zxq9@zxq9.com>").

View File

@ -6,7 +6,7 @@
%%% @end
-module(zx_tty).
-vsn("0.13.5").
-vsn("0.13.6").
-author("Craig Everett <zxq9@zxq9.com>").
-copyright("Craig Everett <zxq9@zxq9.com>").
-license("GPL-3.0").

View File

@ -5,7 +5,7 @@
%%% @end
-module(zx_userconf).
-vsn("0.13.5").
-vsn("0.13.6").
-author("Craig Everett <zxq9@zxq9.com>").
-copyright("Craig Everett <zxq9@zxq9.com>").
-license("GPL-3.0").

View File

@ -7,7 +7,7 @@
%%% @end
-module(zx_zsp).
-vsn("0.13.5").
-vsn("0.13.6").
-author("Craig Everett <zxq9@zxq9.com>").
-copyright("Craig Everett <zxq9@zxq9.com>").
-license("GPL-3.0").

View File

@ -4,7 +4,7 @@
{prefix,"zx_"}.
{author,"Craig Everett"}.
{desc,"An Erlang development tool and Zomp user client"}.
{package_id,{"otpr","zx",{0,13,5}}}.
{package_id,{"otpr","zx",{0,13,6}}}.
{deps,[]}.
{key_name,none}.
{a_email,"zxq9@zxq9.com"}.