mirror of
https://github.com/arcan1s/ffxivbis.git
synced 2026-04-08 11:33:44 +00:00
Compare commits
6 Commits
0.15.3
...
8a37c66be8
| Author | SHA1 | Date | |
|---|---|---|---|
| 8a37c66be8 | |||
| af7a92af35 | |||
| 4c05ceefcd | |||
| fa43517b16 | |||
| 77e99439e7 | |||
| c9eb311cfe |
12
.github/workflows/release.yml
vendored
12
.github/workflows/release.yml
vendored
@@ -12,6 +12,7 @@ jobs:
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: extract version
|
||||
id: version
|
||||
run: echo ::set-output name=VERSION::${GITHUB_REF#refs/tags/}
|
||||
@@ -21,13 +22,24 @@ 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:
|
||||
|
||||
10
.github/workflows/run-tests.yml
vendored
10
.github/workflows/run-tests.yml
vendored
@@ -13,10 +13,20 @@ 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
|
||||
|
||||
@@ -12,5 +12,5 @@ trait ValidatorHelper {
|
||||
|
||||
object ValidatorHelper {
|
||||
|
||||
final val VALID_CHARACTERS = HashSet.from("!@#$%^&*()-_=+;:',./? ")
|
||||
final val VALID_CHARACTERS = HashSet.from("!@#$%^&*()-_=+;:',./?| ")
|
||||
}
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -1 +1 @@
|
||||
version := "0.15.3"
|
||||
version := "0.15.5"
|
||||
|
||||
Reference in New Issue
Block a user