Skip to content

Commit db90842

Browse files
committed
Release 0.2.0
1 parent 01c63f6 commit db90842

File tree

11 files changed

+37
-6
lines changed

11 files changed

+37
-6
lines changed

.env

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
VITE_ANALYTICS_SCRIPT=

.github/workflows/deploy.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ jobs:
3636

3737
- run: bun install
3838
- run: bun run build
39+
env:
40+
VITE_ANALYTICS_SCRIPT: <script defer data-domain="kalkki.raikas.dev" src="https://plausible.mikroni.fi/js/script.js"></script>
3941
- name: Setup Pages
4042
uses: actions/configure-pages@v5
4143
- name: Upload artifact

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# 0.2.0
2+
3+
- Fix tangent precision calculation
4+
- Add translations
5+
- Add Tauri native executables
6+
- Make app full screen on Docker, PWA or Tauri and small by default on browser
7+
- Fix overlay styles on Firefox
8+
- Allow brackets as implicit multiplication
9+
- Fix implicit multiplication order to match SpeedCrunch
10+
- Add Dutch and German translations (thanks Trimpsuz)
11+
- Add Biome for formatting and linting
12+
- Switch to AGPLv3
13+
- Add support for ** (^)
14+
- Add syntax highlighting and themes
15+
- Add integer division (\)
16+
- Optimize factorial speed and number formatting

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
}
4646
}
4747
</script>
48-
<script defer data-domain="kalkki.raikas.dev" src="https://plausible.mikroni.fi/js/script.js"></script>
48+
%VITE_ANALYTICS_SCRIPT%
4949
</body>
5050

5151
</html>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "kalkki",
33
"private": true,
4-
"version": "1.1.0",
4+
"version": "0.2.0",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[package]
22
name = "kalkki"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
description = "A easy-to-use and fast scientific calculator"
55
authors = ["Roni Äikäs"]
6-
license = ""
7-
repository = ""
6+
license = "AGPLv3"
7+
repository = "https://github.com/raikasdev/kalkki"
88
edition = "2021"
99
rust-version = "1.77.2"
1010

src/lang/en.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ export const en: typeof fi = {
4646
aboutVersion: "Version",
4747
aboutFromStudents:
4848
"Calculator app created by students for students. Kalkki was created by Roni Äikäs while attending high school.",
49+
aboutOpenSource:
50+
'Kalkki is open source meaning you can freely explore its source code at <a href="https://github.com/raikasdev/kalkki" rel="noreferrer" target="_blank">https://github.com/raikasdev/kalkki</a>.',
4951
aboutThanks: "Special thanks",
5052
aboutThanksTsry: "Testausserveri ry and other software testers",
5153
aboutThanksYTL:

src/lang/fi.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ export const fi = {
4646
aboutVersion: "Versio",
4747
aboutFromStudents:
4848
"Laskinohjelma opiskelijoilta opiskelijoille. Kalkin on kehittänyt Roni Äikäs opiskellessaan Jämsän lukiossa.",
49+
aboutOpenSource:
50+
'Kalkki on avointa lähdekoodia ja voit tutkia sen lähdekoodia vapaasti osoitteessa <a href="https://github.com/raikasdev/kalkki" rel="noreferrer" target="_blank">https://github.com/raikasdev/kalkki</a>.',
4951
aboutThanks: "Kiitokset",
5052
aboutThanksTsry: "Testausserveri ry ja muut testaajat",
5153
aboutThanksYTL:

src/lang/sv.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ export const sv: Partial<typeof fi> = {
4747
aboutVersion: "Version",
4848
aboutFromStudents:
4949
"En kalkylatorapp skapad av studenter för studenter. Kalkki skapades av Roni Äikäs under gymnasiet.",
50+
aboutOpenSource:
51+
'Kalkki är öppen källkod, vilket betyder att du fritt kan utforska dess källkod på <a href="https://github.com/raikasdev/kalkki" rel="noreferrer" target="_blank">https://github.com/raikasdev/kalkki</a>.',
5052
aboutThanks: "Särskilt tack",
5153
aboutThanksTsry: "Testausserveri ry och andra programvarutestare",
5254
aboutThanksYTL:

0 commit comments

Comments
 (0)