Skip to content

Commit a200f3d

Browse files
authored
Merge pull request #50 from congatudo/congatudo-2023.02.0
chore: Congatudo 2023.02.0
2 parents b57989d + 523d301 commit a200f3d

9 files changed

Lines changed: 27 additions & 40 deletions

File tree

backend/lib/core/ValetudoRobot.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,6 @@ ValetudoRobot.WELL_KNOWN_PROPERTIES = {
283283
FIRMWARE_VERSION: "firmwareVersion"
284284
};
285285

286-
const HUGE_MAP_THRESHOLD = 120 * 10000; //120m² in cm²
286+
const HUGE_MAP_THRESHOLD = 145 * 10000; //145m² in cm²
287287

288288
module.exports = ValetudoRobot;

backend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "valetudo-backend",
2+
"name": "congatudo-backend",
33
"description": "Self-contained control webinterface for vacuum robots",
44
"main": "index.js",
55
"bin": "index.js",

frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "valetudo-frontend",
2+
"name": "congatudo-frontend",
33
"homepage": ".",
44
"scripts": {
55
"analyze": "source-map-explorer 'build/static/js/*.js'",

frontend/src/components/ValetudoAppBar.tsx

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -440,18 +440,6 @@ const ValetudoAppBar: React.FunctionComponent<{ paletteMode: PaletteMode, setPal
440440
</ListItemIcon>
441441
<ListItemText primary="congatudo/Congatudo"/>
442442
</ListItem>
443-
<ListItem
444-
button
445-
component="a"
446-
href="https://github.com/sponsors/elraro"
447-
target="_blank"
448-
rel="noopener"
449-
>
450-
<ListItemIcon>
451-
<DonateIcon/>
452-
</ListItemIcon>
453-
<ListItemText primary="Donate"/>
454-
</ListItem>
455443
<ListItem
456444
button
457445
component="a"

frontend/src/components/WelcomeDialog.tsx

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ const WelcomeDialog: FunctionComponent<{open: boolean, hide: () => void}> = ({
6464
open={open}
6565
>
6666
<DialogTitle>
67-
Welcome to Valetudo
67+
Welcome to Congatudo
6868
</DialogTitle>
6969
<DialogContent>
7070
<DialogContentText
@@ -74,15 +74,12 @@ const WelcomeDialog: FunctionComponent<{open: boolean, hide: () => void}> = ({
7474
component="span"
7575
>
7676
<Typography>
77-
It looks like it might the first time that you&apos;re using Valetudo on this robot.
77+
It looks like it might the first time that you&apos;re using Congatudo on this robot.
7878
</Typography>
7979
<br/>
8080
<Typography>
8181
The first step is usually to let the robot create a new map of your home.
8282
Depending on your firmware, the map will allow you to clean specific rooms, add virtual walls and more.
83-
<br/><br/>
84-
There are some variations in the map creation process based on the model of robot.
85-
For example, some robots might require you to enable map persistence first, whereas others might offer a dedicated Mapping Pass.
8683
</Typography>
8784
<br/>
8885
<Typography component="span">
@@ -137,10 +134,12 @@ const WelcomeDialog: FunctionComponent<{open: boolean, hide: () => void}> = ({
137134
}
138135
<br/>
139136
<Typography>
140-
While watching your robot zip around, you might want to <Link href="https://github.com/sponsors/Hypfer" target="_blank" rel="noopener">consider donating</Link>.
137+
While watching your robot zip around, you might want to <Link href="https://github.com/sponsors/elraro" target="_blank" rel="noopener">consider donating</Link>.
141138
If you&apos;d rather decide later, the donation link can also be found hiding unobtrusively at the bottom of the sidebar menu.
142139
<br/><br/>
143140
Now, please enjoy your cloud-free robot :)
141+
<br/><br/>
142+
Congatudo is based on <Link href="https://valetudo.cloud" target="_blank" rel="noopener">Valetudo</Link>. Please, consider donate to <Link href="https://github.com/sponsors/Hypfer" target="_blank" rel="noopener">Valetudo project</Link>.
144143
</Typography>
145144
</DialogContentText>
146145
</DialogContent>

package-lock.json

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "valetudo",
3-
"version": "2022.09.0-conga.0",
2+
"name": "congatudo",
3+
"version": "2023.02.0",
44
"description": "Self-contained control webinterface for vacuum robots",
55
"license": "Apache-2.0",
66
"engines": {

util/generate_mqtt_docs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const StatusStateAttribute = require("../backend/lib/entities/state/attributes/S
2121
const PresetSelectionStateAttribute = require("../backend/lib/entities/state/attributes/PresetSelectionStateAttribute");
2222
const Unit = require("../backend/lib/mqtt/common/Unit");
2323
const HomieCommonAttributes = require("../backend/lib/mqtt/homie/HomieCommonAttributes");
24-
const ValetudoEventStore = require("valetudo-backend/lib/ValetudoEventStore");
24+
const ValetudoEventStore = require("congatudo-backend/lib/ValetudoEventStore");
2525

2626

2727
function jekyllAlert(type, content) {

util/generate_robot_docs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const path = require("path");
44

55
const Robots = require("../backend/lib/robots");
66
const Configuration = require("../backend/lib/Configuration");
7-
const ValetudoEventStore = require("valetudo-backend/lib/ValetudoEventStore");
7+
const ValetudoEventStore = require("congatudo-backend/lib/ValetudoEventStore");
88

99
function generateAnchor(str) {
1010
return str.replace(/[^0-9a-z-A-Z]/g, "").toLowerCase();

0 commit comments

Comments
 (0)