* l3afpad-0.8.18.1.2

This commit is contained in:
Wen-Yen Chuang 2011-12-12 21:33:02 +08:00
parent 4d87dd6f37
commit c3c63280d4
7 changed files with 22 additions and 15 deletions

View File

@ -1,3 +1,8 @@
2011-09-05
version 0.8.18.1.2:
* Fix print function (This is a bug NOT in Leafpad, oops.)
2011-09-01
version 0.8.18.1.1:
@ -220,7 +225,7 @@
version 0.7.6:
* Improved command line recognition of filename (uri & space-separated).
* Added MimeType entry to l3afpad.desktop (suggested by Carlos).
* Added MimeType entry to leafpad.desktop (suggested by Carlos).
* Assigned Ctrl+G & Shift+Ctrl+G to Find Next/Previous.
* Added statements of copying permission to all source codes.
* Added French translation (thanks Luc Pionchon).
@ -229,7 +234,7 @@
2004-10-29
version 0.7.5:
* Added l3afpad.desktop file.
* Added leafpad.desktop file.
* Fixed DnD with space-separated filename (thanks Eugenia).
* Added Russian translation (thanks Artem Vakhitov).
* Added Swedish translation (thanks Isak Savo).

View File

@ -3,3 +3,4 @@ aclocal
autoheader
automake --gnu --add-missing --copy
autoconf
[ -d autom4te.cache ] && rm -fr autom4te.cache

18
configure vendored
View File

@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.68 for L3afpad 0.8.18.1.1.
# Generated by GNU Autoconf 2.68 for L3afpad 0.8.18.1.2.
#
# Report bugs to <caleb@calno.com>.
#
@ -560,8 +560,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='L3afpad'
PACKAGE_TARNAME='l3afpad'
PACKAGE_VERSION='0.8.18.1.1'
PACKAGE_STRING='L3afpad 0.8.18.1.1'
PACKAGE_VERSION='0.8.18.1.2'
PACKAGE_STRING='L3afpad 0.8.18.1.2'
PACKAGE_BUGREPORT='caleb@calno.com'
PACKAGE_URL=''
@ -1296,7 +1296,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
\`configure' configures L3afpad 0.8.18.1.1 to adapt to many kinds of systems.
\`configure' configures L3afpad 0.8.18.1.2 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@ -1362,7 +1362,7 @@ fi
if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of L3afpad 0.8.18.1.1:";;
short | recursive ) echo "Configuration of L3afpad 0.8.18.1.2:";;
esac
cat <<\_ACEOF
@ -1459,7 +1459,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
L3afpad configure 0.8.18.1.1
L3afpad configure 0.8.18.1.2
generated by GNU Autoconf 2.68
Copyright (C) 2010 Free Software Foundation, Inc.
@ -1828,7 +1828,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by L3afpad $as_me 0.8.18.1.1, which was
It was created by L3afpad $as_me 0.8.18.1.2, which was
generated by GNU Autoconf 2.68. Invocation command line was
$ $0 $@
@ -6928,7 +6928,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
This file was extended by L3afpad $as_me 0.8.18.1.1, which was
This file was extended by L3afpad $as_me 0.8.18.1.2, which was
generated by GNU Autoconf 2.68. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@ -6994,7 +6994,7 @@ _ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
L3afpad config.status 0.8.18.1.1
L3afpad config.status 0.8.18.1.2
configured by $0, generated by GNU Autoconf 2.68,
with options \\"\$ac_cs_config\\"

View File

@ -1,4 +1,4 @@
AC_INIT(L3afpad, 0.8.18.1.1, caleb@calno.com)
AC_INIT(L3afpad, 0.8.18.1.2, caleb@calno.com)
AM_INIT_AUTOMAKE($PACKAGE_TARNAME, $PACKAGE_VERSION)
AM_CONFIG_HEADER(config.h)

View File

@ -320,6 +320,7 @@ void on_help_about(void)
NULL
};
gtk_show_about_dialog(GTK_WINDOW(pub->mw->window),
"program-name", "Lɜafpad",
"version", PACKAGE_VERSION,
"copyright", copyright,
"comments", comments,

View File

@ -20,7 +20,7 @@
#include <gtk/gtk.h>
static PangoLayout *layout;
static PangoFontDescription *font_desc;
static const PangoFontDescription *font_desc;
static gint line_count, lines_per_page, text_height;
static gint n_pages;
static gdouble page_width, page_height;
@ -54,7 +54,7 @@ static void cb_begin_print(GtkPrintOperation *op,
page_width = gtk_print_context_get_width(ctx);
page_height = gtk_print_context_get_height(ctx);
gtk_widget_style_get_property(data, font_desc, font_desc);
font_desc = gtk_style_context_get_font(gtk_widget_get_style_context(data), GTK_STATE_FLAG_NORMAL);
layout = gtk_print_context_create_pango_layout(ctx);
pango_layout_set_width(layout, page_width * PANGO_SCALE);
pango_layout_set_font_description(layout, font_desc);