🚀 Launch v1.0.0+1
	
		
			
	
		
	
	
		
	
		
			Some checks failed
		
		
	
	
		
			
				
	
				release-nightly / build-web (push) Has been cancelled
				
					
					
				
			
		
			
				
	
				release-nightly / build-exe (push) Has been cancelled
				
					
					
				
			
		
		
	
	
				
					
				
			
		
			Some checks failed
		
		
	
	release-nightly / build-web (push) Has been cancelled
				release-nightly / build-exe (push) Has been cancelled
				This commit is contained in:
		
							
								
								
									
										41
									
								
								.github/workflows/nightly.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										41
									
								
								.github/workflows/nightly.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,41 @@
 | 
			
		||||
name: release-nightly
 | 
			
		||||
 | 
			
		||||
on:
 | 
			
		||||
  push:
 | 
			
		||||
    branches: [master]
 | 
			
		||||
 | 
			
		||||
jobs:
 | 
			
		||||
  build-web:
 | 
			
		||||
    runs-on: ubuntu-latest
 | 
			
		||||
    steps:
 | 
			
		||||
      - name: Clone repository
 | 
			
		||||
        uses: actions/checkout@v4
 | 
			
		||||
      - name: Set up Flutter
 | 
			
		||||
        uses: subosito/flutter-action@v2
 | 
			
		||||
        with:
 | 
			
		||||
          channel: stable
 | 
			
		||||
          cache: true
 | 
			
		||||
      - run: flutter pub get
 | 
			
		||||
      - run: flutter build web --release --base-href=/
 | 
			
		||||
      - name: Archive production artifacts
 | 
			
		||||
        uses: actions/upload-artifact@v4
 | 
			
		||||
        with:
 | 
			
		||||
          name: build-output-web
 | 
			
		||||
          path: build/web
 | 
			
		||||
  build-exe:
 | 
			
		||||
    runs-on: windows-latest
 | 
			
		||||
    steps:
 | 
			
		||||
      - name: Clone repository
 | 
			
		||||
        uses: actions/checkout@v4
 | 
			
		||||
      - name: Set up Flutter
 | 
			
		||||
        uses: subosito/flutter-action@v2
 | 
			
		||||
        with:
 | 
			
		||||
          channel: stable
 | 
			
		||||
          cache: true
 | 
			
		||||
      - run: flutter pub get
 | 
			
		||||
      - run: flutter build windows
 | 
			
		||||
      - name: Archive production artifacts
 | 
			
		||||
        uses: actions/upload-artifact@v4
 | 
			
		||||
        with:
 | 
			
		||||
          name: build-output-windows
 | 
			
		||||
          path: build/windows/x64/runner/Release
 | 
			
		||||
@@ -1,51 +1,55 @@
 | 
			
		||||
<?xml version="1.0" encoding="UTF-8"?>
 | 
			
		||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
 | 
			
		||||
<plist version="1.0">
 | 
			
		||||
	<dict>
 | 
			
		||||
		<key>CFBundleDevelopmentRegion</key>
 | 
			
		||||
		<string>$(DEVELOPMENT_LANGUAGE)</string>
 | 
			
		||||
		<key>CFBundleDisplayName</key>
 | 
			
		||||
		<string>Rhythm Box</string>
 | 
			
		||||
		<key>CFBundleExecutable</key>
 | 
			
		||||
		<string>$(EXECUTABLE_NAME)</string>
 | 
			
		||||
		<key>CFBundleIdentifier</key>
 | 
			
		||||
		<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
 | 
			
		||||
		<key>CFBundleInfoDictionaryVersion</key>
 | 
			
		||||
		<string>6.0</string>
 | 
			
		||||
		<key>CFBundleName</key>
 | 
			
		||||
		<string>Groovy Box</string>
 | 
			
		||||
		<key>CFBundlePackageType</key>
 | 
			
		||||
		<string>APPL</string>
 | 
			
		||||
		<key>CFBundleShortVersionString</key>
 | 
			
		||||
		<string>$(FLUTTER_BUILD_NAME)</string>
 | 
			
		||||
		<key>CFBundleSignature</key>
 | 
			
		||||
		<string>????</string>
 | 
			
		||||
		<key>CFBundleVersion</key>
 | 
			
		||||
		<string>$(FLUTTER_BUILD_NUMBER)</string>
 | 
			
		||||
		<key>LSRequiresIPhoneOS</key>
 | 
			
		||||
		<true/>
 | 
			
		||||
		<key>UILaunchStoryboardName</key>
 | 
			
		||||
		<string>LaunchScreen</string>
 | 
			
		||||
		<key>UIMainStoryboardFile</key>
 | 
			
		||||
		<string>Main</string>
 | 
			
		||||
		<key>UISupportedInterfaceOrientations</key>
 | 
			
		||||
		<array>
 | 
			
		||||
			<string>UIInterfaceOrientationPortrait</string>
 | 
			
		||||
			<string>UIInterfaceOrientationLandscapeLeft</string>
 | 
			
		||||
			<string>UIInterfaceOrientationLandscapeRight</string>
 | 
			
		||||
		</array>
 | 
			
		||||
		<key>UISupportedInterfaceOrientations~ipad</key>
 | 
			
		||||
		<array>
 | 
			
		||||
			<string>UIInterfaceOrientationPortrait</string>
 | 
			
		||||
			<string>UIInterfaceOrientationPortraitUpsideDown</string>
 | 
			
		||||
			<string>UIInterfaceOrientationLandscapeLeft</string>
 | 
			
		||||
			<string>UIInterfaceOrientationLandscapeRight</string>
 | 
			
		||||
		</array>
 | 
			
		||||
		<key>CADisableMinimumFrameDurationOnPhone</key>
 | 
			
		||||
		<true/>
 | 
			
		||||
		<key>UIApplicationSupportsIndirectInputEvents</key>
 | 
			
		||||
		<true/>
 | 
			
		||||
		<key>UIStatusBarHidden</key>
 | 
			
		||||
		<false/>
 | 
			
		||||
	</dict>
 | 
			
		||||
<dict>
 | 
			
		||||
	<key>CFBundleDevelopmentRegion</key>
 | 
			
		||||
	<string>$(DEVELOPMENT_LANGUAGE)</string>
 | 
			
		||||
	<key>CFBundleDisplayName</key>
 | 
			
		||||
	<string>Groovy Box</string>
 | 
			
		||||
	<key>CFBundleExecutable</key>
 | 
			
		||||
	<string>$(EXECUTABLE_NAME)</string>
 | 
			
		||||
	<key>CFBundleIdentifier</key>
 | 
			
		||||
	<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
 | 
			
		||||
	<key>CFBundleInfoDictionaryVersion</key>
 | 
			
		||||
	<string>6.0</string>
 | 
			
		||||
	<key>CFBundleName</key>
 | 
			
		||||
	<string>Groovy Box</string>
 | 
			
		||||
	<key>CFBundlePackageType</key>
 | 
			
		||||
	<string>APPL</string>
 | 
			
		||||
	<key>CFBundleShortVersionString</key>
 | 
			
		||||
	<string>$(FLUTTER_BUILD_NAME)</string>
 | 
			
		||||
	<key>CFBundleSignature</key>
 | 
			
		||||
	<string>????</string>
 | 
			
		||||
	<key>CFBundleVersion</key>
 | 
			
		||||
	<string>$(FLUTTER_BUILD_NUMBER)</string>
 | 
			
		||||
	<key>LSRequiresIPhoneOS</key>
 | 
			
		||||
	<true/>
 | 
			
		||||
	<key>UILaunchStoryboardName</key>
 | 
			
		||||
	<string>LaunchScreen</string>
 | 
			
		||||
	<key>UIMainStoryboardFile</key>
 | 
			
		||||
	<string>Main</string>
 | 
			
		||||
	<key>UISupportedInterfaceOrientations</key>
 | 
			
		||||
	<array>
 | 
			
		||||
		<string>UIInterfaceOrientationPortrait</string>
 | 
			
		||||
		<string>UIInterfaceOrientationLandscapeLeft</string>
 | 
			
		||||
		<string>UIInterfaceOrientationLandscapeRight</string>
 | 
			
		||||
	</array>
 | 
			
		||||
	<key>UISupportedInterfaceOrientations~ipad</key>
 | 
			
		||||
	<array>
 | 
			
		||||
		<string>UIInterfaceOrientationPortrait</string>
 | 
			
		||||
		<string>UIInterfaceOrientationPortraitUpsideDown</string>
 | 
			
		||||
		<string>UIInterfaceOrientationLandscapeLeft</string>
 | 
			
		||||
		<string>UIInterfaceOrientationLandscapeRight</string>
 | 
			
		||||
	</array>
 | 
			
		||||
	<key>CADisableMinimumFrameDurationOnPhone</key>
 | 
			
		||||
	<true/>
 | 
			
		||||
	<key>UIApplicationSupportsIndirectInputEvents</key>
 | 
			
		||||
	<true/>
 | 
			
		||||
	<key>LSApplicationCategoryType</key>
 | 
			
		||||
	<string>public.app-category.music</string>
 | 
			
		||||
	<key>NSMicrophoneUsageDescription</key>
 | 
			
		||||
	<string>To provide information for RhythmBox to normalize the output audio</string>
 | 
			
		||||
	<key>UIStatusBarHidden</key>
 | 
			
		||||
	<false/>
 | 
			
		||||
</dict>
 | 
			
		||||
</plist>
 | 
			
		||||
 
 | 
			
		||||
@@ -51,6 +51,8 @@ PODS:
 | 
			
		||||
    - sqlite3/fts5
 | 
			
		||||
    - sqlite3/perf-threadsafe
 | 
			
		||||
    - sqlite3/rtree
 | 
			
		||||
  - url_launcher_macos (0.0.1):
 | 
			
		||||
    - FlutterMacOS
 | 
			
		||||
  - window_manager (0.2.0):
 | 
			
		||||
    - FlutterMacOS
 | 
			
		||||
 | 
			
		||||
@@ -71,6 +73,7 @@ DEPENDENCIES:
 | 
			
		||||
  - shared_preferences_foundation (from `Flutter/ephemeral/.symlinks/plugins/shared_preferences_foundation/darwin`)
 | 
			
		||||
  - sqflite (from `Flutter/ephemeral/.symlinks/plugins/sqflite/darwin`)
 | 
			
		||||
  - sqlite3_flutter_libs (from `Flutter/ephemeral/.symlinks/plugins/sqlite3_flutter_libs/macos`)
 | 
			
		||||
  - url_launcher_macos (from `Flutter/ephemeral/.symlinks/plugins/url_launcher_macos/macos`)
 | 
			
		||||
  - window_manager (from `Flutter/ephemeral/.symlinks/plugins/window_manager/macos`)
 | 
			
		||||
 | 
			
		||||
SPEC REPOS:
 | 
			
		||||
@@ -111,6 +114,8 @@ EXTERNAL SOURCES:
 | 
			
		||||
    :path: Flutter/ephemeral/.symlinks/plugins/sqflite/darwin
 | 
			
		||||
  sqlite3_flutter_libs:
 | 
			
		||||
    :path: Flutter/ephemeral/.symlinks/plugins/sqlite3_flutter_libs/macos
 | 
			
		||||
  url_launcher_macos:
 | 
			
		||||
    :path: Flutter/ephemeral/.symlinks/plugins/url_launcher_macos/macos
 | 
			
		||||
  window_manager:
 | 
			
		||||
    :path: Flutter/ephemeral/.symlinks/plugins/window_manager/macos
 | 
			
		||||
 | 
			
		||||
@@ -133,6 +138,7 @@ SPEC CHECKSUMS:
 | 
			
		||||
  sqflite: 673a0e54cc04b7d6dba8d24fb8095b31c3a99eec
 | 
			
		||||
  sqlite3: 0bb0e6389d824e40296f531b858a2a0b71c0d2fb
 | 
			
		||||
  sqlite3_flutter_libs: 5ca46c1a04eddfbeeb5b16566164aa7ad1616e7b
 | 
			
		||||
  url_launcher_macos: 5f437abeda8c85500ceb03f5c1938a8c5a705399
 | 
			
		||||
  window_manager: 3a1844359a6295ab1e47659b1a777e36773cd6e8
 | 
			
		||||
 | 
			
		||||
PODFILE CHECKSUM: 236401fc2c932af29a9fcf0e97baeeb2d750d367
 | 
			
		||||
 
 | 
			
		||||
@@ -571,8 +571,10 @@
 | 
			
		||||
				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
 | 
			
		||||
				CLANG_ENABLE_MODULES = YES;
 | 
			
		||||
				CODE_SIGN_ENTITLEMENTS = Runner/DebugProfile.entitlements;
 | 
			
		||||
				"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
 | 
			
		||||
				CODE_SIGN_STYLE = Automatic;
 | 
			
		||||
				COMBINE_HIDPI_IMAGES = YES;
 | 
			
		||||
				DEVELOPMENT_TEAM = W7HPZ53V6B;
 | 
			
		||||
				INFOPLIST_FILE = Runner/Info.plist;
 | 
			
		||||
				INFOPLIST_KEY_CFBundleDisplayName = GroovyBox;
 | 
			
		||||
				INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.music";
 | 
			
		||||
@@ -705,8 +707,10 @@
 | 
			
		||||
				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
 | 
			
		||||
				CLANG_ENABLE_MODULES = YES;
 | 
			
		||||
				CODE_SIGN_ENTITLEMENTS = Runner/DebugProfile.entitlements;
 | 
			
		||||
				"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
 | 
			
		||||
				CODE_SIGN_STYLE = Automatic;
 | 
			
		||||
				COMBINE_HIDPI_IMAGES = YES;
 | 
			
		||||
				DEVELOPMENT_TEAM = W7HPZ53V6B;
 | 
			
		||||
				INFOPLIST_FILE = Runner/Info.plist;
 | 
			
		||||
				INFOPLIST_KEY_CFBundleDisplayName = GroovyBox;
 | 
			
		||||
				INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.music";
 | 
			
		||||
@@ -727,8 +731,10 @@
 | 
			
		||||
				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
 | 
			
		||||
				CLANG_ENABLE_MODULES = YES;
 | 
			
		||||
				CODE_SIGN_ENTITLEMENTS = Runner/Release.entitlements;
 | 
			
		||||
				"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
 | 
			
		||||
				CODE_SIGN_STYLE = Automatic;
 | 
			
		||||
				COMBINE_HIDPI_IMAGES = YES;
 | 
			
		||||
				DEVELOPMENT_TEAM = W7HPZ53V6B;
 | 
			
		||||
				INFOPLIST_FILE = Runner/Info.plist;
 | 
			
		||||
				INFOPLIST_KEY_CFBundleDisplayName = GroovyBox;
 | 
			
		||||
				INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.music";
 | 
			
		||||
 
 | 
			
		||||
@@ -26,6 +26,8 @@
 | 
			
		||||
	<string>$(PRODUCT_COPYRIGHT)</string>
 | 
			
		||||
	<key>NSMainNibFile</key>
 | 
			
		||||
	<string>MainMenu</string>
 | 
			
		||||
	<key>LSApplicationCategoryType</key>
 | 
			
		||||
	<string>public.app-category.music</string>
 | 
			
		||||
	<key>NSPrincipalClass</key>
 | 
			
		||||
	<string>NSApplication</string>
 | 
			
		||||
</dict>
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user