- 🛠️ • Підготовка середовища
- 📝 • Налаштування програми
- 🚀 • Запуск програми
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "projects": [ | |
| { | |
| "name": "White Cobalt", | |
| "description": "Нативний мобільний застосунок для Android, що дозволяє зручно завантажувати медіа з Інтернету за допомогою cobalt API.", | |
| "banner": "https://github.com/liubquanti/White-Cobalt/raw/main/image/README/1749405394661.png", | |
| "code": "https://github.com/liubquanti/White-Cobalt", | |
| "published": "https://play.google.com/store/apps/details?id=liubquanti.white.cobalt" | |
| } | |
| ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Auto-Build | |
| on: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: write |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class WeekType { | |
| static String getCurrentType({DateTime? date}) { | |
| final now = date ?? DateTime.now(); // Використовуємо переданий день або поточний день | |
| final currentYear = now.year; | |
| final september1 = DateTime(currentYear, 9, 1); | |
| final september1Weekday = september1.weekday; | |
| // Визначення першого навчального тижня | |
| DateTime firstEdWeek; | |
| if (september1Weekday > 5) { |