Skip to content

Commit

Permalink
Add v0.4.0 new features support
Browse files Browse the repository at this point in the history
  • Loading branch information
CareyWang committed Feb 23, 2020
1 parent 8f1cde0 commit 763a1cd
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/views/Subconverter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,9 @@
<el-form-item label="ExcludeRemarks:">
<el-input v-model="form.excludeRemarks" placeholder="节点名不包含的关键字,支持正则" />
</el-form-item>
<el-form-item label="FileName:">
<el-input v-model="form.filename" placeholder="返回的订阅文件名" />
</el-form-item>
<el-form-item label-width="0px">
<el-row type="flex">
<el-col>
Expand Down Expand Up @@ -220,6 +223,7 @@ export default {
Quantumult: "quan",
QuantumultX: "quanx",
Surfboard: "surfboard",
Loon: "loon",
ss: "ss",
ssr: "ssr",
ssd: "ssd"
Expand Down Expand Up @@ -289,6 +293,7 @@ export default {
remoteConfig: "",
excludeRemarks: "",
includeRemarks: "",
filename: "",
emoji: true,
nodeList: false,
extraset: false,
Expand Down Expand Up @@ -386,6 +391,10 @@ export default {
this.customSubUrl +=
"&include=" + encodeURIComponent(this.form.includeRemarks);
}
if (this.form.filename !== "") {
this.customSubUrl +=
"&filename=" + encodeURIComponent(this.form.filename);
}
this.customSubUrl +=
"&emoji=" +
Expand Down

0 comments on commit 763a1cd

Please sign in to comment.