Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
G
genesys-gen
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
MyCard
genesys-gen
Commits
387668d8
Commit
387668d8
authored
Sep 27, 2025
by
nanahira
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update lflist title
parent
24094c39
Pipeline
#40750
passed with stages
in 2 minutes and 14 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
4 deletions
+7
-4
main.py
main.py
+7
-4
No files found.
main.py
View file @
387668d8
...
...
@@ -18,9 +18,9 @@ Other rules:
- Disable all Link and Pendulum monsters: SELECT id FROM datas WHERE (type & 0x5000000) > 0
- Output format:
#[
Genesys TCG
]
#[
YYYY.MM TCG Genesys
]
# Genernated by genesys-gen
!
Genesys TCG
!
YYYY.MM TCG Genesys
$genesys 100
...
...
@@ -42,6 +42,7 @@ import re
import
sqlite3
import
sys
import
unicodedata
from
datetime
import
date
from
pathlib
import
Path
from
typing
import
Dict
,
List
,
Tuple
,
Optional
,
Iterable
...
...
@@ -159,10 +160,12 @@ def build_lflist(
"""
Compose the lflist.conf content as requested, using the updated matching strategy.
"""
title
=
date
.
today
()
.
strftime
(
"
%
Y.
%
m TCG Genesys"
)
lines
:
List
[
str
]
=
[]
lines
.
append
(
"#[Genesys TCG
]"
)
lines
.
append
(
f
"#[{title}
]"
)
lines
.
append
(
"# Genernated by genesys-gen"
)
lines
.
append
(
"!Genesys TCG
"
)
lines
.
append
(
f
"!{title}
"
)
lines
.
append
(
""
)
lines
.
append
(
f
"$genesys {cap}"
)
lines
.
append
(
""
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment