v0.29 Adding discord community to retrieve feedback.
This commit is contained in:
parent
af6576819a
commit
2f8e992093
@ -82,6 +82,11 @@ sub _build__gresources_path($self) {
|
|||||||
return $gresources;
|
return $gresources;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
sub launch_discord($self) {
|
||||||
|
my $launcher = Gtk::UriLauncher->new( 'https://discord.gg/qsvzSJPX' );
|
||||||
|
$launcher->launch( $self->_window, undef, undef );
|
||||||
|
}
|
||||||
|
|
||||||
sub get_width($self) {
|
sub get_width($self) {
|
||||||
return $self->_window->get_property('default-width');
|
return $self->_window->get_property('default-width');
|
||||||
}
|
}
|
||||||
|
@ -14,7 +14,6 @@ use Data::Dumper;
|
|||||||
require XSLoader;
|
require XSLoader;
|
||||||
XSLoader::load('JapaChar');
|
XSLoader::load('JapaChar');
|
||||||
|
|
||||||
|
|
||||||
sub _font_dir($self) {
|
sub _font_dir($self) {
|
||||||
require JapaChar;
|
require JapaChar;
|
||||||
my $root = JapaChar->root;
|
my $root = JapaChar->root;
|
||||||
|
@ -121,6 +121,17 @@ sub run($self) {
|
|||||||
$button_assisted_mode->set_hexpand(1);
|
$button_assisted_mode->set_hexpand(1);
|
||||||
$button_assisted_mode->set_valign('center');
|
$button_assisted_mode->set_valign('center');
|
||||||
$button_assisted_mode->set_halign('center');
|
$button_assisted_mode->set_halign('center');
|
||||||
|
my $button_discord_community = Gtk::Button->new_with_label('Join the discord community');
|
||||||
|
$button_discord_community->set_vexpand(1);
|
||||||
|
$button_discord_community->set_hexpand(1);
|
||||||
|
$button_discord_community->set_valign('center');
|
||||||
|
$button_discord_community->set_halign('center');
|
||||||
|
$button_discord_community->signal_connect(
|
||||||
|
clicked => sub {
|
||||||
|
$self->app->launch_discord;
|
||||||
|
}
|
||||||
|
);
|
||||||
|
$grid->attach( $button_discord_community, 0, 3, 5, 1 );
|
||||||
$self->app->window_set_child($grid);
|
$self->app->window_set_child($grid);
|
||||||
}
|
}
|
||||||
1;
|
1;
|
||||||
|
@ -30,7 +30,12 @@
|
|||||||
|
|
||||||
<developer_name>sergiotarxz</developer_name>
|
<developer_name>sergiotarxz</developer_name>
|
||||||
<releases>
|
<releases>
|
||||||
<release version="v0.28" date="2024-11-09">
|
<release version="v0.29" date="2024-11-13">
|
||||||
|
<description>
|
||||||
|
<p>Adding discord community to retrieve feedback from users.</p>
|
||||||
|
</description>
|
||||||
|
</release>
|
||||||
|
<release version="v0.28" date="2024-11-10">
|
||||||
<description>
|
<description>
|
||||||
<p>Migrating to XS because Inline::C is giving compatibility issues.</p>
|
<p>Migrating to XS because Inline::C is giving compatibility issues.</p>
|
||||||
</description>
|
</description>
|
||||||
|
@ -4,6 +4,14 @@ use v5.38.2;
|
|||||||
|
|
||||||
use File::Basename;
|
use File::Basename;
|
||||||
|
|
||||||
|
BEGIN {
|
||||||
|
open my $fh, '>&', \*STDERR;
|
||||||
|
open STDERR, '>', '/dev/null';
|
||||||
|
system 'perl', 'Build.PL';
|
||||||
|
system 'perl', 'Build', 'build';
|
||||||
|
open STDERR, '>&', $fh;
|
||||||
|
};
|
||||||
|
|
||||||
use blib;
|
use blib;
|
||||||
|
|
||||||
use JapaChar;
|
use JapaChar;
|
||||||
|
Loading…
Reference in New Issue
Block a user