3 Commits

Author SHA1 Message Date
cdbb9d9aa5 Release 0.15.3 2024-07-31 15:43:30 +03:00
2d6445447b bug: remove unreachable code 2024-07-31 15:43:17 +03:00
57e65e1901 Release 0.15.2 2024-07-31 15:41:39 +03:00
5 changed files with 3 additions and 25 deletions

View File

@@ -12,7 +12,6 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: extract version
id: version
run: echo ::set-output name=VERSION::${GITHUB_REF#refs/tags/}
@@ -22,24 +21,13 @@ jobs:
with:
token: ${{ secrets.GITHUB_TOKEN }}
filter: 'Release \d+\.\d+\.\d+'
- name: setup JDK
uses: actions/setup-java@v2
with:
distribution: temurin
java-version: 18
- name: install sbt
uses: eclipse-score/apt-install@main
with:
packages: wget
- run: |
wget https://scala.jfrog.io/artifactory/debian/sbt-1.11.7.deb
dpkg -i sbt-1.11.7.deb
- name: create dist
run: make dist
- name: release
uses: softprops/action-gh-release@v1
with:

View File

@@ -13,20 +13,10 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: setup JDK
uses: actions/setup-java@v2
with:
distribution: temurin
java-version: 18
- name: install sbt
uses: eclipse-score/apt-install@main
with:
packages: wget
- run: |
wget https://scala.jfrog.io/artifactory/debian/sbt-1.11.7.deb
dpkg -i sbt-1.11.7.deb
- name: run tests
run: make tests

View File

@@ -12,5 +12,5 @@ trait ValidatorHelper {
object ValidatorHelper {
final val VALID_CHARACTERS = HashSet.from("!@#$%^&*()-_=+;:',./?| ")
final val VALID_CHARACTERS = HashSet.from("!@#$%^&*()-_=+;:',./? ")
}

View File

@@ -50,7 +50,7 @@ class BisProvider(context: ActorContext[BiSProviderMessage])
private def get(link: String, job: Job): Future[Seq[Piece]] =
try {
val url = Uri(link)
val id = Paths.get(link).normalize.getFileName.toString
val id = Paths.get(link).normalize.getFileName.toString
val parser =
if (url.authority.host.address().contains("etro")) Etro

View File

@@ -1 +1 @@
version := "0.15.5"
version := "0.15.3"