├── .github ├── ISSUE_TEMPLATE │ └── beta_bug_report.yml └── workflows │ └── rauc.yaml ├── README.md ├── SECURITY.md ├── assets ├── 20241126-144801.jpeg ├── 20241126-153324.png ├── 20250402-150016.png ├── etcher_1.png ├── etcher_2.png ├── etcher_3.png ├── etcher_4.png ├── etcher_5.png ├── feature.png └── zima.png ├── public-test └── rauc.txt ├── rauc.txt ├── release-note ├── 1.4.1-beta1 │ ├── de_DE.md │ ├── el_GR.md │ ├── en_GB.md │ ├── en_US.md │ ├── fr_FR.md │ ├── hr_HR.md │ ├── it_IT.md │ ├── ja_JP.md │ ├── ko_KR.md │ ├── nb_NO.md │ ├── sv_SE.md │ └── zh_CN.md ├── 1.4.1-beta2 │ ├── de_DE.md │ ├── el_GR.md │ ├── en_GB.md │ ├── en_US.md │ ├── fr_FR.md │ ├── hr_HR.md │ ├── it_IT.md │ ├── ja_JP.md │ ├── ko_KR.md │ ├── nb_NO.md │ ├── sv_SE.md │ └── zh_CN.md └── 1.4.1 │ ├── de_DE.md │ ├── el_GR.md │ ├── en_GB.md │ ├── en_US.md │ ├── fr_FR.md │ ├── hr_HR.md │ ├── it_IT.md │ ├── ja_JP.md │ ├── ko_KR.md │ ├── nb_NO.md │ ├── pt_PT.md │ ├── ru_RU.md │ ├── sv_SE.md │ └── zh_CN.md └── zimaos-fix.sh /.github/ISSUE_TEMPLATE/beta_bug_report.yml: -------------------------------------------------------------------------------- 1 | name: "[Beta Only] Bug Report" 2 | description: ZimaOS Beta Testing specific bug report form. 3 | title: "[Beta][Bug] " 4 | labels: ["beta", "bug"] 5 | body: 6 | - type: markdown 7 | attributes: 8 | value: | 9 | Thanks for taking the time to fill out this bug report! 10 | > If you haven't joined ZimaOS Beta Team yet. 11 | > Please join first on [Discord](https://discord.gg/ymEJ9KhK) to be updated on the Beta test plan and test scope. 12 | - type: textarea 13 | id: what-happened 14 | attributes: 15 | label: What happened? 16 | description: Also tell us, what did you expect to happen? 17 | placeholder: Tell us what you see! 18 | validations: 19 | required: true 20 | - type: textarea 21 | id: screenshots 22 | attributes: 23 | label: Screenshots 24 | description: If applicable, add screenshots to help explain your problem. 25 | placeholder: Screenshots would be very helpful! 26 | -------------------------------------------------------------------------------- /.github/workflows/rauc.yaml: -------------------------------------------------------------------------------- 1 | name: Sync rauc.txt to Aliyun OSS 2 | 3 | on: 4 | push: 5 | branches: 6 | - main # 或者您想要触发同步的分支名称 7 | pull_request: 8 | branches: 9 | - main 10 | 11 | jobs: 12 | sync-to-oss: 13 | runs-on: ubuntu-latest 14 | steps: 15 | - name: Checkout code 16 | uses: actions/checkout@v2 17 | 18 | - name: Upload to oss 19 | id: upload_to_oss 20 | uses: tvrcgo/upload-to-oss@master 21 | with: 22 | key-id: ${{ secrets.OSS_KEY_ID }} 23 | key-secret: ${{ secrets.OSS_KEY_SECRET }} 24 | region: oss-cn-shanghai 25 | bucket: casaos 26 | assets: | 27 | rauc.txt:/IceWhaleTech/zimaos-rauc/hdz-test/rauc.txt 28 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | [release]: https://github.com/IceWhaleTech/zimaos-rauc/releases 3 | [release-badge]: https://img.shields.io/github/v/release/IceWhaleTech/zimaos-rauc?include_prereleases&style=flat-square 4 | [download]: https://github.com/IceWhaleTech/zimaos-rauc/releases 5 | [download-badge]: https://img.shields.io/github/downloads/IceWhaleTech/zimaos-rauc/total?style=flat-square 6 | [community]: https://icewhale.community/t/welcome-to-the-zimaos-open-beta-program/295 7 | [community-badge]: https://img.shields.io/badge/Contact-community-blue?style=flat-square 8 | 9 |
10 | 11 | 12 | # ZimaOS Public Evaluation Program 13 | [![release][release-badge]][release] 14 | [![download][download-badge]][download] 15 | [![community][community-badge]][community] 16 |
17 | 18 | Welcome to join the public evaluation program of ZimaOS. ZimaOS is evolved from CasaOS, and we have built a release version of ZimaOS for better hardware compatibility and update experience. It will perfectly adapt to the Zima series hardware and also be compatible with x86-64 systems with UEFI. 19 |
20 | 21 |
22 | 23 | It is built using Buildroot and has stable OTA update functionality. Based on CasaOS, we have built a series of new applications. You can find the specific differences between it and CasaOS from the table below: 24 |
25 | 26 |
27 | 28 | ## Discussion 29 | 30 | This project is just for releasing test images, if you want to discuss related issues, feel free to go to our forum. 31 | [Icewhale Community](https://icewhale.community/t/welcome-to-the-zimaos-open-beta-program/295) 32 | 33 | ## Distribution Features 34 | 35 | - Lightweight and memory-efficient 36 | - Minimized I/O 37 | - Over The Air (OTA) updates 38 | - Offline updates 39 | - Better disk management capabilities 40 | 41 | ## Supported hardware 42 | 43 | - ZimaBoard 44 | - ZimaBlade 45 | - ZimaCube(in preparation) 46 | - Generic x86-64 (e.g. Intel NUC) 47 | 48 | ## Getting Started 49 | 50 | To boot ZimaOS, the BIOS needs to have UEFI boot mode enabled and Secure Boot disabled. 51 | 52 | Next, we need to write the ZimaOS image to the “boot medium”, which is the medium your zima device or x86-64 hardware will boot from when it is running ZimaOS. 53 | 54 | ### Extra 55 | [ZimaOS.webm](https://github.com/user-attachments/assets/cb81bf93-a89b-46a8-afc6-056efb5483e3) 56 | 57 | The ZimaOS USB installation image has been released. Use Balena Etcher to burn the installation image to a USB disk. Now you can use this installer to install ZimaOS to any internal hard disk. 58 | 59 | Note that it still requires UEFI boot. 60 | ```text 61 | https://github.com/IceWhaleTech/ZimaOS/releases/download/1.3.1-1/zimaos_zimacube-1.3.1-1_installer.img 62 | ``` 63 | We have also released images in a variety of VM formats, which you can download as needed from the Release page. 64 | 65 | --- 66 | 67 | Typically an internal medium like S-ATA hard disk, S-ATA SSD, M.2 SSD, or a non-removable eMMC is used for the x86-64 boot medium. Alternatively, an external medium can be used such as a USB SDD, though this is not recommended. 68 | 69 | To write the ZimaOS image to the boot medium on your x86-64 hardware, there are 2 different methods: 70 | 71 | 1. Write the ZimaOS disk image from your desktop computer directly to the boot medium (e.g. using a USB to S-ATA adapter). If you can use this method, proceed to “Write the image to your boot medium” and follow all steps. If you have non-removable internal mediums or don’t have the necessary adapter, try the next method instead. 72 | 2. Create a “live operating system” on a USB device running e.g. Ubuntu (how-to guide). Insert it into your system and boot the live operating system. Then follow from step 2 in “Write the image to your boot medium”. 73 | 74 | ### Ubuntu dependencies for Etcher 75 | 76 | When installing Etcher on Ubuntu you may need to install the fuse dependency first, to do this run the following commands in the terminal: 77 | 78 | ```bash 79 | sudo add-apt-repository universe 80 | sudo apt update 81 | sudo apt install libfuse2 82 | ``` 83 | 84 | ### Write the image to your boot medium 85 | 86 | 1. Attach the ZimaOS boot medium (storage device) to your computer. 87 | 2. Download and start Balena Etcher. You may need to run it with administrator privileges on Windows. 88 | 3. Download the image to your computer. 89 | 90 | - Copy the URL for the image. 91 | - If there are multiple links below, make sure to select the correct link for your version of Generic x86-64. 92 | 93 | ```text 94 | https://github.com/IceWhaleTech/ZimaOS/releases/download/1.3.1-1/zimaos_zimacube-1.3.1-1.img.xz 95 | ``` 96 | 97 | Select and copy the URL or use the “copy” button that appear when you hover it 98 | 99 | 4. Paste the URL into your browser to start the download. 100 | 5. Select Flash from file and select the image you just downloaded. 101 | 102 | - Flash from URL does not work on some systems. 103 | 104 | 105 | 106 | 6. Select target. 107 | 108 | 109 | 110 | 7. Select the boot medium (storage device) you want to use for your installation. 111 | 112 | 113 | 114 | 8. Select **Flash!** to start writing the image. 115 | 116 | 117 | 118 | 9. When Balena Etcher has finished writing the image, you will see a confirmation. 119 | 120 | 121 | 122 | ### Start up your Zima device or Generic x86-64 device 123 | 124 | - If you used your desktop system to write the ZimaOS image directly to a boot medium like an S-ATA SSD, connect this back to your Generic x86-64 system. 125 | - If you used a live operating system (e.g. Ubuntu), shut it down and remove the live operating system USB device. 126 | 1. Plug in an Ethernet cable that is connected to the network. 127 | 2. Power the system on. If you have a screen connected to the Zima device or Generic x86-64 system, after a minute when you see `ZimaOS Welcome banner`, it will show the link of webgui. or you can visit ZimaOS via https://find.zimaspace.com. 128 | 3. Default ssh login/password is `root/testonly` 129 | 130 | ## Installation on Proxmox 131 | 132 | [Follow the link](https://github.com/IceWhaleTech/zimaos-rauc/issues/5). Thanks [@silycr](https://github.com/silycr) for the tutorial! 133 | -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- 1 | # Security Policy 2 | 3 | ## Supported Versions 4 | 5 | ZimaOS is currently under active development. Support is limited before ZimaOS reaches v1.0. 6 | 7 | ## Reporting a Vulnerability 8 | 9 | If you see any vulnerabiility, email us at support@icewhale.org 10 | -------------------------------------------------------------------------------- /assets/20241126-144801.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/ZimaOS/ad778579f982cc1f3fa24f1c6cedcc668b458756/assets/20241126-144801.jpeg -------------------------------------------------------------------------------- /assets/20241126-153324.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/ZimaOS/ad778579f982cc1f3fa24f1c6cedcc668b458756/assets/20241126-153324.png -------------------------------------------------------------------------------- /assets/20250402-150016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/ZimaOS/ad778579f982cc1f3fa24f1c6cedcc668b458756/assets/20250402-150016.png -------------------------------------------------------------------------------- /assets/etcher_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/ZimaOS/ad778579f982cc1f3fa24f1c6cedcc668b458756/assets/etcher_1.png -------------------------------------------------------------------------------- /assets/etcher_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/ZimaOS/ad778579f982cc1f3fa24f1c6cedcc668b458756/assets/etcher_2.png -------------------------------------------------------------------------------- /assets/etcher_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/ZimaOS/ad778579f982cc1f3fa24f1c6cedcc668b458756/assets/etcher_3.png -------------------------------------------------------------------------------- /assets/etcher_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/ZimaOS/ad778579f982cc1f3fa24f1c6cedcc668b458756/assets/etcher_4.png -------------------------------------------------------------------------------- /assets/etcher_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/ZimaOS/ad778579f982cc1f3fa24f1c6cedcc668b458756/assets/etcher_5.png -------------------------------------------------------------------------------- /assets/feature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/ZimaOS/ad778579f982cc1f3fa24f1c6cedcc668b458756/assets/feature.png -------------------------------------------------------------------------------- /assets/zima.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/ZimaOS/ad778579f982cc1f3fa24f1c6cedcc668b458756/assets/zima.png -------------------------------------------------------------------------------- /public-test/rauc.txt: -------------------------------------------------------------------------------- 1 | version: v1.4.1 2 | release_notes: > 3 | ## [1.4.1]\n### Congratulations! \n#### ZimaOS has been downloaded 300K times, and the number of Discord users has reached 27K\n---\n### New\n- New scheduled shutdown function. You can set the shutdown time on the shutdown button\n- Files adds folder size statistics, select the folder and click "Get Info" in the upper right corner to count the size\n- Files has a new left column and address bar design, and right-click folders to add star folders\n### Fixed\n- Fixed the issue of backup tasks disappearing or not being displayed in time\n- Adapted display for Zimaboard2 in the system\n- Shortened the response time of connection mode change\n- Improved the timeliness and stability of dashboard notifications\n- Files optimized the performance of selecting all folders of a large number of files\n- Files optimized the success rate of decompression and optimized the decompression process\n- Fixed the issue in Files where uploaded files appeared as tmp files in weak network conditions\n- Optimized resource usage for applications\n- Fixed the issue where DNS was empty or displayed as "no" when switching network configurations\n- Resolved compatibility issues across different devices\n- Fixed the abnormal disk selection display during RAID expansion\n- Addressed the issue of prolonged shutdown times\n- Fixed abnormal memory usage by the search function\n### Tips\n- If you find any software problems, welcome to join the Discord and get support from 27,000 Zima community members\n- https://zimaboard.com/discord\n 4 | mirrors: 5 | - https://github.com/IceWhaleTech/ZimaOS/releases/download 6 | - https://casaos.oss-cn-shanghai.aliyuncs.com/IceWhaleTech/zimaos-rauc/releases/download 7 | packages: 8 | - path: /1.4.1/zimaos_zimacube-1.4.1.raucb 9 | architecture: amd64 10 | checksums: /1.4.1/checksums.txt 11 | code: Murjek 12 | background: https://casaos.oss-cn-shanghai.aliyuncs.com/IceWhaleTech/zimaos-rauc/releases/download/1.4.1/Hover%20background.jpg 13 | -------------------------------------------------------------------------------- /rauc.txt: -------------------------------------------------------------------------------- 1 | version: v1.4.1 2 | release_notes: > 3 | ## [1.4.1]\n### Congratulations! \n#### ZimaOS has been downloaded 300K times, and the number of Discord users has reached 27K\n---\n### New\n- New scheduled shutdown function. You can set the shutdown time on the shutdown button\n- Files adds folder size statistics, select the folder and click "Get Info" in the upper right corner to count the size\n- Files has a new left column and address bar design, and right-click folders to add star folders\n### Fixed\n- Fixed the issue of backup tasks disappearing or not being displayed in time\n- Adapted display for Zimaboard2 in the system\n- Shortened the response time of connection mode change\n- Improved the timeliness and stability of dashboard notifications\n- Files optimized the performance of selecting all folders of a large number of files\n- Files optimized the success rate of decompression and optimized the decompression process\n- Fixed the issue in Files where uploaded files appeared as tmp files in weak network conditions\n- Optimized resource usage for applications\n- Fixed the issue where DNS was empty or displayed as "no" when switching network configurations\n- Resolved compatibility issues across different devices\n- Fixed the abnormal disk selection display during RAID expansion\n- Addressed the issue of prolonged shutdown times\n- Fixed abnormal memory usage by the search function\n### Tips\n- If you find any software problems, welcome to join the Discord and get support from 27,000 Zima community members\n- https://zimaboard.com/discord\n 4 | mirrors: 5 | - https://github.com/IceWhaleTech/ZimaOS/releases/download 6 | - https://casaos.oss-cn-shanghai.aliyuncs.com/IceWhaleTech/zimaos-rauc/releases/download 7 | packages: 8 | - path: /1.4.1/zimaos_zimacube-1.4.1.raucb 9 | architecture: amd64 10 | checksums: /1.4.1/checksums.txt 11 | code: Murjek 12 | background: https://casaos.oss-cn-shanghai.aliyuncs.com/IceWhaleTech/zimaos-rauc/releases/download/1.4.1/Hover%20background.jpg 13 | -------------------------------------------------------------------------------- /release-note/1.4.1-beta1/de_DE.md: -------------------------------------------------------------------------------- 1 | ## [1.4.1-beta1] 2 | ### Congratulations! 3 | #### ZimaOS has been downloaded 300K times, and the number of Discord users has reached 27K 4 | --- 5 | ### New 6 | - Neue geplante Abschaltfunktion. Sie können die Abschaltzeit auf der Schaltfläche zum Herunterfahren einstellen 7 | - Dateien fügen Statistiken der Ordnergröße hinzu, wählen Sie den Ordner aus und klicken Sie in der oberen rechten Ecke auf "Info abrufen", um die Größe zu zählen 8 | - Dateien verfügen über eine neue linke Spalte und eine Adressleistenstiftung sowie eine rechte Klickordner, um Sternordner hinzuzufügen 9 | ### Fixed 10 | - Das Problem von Sicherungsaufgaben, die verschwanden oder nicht rechtzeitig angezeigt wurden 11 | - Angepasste Anzeige für Zimaboard2 im System 12 | - Verkürzte Änderung der Reaktionszeit des Verbindungsmodus 13 | - Verbesserte die Aktualität und Stabilität von Dashboard -Benachrichtigungen 14 | - Dateien optimierten die Leistung der Auswahl aller Ordner einer großen Anzahl von Dateien 15 | - Dateien optimierten die Erfolgsrate der Dekompression und optimierten den Dekompressionsprozess 16 | ### Tips 17 | - Wenn Sie Softwareprobleme finden, werden Sie willkommen, sich der Zwietracht anzuschließen und von 27.000 Zima -Community -Mitgliedern Unterstützung zu erhalten 18 | - https://zimaboard.com/discord 19 | -------------------------------------------------------------------------------- /release-note/1.4.1-beta1/el_GR.md: -------------------------------------------------------------------------------- 1 | ## [1.4.1-beta1] 2 | ### Congratulations! 3 | #### ZimaOS has been downloaded 300K times, and the number of Discord users has reached 27K 4 | --- 5 | ### New 6 | - Νέα προγραμματισμένη λειτουργία τερματισμού λειτουργίας. Μπορείτε να ορίσετε το χρόνο τερματισμού στο κουμπί τερματισμού 7 | - Τα αρχεία προσθέτουν στατιστικά στοιχεία μεγέθους φακέλου, επιλέξτε το φάκελο και κάντε κλικ στο "Λήψη πληροφοριών" στην επάνω δεξιά γωνία για να μετρήσετε το μέγεθος 8 | - Τα αρχεία διαθέτουν νέα αριστερή στήλη και σχεδιασμό γραμμής διευθύνσεων και κάντε δεξί κλικ στους φακέλους για να προσθέσετε φακέλους αστέρων 9 | ### Fixed 10 | - Διορθώθηκε το ζήτημα των εργασιών δημιουργίας αντιγράφων ασφαλείας που εξαφανίζονται ή δεν εμφανίζονται εγκαίρως 11 | - Προσαρμοσμένη οθόνη για το Zimaboard2 στο σύστημα 12 | - Μείωσε τον χρόνο απόκρισης της αλλαγής της λειτουργίας σύνδεσης 13 | - Βελτίωσε την επικαιρότητα και τη σταθερότητα των ειδοποιήσεων του πίνακα ελέγχου 14 | - Files optimized the performance of selecting all folders of a large number of files 15 | - Τα αρχεία βελτιστοποίησαν το ποσοστό επιτυχίας της αποσυμπίεσης και βελτιστοποίησαν τη διαδικασία αποσυμπίεσης 16 | ### Tips 17 | - Εάν βρείτε προβλήματα λογισμικού, καλώς ήλθατε να συμμετάσχετε στο Discord και να λάβετε υποστήριξη από 27.000 μέλη της κοινότητας Zima 18 | - https://zimaboard.com/discord 19 | -------------------------------------------------------------------------------- /release-note/1.4.1-beta1/en_GB.md: -------------------------------------------------------------------------------- 1 | ## [1.4.1-beta1] 2 | ### Congratulations! 3 | #### ZimaOS has been downloaded 300K times, and the number of Discord users has reached 27K 4 | --- 5 | ### New 6 | - New scheduled shutdown function. You can set the shutdown time on the shutdown button 7 | - Files adds folder size statistics, select the folder and click "Get Info" in the upper right corner to count the size 8 | - Files has a new left column and address bar design, and right-click folders to add star folders 9 | ### Fixed 10 | - Fixed the issue of backup tasks disappearing or not being displayed in time 11 | - Adapted display for Zimaboard2 in the system 12 | - Shortened the response time of connection mode change 13 | - Improved the timeliness and stability of dashboard notifications 14 | - Files optimized the performance of selecting all folders of a large number of files 15 | - Files optimized the success rate of decompression and optimized the decompression process 16 | ### Tips 17 | - If you find any software problems, welcome to join the Discord and get support from 27,000 Zima community members 18 | - https://zimaboard.com/discord 19 | -------------------------------------------------------------------------------- /release-note/1.4.1-beta1/en_US.md: -------------------------------------------------------------------------------- 1 | ## [1.4.1-beta1] 2 | ### Congratulations! 3 | #### ZimaOS has been downloaded 300K times, and the number of Discord users has reached 27K 4 | --- 5 | ### New 6 | - New scheduled shutdown function. You can set the shutdown time on the shutdown button 7 | - Files adds folder size statistics, select the folder and click "Get Info" in the upper right corner to count the size 8 | - Files has a new left column and address bar design, and right-click folders to add star folders 9 | ### Fixed 10 | - Fixed the issue of backup tasks disappearing or not being displayed in time 11 | - Adapted display for Zimaboard2 in the system 12 | - Shortened the response time of connection mode change 13 | - Improved the timeliness and stability of dashboard notifications 14 | - Files optimized the performance of selecting all folders of a large number of files 15 | - Files optimized the success rate of decompression and optimized the decompression process 16 | ### Tips 17 | - If you find any software problems, welcome to join the Discord and get support from 27,000 Zima community members 18 | - https://zimaboard.com/discord -------------------------------------------------------------------------------- /release-note/1.4.1-beta1/fr_FR.md: -------------------------------------------------------------------------------- 1 | ## [1.4.1-beta1] 2 | ### Congratulations! 3 | #### ZimaOS has been downloaded 300K times, and the number of Discord users has reached 27K 4 | --- 5 | ### New 6 | - Nouvelle fonction d'arrêt planifiée. Vous pouvez définir l'heure d'arrêt sur le bouton d'arrêt 7 | - Les fichiers ajoutent des statistiques sur la taille du dossier, sélectionnez le dossier et cliquez sur "Obtenir des informations" dans le coin supérieur droit pour compter la taille 8 | - Les fichiers ont une nouvelle colonne de gauche et la conception de la barre d'adresse, et des dossiers à clic droit pour ajouter des dossiers étoiles 9 | ### Fixed 10 | - Correction du problème des tâches de sauvegarde disparaissant ou ne s'affichez pas à temps 11 | - Affichage adapté pour Zimaboard2 dans le système 12 | - Raccourci le temps de réponse du changement de mode de connexion 13 | - Amélioration de la rapidité et de la stabilité des notifications du tableau de bord 14 | - Les fichiers ont optimisé les performances de la sélection de tous les dossiers d'un grand nombre de fichiers 15 | - Les fichiers ont optimisé le taux de réussite de la décompression et ont optimisé le processus de décompression 16 | ### Tips 17 | - Si vous trouvez des problèmes logiciels, bienvenue pour rejoindre la discorde et obtenir le soutien de 27 000 membres de la communauté Zima 18 | - https://zimaboard.com/discord 19 | -------------------------------------------------------------------------------- /release-note/1.4.1-beta1/hr_HR.md: -------------------------------------------------------------------------------- 1 | ## [1.4.1-beta1] 2 | ### Congratulations! 3 | #### ZimaOS has been downloaded 300K times, and the number of Discord users has reached 27K 4 | --- 5 | ### New 6 | - Nova planirana funkcija isključivanja. Vrijeme isključivanja možete postaviti na gumbu za isključivanje 7 | - Datoteke dodaju statistiku veličine mape, odaberite mapu i kliknite "Nabavite informacije" u gornjem desnom kutu da biste brojili veličinu 8 | - Datoteke imaju novi lijevi stupac i dizajn adresne trake, a desnom tipkom miša kliknite mape za dodavanje zvjezdanih mapa 9 | ### Fixed 10 | - Riješen je problem sigurnosnih kopija koje nestaju ili se ne prikazuju na vrijeme 11 | - Prilagođeni zaslon za Zimaboard2 u sustavu 12 | - Skratio vrijeme odziva promjene načina povezivanja 13 | - Poboljšala pravovremenost i stabilnost obavijesti na nadzornoj ploči 14 | - Datoteke optimizirale performanse odabira svih mapa velikog broja datoteka 15 | - Datoteke optimizirale stopu uspjeha dekompresije i optimizirale postupak dekompresije 16 | ### Tips 17 | - Ako pronađete bilo kakve softverske probleme, dobrodošli da se pridružite neskladu i dobijete podršku od 27.000 članova Zima zajednice 18 | - https://zimaboard.com/discord 19 | -------------------------------------------------------------------------------- /release-note/1.4.1-beta1/it_IT.md: -------------------------------------------------------------------------------- 1 | ## [1.4.1-beta1] 2 | ### Congratulations! 3 | #### ZimaOS has been downloaded 300K times, and the number of Discord users has reached 27K 4 | --- 5 | ### New 6 | - Nuova funzione di arresto programmata. È possibile impostare il tempo di spegnimento sul pulsante di spegnimento 7 | - I file aggiungono statistiche dimensioni della cartella, selezionare la cartella e fare clic su "Ottieni informazioni" nell'angolo in alto a destra per contare le dimensioni 8 | - I file hanno una nuova colonna sinistra e la progettazione della barra degli indirizzi e fare clic con il tasto destro per aggiungere le cartelle stellari 9 | ### Fixed 10 | - Risolto il problema delle attività di backup che scompare o non vengono visualizzate in tempo 11 | - Display adattato per Zimaboard2 nel sistema 12 | - Abbreviato il tempo di risposta della modifica della modalità di connessione 13 | - Miglioramento della tempestività e della stabilità delle notifiche del cruscotto 14 | - I file hanno ottimizzato le prestazioni di selezione di tutte le cartelle di un gran numero di file 15 | - I file hanno ottimizzato il tasso di successo di decompressione e ottimizzato il processo di decompressione 16 | ### Tips 17 | - Se trovi problemi di software, benvenuti a unirti alla discordia e ottieni supporto da 27.000 membri della comunità Zima 18 | - https://zimaboard.com/discord 19 | -------------------------------------------------------------------------------- /release-note/1.4.1-beta1/ja_JP.md: -------------------------------------------------------------------------------- 1 | ## [1.4.1-beta1] 2 | ### Congratulations! 3 | #### ZimaOS has been downloaded 300K times, and the number of Discord users has reached 27K 4 | --- 5 | ### New 6 | - 新しいスケジュールされたシャットダウン機能。シャットダウン時間をシャットダウンボタンに設定できます 7 | - ファイルはフォルダーサイズの統計を追加し、フォルダーを選択し、右上隅の「情報を取得」をクリックしてサイズをカウントします 8 | - ファイルには、新しい左の列とアドレスバーのデザインがあり、フォルダーを右クリックしてスターフォルダーを追加します 9 | ### Fixed 10 | - バックアップタスクの問題が消滅したか、時間内に表示されないことを修正しました 11 | - システム内のZimaBoard2の適応ディスプレイ 12 | - 接続モードの変更の応答時間を短縮しました 13 | - ダッシュボード通知の適時性と安定性が向上しました 14 | - ファイルは、多数のファイルのすべてのフォルダーを選択するパフォーマンスを最適化しました 15 | - ファイルは減圧の成功率を最適化し、減圧プロセスを最適化しました 16 | ### Tips 17 | - ソフトウェアの問題が見つかった場合は、不一致に参加して、27,000人のZimaコミュニティメンバーからサポートを得ることができます。 18 | - https://zimaboard.com/discord 19 | -------------------------------------------------------------------------------- /release-note/1.4.1-beta1/ko_KR.md: -------------------------------------------------------------------------------- 1 | ## [1.4.1-beta1] 2 | ### Congratulations! 3 | #### ZimaOS has been downloaded 300K times, and the number of Discord users has reached 27K 4 | --- 5 | ### New 6 | - 새로운 예정된 셧다운 기능. 종료 버튼에서 종료 시간을 설정할 수 있습니다. 7 | - 파일 폴더 크기 통계 추가, 폴더를 선택하고 오른쪽 상단에서 "정보 가져 오기"를 클릭하여 크기를 계산합니다. 8 | - 파일에는 새 왼쪽 열 및 주소 막대 설계가 있으며 별 폴더를 추가하기 위해 폴더를 마우스 오른쪽 단추로 클릭합니다. 9 | ### Fixed 10 | - 백업 작업 문제가 사라지거나 제 시간에 표시되지 않음을 수정했습니다. 11 | - 시스템에서 zimaboard2에 대한 적응 된 디스플레이 12 | - 연결 모드 변경의 응답 시간이 단축되었습니다 13 | - 대시 보드 알림의 적시성과 안정성을 향상 시켰습니다 14 | - 파일은 다수의 파일의 모든 폴더를 선택하는 성능을 최적화했습니다. 15 | - 파일은 감압의 성공률을 최적화하고 감압 프로세스를 최적화했습니다. 16 | ### Tips 17 | - 소프트웨어 문제를 발견하면 불화에 가입하고 27,000 명의 ZIMA 커뮤니티 회원으로부터 지원을받을 수 있습니다. 18 | - https://zimaboard.com/discord 19 | -------------------------------------------------------------------------------- /release-note/1.4.1-beta1/nb_NO.md: -------------------------------------------------------------------------------- 1 | ## [1.4.1-beta1] 2 | ### Congratulations! 3 | #### ZimaOS has been downloaded 300K times, and the number of Discord users has reached 27K 4 | --- 5 | ### New 6 | - Ny planlagt avstengningsfunksjon. Du kan angi nedleggelsestiden på avslutningsknappen 7 | - Filer legger til mappestørrelsesstatistikk, velg mappen og klikker "Få info" i øverste høyre hjørne for å telle størrelsen 8 | - Filer har en ny venstre kolonne- og adressefeltdesign, og høyreklikk-mapper for å legge til stjernemapper 9 | ### Fixed 10 | - Løst problemet med sikkerhetskopieringsoppgaver som forsvinner eller ikke vises i tide 11 | - Tilpasset skjerm for Zimaboard2 i systemet 12 | - Forkortet responstiden for endringsmodusendring 13 | - Forbedret aktualiteten og stabiliteten til varsler om dashbord 14 | - Filer optimaliserte ytelsen til å velge alle mapper med et stort antall filer 15 | - Filer optimaliserte suksessraten for dekompresjon og optimaliserte dekompresjonsprosessen 16 | ### Tips 17 | - Hvis du finner noen programvareproblemer, velkommen til å bli med i uenigheten og få støtte fra 27.000 ZIMA -samfunnsmedlemmer 18 | - https://zimaboard.com/discord 19 | -------------------------------------------------------------------------------- /release-note/1.4.1-beta1/sv_SE.md: -------------------------------------------------------------------------------- 1 | ## [1.4.1-beta1] 2 | ### Congratulations! 3 | #### ZimaOS has been downloaded 300K times, and the number of Discord users has reached 27K 4 | --- 5 | ### New 6 | - Ny schemalagd avstängningsfunktion. Du kan ställa in avstängningstiden på avstängningen 7 | - Filer lägger till mappstorleksstatistik, välj mappen och klicka på "Få info" i det övre högra hörnet för att räkna storleken 8 | - Filer har en ny vänster kolumn och adressfältdesign och högerklickmappar för att lägga till stjärnmappar 9 | ### Fixed 10 | - Fixade frågan om säkerhetskopieringsuppgifter försvinner eller inte visas i tid 11 | - Anpassad display för ZimaBoard2 i systemet 12 | - Förkortat responstiden för ändring av anslutningsläge 13 | - Förbättrade instrumentpanelens aktualitet och stabilitet 14 | - Filer optimerade prestandan för att välja alla mappar i ett stort antal filer 15 | - Filer optimerade framgångsgraden för dekomprimering och optimerade dekomprimeringsprocessen 16 | ### Tips 17 | - Om du hittar några programvaruproblem, välkommen att gå med i oenighet och få stöd från 27 000 Zima -medlemmar 18 | - https://zimaboard.com/discord 19 | -------------------------------------------------------------------------------- /release-note/1.4.1-beta1/zh_CN.md: -------------------------------------------------------------------------------- 1 | ## [1.4.1-beta1] 2 | ### 庆贺! 3 | #### ZimaOS已经被下载300K次,Discord人数已经达到27K 4 | --- 5 | ### 新功能 6 | - 新的定时关机功能,在关机按钮上可以设置周几几点关机 7 | - Files新增文件夹大小统计,选中文件夹后在右上角“获取信息”统计大小 8 | - Files新的左侧栏和地址栏设计,以及右键文件夹可加为星标文件夹 9 | ### 修复 10 | - 修复了备份任务消失或显示不及时的问题 11 | - 系统内为Zimaboard2的适配显示 12 | - 缩短连接方式变更的响应时间 13 | - 提高了仪表盘通知的及时性和稳定性 14 | - Files优化了大量文件的文件夹全选时的性能 15 | - Files优化解压的成功率,优化了解压流程 16 | ### 小贴士 17 | - 如果你发现了任何软件问题,欢迎加入Discord社区,获得 27,000 名Zima社区成员的支持 18 | - https://zimaboard.com/discord -------------------------------------------------------------------------------- /release-note/1.4.1-beta2/de_DE.md: -------------------------------------------------------------------------------- 1 | ## [1.4.1-beta2] 2 | ### Fixed 3 | - Mehrere Probleme mit OTA -Updates behoben 4 | - Das Problem einer verzögerten Anwendungsbelastung behoben 5 | - Das Problem behoben 6 | - Probleme mit unterschiedlichen Geräten behobene Kompatibilitätsprobleme 7 | --- 8 | 9 | ## [1.4.1-beta1] 10 | ### Congratulations! 11 | #### ZimaOS has been downloaded 300K times, and the number of Discord users has reached 27K 12 | --- 13 | ### New 14 | - Neue geplante Abschaltfunktion. Sie können die Abschaltzeit auf der Schaltfläche zum Herunterfahren einstellen 15 | - Dateien fügen Statistiken der Ordnergröße hinzu, wählen Sie den Ordner aus und klicken Sie in der oberen rechten Ecke auf "Info abrufen", um die Größe zu zählen 16 | - Dateien verfügen über eine neue linke Spalte und eine Adressleistenstiftung sowie eine rechte Klickordner, um Sternordner hinzuzufügen 17 | ### Fixed 18 | - Das Problem von Sicherungsaufgaben, die verschwanden oder nicht rechtzeitig angezeigt wurden 19 | - Angepasste Anzeige für Zimaboard2 im System 20 | - Verkürzte Änderung der Reaktionszeit des Verbindungsmodus 21 | - Verbesserte die Aktualität und Stabilität von Dashboard -Benachrichtigungen 22 | - Dateien optimierten die Leistung der Auswahl aller Ordner einer großen Anzahl von Dateien 23 | - Dateien optimierten die Erfolgsrate der Dekompression und optimierten den Dekompressionsprozess 24 | ### Tips 25 | - Wenn Sie Softwareprobleme finden, werden Sie willkommen, sich der Zwietracht anzuschließen und von 27.000 Zima -Community -Mitgliedern Unterstützung zu erhalten 26 | - https://zimaboard.com/discord 27 | -------------------------------------------------------------------------------- /release-note/1.4.1-beta2/el_GR.md: -------------------------------------------------------------------------------- 1 | ## [1.4.1-beta2] 2 | ### Fixed 3 | - Διορθώθηκε διάφορα ζητήματα με ενημερώσεις OTA 4 | - Διορθώθηκε το ζήτημα της καθυστερημένης φόρτωσης εφαρμογών 5 | - Διορθώθηκε το ζήτημα όπου το DNS είναι άδειο ή ρυθμίζεται σε "όχι" κατά τη διάρκεια της μεταγωγής διαμόρφωσης δικτύου 6 | - Σταθερά προβλήματα συμβατότητας με διαφορετικές συσκευές 7 | --- 8 | 9 | ## [1.4.1-beta1] 10 | ### Congratulations! 11 | #### ZimaOS has been downloaded 300K times, and the number of Discord users has reached 27K 12 | --- 13 | ### New 14 | - Νέα προγραμματισμένη λειτουργία τερματισμού λειτουργίας. Μπορείτε να ορίσετε το χρόνο τερματισμού στο κουμπί τερματισμού 15 | - Τα αρχεία προσθέτουν στατιστικά στοιχεία μεγέθους φακέλου, επιλέξτε το φάκελο και κάντε κλικ στο "Λήψη πληροφοριών" στην επάνω δεξιά γωνία για να μετρήσετε το μέγεθος 16 | - Τα αρχεία διαθέτουν μια νέα αριστερή στήλη και σχεδιασμό γραμμής διευθύνσεων και κάντε δεξί κλικ στους φακέλους για να προσθέσετε φακέλους αστέρων 17 | ### Fixed 18 | - Διορθώθηκε το ζήτημα των εργασιών δημιουργίας αντιγράφων ασφαλείας που εξαφανίζονται ή δεν εμφανίζονται εγκαίρως 19 | - Προσαρμοσμένη οθόνη για το Zimaboard2 στο σύστημα 20 | - Μείωσε τον χρόνο απόκρισης της αλλαγής της λειτουργίας σύνδεσης 21 | - Βελτίωσε την επικαιρότητα και τη σταθερότητα των ειδοποιήσεων του πίνακα ελέγχου 22 | - Τα αρχεία βελτιστοποίησαν την απόδοση της επιλογής όλων των φακέλων μεγάλου αριθμού αρχείων 23 | - Τα αρχεία βελτιστοποίησαν το ποσοστό επιτυχίας της αποσυμπίεσης και βελτιστοποίησαν τη διαδικασία αποσυμπίεσης 24 | ### Tips 25 | - Εάν βρείτε προβλήματα λογισμικού, καλώς ήλθατε να συμμετάσχετε στο Discord και να λάβετε υποστήριξη από 27.000 μέλη της κοινότητας Zima 26 | - https://zimaboard.com/discord 27 | -------------------------------------------------------------------------------- /release-note/1.4.1-beta2/en_GB.md: -------------------------------------------------------------------------------- 1 | ## [1.4.1-beta2] 2 | ### Fixed 3 | - Fixed several issues with OTA updates 4 | - Fixed the issue of delayed application loading 5 | - Fixed the issue where DNS is empty or set to "no" during network configuration switching 6 | - Fixed compatibility issues with different devices 7 | --- 8 | 9 | ## [1.4.1-beta1] 10 | ### Congratulations! 11 | #### ZimaOS has been downloaded 300K times, and the number of Discord users has reached 27K 12 | --- 13 | ### New 14 | - New scheduled shutdown function. You can set the shutdown time on the shutdown button 15 | - Files adds folder size statistics, select the folder and click "Get Info" in the upper right corner to count the size 16 | - Files has a new left column and address bar design, and right-click folders to add star folders 17 | ### Fixed 18 | - Fixed the issue of backup tasks disappearing or not being displayed in time 19 | - Adapted display for Zimaboard2 in the system 20 | - Shortened the response time of connection mode change 21 | - Improved the timeliness and stability of dashboard notifications 22 | - Files optimized the performance of selecting all folders of a large number of files 23 | - Files optimized the success rate of decompression and optimized the decompression process 24 | ### Tips 25 | - If you find any software problems, welcome to join the Discord and get support from 27,000 Zima community members 26 | - https://zimaboard.com/discord 27 | -------------------------------------------------------------------------------- /release-note/1.4.1-beta2/en_US.md: -------------------------------------------------------------------------------- 1 | ## [1.4.1-beta2] 2 | ### Fixed 3 | - Fixed several issues with OTA updates 4 | - Fixed the issue of delayed application loading 5 | - Fixed the issue where DNS is empty or set to "no" during network configuration switching 6 | - Fixed compatibility issues with different devices 7 | --- 8 | 9 | ## [1.4.1-beta1] 10 | ### Congratulations! 11 | #### ZimaOS has been downloaded 300K times, and the number of Discord users has reached 27K 12 | --- 13 | ### New 14 | - New scheduled shutdown function. You can set the shutdown time on the shutdown button 15 | - Files adds folder size statistics, select the folder and click "Get Info" in the upper right corner to count the size 16 | - Files has a new left column and address bar design, and right-click folders to add star folders 17 | ### Fixed 18 | - Fixed the issue of backup tasks disappearing or not being displayed in time 19 | - Adapted display for Zimaboard2 in the system 20 | - Shortened the response time of connection mode change 21 | - Improved the timeliness and stability of dashboard notifications 22 | - Files optimized the performance of selecting all folders of a large number of files 23 | - Files optimized the success rate of decompression and optimized the decompression process 24 | ### Tips 25 | - If you find any software problems, welcome to join the Discord and get support from 27,000 Zima community members 26 | - https://zimaboard.com/discord -------------------------------------------------------------------------------- /release-note/1.4.1-beta2/fr_FR.md: -------------------------------------------------------------------------------- 1 | ## [1.4.1-beta2] 2 | ### Fixed 3 | - Correction de plusieurs problèmes avec les mises à jour OTA 4 | - Correction de l'émission du chargement de l'application retardé 5 | - Correction du problème où DNS est vide ou défini sur "non" pendant la commutation de configuration du réseau 6 | - Correction des problèmes de compatibilité avec différents appareils 7 | --- 8 | 9 | ## [1.4.1-beta1] 10 | ### Congratulations! 11 | #### ZimaOS has been downloaded 300K times, and the number of Discord users has reached 27K 12 | --- 13 | ### New 14 | - Nouvelle fonction d'arrêt planifiée. Vous pouvez définir l'heure d'arrêt sur le bouton d'arrêt 15 | - Les fichiers ajoutent des statistiques sur la taille du dossier, sélectionnez le dossier et cliquez sur "Obtenir des informations" dans le coin supérieur droit pour compter la taille 16 | - Les fichiers ont une nouvelle colonne de gauche et la conception de la barre d'adresse, et des dossiers à clic droit pour ajouter des dossiers étoiles 17 | ### Fixed 18 | - Correction du problème des tâches de sauvegarde disparaissant ou ne s'affichez pas à temps 19 | - Affichage adapté pour Zimaboard2 dans le système 20 | - Raccourci le temps de réponse du changement de mode de connexion 21 | - Amélioration de la rapidité et de la stabilité des notifications du tableau de bord 22 | - Les fichiers ont optimisé les performances de la sélection de tous les dossiers d'un grand nombre de fichiers 23 | - Les fichiers ont optimisé le taux de réussite de la décompression et ont optimisé le processus de décompression 24 | ### Tips 25 | - Si vous trouvez des problèmes logiciels, bienvenue pour rejoindre la discorde et obtenir le soutien de 27 000 membres de la communauté Zima 26 | - https://zimaboard.com/discord 27 | -------------------------------------------------------------------------------- /release-note/1.4.1-beta2/hr_HR.md: -------------------------------------------------------------------------------- 1 | ## [1.4.1-beta2] 2 | ### Fixed 3 | - Popravio je nekoliko problema s OTA ažuriranjima 4 | - Popravljen je problem s odgođenim opterećenjem aplikacije 5 | - Riješen je problem gdje je DNS prazan ili postavljen na "ne" tijekom prebacivanja mrežne konfiguracije 6 | - Fiksna pitanja kompatibilnosti s različitim uređajima 7 | --- 8 | 9 | ## [1.4.1-beta1] 10 | ### Congratulations! 11 | #### ZimaOS has been downloaded 300K times, and the number of Discord users has reached 27K 12 | --- 13 | ### New 14 | - Nova planirana funkcija isključivanja. Vrijeme isključivanja možete postaviti na gumbu za isključivanje 15 | - Datoteke dodaju statistiku veličine mape, odaberite mapu i kliknite "Nabavite informacije" u gornjem desnom kutu da biste brojili veličinu 16 | - Datoteke imaju novi lijevi stupac i dizajn adresne trake, a desnom tipkom miša kliknite mape za dodavanje zvjezdanih mapa 17 | ### Fixed 18 | - Riješen je problem sigurnosnih kopija koje nestaju ili se ne prikazuju na vrijeme 19 | - Prilagođeni zaslon za Zimaboard2 u sustavu 20 | - Skratio vrijeme odziva promjene načina povezivanja 21 | - Poboljšala pravovremenost i stabilnost obavijesti na nadzornoj ploči 22 | - Datoteke optimizirale performanse odabira svih mapa velikog broja datoteka 23 | - Datoteke optimizirale stopu uspjeha dekompresije i optimizirale postupak dekompresije 24 | ### Tips 25 | - Ako pronađete bilo kakve softverske probleme, dobrodošli da se pridružite neskladu i dobijete podršku od 27.000 članova Zima zajednice 26 | - https://zimaboard.com/discord 27 | -------------------------------------------------------------------------------- /release-note/1.4.1-beta2/it_IT.md: -------------------------------------------------------------------------------- 1 | ## [1.4.1-beta2] 2 | ### Fixed 3 | - Risolto diversi problemi con gli aggiornamenti OTA 4 | - Risolto il problema del caricamento ritardato dell'applicazione 5 | - Risolto il problema in cui DNS è vuoto o impostato su "NO" durante la commutazione della configurazione della rete 6 | - Problemi di compatibilità fissi con dispositivi diversi 7 | --- 8 | 9 | ## [1.4.1-beta1] 10 | ### Congratulations! 11 | #### ZimaOS has been downloaded 300K times, and the number of Discord users has reached 27K 12 | --- 13 | ### New 14 | - Nuova funzione di arresto programmata. È possibile impostare il tempo di spegnimento sul pulsante di spegnimento 15 | - I file aggiungono statistiche dimensioni della cartella, selezionare la cartella e fare clic su "Ottieni informazioni" nell'angolo in alto a destra per contare le dimensioni 16 | - I file hanno una nuova colonna sinistra e la progettazione della barra degli indirizzi e fare clic con il tasto destro per aggiungere le cartelle stellari 17 | ### Fixed 18 | - Risolto il problema delle attività di backup che scompare o non vengono visualizzate in tempo 19 | - Display adattato per Zimaboard2 nel sistema 20 | - Abbreviato il tempo di risposta della modifica della modalità di connessione 21 | - Miglioramento della tempestività e della stabilità delle notifiche del cruscotto 22 | - I file hanno ottimizzato le prestazioni di selezione di tutte le cartelle di un gran numero di file 23 | - I file hanno ottimizzato il tasso di successo di decompressione e ottimizzato il processo di decompressione 24 | ### Tips 25 | - Se trovi problemi di software, benvenuti a unirti alla discordia e ottieni supporto da 27.000 membri della comunità Zima 26 | - https://zimaboard.com/discord 27 | -------------------------------------------------------------------------------- /release-note/1.4.1-beta2/ja_JP.md: -------------------------------------------------------------------------------- 1 | ## [1.4.1-beta2] 2 | ### Fixed 3 | - OTAアップデートに関するいくつかの問題を修正しました 4 | - 遅延アプリケーションロードの問題を修正しました 5 | - DNSが空であるか、ネットワーク構成の切り替え中に「いいえ」に設定されている問題を修正しました 6 | - さまざまなデバイスの互換性の問題を修正しました 7 | --- 8 | 9 | ## [1.4.1-beta1] 10 | ### Congratulations! 11 | #### ZimaOS has been downloaded 300K times, and the number of Discord users has reached 27K 12 | --- 13 | ### New 14 | - 新しいスケジュールされたシャットダウン機能。シャットダウン時間をシャットダウンボタンに設定できます 15 | - ファイルはフォルダーサイズの統計を追加し、フォルダーを選択し、右上隅の「情報を取得」をクリックしてサイズをカウントします 16 | - ファイルには、新しい左の列とアドレスバーのデザインがあり、フォルダーを右クリックしてスターフォルダーを追加します 17 | ### Fixed 18 | - バックアップタスクの問題が消滅したか、時間内に表示されないことを修正しました 19 | - システム内のZimaBoard2の適応ディスプレイ 20 | - 接続モードの変更の応答時間を短縮しました 21 | - ダッシュボード通知の適時性と安定性が向上しました 22 | - ファイルは、多数のファイルのすべてのフォルダーを選択するパフォーマンスを最適化しました 23 | - ファイルは減圧の成功率を最適化し、減圧プロセスを最適化しました 24 | ### Tips 25 | - ソフトウェアの問題が見つかった場合は、不一致に参加して、27,000人のZimaコミュニティメンバーからサポートを得ることができます。 26 | - https://zimaboard.com/discord 27 | -------------------------------------------------------------------------------- /release-note/1.4.1-beta2/ko_KR.md: -------------------------------------------------------------------------------- 1 | ## [1.4.1-beta2] 2 | ### Fixed 3 | - OTA 업데이트와 관련된 몇 가지 문제가 해결되었습니다 4 | - 지연된 응용 프로그램 로딩 문제를 수정했습니다 5 | - 네트워크 구성 전환 중에 DNS가 비어 있거나 "아니오"로 설정된 문제를 수정했습니다. 6 | - 다른 장치의 호환성 문제를 해결했습니다 7 | --- 8 | 9 | ## [1.4.1-beta1] 10 | ### Congratulations! 11 | #### ZimaOS has been downloaded 300K times, and the number of Discord users has reached 27K 12 | --- 13 | ### New 14 | - 새로운 예정된 셧다운 기능. 종료 버튼에서 종료 시간을 설정할 수 있습니다. 15 | - 파일 폴더 크기 통계 추가, 폴더를 선택하고 오른쪽 상단에서 "정보 가져 오기"를 클릭하여 크기를 계산합니다. 16 | - 파일에는 새 왼쪽 열 및 주소 막대 설계가 있으며 별 폴더를 추가하기 위해 폴더를 마우스 오른쪽 단추로 클릭합니다. 17 | ### Fixed 18 | - 백업 작업 문제가 사라지거나 제 시간에 표시되지 않음을 수정했습니다. 19 | - 시스템에서 zimaboard2에 대한 적응 된 디스플레이 20 | - 연결 모드 변경의 응답 시간이 단축되었습니다 21 | - 대시 보드 알림의 적시성과 안정성을 향상 시켰습니다 22 | - 파일은 다수의 파일의 모든 폴더를 선택하는 성능을 최적화했습니다. 23 | - 파일은 감압의 성공률을 최적화하고 감압 프로세스를 최적화했습니다. 24 | ### Tips 25 | - 소프트웨어 문제를 발견하면 불화에 가입하고 27,000 명의 ZIMA 커뮤니티 회원으로부터 지원을받을 수 있습니다. 26 | - https://zimaboard.com/discord 27 | -------------------------------------------------------------------------------- /release-note/1.4.1-beta2/nb_NO.md: -------------------------------------------------------------------------------- 1 | ## [1.4.1-beta2] 2 | ### Fixed 3 | - Løste flere problemer med OTA -oppdateringer 4 | - Løst spørsmålet om forsinket applikasjonsbelastning 5 | - Løste problemet der DNS er tomt eller satt til "Nei" under nettverkskonfigurasjonsbytte 6 | - Faste kompatibilitetsproblemer med forskjellige enheter 7 | --- 8 | 9 | ## [1.4.1-beta1] 10 | ### Congratulations! 11 | #### ZimaOS has been downloaded 300K times, and the number of Discord users has reached 27K 12 | --- 13 | ### New 14 | - Ny planlagt avstengningsfunksjon. Du kan angi nedleggelsestiden på avslutningsknappen 15 | - Filer legger til mappestørrelsesstatistikk, velg mappen og klikker "Få info" i øverste høyre hjørne for å telle størrelsen 16 | - Filer har en ny venstre kolonne og adressefeltdesign, og høyreklikk-mapper for å legge til stjernemapper 17 | ### Fixed 18 | - Løst problemet med sikkerhetskopieringsoppgaver som forsvinner eller ikke vises i tide 19 | - Tilpasset skjerm for Zimaboard2 i systemet 20 | - Forkortet responstiden for endringsmodusendring 21 | - Forbedret aktualiteten og stabiliteten til varsler om dashbord 22 | - Filer optimaliserte ytelsen til å velge alle mapper med et stort antall filer 23 | - Filer optimaliserte suksessraten for dekompresjon og optimaliserte dekompresjonsprosessen 24 | ### Tips 25 | - Hvis du finner noen programvareproblemer, velkommen til å bli med i uenigheten og få støtte fra 27.000 ZIMA -samfunnsmedlemmer 26 | - https://zimaboard.com/discord 27 | -------------------------------------------------------------------------------- /release-note/1.4.1-beta2/sv_SE.md: -------------------------------------------------------------------------------- 1 | ## [1.4.1-beta2] 2 | ### Fixed 3 | - Fixade flera problem med OTA -uppdateringar 4 | - Fixade frågan om försenad applikationsbelastning 5 | - Fixade problemet där DNS är tomt eller inställt på "Nej" under nätverkskonfigurationsomkopplaren 6 | - Fasta kompatibilitetsproblem med olika enheter 7 | --- 8 | 9 | ## [1.4.1-beta1] 10 | ### Congratulations! 11 | #### ZimaOS has been downloaded 300K times, and the number of Discord users has reached 27K 12 | --- 13 | ### New 14 | - Ny schemalagd avstängningsfunktion. Du kan ställa in avstängningstiden på avstängningen 15 | - Filer lägger till mappstorleksstatistik, välj mappen och klicka på "Få info" i det övre högra hörnet för att räkna storleken 16 | - Filer har en ny vänster kolumn och adressfältdesign och högerklickmappar för att lägga till stjärnmappar 17 | ### Fixed 18 | - Fixade frågan om säkerhetskopieringsuppgifter försvinner eller inte visas i tid 19 | - Anpassad display för ZimaBoard2 i systemet 20 | - Förkortat responstiden för ändring av anslutningsläge 21 | - Förbättrade instrumentpanelens aktualitet och stabilitet 22 | - Filer optimerade prestandan för att välja alla mappar i ett stort antal filer 23 | - Filer optimerade framgångsgraden för dekomprimering och optimerade dekomprimeringsprocessen 24 | ### Tips 25 | - Om du hittar några programvaruproblem, välkommen att gå med i oenighet och få stöd från 27 000 Zima -medlemmar 26 | - https://zimaboard.com/discord 27 | -------------------------------------------------------------------------------- /release-note/1.4.1-beta2/zh_CN.md: -------------------------------------------------------------------------------- 1 | ## [1.4.1-beta2] 2 | ### Fixed 3 | - 修复ota更新若干问题 4 | - 修复应用加载不及时的问题 5 | - 修复网络配置切换时,DNS为空值或者"no"的问题 6 | - 修复不同设备适配问题 7 | - 修复弱网环境下文件上传完成后出现tmp的问题 8 | --- 9 | 10 | ## [1.4.1-beta1] 11 | ### 庆贺! 12 | #### ZimaOS已经被下载300K次,Discord人数已经达到27K 13 | --- 14 | ### New 15 | - 新的定时关机功能,在关机按钮上可以设置周几几点关机 16 | - Files新增文件夹大小统计,选中文件夹后在右上角“获取信息”统计大小 17 | - Files新的左侧栏和地址栏设计,以及右键文件夹可加为星标文件夹 18 | ### Fixed 19 | - 修复了备份任务消失或显示不及时的问题 20 | - 系统内为Zimaboard2的适配显示 21 | - 缩短连接方式变更的响应时间 22 | - 提高了仪表盘通知的及时性和稳定性 23 | - Files优化了大量文件的文件夹全选时的性能 24 | - Files优化解压的成功率,优化了解压流程 25 | ### Tips 26 | - 如果你发现了任何软件问题,欢迎加入Discord社区,获得 27,000 名Zima社区成员的支持 27 | - https://zimaboard.com/discord 28 | -------------------------------------------------------------------------------- /release-note/1.4.1/de_DE.md: -------------------------------------------------------------------------------- 1 | ## [1.4.1] 2 | ### Congratulations! 3 | #### ZimaOS has been downloaded 300K times, and the number of Discord users has reached 27K 4 | --- 5 | ### New 6 | - Neue geplante Abschaltfunktion. Sie können die Abschaltzeit auf der Schaltfläche zum Herunterfahren einstellen 7 | - Dateien fügen Statistiken der Ordnergröße hinzu, wählen Sie den Ordner aus und klicken Sie in der oberen rechten Ecke auf "Info abrufen", um die Größe zu zählen 8 | - Dateien verfügen über eine neue linke Spalte und eine Adressleistenstiftung sowie eine rechte Klickordner, um Sternordner hinzuzufügen 9 | ### Fixed 10 | - Das Problem von Sicherungsaufgaben, die verschwanden oder nicht rechtzeitig angezeigt wurden 11 | - Angepasste Anzeige für Zimaboard2 im System 12 | - Verkürzte Änderung der Reaktionszeit des Verbindungsmodus 13 | - Verbesserte die Aktualität und Stabilität von Dashboard -Benachrichtigungen 14 | - Dateien optimierten die Leistung der Auswahl aller Ordner einer großen Anzahl von Dateien 15 | - Dateien optimierten die Erfolgsrate der Dekompression und optimierten den Dekompressionsprozess 16 | - Das Problem wurde in Dateien behoben, in denen hochgeladene Dateien in schwachen Netzwerkbedingungen als TMP -Dateien angezeigt wurden 17 | - Optimierte Ressourcenverbrauch für Anwendungen 18 | - Das Problem behoben 19 | - Aufgelöste Kompatibilitätsprobleme auf verschiedenen Geräten 20 | - Die abnormale Disk -Auswahlanzeige während der RAID -Expansion fixierte 21 | - Befasste sich mit dem Problem der längeren Abschaltzeiten 22 | - Feste abnormale Speicherverwendung durch die Suchfunktion 23 | ### Tips 24 | - Wenn Sie Softwareprobleme finden, werden Sie willkommen, sich der Zwietracht anzuschließen und von 27.000 Zima -Community -Mitgliedern Unterstützung zu erhalten 25 | - https://zimaboard.com/discord 26 | -------------------------------------------------------------------------------- /release-note/1.4.1/el_GR.md: -------------------------------------------------------------------------------- 1 | ## [1.4.1] 2 | ### Congratulations! 3 | #### ZimaOS has been downloaded 300K times, and the number of Discord users has reached 27K 4 | --- 5 | ### New 6 | - Νέα προγραμματισμένη λειτουργία τερματισμού λειτουργίας. Μπορείτε να ορίσετε το χρόνο τερματισμού στο κουμπί τερματισμού 7 | - Τα αρχεία προσθέτουν στατιστικά στοιχεία μεγέθους φακέλου, επιλέξτε το φάκελο και κάντε κλικ στο "Λήψη πληροφοριών" στην επάνω δεξιά γωνία για να μετρήσετε το μέγεθος 8 | - Τα αρχεία διαθέτουν νέα αριστερή στήλη και σχεδιασμό γραμμής διευθύνσεων και κάντε δεξί κλικ στους φακέλους για να προσθέσετε φακέλους αστέρων 9 | ### Fixed 10 | - Διορθώθηκε το ζήτημα των εργασιών δημιουργίας αντιγράφων ασφαλείας που εξαφανίζονται ή δεν εμφανίζονται εγκαίρως 11 | - Προσαρμοσμένη οθόνη για το Zimaboard2 στο σύστημα 12 | - Μείωσε τον χρόνο απόκρισης της αλλαγής της λειτουργίας σύνδεσης 13 | - Βελτίωσε την επικαιρότητα και τη σταθερότητα των ειδοποιήσεων του πίνακα ελέγχου 14 | - Τα αρχεία βελτιστοποίησαν την απόδοση της επιλογής όλων των φακέλων μεγάλου αριθμού αρχείων 15 | - Τα αρχεία βελτιστοποίησαν το ποσοστό επιτυχίας της αποσυμπίεσης και βελτιστοποίησαν τη διαδικασία αποσυμπίεσης 16 | - Διορθώθηκε το ζήτημα σε αρχεία όπου τα μεταφορτωμένα αρχεία εμφανίστηκαν ως αρχεία TMP σε αδύναμες συνθήκες δικτύου 17 | - Βελτιστοποιημένη χρήση πόρων για εφαρμογές 18 | - Διορθώθηκε το ζήτημα όπου το DNS ήταν άδειο ή εμφανίστηκε ως "όχι" κατά την εναλλαγή διαμορφώσεων δικτύου 19 | - Επίλυση προβλημάτων συμβατότητας σε διάφορες συσκευές 20 | - Διορθώθηκε η μη φυσιολογική επιλογή επιλογής δίσκου κατά τη διάρκεια της επέκτασης RAID 21 | - Αντιμετώπισε το ζήτημα των παρατεταμένων χρόνων διακοπής 22 | - Διορθωμένη μη φυσιολογική χρήση μνήμης από τη λειτουργία αναζήτησης 23 | ### Tips 24 | - Εάν βρείτε προβλήματα λογισμικού, καλώς ήλθατε να συμμετάσχετε στο Discord και να λάβετε υποστήριξη από 27.000 μέλη της κοινότητας Zima 25 | - https://zimaboard.com/discord 26 | -------------------------------------------------------------------------------- /release-note/1.4.1/en_GB.md: -------------------------------------------------------------------------------- 1 | ## [1.4.1] 2 | ### Congratulations! 3 | #### ZimaOS has been downloaded 300K times, and the number of Discord users has reached 27K 4 | --- 5 | ### New 6 | - New scheduled shutdown function. You can set the shutdown time on the shutdown button 7 | - Files adds folder size statistics, select the folder and click "Get Info" in the upper right corner to count the size 8 | - Files has a new left column and address bar design, and right-click folders to add star folders 9 | ### Fixed 10 | - Fixed the issue of backup tasks disappearing or not being displayed in time 11 | - Adapted display for Zimaboard2 in the system 12 | - Shortened the response time of connection mode change 13 | - Improved the timeliness and stability of dashboard notifications 14 | - Files optimized the performance of selecting all folders of a large number of files 15 | - Files optimized the success rate of decompression and optimized the decompression process 16 | - Fixed the issue in Files where uploaded files appeared as tmp files in weak network conditions 17 | - Optimized resource usage for applications 18 | - Fixed the issue where DNS was empty or displayed as "no" when switching network configurations 19 | - Resolved compatibility issues across different devices 20 | - Fixed the abnormal disk selection display during RAID expansion 21 | - Addressed the issue of prolonged shutdown times 22 | - Fixed abnormal memory usage by the search function 23 | ### Tips 24 | - If you find any software problems, welcome to join the Discord and get support from 27,000 Zima community members 25 | - https://zimaboard.com/discord 26 | -------------------------------------------------------------------------------- /release-note/1.4.1/en_US.md: -------------------------------------------------------------------------------- 1 | ## [1.4.1] 2 | ### Congratulations! 3 | #### ZimaOS has been downloaded 300K times, and the number of Discord users has reached 27K 4 | --- 5 | ### New 6 | - New scheduled shutdown function. You can set the shutdown time on the shutdown button 7 | - Files adds folder size statistics, select the folder and click "Get Info" in the upper right corner to count the size 8 | - Files has a new left column and address bar design, and right-click folders to add star folders 9 | ### Fixed 10 | - Fixed the issue of backup tasks disappearing or not being displayed in time 11 | - Adapted display for Zimaboard2 in the system 12 | - Shortened the response time of connection mode change 13 | - Improved the timeliness and stability of dashboard notifications 14 | - Files optimized the performance of selecting all folders of a large number of files 15 | - Files optimized the success rate of decompression and optimized the decompression process 16 | - Fixed the issue in Files where uploaded files appeared as tmp files in weak network conditions 17 | - Optimized resource usage for applications 18 | - Fixed the issue where DNS was empty or displayed as "no" when switching network configurations 19 | - Resolved compatibility issues across different devices 20 | - Fixed the abnormal disk selection display during RAID expansion 21 | - Addressed the issue of prolonged shutdown times 22 | - Fixed abnormal memory usage by the search function 23 | ### Tips 24 | - If you find any software problems, welcome to join the Discord and get support from 27,000 Zima community members 25 | - https://zimaboard.com/discord -------------------------------------------------------------------------------- /release-note/1.4.1/fr_FR.md: -------------------------------------------------------------------------------- 1 | ## [1.4.1] 2 | ### Congratulations! 3 | #### ZimaOS has been downloaded 300K times, and the number of Discord users has reached 27K 4 | --- 5 | ### New 6 | - Nouvelle fonction d'arrêt planifiée. Vous pouvez définir l'heure d'arrêt sur le bouton d'arrêt 7 | - Les fichiers ajoutent des statistiques sur la taille du dossier, sélectionnez le dossier et cliquez sur "Obtenir des informations" dans le coin supérieur droit pour compter la taille 8 | - Les fichiers ont une nouvelle colonne de gauche et la conception de la barre d'adresse, et des dossiers à clic droit pour ajouter des dossiers étoiles 9 | ### Fixed 10 | - Correction du problème des tâches de sauvegarde disparaissant ou ne s'affichez pas à temps 11 | - Affichage adapté pour Zimaboard2 dans le système 12 | - Raccourci le temps de réponse du changement de mode de connexion 13 | - Amélioration de la rapidité et de la stabilité des notifications du tableau de bord 14 | - Les fichiers ont optimisé les performances de la sélection de tous les dossiers d'un grand nombre de fichiers 15 | - Les fichiers ont optimisé le taux de réussite de la décompression et ont optimisé le processus de décompression 16 | - Correction du problème dans les fichiers où les fichiers téléchargés apparaissent sous forme de fichiers TMP dans des conditions de réseau faibles 17 | - Utilisation des ressources optimisées pour les applications 18 | - Correction du problème où DNS était vide ou affiché comme "non" lors de la commutation de configurations de réseau 19 | - Problèmes de compatibilité résolus sur différents appareils 20 | - Correction de l'affichage anormal de sélection du disque pendant l'expansion des raids 21 | - Abordé la question des temps d'arrêt prolongés 22 | - Correction d'une utilisation anormale de la mémoire par la fonction de recherche 23 | ### Tips 24 | - Si vous trouvez des problèmes logiciels, bienvenue pour rejoindre la discorde et obtenir le soutien de 27 000 membres de la communauté Zima 25 | - https://zimaboard.com/discord 26 | -------------------------------------------------------------------------------- /release-note/1.4.1/hr_HR.md: -------------------------------------------------------------------------------- 1 | ## [1.4.1] 2 | ### Congratulations! 3 | #### ZimaOS has been downloaded 300K times, and the number of Discord users has reached 27K 4 | --- 5 | ### New 6 | - Nova planirana funkcija isključivanja. Vrijeme isključivanja možete postaviti na gumbu za isključivanje 7 | - Datoteke dodaju statistiku veličine mape, odaberite mapu i kliknite "Nabavite informacije" u gornjem desnom kutu da biste brojili veličinu 8 | - Datoteke imaju novi lijevi stupac i dizajn adresne trake, a desnom tipkom miša kliknite mape za dodavanje zvjezdanih mapa 9 | ### Fixed 10 | - Riješen je problem sigurnosnih kopija koje nestaju ili se ne prikazuju na vrijeme 11 | - Prilagođeni zaslon za Zimaboard2 u sustavu 12 | - Skratio vrijeme odziva promjene načina povezivanja 13 | - Poboljšala pravovremenost i stabilnost obavijesti na nadzornoj ploči 14 | - Datoteke optimizirale performanse odabira svih mapa velikog broja datoteka 15 | - Datoteke optimizirale stopu uspjeha dekompresije i optimizirale postupak dekompresije 16 | - Riješen je problem u datotekama u kojima su se prenesene datoteke pojavile kao TMP datoteke u slabim mrežnim uvjetima 17 | - Optimizirana upotreba resursa za aplikacije 18 | - Riješen je problem gdje je DNS bio prazan ili prikazan kao "ne" prilikom prebacivanja mrežne konfiguracije 19 | - Riješeni problemi s kompatibilnošću na različitim uređajima 20 | - Popravljen abnormalni zaslon odabira diska tijekom ekspanzije RAID -a 21 | - Riješio se pitanje produljenih vremena isključivanja 22 | - Popravljena abnormalna upotreba memorije od strane funkcije pretraživanja 23 | ### Tips 24 | - Ako pronađete bilo kakve softverske probleme, dobrodošli da se pridružite Discord -u i dobijete podršku od 27.000 članova zajednice Zima 25 | - https://zimaboard.com/discord 26 | -------------------------------------------------------------------------------- /release-note/1.4.1/it_IT.md: -------------------------------------------------------------------------------- 1 | ## [1.4.1] 2 | ### Congratulations! 3 | #### ZimaOS has been downloaded 300K times, and the number of Discord users has reached 27K 4 | --- 5 | ### New 6 | - Nuova funzione di arresto programmata. È possibile impostare il tempo di spegnimento sul pulsante di spegnimento 7 | - I file aggiungono statistiche dimensioni della cartella, selezionare la cartella e fare clic su "Ottieni informazioni" nell'angolo in alto a destra per contare le dimensioni 8 | - I file hanno una nuova colonna sinistra e la progettazione della barra degli indirizzi e fare clic con il tasto destro per aggiungere le cartelle stellari 9 | ### Fixed 10 | - Risolto il problema delle attività di backup che scompare o non vengono visualizzate in tempo 11 | - Display adattato per Zimaboard2 nel sistema 12 | - Abbreviato il tempo di risposta della modifica della modalità di connessione 13 | - Miglioramento della tempestività e della stabilità delle notifiche del cruscotto 14 | - I file hanno ottimizzato le prestazioni di selezione di tutte le cartelle di un gran numero di file 15 | - I file hanno ottimizzato il tasso di successo di decompressione e ottimizzato il processo di decompressione 16 | - Risolto il problema nei file in cui i file caricati sono apparsi come file TMP in condizioni di rete deboli 17 | - Utilizzo ottimizzato delle risorse per applicazioni 18 | - Risolto il problema in cui DNS era vuoto o visualizzato come "no" durante la commutazione delle configurazioni di rete 19 | - Problemi di compatibilità risolti su diversi dispositivi 20 | - Risolto il display di selezione del disco anormale durante l'espansione RAID 21 | - Affrontato il problema dei tempi di arresto prolungati 22 | - Risolto l'utilizzo della memoria anormale dalla funzione di ricerca 23 | ### Tips 24 | - Se trovi problemi di software, benvenuti a unirti alla discordia e ottieni supporto da 27.000 membri della comunità Zima 25 | - https://zimaboard.com/discord 26 | -------------------------------------------------------------------------------- /release-note/1.4.1/ja_JP.md: -------------------------------------------------------------------------------- 1 | ## [1.4.1] 2 | ### Congratulations! 3 | #### ZimaOS has been downloaded 300K times, and the number of Discord users has reached 27K 4 | --- 5 | ### New 6 | - 新しいスケジュールされたシャットダウン機能。シャットダウン時間をシャットダウンボタンに設定できます 7 | - ファイルはフォルダーサイズの統計を追加し、フォルダーを選択し、右上隅の「情報を取得」をクリックしてサイズをカウントします 8 | - ファイルには、新しい左の列とアドレスバーのデザインがあり、フォルダーを右クリックしてスターフォルダーを追加します 9 | ### Fixed 10 | - バックアップタスクの問題が消滅したか、時間内に表示されないことを修正しました 11 | - システム内のZimaBoard2の適応ディスプレイ 12 | - 接続モードの変更の応答時間を短縮しました 13 | - ダッシュボード通知の適時性と安定性が向上しました 14 | - ファイルは、多数のファイルのすべてのフォルダーを選択するパフォーマンスを最適化しました 15 | - ファイルは減圧の成功率を最適化し、減圧プロセスを最適化しました 16 | - アップロードされたファイルが弱いネットワーク条件でTMPファイルとして表示されたファイルの問題を修正しました 17 | - アプリケーション用の最適化されたリソース使用 18 | - ネットワーク構成を切り替えるときにDNSが空になっているか、「いいえ」として表示された問題を修正しました 19 | - さまざまなデバイスで互換性の問題を解決しました 20 | - RAID拡張中に異常なディスク選択ディスプレイを修正しました 21 | - 長期にわたるシャットダウン時間の問題に対処しました 22 | - 検索関数による異常なメモリ使用法を修正しました 23 | ### Tips 24 | - ソフトウェアの問題が見つかった場合は、不一致に参加して、27,000人のZimaコミュニティメンバーからサポートを得ることができます。 25 | - https://zimaboard.com/discord 26 | -------------------------------------------------------------------------------- /release-note/1.4.1/ko_KR.md: -------------------------------------------------------------------------------- 1 | ## [1.4.1] 2 | ### Congratulations! 3 | #### ZimaOS has been downloaded 300K times, and the number of Discord users has reached 27K 4 | --- 5 | ### New 6 | - 새로운 예정된 셧다운 기능. 종료 버튼에서 종료 시간을 설정할 수 있습니다. 7 | - 파일 폴더 크기 통계 추가, 폴더를 선택하고 오른쪽 상단에서 "정보 가져 오기"를 클릭하여 크기를 계산합니다. 8 | - 파일에는 새 왼쪽 열 및 주소 막대 설계가 있으며 별 폴더를 추가하기 위해 폴더를 마우스 오른쪽 단추로 클릭합니다. 9 | ### Fixed 10 | - 백업 작업 문제가 사라지거나 제 시간에 표시되지 않음을 수정했습니다. 11 | - 시스템에서 zimaboard2에 대한 적응 된 디스플레이 12 | - 연결 모드 변경의 응답 시간이 단축되었습니다 13 | - 대시 보드 알림의 적시성과 안정성을 향상 시켰습니다 14 | - 파일은 다수의 파일의 모든 폴더를 선택하는 성능을 최적화했습니다. 15 | - 파일은 감압의 성공률을 최적화하고 감압 프로세스를 최적화했습니다. 16 | - 업로드 된 파일이 약한 네트워크 조건에서 TMP 파일로 표시된 파일에서 문제를 수정했습니다. 17 | - 애플리케이션에 최적화 된 리소스 사용 18 | - 네트워크 구성을 전환 할 때 DNS가 비어 있거나 "아니오"로 표시되는 문제를 수정했습니다. 19 | - 다른 장치에서 해결 된 호환성 문제 20 | - RAID 확장 중에 비정상 디스크 선택 디스플레이를 수정했습니다 21 | - 장기간 종료 시간 문제를 해결했습니다 22 | - 검색 기능에 따라 비정상 메모리 사용을 수정했습니다 23 | ### Tips 24 | - 소프트웨어 문제를 발견하면 불화에 가입하고 27,000 명의 ZIMA 커뮤니티 회원으로부터 지원을받을 수 있습니다. 25 | - https://zimaboard.com/discord 26 | -------------------------------------------------------------------------------- /release-note/1.4.1/nb_NO.md: -------------------------------------------------------------------------------- 1 | ## [1.4.1] 2 | ### Congratulations! 3 | #### ZimaOS has been downloaded 300K times, and the number of Discord users has reached 27K 4 | --- 5 | ### New 6 | - Ny planlagt avstengningsfunksjon. Du kan angi nedleggelsestiden på avslutningsknappen 7 | - Filer legger til mappestørrelsesstatistikk, velg mappen og klikker "Få info" i øverste høyre hjørne for å telle størrelsen 8 | - Filer har en ny venstre kolonne- og adressefeltdesign, og høyreklikk-mapper for å legge til stjernemapper 9 | ### Fixed 10 | - Løst problemet med sikkerhetskopieringsoppgaver som forsvinner eller ikke vises i tide 11 | - Tilpasset skjerm for Zimaboard2 i systemet 12 | - Forkortet responstiden for endringsmodusendring 13 | - Forbedret aktualiteten og stabiliteten til varsler om dashbord 14 | - Filer optimaliserte ytelsen til å velge alle mapper med et stort antall filer 15 | - Filer optimaliserte suksessraten for dekompresjon og optimaliserte dekompresjonsprosessen 16 | - Løste problemet i filer der opplastede filer dukket opp som TMP -filer i svake nettverksbetingelser 17 | - Optimalisert ressursbruk for applikasjoner 18 | - Løste problemet der DNS var tomt eller vist som "nei" når du bytter nettverkskonfigurasjoner 19 | - Løst kompatibilitetsproblemer på tvers av forskjellige enheter 20 | - Fikset den unormale diskutvalget under RAID -utvidelse 21 | - Tok opp spørsmålet om langvarige avstengningstider 22 | - Fast unormal minnebruk etter søkefunksjonen 23 | ### Tips 24 | - Hvis du finner noen programvareproblemer, velkommen til å bli med i uenigheten og få støtte fra 27.000 ZIMA -samfunnsmedlemmer 25 | - https://zimaboard.com/discord 26 | -------------------------------------------------------------------------------- /release-note/1.4.1/pt_PT.md: -------------------------------------------------------------------------------- 1 | ## [1.4.1] 2 | ### Congratulations! 3 | #### ZimaOS has been downloaded 300K times, and the number of Discord users has reached 27K 4 | --- 5 | ### New 6 | - Nova função de desligamento programado. Você pode definir o tempo de desligamento no botão de desligamento 7 | - Os arquivos adicionam estatísticas de tamanho da pasta, selecione a pasta e clique em "Get Informações" no canto superior direito para contar o tamanho 8 | - Os arquivos possuem uma nova coluna esquerda e design da barra de endereço e clique com o botão direito do mouse para adicionar pastas em estrela 9 | ### Fixed 10 | - Corrigido o problema das tarefas de backup desaparecendo ou não sendo exibidas no tempo 11 | - Tela adaptada para zimaboard2 no sistema 12 | - Reduziu o tempo de resposta da mudança no modo de conexão 13 | - Melhorou a pontualidade e a estabilidade das notificações do painel 14 | - Arquivos otimizaram o desempenho de selecionar todas as pastas de um grande número de arquivos 15 | - Arquivos otimizaram a taxa de sucesso de descompressão e otimizaram o processo de descompressão 16 | - Corrigido o problema em arquivos em que os arquivos enviados apareceram como arquivos TMP em condições de rede fracas 17 | - Uso otimizado de recursos para aplicativos 18 | - Corrigido o problema em que o DNS estava vazio ou exibido como "não" ao alternar as configurações de rede 19 | - Problemas de compatibilidade resolvidos em diferentes dispositivos 20 | - Corrigido a exibição anormal de seleção de disco durante a expansão do RAID 21 | - Abordou a questão dos tempos de desligamento prolongados 22 | - Corrigido o uso de memória anormal pela função de pesquisa 23 | ### Tips 24 | - Se você encontrar algum problema de software, seja bem -vindo para ingressar na discórdia e obter suporte de 27.000 membros da comunidade Zima 25 | - https://zimaboard.com/discord 26 | -------------------------------------------------------------------------------- /release-note/1.4.1/ru_RU.md: -------------------------------------------------------------------------------- 1 | ## [1.4.1] 2 | ### Congratulations! 3 | #### ZimaOS has been downloaded 300K times, and the number of Discord users has reached 27K 4 | --- 5 | ### New 6 | - Новая запланированная функция отключения. Вы можете установить время выключения на кнопке выключения 7 | - Файлы добавляет статистику размера папки, выберите папку и нажмите «Получить информацию» в правом верхнем углу, чтобы подсчитать размер 8 | - Файлы имеют новый левый столбец и дизайн адресной панели, а также щелкните папки правой кнопкой мыши, чтобы добавить звездные папки 9 | ### Fixed 10 | - Исправлена ​​проблема с исчезновением резервных задач или не отображается вовремя 11 | - Адаптированный дисплей для Zimaboard2 в системе 12 | - Сократили время отклика изменения режима соединения 13 | - Улучшение своевременности и стабильности уведомлений на панель инструментов 14 | - Файлы оптимизировали производительность выбора всех папок большого количества файлов 15 | - Файлы оптимизировали скорость успеха декомпрессии и оптимизировали процесс декомпрессии 16 | - Исправлена ​​проблема в файлах, где загруженные файлы появились в виде файлов TMP в слабых условиях сети 17 | - Оптимизированное использование ресурсов для приложений 18 | - Исправлена ​​проблема, в которой DNS был пуст или отображался как «нет» при переключении конфигураций сети 19 | - Решенные проблемы совместимости на разных устройствах 20 | - Исправлена ​​аномальное отображение диска во время расширения RAID 21 | - Рассмотрел вопрос о длительном времени отключения 22 | - Исправленное аномальное использование памяти по функции поиска 23 | ### Tips 24 | - Если вы найдете какие -либо проблемы с программным обеспечением, добро пожаловать, чтобы присоединиться к Discord и получить поддержку от 27 000 членов сообщества Zima 25 | - https://zimaboard.com/discord 26 | -------------------------------------------------------------------------------- /release-note/1.4.1/sv_SE.md: -------------------------------------------------------------------------------- 1 | ## [1.4.1] 2 | ### Congratulations! 3 | #### ZimaOS has been downloaded 300K times, and the number of Discord users has reached 27K 4 | --- 5 | ### New 6 | - Ny schemalagd avstängningsfunktion. Du kan ställa in avstängningstiden på avstängningen 7 | - Filer lägger till mappstorleksstatistik, välj mappen och klicka på "Få info" i det övre högra hörnet för att räkna storleken 8 | - Filer har en ny vänster kolumn och adressfältdesign och högerklickmappar för att lägga till stjärnmappar 9 | ### Fixed 10 | - Fixade frågan om säkerhetskopieringsuppgifter försvinner eller inte visas i tid 11 | - Anpassad display för ZimaBoard2 i systemet 12 | - Förkortat responstiden för ändring av anslutningsläge 13 | - Förbättrade instrumentpanelens aktualitet och stabilitet 14 | - Filer optimerade prestandan för att välja alla mappar i ett stort antal filer 15 | - Filer optimerade framgångsgraden för dekomprimering och optimerade dekomprimeringsprocessen 16 | - Fixade problemet i filer där uppladdade filer dök upp som TMP -filer i svaga nätverksförhållanden 17 | - Optimerad resursanvändning för applikationer 18 | - Fixade problemet där DNS var tomt eller visas som "nej" när du byter nätverkskonfigurationer 19 | - Löst kompatibilitetsproblem över olika enheter 20 | - Fixade den onormala skivvalsvisningen under RAID -expansion 21 | - Tog upp frågan om långvariga avstängningstider 22 | - Fast onormal minnesanvändning av sökfunktionen 23 | ### Tips 24 | - Om du hittar några programvaruproblem, välkommen att gå med i oenighet och få stöd från 27 000 Zima -medlemmar 25 | - https://zimaboard.com/discord 26 | -------------------------------------------------------------------------------- /release-note/1.4.1/zh_CN.md: -------------------------------------------------------------------------------- 1 | ## [1.4.1] 2 | ### 庆贺! 3 | #### ZimaOS已经被下载300K次,Discord人数已经达到27K 4 | --- 5 | ### New 6 | - 新的定时关机功能,在关机按钮上可以设置周几几点关机 7 | - Files新增文件夹大小统计,选中文件夹后在右上角“获取信息”统计大小 8 | - Files新的左侧栏和地址栏设计,以及右键文件夹可加为星标文件夹 9 | ### Fixed 10 | - 修复了备份任务消失或显示不及时的问题 11 | - 系统内为Zimaboard2的适配显示 12 | - 缩短连接方式变更的响应时间 13 | - 提高了仪表盘通知的及时性和稳定性 14 | - Files优化了大量文件的文件夹全选时的性能 15 | - Files优化解压的成功率,优化了解压流程 16 | - Files修复弱网环境下文件上传完成后出现tmp的问题 17 | - 优化应用的资源占用 18 | - 修复网络配置切换时,DNS为空值或者"no"的问题 19 | - 修复不同设备适配问题 20 | - 修复RAID扩容选择磁盘显示异常的问题 21 | - 修复关机时间过长的问题 22 | - 修复search占用内存异常的问题 23 | ### Tips 24 | - 如果你发现了任何软件问题,欢迎加入Discord社区,获得 27,000 名Zima社区成员的支持 25 | - https://zimaboard.com/discord -------------------------------------------------------------------------------- /zimaos-fix.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | counter=0 4 | temp_file=$(mktemp) 5 | tmpRoot="/tmp/root" 6 | mkdir -p "$tmpRoot" 7 | rootfs=$(mount | grep ' / ' | cut -d ' ' -f 1) 8 | p8=$(mount | grep ' /DATA ' | cut -d ' ' -f 1) 9 | 10 | mount "$rootfs" /tmp/root > /dev/null 2>&1 11 | 12 | find /mnt/overlay/etc/ -type f -exec sh -c 'for f; do [ ! -s "$f" ] && echo "$f"; done' sh {} + > "$temp_file" 13 | 14 | while IFS= read -r file; do 15 | rm "$file" 16 | new_file=$(echo "$file" | sed 's/\/mnt\/overlay/\/tmp\/root/') 17 | [ -f "$new_file" ] && cp -f "$new_file" "$file" 18 | counter=$((counter + 1)) 19 | echo "Fixed file: $file" 20 | done < "$temp_file" 21 | 22 | rm "$temp_file" 23 | umount "$tmpRoot" 24 | 25 | if [ -n "$p8" ]; then 26 | p8_size=$(df -BG | grep "$p8" | awk '{print $2}') 27 | p8_size=${p8_size%G} 28 | if [ "$p8_size" -lt 2 ]; then 29 | echo "Expanding..." 30 | resize2fs "$p8" 31 | echo "Partition 8 expanded." 32 | fi 33 | fi 34 | 35 | 36 | if [ $counter -gt 0 ]; then 37 | echo "Done! Please reboot your device." 38 | exit 0 39 | else 40 | echo "Nothing to fix. If the problem persists please contact support." 41 | exit 1 42 | fi 43 | --------------------------------------------------------------------------------