Name Status Last Modified Last Commit
lp:debian/stretch/tickr 1 Development 2015-05-27 20:23:34 UTC
7. * In pref windows, some setting chang...

Author: Emmanuel Thomas-Maurin
Revision Date: 2013-05-23 16:57:41 UTC

* In pref windows, some setting changes (like 'read n items per feed')
  need the stream to be reloaded, so now we use:
    current_feed();
  instead of:
    update_pixmap_from_opened_stream();

* Fix 'quick feed picker (selected feeds) closes when pointer leaves
  win area' and implement it as a setting.

* In pref window, disabling screen limits updates win_y and win_w
  limits on the fly.

* Max options number now set to 128.

* Pref win changes:
  - remove 'system' colors buttons
  - increase gtk table row spacings

* If gradient bg set, compute text shadow color no longer from
  bg_color but from gradient.

* Quick feed picker (selected feeds) closes when pointer leaves win
  area. Plus: quick feed picker opened *also* by Ctrl + mouse
  right-click.

* Complete RSS 1.0 support (Closes: #688099) and fix/rewrite a few
  things in feed parser code.

* In tickr_feedparser.c: ending '\n' removed when adding string to
  XML_DUMP (left when adding string to XML_DUMP_EXTRA).

* Replace update_win_dims() with update_win_dims_and_loc() so that if
  ticker location happens to be wrong, it's always and quickly reset.

* Add RSS 1.0 (RDF) support.

* In tickr_main.c / main(), change:
    gtk_widget_show_all(env->win);
    update_win_dims();
    gtk_main();
  to:
    gtk_widget_show_all(env->win);
    gtk_widget_set_size_request(env->win, 1, 1);
    gtk_window_resize(GTK_WINDOW(env->win), 1, 1);
    gtk_main();
  to try to get rid of "ghost" square window at startup (but is this
  fully effective ?)
  Also change:
    gtk_widget_set_size_request(env->win, 0, 0)
  to:
    gtk_widget_set_size_request(env->win, 1, 1)
  in update_win_dims().

* In feed picker - multiple selection mode: start reading selection
  with highlighted feed - more exactly url in entry (if any) / first
  one otherwise.

* Remove (useless ?) app version number from exported OPML feed list
  title.

* Only a little editor issue - some editors get confused (geany colors
  get confused) by things like:
    THIS_IS_A_#DEFINE"____string____"
  so now we put a space in between, like this:
    THIS_IS_A_#DEFINE "____string____"

* If win_w = 0, win_w = detected screen width (same as 'full width'
  but from command line).

* Fix xml namespaces issue in tickr_feedparser.c, when, for instance,
  'media:title' exists along with 'title' and we then get 'title'
  twice. Now, we make sure no extra namespace is used before comparing
  strings with 'title', 'description', etc.

* Fix stupid bug in format_resource() 'translate html entities' when
  '&' alone is detected (ie without a following ';'). Also fix
  'translating' numerical entities with leading '0' in value string.

* New option 'disablescreenlimits' which allows win_y and win_w to be
  greater than screen dimensions.

* A few default settings changed.

* Gradient bg.

lp:debian/jessie/tickr 1 Development 2013-05-23 16:57:41 UTC
7. * In pref windows, some setting chang...

Author: Emmanuel Thomas-Maurin
Revision Date: 2013-05-23 16:57:41 UTC

* In pref windows, some setting changes (like 'read n items per feed')
  need the stream to be reloaded, so now we use:
    current_feed();
  instead of:
    update_pixmap_from_opened_stream();

* Fix 'quick feed picker (selected feeds) closes when pointer leaves
  win area' and implement it as a setting.

* In pref window, disabling screen limits updates win_y and win_w
  limits on the fly.

* Max options number now set to 128.

* Pref win changes:
  - remove 'system' colors buttons
  - increase gtk table row spacings

* If gradient bg set, compute text shadow color no longer from
  bg_color but from gradient.

* Quick feed picker (selected feeds) closes when pointer leaves win
  area. Plus: quick feed picker opened *also* by Ctrl + mouse
  right-click.

* Complete RSS 1.0 support (Closes: #688099) and fix/rewrite a few
  things in feed parser code.

* In tickr_feedparser.c: ending '\n' removed when adding string to
  XML_DUMP (left when adding string to XML_DUMP_EXTRA).

* Replace update_win_dims() with update_win_dims_and_loc() so that if
  ticker location happens to be wrong, it's always and quickly reset.

* Add RSS 1.0 (RDF) support.

* In tickr_main.c / main(), change:
    gtk_widget_show_all(env->win);
    update_win_dims();
    gtk_main();
  to:
    gtk_widget_show_all(env->win);
    gtk_widget_set_size_request(env->win, 1, 1);
    gtk_window_resize(GTK_WINDOW(env->win), 1, 1);
    gtk_main();
  to try to get rid of "ghost" square window at startup (but is this
  fully effective ?)
  Also change:
    gtk_widget_set_size_request(env->win, 0, 0)
  to:
    gtk_widget_set_size_request(env->win, 1, 1)
  in update_win_dims().

* In feed picker - multiple selection mode: start reading selection
  with highlighted feed - more exactly url in entry (if any) / first
  one otherwise.

* Remove (useless ?) app version number from exported OPML feed list
  title.

* Only a little editor issue - some editors get confused (geany colors
  get confused) by things like:
    THIS_IS_A_#DEFINE"____string____"
  so now we put a space in between, like this:
    THIS_IS_A_#DEFINE "____string____"

* If win_w = 0, win_w = detected screen width (same as 'full width'
  but from command line).

* Fix xml namespaces issue in tickr_feedparser.c, when, for instance,
  'media:title' exists along with 'title' and we then get 'title'
  twice. Now, we make sure no extra namespace is used before comparing
  strings with 'title', 'description', etc.

* Fix stupid bug in format_resource() 'translate html entities' when
  '&' alone is detected (ie without a following ';'). Also fix
  'translating' numerical entities with leading '0' in value string.

* New option 'disablescreenlimits' which allows win_y and win_w to be
  greater than screen dimensions.

* A few default settings changed.

* Gradient bg.

lp:debian/tickr bug 1 Development 2013-05-23 16:57:41 UTC
7. * In pref windows, some setting chang...

Author: Emmanuel Thomas-Maurin
Revision Date: 2013-05-23 16:57:41 UTC

* In pref windows, some setting changes (like 'read n items per feed')
  need the stream to be reloaded, so now we use:
    current_feed();
  instead of:
    update_pixmap_from_opened_stream();

* Fix 'quick feed picker (selected feeds) closes when pointer leaves
  win area' and implement it as a setting.

* In pref window, disabling screen limits updates win_y and win_w
  limits on the fly.

* Max options number now set to 128.

* Pref win changes:
  - remove 'system' colors buttons
  - increase gtk table row spacings

* If gradient bg set, compute text shadow color no longer from
  bg_color but from gradient.

* Quick feed picker (selected feeds) closes when pointer leaves win
  area. Plus: quick feed picker opened *also* by Ctrl + mouse
  right-click.

* Complete RSS 1.0 support (Closes: #688099) and fix/rewrite a few
  things in feed parser code.

* In tickr_feedparser.c: ending '\n' removed when adding string to
  XML_DUMP (left when adding string to XML_DUMP_EXTRA).

* Replace update_win_dims() with update_win_dims_and_loc() so that if
  ticker location happens to be wrong, it's always and quickly reset.

* Add RSS 1.0 (RDF) support.

* In tickr_main.c / main(), change:
    gtk_widget_show_all(env->win);
    update_win_dims();
    gtk_main();
  to:
    gtk_widget_show_all(env->win);
    gtk_widget_set_size_request(env->win, 1, 1);
    gtk_window_resize(GTK_WINDOW(env->win), 1, 1);
    gtk_main();
  to try to get rid of "ghost" square window at startup (but is this
  fully effective ?)
  Also change:
    gtk_widget_set_size_request(env->win, 0, 0)
  to:
    gtk_widget_set_size_request(env->win, 1, 1)
  in update_win_dims().

* In feed picker - multiple selection mode: start reading selection
  with highlighted feed - more exactly url in entry (if any) / first
  one otherwise.

* Remove (useless ?) app version number from exported OPML feed list
  title.

* Only a little editor issue - some editors get confused (geany colors
  get confused) by things like:
    THIS_IS_A_#DEFINE"____string____"
  so now we put a space in between, like this:
    THIS_IS_A_#DEFINE "____string____"

* If win_w = 0, win_w = detected screen width (same as 'full width'
  but from command line).

* Fix xml namespaces issue in tickr_feedparser.c, when, for instance,
  'media:title' exists along with 'title' and we then get 'title'
  twice. Now, we make sure no extra namespace is used before comparing
  strings with 'title', 'description', etc.

* Fix stupid bug in format_resource() 'translate html entities' when
  '&' alone is detected (ie without a following ';'). Also fix
  'translating' numerical entities with leading '0' in value string.

* New option 'disablescreenlimits' which allows win_y and win_w to be
  greater than screen dimensions.

* A few default settings changed.

* Gradient bg.

lp:debian/experimental/tickr bug 1 Development 2013-02-04 17:12:37 UTC
8. * Fix messy update_everything() funct...

Author: Emmanuel Thomas-Maurin
Revision Date: 2013-02-04 17:12:37 UTC

* Fix messy update_everything() function and add new
  update_pixmap_from_opened_stream() function, used in tickr_mainc.c
  and tickr_prefwin.c.

* All *string* values are now saved inclosed in a pair of " or '.
  (This avoid getting trailing whitespaces removed by some editors,
  and other weird things like that.) When read, enclosing " or ' are
  removed, so backward compatibility is preserved.

* install-on-win32 script renamed build-on-win32 (for accuracy sake.)

* Fix some confusion about win_transparency in tickr_param.c.
  Actually, double value from 0.1 to 1.0 inside program / int value
  from 1 to 10 inside config file or as command line argument.

* Fix settings import doing nothing (regression bug).

* In show_resource_info(), fix URL link and GTK label.

* Move and set:
    #define N_STR_MAX 8
    #define STR_MAXLEN FILE_NAME_MAXLEN (128 previously)
  and remove duplicates.

* In tickr_feedpicker.c, add:
    if (IS_FLIST(flist_bak))
      ( f_list_free_all(flist_bak); )
  to fix: list crash (f_list_free_all(): Invalid node in list) after
  adding a feed to an empty list (when clicking OK).

* Rename (#define RESOURCE_DUMP) APP_CMD"-resrc-dump" ->
  APP_CMD"-resrc-dump.xml" (because it *is* an XML file.)

* Little changes in big_error() text.

lp:debian/wheezy/tickr 1 Development 2012-06-04 14:23:24 UTC
6. * Add: 'quick setup' thing (in tickr_...

Author: Emmanuel Thomas-Maurin
Revision Date: 2012-06-04 14:23:24 UTC

* Add: 'quick setup' thing (in tickr_quicksetup.c) which is launched
  at program startup if config file doesn't exist.

* Little improvements in layout of 'feed picker win' and 'preferences
  win'.

* Fix a segfault that happens when trying to export params and no
  config file exists yet.

* Make several windows that should not be resized by user, unresizable.

* Fix Launchpad bug #1007346: When 'window always-on-top' is disabled,
  'visible on all user desktops' stops working.

* If mouse wheel scrolling applies to speed (or feed), then Ctrl +
  mouse wheel scrolling applies to feed (or speed.)

* No real code changes in libetm, only in comments, so no need for a
  new version number.

* Update tickr_helptext.c and tickr.1 (man page.)

* Add new cli option 'no-ui' (similar to 'instance-id') used by new
  IF_UI_ALLOWED macro and remove all #if USE_GUI occurences.

* In tickr_list.c, free listfname before using it. Fixed by swapping 2
  lines:
    warning(FALSE, 4, "Can't save URL list ", listfname, ...);
    l_str_free(listfname);

* Use/add #define
    FONT_MAXLEN 68
    ARBITRARY_TASKBAR_HEIGHT 25
  to replace a few 'magic' numeric values.

* Rename: rss_title/description(_delimiter) ->
    item_title/description(_delimiter)
  then add new param: feed_title(_delimiter). Now we have:
  feed title / item title / item description.

* Use table in resource properties window.

* Fix a bug in f_list_load_from_file() in tickr_list.c which
  uncorrectly retrieves any feed title string containing TITLE_TAG_CHAR
  when TITLE_TAG_CHAR has not been removed from string first, for
  instance: 'NYT > World' -> ' World'.

* New param: disable left-click.

* Add 'check for updates' feature.

* Launch 'import OPML file' if feed list doesn't exist.

* Remove code changing get_params()->disable_popups value in
    START/END_PAUSE_TICKER_WHILE_OPENING
  macros which prevents this setting to be saved and add
    START/END_PAUSE_TICKER_ENABLE_POPUPS_WHILE_OPENING
  new macros. Which ones to use depends on context.

* Move:
    #ifdef G_OS_WIN32
    extern FILE *stdout_fp, *stderr_fp;
    #endif
  from *.c into tickr.h.

* Default always-on-top setting changed to 'n' (so that tickr is not
  intrusive by default.)

15 of 5 results