Skip to content

Commit c7470af

Browse files
authored
Merge pull request #46 from FossifyOrg/1.0.3
Release 1.0.3
2 parents f03c68c + 348eb8f commit c7470af

File tree

133 files changed

+515
-721
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

133 files changed

+515
-721
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Changelog
22
==========
33

4+
Version 1.0.3 *(2025-03-19)*
5+
----------------------------
6+
7+
* Changed package name, re-installation is required
8+
* Added more translations
9+
410
Version 1.0.2 *(2024-10-20)*
511
----------------------------
612

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<img alt="Logo" src="graphics/icon.webp" width="120" />
44

5-
<a href="https://f-droid.org/packages/org.fossify.calculator/"><img src="https://fdroid.gitlab.io/artwork/badge/get-it-on-en.svg" alt="Get it on F-Droid" height=80/></a> <a href="https://apt.izzysoft.de/fdroid/index/apk/org.fossify.calculator"><img src="https://gitlab.com/IzzyOnDroid/repo/-/raw/master/assets/IzzyOnDroid.png" alt="Get it on IzzyOnDroid" height=80/></a>
5+
<a href="https://f-droid.org/packages/org.fossify.math/"><img src="https://fdroid.gitlab.io/artwork/badge/get-it-on-en.svg" alt="Get it on F-Droid" height=80/></a> <a href="https://apt.izzysoft.de/fdroid/index/apk/org.fossify.math"><img src="https://gitlab.com/IzzyOnDroid/repo/-/raw/master/assets/IzzyOnDroid.png" alt="Get it on IzzyOnDroid" height=80/></a>
66

77
Introducing Fossify Calculator – your versatile and efficient tool for all your calculation needs. Enjoy a stylish, modern design paired with powerful
88
functionality, perfect for both simple calculations and more complex tasks.

app/build.gradle.kts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,12 +109,11 @@ android {
109109

110110
bundle {
111111
language {
112-
@Suppress("UnstableApiUsage")
113112
enableSplit = false
114113
}
115114
}
116115

117-
namespace = "com.fossify.calculator"
116+
namespace = "org.fossify.math"
118117
}
119118

120119
detekt {

app/detekt-baseline.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,9 @@
8282
<ID>TooManyFunctions:MainActivity.kt$MainActivity : SimpleActivityCalculator</ID>
8383
<ID>TooManyFunctions:MyWidgetProvider.kt$MyWidgetProvider : AppWidgetProviderCalculator</ID>
8484
<ID>UnusedPrivateMember:SettingsScreen.kt$@MyDevices @Composable private fun SettingsScreenPreview()</ID>
85-
<ID>WildcardImport:ConverterView.kt$import org.fossify.calculator.helpers.*</ID>
85+
<ID>WildcardImport:ConverterView.kt$import org.fossify.math.helpers.*</ID>
8686
<ID>WildcardImport:ConverterView.kt$import org.fossify.commons.extensions.*</ID>
87-
<ID>WildcardImport:MainActivity.kt$import org.fossify.calculator.helpers.*</ID>
87+
<ID>WildcardImport:MainActivity.kt$import org.fossify.math.helpers.*</ID>
8888
<ID>WildcardImport:MainActivity.kt$import org.fossify.commons.extensions.*</ID>
8989
<ID>WildcardImport:SettingsActivity.kt$import org.fossify.commons.helpers.*</ID>
9090
<ID>WildcardImport:UnitTypesAdapter.kt$import org.fossify.commons.extensions.*</ID>

app/lint-baseline.xml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@
334334
errorLine1="class SplashActivity : BaseSplashActivity() {"
335335
errorLine2=" ~~~~~~~~~~~~~~">
336336
<location
337-
file="src/main/kotlin/org/fossify/calculator/activities/SplashActivity.kt"
337+
file="src/main/kotlin/org/fossify/math/activities/SplashActivity.kt"
338338
line="6"
339339
column="7"/>
340340
</issue>
@@ -2028,7 +2028,7 @@
20282028
errorLine1=" private var calc: CalculatorImpl? = null"
20292029
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
20302030
<location
2031-
file="src/main/kotlin/org/fossify/calculator/helpers/MyWidgetProvider.kt"
2031+
file="src/main/kotlin/org/fossify/math/helpers/MyWidgetProvider.kt"
20322032
line="19"
20332033
column="9"/>
20342034
</issue>
@@ -2223,7 +2223,7 @@
22232223
<issue
22242224
id="UnusedResources"
22252225
message="The resource `R.string.package_name` appears to be unused"
2226-
errorLine1=" &lt;string name=&quot;package_name&quot;>org.fossify.calculator&lt;/string>"
2226+
errorLine1=" &lt;string name=&quot;package_name&quot;>org.fossify.math&lt;/string>"
22272227
errorLine2=" ~~~~~~~~~~~~~~~~~~~">
22282228
<location
22292229
file="src/main/res/values/donottranslate.xml"
@@ -2303,7 +2303,7 @@
23032303
errorLine1=" binding.topUnitText.text = &quot;0&quot;"
23042304
errorLine2=" ~~~">
23052305
<location
2306-
file="src/main/kotlin/org/fossify/calculator/views/ConverterView.kt"
2306+
file="src/main/kotlin/org/fossify/math/views/ConverterView.kt"
23072307
line="72"
23082308
column="36"/>
23092309
</issue>
@@ -2314,7 +2314,7 @@
23142314
errorLine1=" binding.topUnitText.text = &quot;0&quot;"
23152315
errorLine2=" ~~~">
23162316
<location
2317-
file="src/main/kotlin/org/fossify/calculator/views/ConverterView.kt"
2317+
file="src/main/kotlin/org/fossify/math/views/ConverterView.kt"
23182318
line="109"
23192319
column="36"/>
23202320
</issue>
@@ -2325,7 +2325,7 @@
23252325
errorLine1=" binding.bottomUnitText.text = &quot;0&quot;"
23262326
errorLine2=" ~~~">
23272327
<location
2328-
file="src/main/kotlin/org/fossify/calculator/views/ConverterView.kt"
2328+
file="src/main/kotlin/org/fossify/math/views/ConverterView.kt"
23292329
line="110"
23302330
column="39"/>
23312331
</issue>
@@ -2336,7 +2336,7 @@
23362336
errorLine1=" binding.topUnitText.text = &quot;0&quot;"
23372337
errorLine2=" ~~~">
23382338
<location
2339-
file="src/main/kotlin/org/fossify/calculator/views/ConverterView.kt"
2339+
file="src/main/kotlin/org/fossify/math/views/ConverterView.kt"
23402340
line="221"
23412341
column="40"/>
23422342
</issue>
@@ -2347,7 +2347,7 @@
23472347
errorLine1=" binding.bottomUnitText.text = &quot;0&quot;"
23482348
errorLine2=" ~~~">
23492349
<location
2350-
file="src/main/kotlin/org/fossify/calculator/views/ConverterView.kt"
2350+
file="src/main/kotlin/org/fossify/math/views/ConverterView.kt"
23512351
line="222"
23522352
column="43"/>
23532353
</issue>
@@ -2358,7 +2358,7 @@
23582358
errorLine1=" binding.configCalc.formula.text = &quot;15,937*5&quot;"
23592359
errorLine2=" ~~~~~~~~~~">
23602360
<location
2361-
file="src/main/kotlin/org/fossify/calculator/activities/WidgetConfigureActivity.kt"
2361+
file="src/main/kotlin/org/fossify/math/activities/WidgetConfigureActivity.kt"
23622362
line="87"
23632363
column="43"/>
23642364
</issue>
@@ -2369,7 +2369,7 @@
23692369
errorLine1=" binding.configCalc.formula.text = &quot;15,937*5&quot;"
23702370
errorLine2=" ~~~~~~~~">
23712371
<location
2372-
file="src/main/kotlin/org/fossify/calculator/activities/WidgetConfigureActivity.kt"
2372+
file="src/main/kotlin/org/fossify/math/activities/WidgetConfigureActivity.kt"
23732373
line="87"
23742374
column="44"/>
23752375
</issue>
@@ -2380,7 +2380,7 @@
23802380
errorLine1=" binding.configCalc.result.text = &quot;79,685&quot;"
23812381
errorLine2=" ~~~~~~~~">
23822382
<location
2383-
file="src/main/kotlin/org/fossify/calculator/activities/WidgetConfigureActivity.kt"
2383+
file="src/main/kotlin/org/fossify/math/activities/WidgetConfigureActivity.kt"
23842384
line="88"
23852385
column="42"/>
23862386
</issue>
@@ -2391,7 +2391,7 @@
23912391
errorLine1=" binding.configCalc.result.text = &quot;79,685&quot;"
23922392
errorLine2=" ~~~~~~">
23932393
<location
2394-
file="src/main/kotlin/org/fossify/calculator/activities/WidgetConfigureActivity.kt"
2394+
file="src/main/kotlin/org/fossify/math/activities/WidgetConfigureActivity.kt"
23952395
line="88"
23962396
column="43"/>
23972397
</issue>

app/schemas/org.fossify.calculator.databases.CalculatorDatabase/1.json

Lines changed: 0 additions & 62 deletions
This file was deleted.
Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
{
2+
"formatVersion": 1,
3+
"database": {
4+
"version": 1,
5+
"identityHash": "847fbacc72515e2c4dc9985eefeb45f9",
6+
"entities": [
7+
{
8+
"tableName": "history",
9+
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT, `formula` TEXT NOT NULL, `result` TEXT NOT NULL, `timestamp` INTEGER NOT NULL)",
10+
"fields": [
11+
{
12+
"fieldPath": "id",
13+
"columnName": "id",
14+
"affinity": "INTEGER",
15+
"notNull": false
16+
},
17+
{
18+
"fieldPath": "formula",
19+
"columnName": "formula",
20+
"affinity": "TEXT",
21+
"notNull": true
22+
},
23+
{
24+
"fieldPath": "result",
25+
"columnName": "result",
26+
"affinity": "TEXT",
27+
"notNull": true
28+
},
29+
{
30+
"fieldPath": "timestamp",
31+
"columnName": "timestamp",
32+
"affinity": "INTEGER",
33+
"notNull": true
34+
}
35+
],
36+
"primaryKey": {
37+
"autoGenerate": true,
38+
"columnNames": [
39+
"id"
40+
]
41+
},
42+
"indices": [
43+
{
44+
"name": "index_history_id",
45+
"unique": true,
46+
"columnNames": [
47+
"id"
48+
],
49+
"orders": [],
50+
"createSql": "CREATE UNIQUE INDEX IF NOT EXISTS `index_history_id` ON `${TABLE_NAME}` (`id`)"
51+
}
52+
],
53+
"foreignKeys": []
54+
}
55+
],
56+
"views": [],
57+
"setupQueries": [
58+
"CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
59+
"INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, '847fbacc72515e2c4dc9985eefeb45f9')"
60+
]
61+
}
62+
}

0 commit comments

Comments
 (0)