mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-15 00:25:17 +00:00

Configuration File Removals: .vscode/c_cpp_properties.json: Removed the entire configuration for C/C++ properties. .vscode/launch.json: Removed the Dart launch configurations for different environments and modes. .vscode/settings.json: Removed settings related to CMake, spell checking, file nesting, and Dart Flutter SDK path. .vscode/snippets.code-snippets: Removed code snippets for Dart, including PaginatedState and PaginatedNotifier templates. .vscode/tasks.json: Removed the tasks configuration file. Documentation Updates: CONTRIBUTION.md: Removed heart emoji from the introductory text. README.md: Updated the logo image and made minor text adjustments, including removing emojis and updating section titles. [1] [2] [3] [4] [5] Asset Removals: lib/collections/assets.gen.dart: Removed multiple unused asset references, including images related to Spotube logos and banners. [1] [2] [3] Minor Code Cleanups: cli/commands/build/linux.dart, cli/commands/build/windows.dart, cli/commands/translated.dart, cli/commands/untranslated.dart: Adjusted import statements for consistency. [1] [2] [3] [4] integration_test/app_test.dart: Removed an unnecessary blank line. lib/collections/routes.dart: Commented out the TrackRoute configuration.
45 lines
1.6 KiB
Dart
45 lines
1.6 KiB
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'recommendation_seeds.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
_$RecommendationSeedsImpl _$$RecommendationSeedsImplFromJson(Map json) =>
|
|
_$RecommendationSeedsImpl(
|
|
not_acoustic: json['not_acoustic'] as num?,
|
|
dance_ability: json['dance_ability'] as num?,
|
|
durationMs: json['duration_ms'] as num?,
|
|
energy: json['energy'] as num?,
|
|
not_instrumental: json['not_instrumental'] as num?,
|
|
key: json['key'] as num?,
|
|
liveness: json['liveness'] as num?,
|
|
loudness: json['loudness'] as num?,
|
|
mode: json['mode'] as num?,
|
|
popularity: json['popularity'] as num?,
|
|
talkative: json['talkative'] as num?,
|
|
tempo: json['tempo'] as num?,
|
|
timeSignature: json['time_signature'] as num?,
|
|
valence: json['valence'] as num?,
|
|
);
|
|
|
|
Map<String, dynamic> _$$RecommendationSeedsImplToJson(
|
|
_$RecommendationSeedsImpl instance) =>
|
|
<String, dynamic>{
|
|
'not_acoustic': instance.not_acoustic,
|
|
'dance_ability': instance.dance_ability,
|
|
'duration_ms': instance.durationMs,
|
|
'energy': instance.energy,
|
|
'not_instrumental': instance.not_instrumental,
|
|
'key': instance.key,
|
|
'liveness': instance.liveness,
|
|
'loudness': instance.loudness,
|
|
'mode': instance.mode,
|
|
'popularity': instance.popularity,
|
|
'talkative': instance.talkative,
|
|
'tempo': instance.tempo,
|
|
'time_signature': instance.timeSignature,
|
|
'valence': instance.valence,
|
|
};
|