1
0
Fork 0
tinmop/ChangeLog

131 lines
3.6 KiB
Plaintext
Raw Normal View History

2020-06-11 17:44:27 +02:00
2020-06-11 cage
* etc/shared.conf
* src/api-client.lisp
* src/db.lisp
* src/package.lisp
* src/program-events.lisp
* src/software-configuration.lisp
* src/ui-goodies.lisp
- fixed skipping of ignored users
When a set of downloaded statuses contains one or more status from
an ignored user restarts the download process again starting from the
last (or first, if going backward) downloaded status (ordered by ID).
This way we could skip over a bunch of ignored status.
The number of download restarting iteration is limited to 3
- added a configuration directive to ignore usernames that match a
regular exception.
2020-06-07 11:55:37 +02:00
2020-06-07 cage
2020-06-07 13:04:08 +02:00
* configure
* src/ui-goodies.lisp
2020-06-07 11:55:37 +02:00
* src/api-client.lisp
* src/api-pleroma.lisp
* src/db.lisp
* src/message-rendering-utils.lisp
* src/package.lisp
* src/text-utils.lisp
* tinmop.asd
2020-06-07 13:04:08 +02:00
- remove duplicated urls in messages that are a reblog;
- fixed swapped docstrings;
- updated configure.
2020-06-07 11:55:37 +02:00
- moved pleroma specific API to i package :api-pleroma;
- renamed function: 'text-utils:left-padding-suffix' to 'text-utils:left-padding-prefix';
- rendered the choice index for poll's choices;
2020-06-07 12:14:24 +02:00
- shown if a poll allows multiple choiches;
- printed an error to the user when trying to vote for a message
that does not contains a poll.
2020-06-07 11:55:37 +02:00
2020-05-31 12:51:35 +02:00
2020-05-31 cage
2020-05-31 16:51:10 +02:00
* etc/init.lisp
* src/api-client.lisp
* src/program-events.lisp
* src/ui-goodies.lisp
2020-05-31 12:51:35 +02:00
* etc/default-theme.conf
* etc/shared.conf
* po/it.po
* po/tinmop.pot
* src/db.lisp
* src/message-rendering-utils.lisp
* src/package.lisp
* src/software-configuration.lisp
* src/thread-window.lisp
- [breaking changes]
2020-05-31 16:51:10 +02:00
Added polls. To allow this feature two new tables
2020-05-31 12:51:35 +02:00
"poll" and "poll-options" has been added to database schema.
2020-05-30 10:01:39 +02:00
2020-05-30 cage
* etc/init.lisp
* src/api-client.lisp
* src/command-line.lisp
* src/complete.lisp
* src/db.lisp
* src/main.lisp
* src/package.lisp
* src/program-events.lisp
2020-05-30 11:56:24 +02:00
* src/thread-window.lisp
2020-05-30 10:01:39 +02:00
* src/tui-utils.lisp
* src/ui-goodies.lisp
2020-05-30 11:56:24 +02:00
* tinmop.asd
2020-05-30 10:01:39 +02:00
2020-05-30 11:56:24 +02:00
- [breaking changes] changed table for attachments;
- fixed bug that prevented statuses missing attachments when the
status was reblogged.
2020-05-30 10:01:39 +02:00
- added optional notification of statuses mentioning the user;
2020-06-07 12:38:25 +02:00
- protected reblogged timeline from accidental deletion;
2020-05-30 11:56:24 +02:00
- added the possibility to force expanding of a message tree;
- rearranged compilation order to prevent warning about command line
switch;
- rearranged order of packages.
2020-05-30 10:01:39 +02:00
2020-05-20 cage
* quick_quicklisp.sh.in
- removed useless switch.
2020-05-19 20:41:45 +02:00
2020-05-19 cage
* src/db.lisp (renumber-timeline-message-index)
* src/command-line.lisp (gen-opts)
* etc/shared.conf
- fixed renumbering of 'message-index' of status
The old procedure did not took into account the 'folder' and
'timeline' columns making possible to overwrite index of a copy of
the same message placed in different folder. This bug made the
program crash;
- fixed command line long option;
- fixed wrong name of a variable in a configuration file.
2020-05-18 19:32:55 +02:00
2020-05-18 cage
* doc/man.org
* doc/tinmop.man
* po/it.po
* po/tinmop.pot
* src/command-line.lisp
* src/main.lisp
* src/package.lisp
- added the reset of timeline pagination from command line.
2020-05-17 18:03:16 +02:00
2020-05-17 cage
* src/open-message-link-window.lisp
* src/text-utils.lisp
- added a class to represent a window with the links that a message contains
The links are collected by the new function
text-utils:collect-links applyed on the rendered text of a status.
2020-05-15 cage
- initial release