Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
58 commits
Select commit Hold shift + click to select a range
723fed0
Changes (#15)
EotT123 Apr 9, 2025
f125a79
use jspecify annotation
Apr 13, 2025
9bd8f38
removed unused Getter annotation
Apr 13, 2025
415aa0b
suppress warnings
Apr 15, 2025
231efd8
small change
Apr 16, 2025
17bd78f
use optional parameters (1)
Apr 16, 2025
ebcee69
use optional parameters (2)
Apr 16, 2025
ed5f340
use optional parameters (3)
Apr 17, 2025
a39d391
changes
Apr 17, 2025
d541c54
use optional parameters (4)
Apr 17, 2025
1243f9c
small change
Apr 18, 2025
424afd4
small typo
Apr 18, 2025
7d0048f
fix
Apr 18, 2025
f98094c
use optional parameters (5)
Apr 18, 2025
24641cd
small changes
Apr 18, 2025
4550524
add extra extensions
Apr 18, 2025
ba1540f
use optional parameters (6)
Apr 18, 2025
8fefb40
change
Apr 18, 2025
4dbe3a5
pom update
Apr 18, 2025
a342fde
fix
Apr 19, 2025
8ac0a68
small changes
Apr 19, 2025
0cc69cd
temp commit
Apr 19, 2025
6ee2a2e
temp commit
Apr 19, 2025
425c421
temporary commit
Apr 19, 2025
4c9bf80
temp commit
Apr 19, 2025
a0eee1f
temp commit
Apr 19, 2025
ae1097b
temp commit
Apr 19, 2025
3f62e56
temp commit
Apr 19, 2025
7996786
fix
Apr 20, 2025
1949187
use optional parameters (8)
Apr 20, 2025
ec31d9a
small change
Apr 20, 2025
6853b65
changes
Apr 20, 2025
9aa4f00
use optional parameters (9)
Apr 20, 2025
113d075
replace lombok with normal java code
Apr 20, 2025
25d230f
use optional parameters (10)
Apr 20, 2025
3baf729
use optional parameters (11)
Apr 20, 2025
ddfc4f3
Gui fixes
Apr 23, 2025
2d9311b
fix generics for cache
Apr 23, 2025
3cca253
use optional parameters (12)
Apr 23, 2025
f207f0c
use optional parameters (13)
Apr 23, 2025
c655628
use optional parameters (14) + use manifold science (temp)
Apr 26, 2025
0659337
fixes: why is this needed?
Apr 26, 2025
3c48b47
changes
Apr 26, 2025
3d78cf9
changes
Apr 28, 2025
5004db1
update manifold
Apr 28, 2025
87f90f0
fix
Apr 28, 2025
5b9c46b
changes
Apr 28, 2025
11e70e2
changes
Apr 28, 2025
ec3b90a
changes
Apr 28, 2025
90771d0
changes
Apr 29, 2025
9709065
changes
Apr 29, 2025
2030560
changes
Apr 30, 2025
f43698c
refactor tvsubtitles
Apr 30, 2025
85fdf75
use cookiemanager
Apr 30, 2025
9a9803b
remove subscene in gui
May 1, 2025
45af850
Value refactoring
May 1, 2025
d9ad3c5
clear searchproviders
May 1, 2025
510be1a
fix TVSubtitles
May 1, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
32 changes: 16 additions & 16 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,26 @@

name: Java CI with Maven

on: [push, pull_request]
on: [ push, pull_request ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up JDK 16
uses: actions/setup-java@v3
with:
java-version: '16'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -B package --file pom.xml
- name: Upload jar
if: success()
uses: actions/upload-artifact@v3
with:
name: multisubdownloader.jar
path: "/home/runner/work/SubTools/SubTools/MultiSubDownloader/target/multisubdownloader*.jar"
- uses: actions/checkout@v4
- name: Set up JDK 24
uses: actions/setup-java@v4
with:
java-version: '24'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -B package --file pom.xml
- name: Upload jar
if: success()
uses: actions/upload-artifact@v4
with:
name: multisubdownloader.jar
path: "/home/runner/work/SubTools/SubTools/MultiSubDownloader/target/multisubdownloader*.jar"
Loading