Skip to content

Commit c5873c6

Browse files
authored
Merge pull request #2335 from ajnart/dev
2 parents ce33631 + ec38fe8 commit c5873c6

12 files changed

Lines changed: 98 additions & 107 deletions

File tree

README.md

Lines changed: 22 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
# 🦀 Homarr
2+
3+
This repository has been archived and the project was moved to [homarr-labs/homarr](https://github.com/homarr-labs/homarr) with v1+.
4+
There will be no updates to this old version, but you can enjoy regular updates with v1+.
5+
6+
Usage of this old project is not recommended, however possible.
7+
8+
To migrate please follow the [Migration Guide](https://homarr.dev/blog/2025/01/19/migration-guide-1.0) and read the [Breaking Changes](https://homarr.dev/blog/2024/09/23/version-1.0#breaking-changes)
9+
10+
<br />
11+
<br />
12+
<br />
13+
<br />
14+
<br />
15+
<br />
16+
<br />
17+
<br />
18+
<br />
19+
<br />
20+
<br />
21+
<br />
22+
123
<!-- Project Title -->
224
[![Banner](docs/banner.png)](https://homarr.dev/)
325

@@ -41,12 +63,6 @@ Simplify the management of your server with Homarr - a sleek, modern dashboard t
4163
<br/>
4264

4365

44-
> [!IMPORTANT]
45-
> # The Homarr repository has been moved to [HomarrLabs](https://github.com/homarr-labs/homarr)
46-
> # Please create issues related to 1.0 there. This repository will be archived once the 1.0 is fully polished.
47-
> # 1.0 is a complete rewrite and to migrate you have to change your compose file. Please follow the [Migration Guide](https://homarr.dev/blog/2025/01/19/migration-guide-1.0) and read the [Breaking Changes](https://homarr.dev/blog/2024/09/23/version-1.0#breaking-changes)
48-
49-
5066
[![Features Section](docs/section-features.png)](https://homarr.dev/)
5167

5268
- 🖌️ Highly customizable with an extensive drag and drop grid system

next.config.js

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
require('./src/env');
22
const { i18n } = require('./next-i18next.config');
33

4-
const withBundleAnalyzer = require('@next/bundle-analyzer')({
5-
enabled: process.env.ANALYZE === 'true',
6-
});
7-
8-
module.exports = withBundleAnalyzer({
4+
module.exports = {
5+
eslint: { ignoreDuringBuilds: true },
96
webpack: (config) => {
107
// for dynamic loading of auth providers
118
config.experiments = { ...config.experiments, topLevelAwait: true };
@@ -28,4 +25,4 @@ module.exports = withBundleAnalyzer({
2825
env: {
2926
NEXTAUTH_URL_INTERNAL: process.env.NEXTAUTH_URL_INTERNAL || process.env.HOSTNAME || 'http://localhost:3000'
3027
},
31-
});
28+
};

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
"adm-zip": "^0.5.15",
7777
"axios": "^1.0.0",
7878
"bcryptjs": "^2.4.3",
79-
"better-sqlite3": "^8.6.0",
79+
"better-sqlite3": "^12.6.2",
8080
"consola": "^3.0.0",
8181
"cookies": "^0.8.0",
8282
"cookies-next": "^2.1.1",
@@ -96,7 +96,7 @@
9696
"js-file-download": "^0.4.12",
9797
"ldapjs": "^3.0.5",
9898
"mantine-react-table": "^1.3.4",
99-
"next": "13.4.12",
99+
"next": "13.5.11",
100100
"next-auth": "^4.23.0",
101101
"next-i18next": "^14.0.0",
102102
"nextjs-cors": "^2.2.0",

public/locales/es/widgets/error-boundary.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
}
88
},
99
"modal": {
10-
"text": "El widget ha fallado inesperadamente. Lea la documentación y corrija los errores tipográficos.",
10+
"text": "El widget se bloqueó inesperadamente. Por favor, lee la documentación y corrige cualquier error tipográfico.",
1111
"label": "Ha ocurrido un error",
1212
"reportButton": "Informar de este error en GitHub"
1313
}

public/locales/sl/authentication/invite.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"notifications": {
2222
"loading": {
2323
"title": "Ustvarjanje računa",
24-
"text": "Prosimo, počakajte."
24+
"text": "Prosimo, počakajte"
2525
},
2626
"success": {
2727
"title": "Ustvarjen račun",

public/locales/sl/authentication/login.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"metaTitle": "Prijava",
33
"title": "Dobrodošli nazaj!",
4-
"text": "Vnesite svoje poverilnice",
4+
"text": "Vnesite svoje podatke",
55
"form": {
66
"fields": {
77
"username": {
@@ -14,10 +14,10 @@
1414
"buttons": {
1515
"submit": "Prijava"
1616
},
17-
"afterLoginRedirection": "Po prijavi boste preusmerjeni na spletno stran {{url}}.",
17+
"afterLoginRedirection": "Po prijavi boste preusmerjeni na spletno stran {{url}}",
1818
"providersEmpty": {
19-
"title": "",
20-
"message": ""
19+
"title": "Napaka ponudnika ventilacije",
20+
"message": "Ponudnik ni nastavljen, za več informacij preverite dnevnike."
2121
}
2222
},
2323
"alert": "Vaše poverilnice so napačne ali pa ta račun ne obstaja. Poskusite znova."
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"header": {
3-
"customize": "Prilagodite ploščo"
3+
"customize": "Prilagodite nadzorno ploščo"
44
}
55
}

public/locales/sl/boards/customize.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
},
1111
"save": {
1212
"button": "Shranjevanje sprememb",
13-
"note": "Previdno, imate neshranjene spremembe!"
13+
"note": "Previdno, imate neshranjene spremembe"
1414
},
1515
"notifications": {
1616
"pending": {

public/locales/sl/layout/element-selector/selector.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"title": "Dodajanje nove ploščice",
44
"text": "Ploščice so glavni element sistema Homarr. Uporabljajo se za prikaz aplikacij in drugih informacij. Dodate lahko poljubno število ploščic."
55
},
6-
"widgetDescription": "Pripomočki sodelujejo z vašimi aplikacijami in vam omogočajo boljši nadzor nad aplikacijami. Pred uporabo običajno zahtevajo dodatno konfiguracijo.",
6+
"widgetDescription": "Pripomočki interagirajo z vašimi aplikacijami in vam omogočajo boljši nadzor nad aplikacijami. Pred uporabo običajno zahtevajo dodatno konfiguracijo.",
77
"goBack": "Vrnite se na prejšnji korak",
88
"actionIcon": {
99
"tooltip": "Dodajanje ploščice"
@@ -22,5 +22,5 @@
2222
"message": "Ustvarjena je bila kategorija \"{{name}}\""
2323
}
2424
},
25-
"importFromDocker": "Uvoz iz dockerja"
25+
"importFromDocker": "Uvoz iz docker-ja"
2626
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"title": "Stran ni bila najdena",
33
"text": "Te strani ni bilo mogoče najti. URL za to stran je morda potekel, URL je neveljaven ali pa nimate potrebnih dovoljenj za dostop do tega vira.",
4-
"button": "Pojdi na dom"
4+
"button": "Pojdi domov"
55
}

0 commit comments

Comments
 (0)