Skip to content

Commit cae9316

Browse files
committed
v1.0.1
1 parent 4fc0157 commit cae9316

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
## 0.1
2+
3+
### 0.1.1
4+
5+
- Added placeholder content when history is cleared
6+
- Added code to replace some characters when typing (eg. integrate → ∫)
7+
- Fixed bug causing \  to appear in result in some circumstances
8+
- Fixed bug that prevented some history items from being deleted
9+
- Decreased minimum supported macOS version from 14.6 to 14.3

libqalc/Qalculate/Qalculate.hpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,3 @@ FOUNDATION_EXPORT const unsigned char QalculateFrameworkVersionString[];
1616
// In this header, you should import all the public headers of your framework using statements like #import <QalculateFramework/PublicHeader.h>
1717

1818
#include <Qalculate/main.hpp>
19-
#include <Qalculate/graphing.hpp>

libqalc/Qalculate/graphing.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//
77

88
#ifndef GRAPHING_H
9-
#define GRAPHIN_H
9+
#define GRAPHING_H
1010
#include <string>
1111
using std::string;
1212

libqalc/Qalculate/main.hpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ struct Completion
2727
typedef std::vector<Completion> Completions;
2828

2929
std::string qalc_gnuplot_data_dir();
30-
Calculator *getCalculator();
3130
Calculation calculate(std::string calculation);
3231
Completions getCompletions(std::string input);
3332

0 commit comments

Comments
 (0)