├── .gitignore ├── CMakeLists.txt ├── COPYING ├── README.md ├── cmake ├── FindGirCompiler.cmake ├── FindVala.cmake ├── GObjectIntrospectionMacros.cmake ├── GSettings.cmake ├── ParseArguments.cmake ├── README ├── README.Vala.rst ├── Tests.cmake ├── Translations.cmake ├── ValaPrecompile.cmake └── ValaVersion.cmake ├── data ├── com.github.dreamdevel.eradio.appdata.xml └── com.github.dreamdevel.eradio.desktop ├── debian ├── changelog ├── compat ├── control ├── copyright ├── rules └── source │ └── format ├── eradio.sublime-project ├── images ├── com.github.dreamdevel.eradio.svg ├── discoverBig.png └── icons │ ├── 128x128 │ └── apps │ │ └── com.github.dreamdevel.eradio.png │ ├── 16x16 │ └── apps │ │ ├── com.github.dreamdevel.eradio.png │ │ ├── eradio-all-stations.svg │ │ ├── eradio-discover.svg │ │ ├── eradio-favorites.svg │ │ └── eradio-genre.svg │ ├── 24x24 │ └── apps │ │ └── com.github.dreamdevel.eradio.png │ ├── 256x256 │ └── apps │ │ └── com.github.dreamdevel.eradio.png │ ├── 32x32 │ └── apps │ │ └── com.github.dreamdevel.eradio.png │ ├── 48x48 │ └── apps │ │ └── com.github.dreamdevel.eradio.png │ └── 512x512 │ └── apps │ └── com.github.dreamdevel.eradio.png ├── po ├── CMakeLists.txt ├── de.po ├── el.po ├── eradio.pot ├── hu.po └── nl.po ├── schemas └── com.dreamdevel.eradio.gschema.xml ├── src ├── Core │ ├── Database.vala │ ├── DatabaseModels │ │ ├── GenreModel.vala │ │ ├── StationModel.vala │ │ └── StationsGenresModel.vala │ ├── MPRIS.vala │ ├── MediaKeyListener.vala │ ├── Notifier.vala │ ├── Player.vala │ ├── PlayerDecoders │ │ ├── ASXDecoder.vala │ │ ├── M3UDecoder.vala │ │ └── PLSDecoder.vala │ ├── PlayerHelper.vala │ ├── Settings.vala │ └── WidgetManager.vala ├── Enums │ ├── ListStoreFilterType.vala │ └── PlayerStatus.vala ├── Models │ ├── Genre.vala │ ├── Station.vala │ └── WebRadio.vala ├── UserInterface │ ├── Dialogs │ │ ├── AddStationDialog.vala │ │ ├── EditStationDialog.vala │ │ ├── ErrorDialog.vala │ │ ├── ImportProgressDialog.vala │ │ ├── ProgressDialog.vala │ │ └── StationDialog.vala │ ├── Menus │ │ ├── ApplicationMenu.vala │ │ └── StationsTreeViewContextMenu.vala │ ├── Others │ │ └── FileChooserCreator.vala │ ├── Views │ │ ├── StationsListView.vala │ │ └── WelcomeView.vala │ ├── Widgets │ │ ├── DiscoverBox.vala │ │ ├── GenresListStore.vala │ │ ├── GenresTreeView.vala │ │ ├── GenresTreeViewScrollable.vala │ │ ├── GenresTreeViewToolbar.vala │ │ ├── HeaderBar.vala │ │ ├── LevelBar.vala │ │ ├── MainStack.vala │ │ ├── SideBar.vala │ │ ├── SideBarExpandableItem.vala │ │ ├── StationsListStore.vala │ │ ├── StationsTreeView.vala │ │ ├── StationsTreeViewScrollable.vala │ │ └── ViewStack.vala │ └── Windows │ │ └── MainWindow.vala ├── config.vala.cmake ├── error.vala ├── main.vala ├── package_manager.vala └── radio.vala └── tools ├── build ├── build_from_sublime ├── dev-shell ├── install-app ├── install-deps ├── install-deps-ubuntu └── run /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/README.md -------------------------------------------------------------------------------- /cmake/FindGirCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/cmake/FindGirCompiler.cmake -------------------------------------------------------------------------------- /cmake/FindVala.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/cmake/FindVala.cmake -------------------------------------------------------------------------------- /cmake/GObjectIntrospectionMacros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/cmake/GObjectIntrospectionMacros.cmake -------------------------------------------------------------------------------- /cmake/GSettings.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/cmake/GSettings.cmake -------------------------------------------------------------------------------- /cmake/ParseArguments.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/cmake/ParseArguments.cmake -------------------------------------------------------------------------------- /cmake/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/cmake/README -------------------------------------------------------------------------------- /cmake/README.Vala.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/cmake/README.Vala.rst -------------------------------------------------------------------------------- /cmake/Tests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/cmake/Tests.cmake -------------------------------------------------------------------------------- /cmake/Translations.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/cmake/Translations.cmake -------------------------------------------------------------------------------- /cmake/ValaPrecompile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/cmake/ValaPrecompile.cmake -------------------------------------------------------------------------------- /cmake/ValaVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/cmake/ValaVersion.cmake -------------------------------------------------------------------------------- /data/com.github.dreamdevel.eradio.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/data/com.github.dreamdevel.eradio.appdata.xml -------------------------------------------------------------------------------- /data/com.github.dreamdevel.eradio.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/data/com.github.dreamdevel.eradio.desktop -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /eradio.sublime-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/eradio.sublime-project -------------------------------------------------------------------------------- /images/com.github.dreamdevel.eradio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/images/com.github.dreamdevel.eradio.svg -------------------------------------------------------------------------------- /images/discoverBig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/images/discoverBig.png -------------------------------------------------------------------------------- /images/icons/128x128/apps/com.github.dreamdevel.eradio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/images/icons/128x128/apps/com.github.dreamdevel.eradio.png -------------------------------------------------------------------------------- /images/icons/16x16/apps/com.github.dreamdevel.eradio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/images/icons/16x16/apps/com.github.dreamdevel.eradio.png -------------------------------------------------------------------------------- /images/icons/16x16/apps/eradio-all-stations.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/images/icons/16x16/apps/eradio-all-stations.svg -------------------------------------------------------------------------------- /images/icons/16x16/apps/eradio-discover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/images/icons/16x16/apps/eradio-discover.svg -------------------------------------------------------------------------------- /images/icons/16x16/apps/eradio-favorites.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/images/icons/16x16/apps/eradio-favorites.svg -------------------------------------------------------------------------------- /images/icons/16x16/apps/eradio-genre.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/images/icons/16x16/apps/eradio-genre.svg -------------------------------------------------------------------------------- /images/icons/24x24/apps/com.github.dreamdevel.eradio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/images/icons/24x24/apps/com.github.dreamdevel.eradio.png -------------------------------------------------------------------------------- /images/icons/256x256/apps/com.github.dreamdevel.eradio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/images/icons/256x256/apps/com.github.dreamdevel.eradio.png -------------------------------------------------------------------------------- /images/icons/32x32/apps/com.github.dreamdevel.eradio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/images/icons/32x32/apps/com.github.dreamdevel.eradio.png -------------------------------------------------------------------------------- /images/icons/48x48/apps/com.github.dreamdevel.eradio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/images/icons/48x48/apps/com.github.dreamdevel.eradio.png -------------------------------------------------------------------------------- /images/icons/512x512/apps/com.github.dreamdevel.eradio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/images/icons/512x512/apps/com.github.dreamdevel.eradio.png -------------------------------------------------------------------------------- /po/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/po/CMakeLists.txt -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/po/de.po -------------------------------------------------------------------------------- /po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/po/el.po -------------------------------------------------------------------------------- /po/eradio.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/po/eradio.pot -------------------------------------------------------------------------------- /po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/po/hu.po -------------------------------------------------------------------------------- /po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/po/nl.po -------------------------------------------------------------------------------- /schemas/com.dreamdevel.eradio.gschema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/schemas/com.dreamdevel.eradio.gschema.xml -------------------------------------------------------------------------------- /src/Core/Database.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/src/Core/Database.vala -------------------------------------------------------------------------------- /src/Core/DatabaseModels/GenreModel.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/src/Core/DatabaseModels/GenreModel.vala -------------------------------------------------------------------------------- /src/Core/DatabaseModels/StationModel.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/src/Core/DatabaseModels/StationModel.vala -------------------------------------------------------------------------------- /src/Core/DatabaseModels/StationsGenresModel.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/src/Core/DatabaseModels/StationsGenresModel.vala -------------------------------------------------------------------------------- /src/Core/MPRIS.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/src/Core/MPRIS.vala -------------------------------------------------------------------------------- /src/Core/MediaKeyListener.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/src/Core/MediaKeyListener.vala -------------------------------------------------------------------------------- /src/Core/Notifier.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/src/Core/Notifier.vala -------------------------------------------------------------------------------- /src/Core/Player.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/src/Core/Player.vala -------------------------------------------------------------------------------- /src/Core/PlayerDecoders/ASXDecoder.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/src/Core/PlayerDecoders/ASXDecoder.vala -------------------------------------------------------------------------------- /src/Core/PlayerDecoders/M3UDecoder.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/src/Core/PlayerDecoders/M3UDecoder.vala -------------------------------------------------------------------------------- /src/Core/PlayerDecoders/PLSDecoder.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/src/Core/PlayerDecoders/PLSDecoder.vala -------------------------------------------------------------------------------- /src/Core/PlayerHelper.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/src/Core/PlayerHelper.vala -------------------------------------------------------------------------------- /src/Core/Settings.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/src/Core/Settings.vala -------------------------------------------------------------------------------- /src/Core/WidgetManager.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/src/Core/WidgetManager.vala -------------------------------------------------------------------------------- /src/Enums/ListStoreFilterType.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/src/Enums/ListStoreFilterType.vala -------------------------------------------------------------------------------- /src/Enums/PlayerStatus.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/src/Enums/PlayerStatus.vala -------------------------------------------------------------------------------- /src/Models/Genre.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/src/Models/Genre.vala -------------------------------------------------------------------------------- /src/Models/Station.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/src/Models/Station.vala -------------------------------------------------------------------------------- /src/Models/WebRadio.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/src/Models/WebRadio.vala -------------------------------------------------------------------------------- /src/UserInterface/Dialogs/AddStationDialog.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/src/UserInterface/Dialogs/AddStationDialog.vala -------------------------------------------------------------------------------- /src/UserInterface/Dialogs/EditStationDialog.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/src/UserInterface/Dialogs/EditStationDialog.vala -------------------------------------------------------------------------------- /src/UserInterface/Dialogs/ErrorDialog.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/src/UserInterface/Dialogs/ErrorDialog.vala -------------------------------------------------------------------------------- /src/UserInterface/Dialogs/ImportProgressDialog.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/src/UserInterface/Dialogs/ImportProgressDialog.vala -------------------------------------------------------------------------------- /src/UserInterface/Dialogs/ProgressDialog.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/src/UserInterface/Dialogs/ProgressDialog.vala -------------------------------------------------------------------------------- /src/UserInterface/Dialogs/StationDialog.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/src/UserInterface/Dialogs/StationDialog.vala -------------------------------------------------------------------------------- /src/UserInterface/Menus/ApplicationMenu.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/src/UserInterface/Menus/ApplicationMenu.vala -------------------------------------------------------------------------------- /src/UserInterface/Menus/StationsTreeViewContextMenu.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/src/UserInterface/Menus/StationsTreeViewContextMenu.vala -------------------------------------------------------------------------------- /src/UserInterface/Others/FileChooserCreator.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/src/UserInterface/Others/FileChooserCreator.vala -------------------------------------------------------------------------------- /src/UserInterface/Views/StationsListView.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/src/UserInterface/Views/StationsListView.vala -------------------------------------------------------------------------------- /src/UserInterface/Views/WelcomeView.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/src/UserInterface/Views/WelcomeView.vala -------------------------------------------------------------------------------- /src/UserInterface/Widgets/DiscoverBox.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/src/UserInterface/Widgets/DiscoverBox.vala -------------------------------------------------------------------------------- /src/UserInterface/Widgets/GenresListStore.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/src/UserInterface/Widgets/GenresListStore.vala -------------------------------------------------------------------------------- /src/UserInterface/Widgets/GenresTreeView.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/src/UserInterface/Widgets/GenresTreeView.vala -------------------------------------------------------------------------------- /src/UserInterface/Widgets/GenresTreeViewScrollable.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/src/UserInterface/Widgets/GenresTreeViewScrollable.vala -------------------------------------------------------------------------------- /src/UserInterface/Widgets/GenresTreeViewToolbar.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/src/UserInterface/Widgets/GenresTreeViewToolbar.vala -------------------------------------------------------------------------------- /src/UserInterface/Widgets/HeaderBar.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/src/UserInterface/Widgets/HeaderBar.vala -------------------------------------------------------------------------------- /src/UserInterface/Widgets/LevelBar.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/src/UserInterface/Widgets/LevelBar.vala -------------------------------------------------------------------------------- /src/UserInterface/Widgets/MainStack.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/src/UserInterface/Widgets/MainStack.vala -------------------------------------------------------------------------------- /src/UserInterface/Widgets/SideBar.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/src/UserInterface/Widgets/SideBar.vala -------------------------------------------------------------------------------- /src/UserInterface/Widgets/SideBarExpandableItem.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/src/UserInterface/Widgets/SideBarExpandableItem.vala -------------------------------------------------------------------------------- /src/UserInterface/Widgets/StationsListStore.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/src/UserInterface/Widgets/StationsListStore.vala -------------------------------------------------------------------------------- /src/UserInterface/Widgets/StationsTreeView.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/src/UserInterface/Widgets/StationsTreeView.vala -------------------------------------------------------------------------------- /src/UserInterface/Widgets/StationsTreeViewScrollable.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/src/UserInterface/Widgets/StationsTreeViewScrollable.vala -------------------------------------------------------------------------------- /src/UserInterface/Widgets/ViewStack.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/src/UserInterface/Widgets/ViewStack.vala -------------------------------------------------------------------------------- /src/UserInterface/Windows/MainWindow.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/src/UserInterface/Windows/MainWindow.vala -------------------------------------------------------------------------------- /src/config.vala.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/src/config.vala.cmake -------------------------------------------------------------------------------- /src/error.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/src/error.vala -------------------------------------------------------------------------------- /src/main.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/src/main.vala -------------------------------------------------------------------------------- /src/package_manager.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/src/package_manager.vala -------------------------------------------------------------------------------- /src/radio.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/src/radio.vala -------------------------------------------------------------------------------- /tools/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/tools/build -------------------------------------------------------------------------------- /tools/build_from_sublime: -------------------------------------------------------------------------------- 1 | cmake -DCMAKE_INSTALL_PREFIX=/usr .. 2 | make -------------------------------------------------------------------------------- /tools/dev-shell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/tools/dev-shell -------------------------------------------------------------------------------- /tools/install-app: -------------------------------------------------------------------------------- 1 | cd $BUILD_DIR && sudo make install 2 | -------------------------------------------------------------------------------- /tools/install-deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/tools/install-deps -------------------------------------------------------------------------------- /tools/install-deps-ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamDevel/eRadio/HEAD/tools/install-deps-ubuntu -------------------------------------------------------------------------------- /tools/run: -------------------------------------------------------------------------------- 1 | $EXEC_PATH -d --------------------------------------------------------------------------------