-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
85 lines (85 loc) · 5.17 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<title>Qalculate! - the ultimate desktop calculator</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="images/qalculate-icon.png" type="image/png" />
<link rel="stylesheet" type="text/css" href="css/qalculate.css" />
</head>
<body class="qbody">
<header class="header"><nav class="navbar_m">
<a href="index.html" class="nav-logo">Qalculate!</a>
<ul class="nav-menu">
<li class="nav-item"><a href="news.html" class="nav-link">News</a></li>
<li class="nav-item"><a href="features.html" class="nav-link">Features</a></li>
<li class="nav-item"><a href="screenshots.html" class="nav-link">Screenshots</a></li>
<li class="nav-item"><a href="downloads.html" class="nav-link">Downloads</a></li>
<li class="nav-item"><a href="contact.html" class="nav-link">Contact</a></li>
<li class="nav-item"><a href="manual/index.html" class="nav-link">Manual</a></li>
<li class="nav-item"><a href="reference/index.html" class="nav-link">API Reference</a></li>
<li class="nav-item"><a href="https://www.paypal.me/HannaKnutsson" class="nav-link navdonate"><img src="images/heart.png" class="heart">Donate</a></li>
</ul>
<div class="hamburger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
</nav></header>
<div class="navbar" id="navbar"><div style="text-align:center">
<a href="index.html" class="navitem navleave navq">Qalculate!</a>
<a href="news.html" class="navitem">News</a>
<a href="features.html" class="navitem">Features</a>
<a href="screenshots.html" class="navitem">Screenshots</a>
<a href="downloads.html" class="navitem">Downloads</a>
<a href="contact.html" class="navitem">Contact</a>
<a href="manual/index.html" class="navitem navleave">Manual</a>
<a href="reference/index.html" class="navitem navleave">API</a>
<a href="https://www.paypal.me/HannaKnutsson" class="navitem navleave navdonate"><img src="images/heart.png" class="heart">Donate</a>
</div></div>
<div class="main">
<div class="title"><span class="qcolor">Q</span>alculate!</div>
<div class="subtitle">- the ultimate desktop calculator</div>
<div>
<div class="mainscreenshot"><a href="screenshots.html" alt="Screenshot"><img class="mainscreenshotimg" src="images/qalculate-window.png"/></a></div>
<div class="description">Qalculate! is a multi-purpose cross-platform desktop calculator. It is simple to use but provides power and versatility normally reserved for complicated math packages, as well as useful tools for everyday needs (such as currency conversion and percent calculation). Features include a large library of customizable functions, unit calculations and conversion, physical constants, symbolic calculations (including integrals and equations), arbitrary precision, uncertainty propagation, interval arithmetic, plotting, and a user-friendly interface (GTK, Qt, and CLI).</div>
<br>
<div class="description">Qalculate! is free software, licensed under the <a href="https://www.gnu.org/licenses/old-licenses/gpl-2.0.html">GNU Public License v2</a> (or later).</div><br>
</div>
<div style="text-align: center; margin-top: 0.5em;"><a href="downloads.html" class="button">Download version 5.4</a></div>
<br><br>
<div class="lncontent">
<div class="latestnews">Latest News</div>
<div class="newsdate">2024-11-25</div>
<div class="newstitle">Qalculate! version 5.4 released</div>
Changes:
<ul>
<li>New functions: tripleProduct(), multilimit()</li>
<li>Improve decision to automatically convert unchanged quantity with unit</li>
<li>Updated French translation</li>
<li>Fix case conversion of µ to M and similar</li>
<li>Fix segfault with very large integer raised by very large integer</li>
<li>Option to continuously display result while editing expression (CLI)</li>
<li>Option to specify number of displayed significant digits, instead of using precision (Gtk, CLI)</li>
<li>Option, in menu, to open settings folder(s) (Gtk, Qt)</li>
<li>Fix number base subscripts in programming keypad (Gtk)</li>
<li>Fix keyboard shortcut with copy followed by quit (Gtk)</li>
<li>Fix initial selection and exclusion of optional arguments from output of insert function dialog (Gtk)</li>
<li>Fix precision in Preset mode (Gtk)</li>
<li>Hungarian translation (Gtk)</li>
<li>Apply dual approximation/fraction to calculate as you type result, as regular result but with length restriction (Qt)</li>
<li>Add option to add/edit comment to history context menu, and save comments in result on exit (Qt)</li>
<li>Add "Search by Date" (also shows the date of the expression) to history context menu (Qt)</li>
<li>Option to automatically group digits in input (Qt)</li>
<li>Fix equals sign for calculate as you type result (Qt)</li>
<li>Fix segfault with calculate as you type of "-(300K" and similar (Qt)</li>
<li>Fix saving of two's complement input settings (Qt)</li>
<li>Minor bug fixes and feature enhancements</li>
</ul>
<div style="text-align: left;"><a href="news.html">older news...</a></div>
</div>
<div style="text-align: right;"><a href="https://github.com/Qalculate" class="githubbutton">GitHub project</a></div>
</div>
</body>
<script src="scripts/mobile.js"></script>
</html>