diff --git a/.gitignore b/.gitignore index e8a8e4b..d7f8a5b 100644 --- a/.gitignore +++ b/.gitignore @@ -50,3 +50,4 @@ silencehalf.wav bass*.dll bass*.so sdx.dll +SecureDongle.dll diff --git a/.idea/artifacts/AAS_multijar.xml b/.idea/artifacts/AAS_multijar.xml new file mode 100644 index 0000000..ca1cbd6 --- /dev/null +++ b/.idea/artifacts/AAS_multijar.xml @@ -0,0 +1,37 @@ + + + $PROJECT_DIR$/out/artifacts/AAS_multijar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/artifacts/AAS_NewGen_jar.xml b/.idea/artifacts/AAS_singlejar.xml similarity index 98% rename from .idea/artifacts/AAS_NewGen_jar.xml rename to .idea/artifacts/AAS_singlejar.xml index 450298a..4610cf6 100644 --- a/.idea/artifacts/AAS_NewGen_jar.xml +++ b/.idea/artifacts/AAS_singlejar.xml @@ -1,12 +1,34 @@ - - $PROJECT_DIR$/out/artifacts/AAS_NewGen_jar + + $PROJECT_DIR$/out/artifacts/AAS_singlejar + + + + + + + + + + + + + + + + + + + + + + @@ -15,7 +37,6 @@ - @@ -66,11 +87,10 @@ - - - - - + + + + @@ -90,26 +110,7 @@ - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/.idea/compiler.xml b/.idea/compiler.xml new file mode 100644 index 0000000..a1757ae --- /dev/null +++ b/.idea/compiler.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/deployment.xml b/.idea/deployment.xml new file mode 100644 index 0000000..f0c0792 --- /dev/null +++ b/.idea/deployment.xml @@ -0,0 +1,15 @@ + + + + + \ No newline at end of file diff --git a/.idea/libraries/projectlombok_lombok.xml b/.idea/libraries/projectlombok_lombok.xml new file mode 100644 index 0000000..66dc9fb --- /dev/null +++ b/.idea/libraries/projectlombok_lombok.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/sshConfigs.xml b/.idea/sshConfigs.xml new file mode 100644 index 0000000..8c8474d --- /dev/null +++ b/.idea/sshConfigs.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/webServers.xml b/.idea/webServers.xml new file mode 100644 index 0000000..1c20722 --- /dev/null +++ b/.idea/webServers.xml @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/AAS_NewGen.iml b/AAS_NewGen.iml index c6cc4fb..94b2814 100644 --- a/AAS_NewGen.iml +++ b/AAS_NewGen.iml @@ -37,5 +37,6 @@ + \ No newline at end of file diff --git a/html/webpage/assets/js/messagebank.js b/html/webpage/assets/js/messagebank.js index 85dd382..7872372 100644 --- a/html/webpage/assets/js/messagebank.js +++ b/html/webpage/assets/js/messagebank.js @@ -123,12 +123,13 @@ $(document).ready(function () { categories.forEach(cat => { if ("Phrase" === cat) return; // skip Phrase category if ("Airline_Code" === cat) cat = "Flight_Number"; // revisi 15012026 karena inconsistensi penamaan tag + if ("Gate" === cat) cat = "GateNumber"; // revisi 03202026 karena inconsistensi penamaan tag let displayCat = `[${cat}]`.toUpperCase(); - $messageavailablevariables.append(new Option(text = displayCat, value = displayCat)); + $messageavailablevariables.append(new Option(text = displayCat, value = displayCat, title = displayCat)); }); // tambah [ETAD], [BCB] revisi 19012026 - $messageavailablevariables.append(new Option(text = '[ETAD]', value = '[ETAD]')); - $messageavailablevariables.append(new Option(text = '[BCB]', value = '[BCB]')); + $messageavailablevariables.append(new Option(text = '[ETAD]', value = '[ETAD]', title = '[ETAD]')); + $messageavailablevariables.append(new Option(text = '[BCB]', value = '[BCB]', title = '[BCB]')); let lang = $messagelanguage.val(); let vt = $messagevoicetype.val(); @@ -179,7 +180,9 @@ $(document).ready(function () { // iterate messageselectedvariables children $messageselectedvariables.children().each(function () { - let text = $(this).text().trim(); + // text got from title + // value got from value + let text = $(this).prop('title').trim(); let value = $(this).val().trim(); console.log('selected text:' + text + ', value:' + value); if (text.length > 0) { @@ -398,9 +401,12 @@ $(document).ready(function () { if (tagLower === "[airline_code]") { tagLower = "[flight_number]"; } - if (tagLower === "[gatenumber]") { - tagLower = "[gate]"; - } + + // revisi 03022026 karena malah bikin kacau di semi auto + // if (tagLower === "[gatenumber]") { + // tagLower = "[gate]"; + // } + // find