Skip to content

Commit f1c69ad

Browse files
committed
1.7.5
1 parent 64a8877 commit f1c69ad

File tree

7 files changed

+13
-8
lines changed

7 files changed

+13
-8
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.7.5
2+
3+
- Site used to embed videos has been changed to anicour-video-embed.pages.dev
4+
15
## 1.7.4
26

37
- Fixed youtube embed for anime trailers. Caused by youtube changing their referrer policy for where the origin of the request came from.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ _Note:_
3232
**This app does not have a code signing certificate and will give a warning message on installation.**
3333

3434
1. Download the setup file from the latest releases. The setup file is labeled as AniCour-Setup-x.x.x.exe, where x.x.x will denote the version.
35-
<br> **Example: AniCour-Setup-1.7.4.exe**
35+
<br> **Example: AniCour-Setup-1.7.5.exe**
3636
<br> _Some browsers may give a warning when downloading the setup file as it does not use a code signing certificate._
3737
<br> _In this case, to allow the download use the alternate option they provide. (Example: keep file)_
3838
2. Run the setup file, Windows will give a message like below, click on **"More info"** <p align="center"><a href="https://raw.githubusercontent.com/restartq/anicour/main/images/help/AniCourNoCodeSigningInitial.png"><img src="https://raw.githubusercontent.com/restartq/anicour/main/images/help/AniCourNoCodeSigningInitial.png" height="280"/></a></p>

release/app/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

release/app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "anicour",
3-
"version": "1.7.4",
3+
"version": "1.7.5",
44
"description": "Anime, Manga, and Light Novel Tracker Desktop Application for Windows. A fast and interactive way for AniList users to track and manage their anime/manga lists. ",
55
"license": "GPL-3.0",
66
"author": {

src/main/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ async function getNewsAdv(url: string, myTitle: string) {
205205
if (videoUrl) {
206206
// Replace the iframe element with the new link
207207
$(this).attr({
208-
src: `https://www.youtube.ttools.io/watch?v=${videoID}`,
208+
src: `https://anicour-embed-video.pages.dev/youtube/${videoID}`,
209209
referrerPolicy: 'strict-origin-when-cross-origin',
210210
scrolling: 'no',
211211
width: '560px',

src/renderer/components/trailer/MyTrailer.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ export default function MyTrailer({ props }: any) {
1010
title="trailer"
1111
id="youtube"
1212
width={560}
13-
height={345}
14-
src={`https://www.youtube.ttools.io/watch?v=${myAdvancedMedia.advancedMedia.trailer.id}`}
13+
height={340}
14+
src={`https://anicour-embed-video.pages.dev/youtube/${myAdvancedMedia.advancedMedia.trailer.id}`}
1515
referrerPolicy="strict-origin-when-cross-origin"
1616
allowFullScreen
1717
style={{
@@ -47,3 +47,4 @@ export default function MyTrailer({ props }: any) {
4747
);
4848
}
4949
// check if trailer is null + on youtube
50+
// Backup: src={`https://www.youtube.ttools.io/watch?v=${myAdvancedMedia.advancedMedia.trailer.id}`}

src/renderer/styles/App.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ input[type='number']::-webkit-outer-spin-button {
3838
}
3939

4040
.episode {
41-
color: #87ceeb;
41+
color: deepskyblue;
4242
}
4343

4444
.label-information {

0 commit comments

Comments
 (0)