Skip to content

Commit

Permalink
Increment version number; Fix saving of completion setting; Fix parti…
Browse files Browse the repository at this point in the history
…al exchange rates update
  • Loading branch information
hanna-kn committed Jul 6, 2018
1 parent d97b1cf commit c2f5349
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
9 changes: 9 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,15 @@
* "Keep open" option for insert function dialogs
* Hide "Insert Emoji" expression context menu item

2018-06-20 Hanna Knutsson <hanna.knutsson@protonmail.com>

* Do not retrieve exchange rates not needed
* Focus plot expression entry after graph added, modified or removed

2018-06-13 Hanna Knutsson <hanna.knutsson@protonmail.com>

* Show currency flag also when symbol (instead of ISO code) is used. The flag is placed after number if the currency is placed in front of the number with no space inbetween.

2018-06-02 Hanna Knutsson <hanna.knutsson@protonmail.com>

* Prefix completion suggestions and prefix handling in unit completion suggestions
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ dnl ----------------------
dnl | initialize autotools |---------------------------------------------------
dnl ----------------------

AC_INIT([Qalculate! (GTK+ UI)], [2.6.0],[],[qalculate-gtk])
AC_INIT([Qalculate! (GTK+ UI)], [2.6.1],[],[qalculate-gtk])
AC_CONFIG_SRCDIR([src/callbacks.cc])
AM_INIT_AUTOMAKE
AC_CONFIG_MACRO_DIR([m4])
Expand Down
6 changes: 3 additions & 3 deletions src/callbacks.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1129,7 +1129,7 @@ bool check_exchange_rates(GtkWidget *win = NULL, bool set_result = false) {
if(b || auto_update_exchange_rates > 0) {
if(auto_update_exchange_rates <= 0) i = -1;
if(!b && set_result) setResult(NULL, false, false, false, "", 0, false);
fetch_exchange_rates(b ? 15 : 8);
fetch_exchange_rates(b ? 15 : 8, i);
CALCULATOR->loadExchangeRates();
return true;
}
Expand Down Expand Up @@ -11964,7 +11964,7 @@ void load_preferences() {
#endif
}

int version_numbers[] = {2, 6, 0};
int version_numbers[] = {2, 6, 1};
bool old_history_format = false;

if(file) {
Expand Down Expand Up @@ -12705,7 +12705,7 @@ void save_preferences(bool mode) {
fprintf(file, "rpn_keys=%i\n", rpn_keys);
fprintf(file, "display_expression_status=%i\n", display_expression_status);
fprintf(file, "enable_completion=%i\n", enable_completion);
fprintf(file, "enable_completion2=%i\n", enable_completion);
fprintf(file, "enable_completion2=%i\n", enable_completion2);
fprintf(file, "completion_min=%i\n", completion_min);
fprintf(file, "completion_min2=%i\n", completion_min2);
fprintf(file, "completion_delay=%i\n", completion_delay);
Expand Down

0 comments on commit c2f5349

Please sign in to comment.