1- /*
2- * Atoll (DynamicIsland)
3- * Copyright (C) 2024-2026 Atoll Contributors
4- *
5- * Originally from boring.notch project
6- * Modified and adapted for Atoll (DynamicIsland)
7- * See NOTICE for details.
8- *
9- * This program is free software: you can redistribute it and/or modify
10- * it under the terms of the GNU General Public License as published by
11- * the Free Software Foundation, either version 3 of the License, or
12- * (at your option) any later version.
13- *
14- * This program is distributed in the hope that it will be useful,
15- * but WITHOUT ANY WARRANTY; without even the implied warranty of
16- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17- * GNU General Public License for more details.
18- *
19- * You should have received a copy of the GNU General Public License
20- * along with this program. If not, see <https://www.gnu.org/licenses/>.
21- */
22-
1+ //
2+ // SettingsView.swift
3+ // DynamicIsland
4+ //
5+ // Created by Richard Kunkli on 07/08/2024.
6+ //
237import AppKit
248import AVFoundation
259import Combine
@@ -303,6 +287,17 @@ struct SettingsView: View {
303287 Capsule ( )
304288 . fill ( Color . blue)
305289 )
290+ } else if tab == . extensions {
291+ Spacer ( )
292+ Text ( " ALPHA " )
293+ . font ( . system( size: 9 , weight: . bold) )
294+ . foregroundStyle ( . white)
295+ . padding ( . horizontal, 6 )
296+ . padding ( . vertical, 2 )
297+ . background (
298+ Capsule ( )
299+ . fill ( Color . orange)
300+ )
306301 }
307302 }
308303 . padding ( . vertical, 4 )
@@ -414,7 +409,6 @@ struct SettingsView: View {
414409 . lockScreen,
415410 . media,
416411 . devices,
417- . extensions,
418412 . timer,
419413 . calendar,
420414 . hudAndOSD,
@@ -427,6 +421,7 @@ struct SettingsView: View {
427421 . downloads,
428422 . shelf,
429423 . shortcuts,
424+ . extensions,
430425 . about
431426 ]
432427
0 commit comments