Skip to content

Commit

Permalink
6.3.0 PDFの変数の追加漏れに対応
Browse files Browse the repository at this point in the history
PDFの出力をプレーンテキストからリーダブルテキストにしたらより精度が高い結果を得られた
  • Loading branch information
r-koubou committed Aug 4, 2020
1 parent e09b3b6 commit 591c81b
Show file tree
Hide file tree
Showing 9 changed files with 17,621 additions and 7,215 deletions.
57 changes: 57 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,62 @@
# Changelog

## Version 0.7.10

Added Syntax highlighting.

#### Variable

- $EFFECT_TYPE_REPLIKA
- $EFFECT_TYPE_REVERB2
- $ENGINE_PAR_PR_DECAY
- $ENGINE_PAR_PR_HIDAMP
- $ENGINE_PAR_PR_LOWSHELF
- $ENGINE_PAR_PR_PREDELAY
- $ENGINE_PAR_RDL_AMOUNT
- $ENGINE_PAR_RDL_BBDTYPE
- $ENGINE_PAR_RDL_DENSE
- $ENGINE_PAR_RDL_DEPTH
- $ENGINE_PAR_RDL_FEEDBACK
- $ENGINE_PAR_RDL_FLUTTER
- $ENGINE_PAR_RDL_HIGHCUT
- $ENGINE_PAR_RDL_LOWCUT
- $ENGINE_PAR_RDL_MODULATION
- $ENGINE_PAR_RDL_NOISE
- $ENGINE_PAR_RDL_PINGPONG
- $ENGINE_PAR_RDL_QUALITY
- $ENGINE_PAR_RDL_RATE
- $ENGINE_PAR_RDL_SATURATION
- $ENGINE_PAR_RDL_SIZE
- $ENGINE_PAR_RDL_STEREO
- $ENGINE_PAR_RDL_TAPEAGE
- $ENGINE_PAR_RDL_TIME
- $ENGINE_PAR_RDL_TIME_UNIT
- $ENGINE_PAR_RDL_TYPE
- $ENGINE_PAR_RV2_DAMPING
- $ENGINE_PAR_RV2_DIFF
- $ENGINE_PAR_RV2_HIGHCUT
- $ENGINE_PAR_RV2_LOWSHELF
- $ENGINE_PAR_RV2_MOD
- $ENGINE_PAR_RV2_PREDELAY
- $ENGINE_PAR_RV2_SIZE
- $ENGINE_PAR_RV2_STEREO
- $ENGINE_PAR_RV2_TIME
- $ENGINE_PAR_RV2_TYPE
- $ENGINE_PAR_WT_FORM
- $ENGINE_PAR_WT_FORM_MODE
- $ENGINE_PAR_WT_PHASE
- $ENGINE_PAR_WT_POSITION
- $ENGINE_PAR_WT_QUALITY
- $NI_FLAIR_MODE_STANDARD
- $NI_FLAIR_MODE_THRU_ZERO
- $NI_REPLIKA_TYPE_ANALOGUE
- $NI_REVERB2_TYPE_HALL
- $NI_WT_QUALITY_BEST
- $NI_WT_QUALITY_HIGH
- $NI_WT_QUALITY_LOFI
- $NI_WT_QUALITY_MEDIUM


## Version 0.7.9

### KONTAKT 6.3.1 ready
Expand Down
4 changes: 4 additions & 0 deletions data/ExtractCommandFromManual.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@
"ray_idx",
"set_condition", #lower
"range", # not exist
# Interrupted word
"group",
"idx",
"par_str_arr",
"tach_zone", # line separated (-> attach_zone() )
"ui_control", # It is callback
"trol_par_str_arr", # extract miss (expexted: control_par_str_arr)
Expand Down
24 changes: 14 additions & 10 deletions data/ExtractVariableFromManual.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,20 @@
wordList = []

IGNORE_WORD_LIST = [
"$MARK_1",
"$MARK_2",
"$MARK_28",
"$KEY_COLOR_FUCHSI",
# in Sample Code
"$HEADER_SIZE",
"$NUM_SLIDES",
"$SIZE",
"$VE",
"$ARRAY_SIZE",
"$MARK_1",
"$MARK_2",
"$MARK_28",
"$KEY_COLOR_FUCHSI",
# in Sample Code
"$HEADER_SIZE",
"$NUM_SLIDES",
"$SIZE",
"$VE",
"$ARRAY_SIZE",
# Interrupted word
"$CON",
"$SIGNA",
"$NI_DETECT_INSTRU",
]

def appendWord( word, targetList ):
Expand Down
Loading

0 comments on commit 591c81b

Please sign in to comment.