| Age | Commit message (Collapse) | Author |
|
Bump version to 10.5.0 for next stable release
|
|
|
|
Removes an assumption on directory if the user has a datadir from the previous install, use that
|
|
Should only remove shortcuts if the install type was non-service. On upgrade, check if the install type was non-service, and if so, set the variables correctly and create shortcuts.
|
|
Adds the icon as a resource file in the program folder, and uses it for the shortcuts created.
Removes an extra section from the dialog creator file, so NSIS won't show a warning for unused code.
|
|
If the user is not installing as a service, then the installer creates a Start Menu shortcut, and a desktop shortcut. Commented out future shortcuts for a tray app.
|
|
I had put the title and subtitle in the wrong order. This corrects the issue.
|
|
|
|
Move to netcore3.0
|
|
Fix up the Setup Type dialog, by removing an unused function from the page.
Adds logic to the installer to check for a basic or advanced setup choice. Ensures that the service is only installed if the "advanced" method is chosen. Note - it may be possible to remove some defaults from the .onInit, considering they get set through the program now.
|
|
|
|
strings
* Fore usage of keyframe cuts only in HLS
|
|
|
|
|
|
|
|
|
|
running
|
|
Remove extra quotes in logging
Fix typo in comment
|
|
Trying to fix hls muxer plus ffmpeg 4.1+ combo
Try to fix waiting for segment being ready
This is needed because hls muxer in ffmpeg >= 4.1 creates the
playlist only when it finishes transcoding.
Also cleaned up logs a bit.
Lower log level for "StartFfmpeg finished" to debug
|
|
This reverts commit 575b96d03a2cf98a0e5dd9d9f7329adca34c0311.
|
|
Translation: Jellyfin/Jellyfin
Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/ko/
|
|
Translation: Jellyfin/Jellyfin
Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/es/
|
|
Translation: Jellyfin/Jellyfin
Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/nb_NO/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Use System.Text.Json api for databases
|
|
Ignore warning CA1308 and SA1108
|
|
Use NVM to install nodejs v8 and yarn for CentOS
|
|
Translation: Jellyfin/Jellyfin
Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/ko/
|
|
This should in the future help to detect working and non working name matchings
|
|
Update translate badge in README
|
|
Fix inconsistent BaseUrl behavior
|
|
|
|
Adds `#pragma warning disable CS1591` to all files in
MediaBrowser.Common containing undocumented members.
|
|
|
|
|
|
Fix exception when handling error, log errors better
|
|
|
|
Minor style fixes
|
|
Log startup time
|
|
Change slow query time logging to debug
|
|
|
|
|
|
|
|
Fully normalizes the baseUrl behaviour to better match how this sort of
feature works in other programs.
1. The baseUrl is always appended to paths, even the built-in `/emby`
and `/mediabrowser` paths.
2. The baseUrl is set statically at class instance creation, to ensure
it persists through changes until the next restart.
3. Configuration is normalized using a function when set, to ensure it's
in a standard `/mypath` format with leading `/`.
4. Cleans up the conditionals around default redirects. For sanity after
changing the URL, it will match *any* path that doesn't match the
current baseUrl and redirect it back to the main page (with baseUrl).
5. Adds a second method, NormalizeUrlPath, to avoid lots of `+ "/" +`
string manipulations which are unclean - we should always have a leading
slash.
6. Sets the default baseUrl to an empty string to avoid unexpected
behaviour, though this would be worked-around automatically.
7. Adds some debug logs whenever a URL is normalized, to help track down
issues with this code (if any arise).
|