-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added support for video games. * Made the application version and name always stay consistent. * Fixed a bug which caused the text for seasons 10 and above to be cutoff. * Fixed movies showing "Other" as media type. * Fixed a crash that could sometimes occur.
- Loading branch information
Showing
16 changed files
with
106 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,32 @@ | ||
# Rating Reader | ||
|
||
Rating Reader is a program that reads movie and TV show scores from [IMDb](https://www.imdb.com) and conveniently displays them in a spoiler-free way. Needs an internet connection to work correctly. | ||
Rating Reader is an application that reads media scores from [IMDb](https://www.imdb.com) and conveniently displays them in a spoiler-free way. | ||
Needs an internet connection to work. | ||
<br /> | ||
<br /> | ||
By Sam Salek | ||
|
||
## How to download | ||
The most up-to-date version of RatingReader.exe is located under builds/_current. Simply select the file and press the "Download" button to start downloading. | ||
The most up-to-date version of RatingReader.exe is located under "builds/_current", a .jar version of the application also exists in the same place for those inclined. | ||
Simply select the file and press the "Download" button to start downloading (a warning may pop up before/during the download. This is perfectly normal, however the application itself is not harmful to your computer in any way. The source code is always available if skeptical). | ||
Older builds also exist beside the "_current" folder, these are however not recommended as they can be unstable and/or buggy. | ||
|
||
|
||
## Update Log | ||
#### 0.6.0: | ||
#### 0.6.3 (27/12/20): | ||
* Added support for video games. | ||
* Made the application version and name always stay consistent. | ||
* Fixed a bug which caused the text for seasons 10 and above to be cutoff. | ||
* Fixed movies showing "Other" as media type. | ||
* Fixed a crash that could sometimes occur. | ||
|
||
#### 0.6.0 (22/12/20): | ||
* Episodes without a rating is now also displayed (with rating "NA"). | ||
* Episodes now correctly displays their respective episode name. | ||
* Added functionality for Miniseries' and media that necessarily isn't a series or movie. | ||
* Optimizations and overall better performance. | ||
* Minor UI changes and optimizations. | ||
* Few bug fixes. | ||
|
||
#### 0.5.0: | ||
#### 0.5.0 (14/11/20): | ||
* Initial version release. |
Binary file renamed
BIN
+9.52 MB
builds/_current/RatingReader-0.6.0.exe → builds/0.6.3/RatingReader_0.6.3.exe
Binary file not shown.
Binary file renamed
BIN
+9.42 MB
builds/_current/ratingreader-0.6.0.jar → builds/0.6.3/ratingreader-0.6.3.jar
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...va/com/zemahzalek/ratingreader/Media.java → .../zemahzalek/ratingreader/model/Media.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package com.zemahzalek.ratingreader; | ||
package com.zemahzalek.ratingreader.model; | ||
|
||
import java.util.ArrayList; | ||
|
||
|
15 changes: 15 additions & 0 deletions
15
src/main/java/com/zemahzalek/ratingreader/model/MediaType.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package com.zemahzalek.ratingreader.model; | ||
|
||
public enum MediaType { | ||
MOVIE("Movie"), SERIES("Series"), MINISERIES("Miniseries"), VIDEOGAME("Video Game"), OTHER("Other"); | ||
|
||
private String name; | ||
|
||
MediaType(String name) { | ||
this.name = name; | ||
} | ||
|
||
public String getName() { | ||
return name; | ||
} | ||
} |
3 changes: 2 additions & 1 deletion
3
.../zemahzalek/ratingreader/EpisodeItem.java → ...hzalek/ratingreader/view/EpisodeItem.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
dev.name = Rating Reader | ||
dev.executable.name = RatingReader | ||
dev.version = 0.6.3 | ||
dev.url = https://github.com/sam123bir/RatingReader |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters