Skip to content

Commit

Permalink
1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nisaba committed Aug 16, 2023
1 parent b582df1 commit c2f2891
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
2 changes: 0 additions & 2 deletions BlocksreamJson.txt

This file was deleted.

2 changes: 1 addition & 1 deletion P-38-PC-Mac/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"as3mxml.sdk.framework": "f:\\CODES-SOURCES\\SDKs\\Flex-Sdk-4.16.1-Air50-Harman"
"as3mxml.sdk.framework": "c:\\CODES-SOURCES\\SDKs\\Flex-Sdk-4.16.1-Air50-Harman"
}
2 changes: 1 addition & 1 deletion P-38-PC-Mac/src/P-38-app.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<name>P-38</name>

<!-- An application version designator (such as "v1", "2.5", or "Alpha 1"). Required. -->
<versionNumber>1.0.0</versionNumber>
<versionNumber>1.0.1</versionNumber>

<!-- Description, displayed in the AIR application installer.
May have multiple values for each language. See samples or xsd schema file. Optional. -->
Expand Down
14 changes: 10 additions & 4 deletions P-38-PC-Mac/src/P38.mxml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@
var qr:QRCode = new QRCode();
qr.encode(msg.LightningInvoice);
spriteQrCode.addChild(new Bitmap(qr.bitmapData));
grpLightning.visible = true;
myMessages.push(msg);
myMessagesCollection = new VectorCollection(myMessages);
Expand Down Expand Up @@ -233,13 +234,18 @@
<s:Group>
<s:Button label="{Lang.Envoyer}" click="SendMsg()" visible="{rdTypeMessage.selectedValue == 'txt'}"/>
<s:Button label="{Lang.SelectionFichier}" click="SendFile()" visible="{rdTypeMessage.selectedValue == 'fic'}"/>

</s:Group>
</s:HGroup>

<s:HGroup visible="{!(msg == null || msg.LightningInvoice.length == 0)}" gap="10">
<s:TextArea id="txtLightning" width="310" height="240" editable="false"/>
<s:SpriteVisualElement id="spriteQrCode" width="250" height="250"/>
</s:HGroup>
<!--<s:HGroup visible="{!(msg == null || msg.LightningInvoice.length == 0)}" gap="10"> -->
<s:VGroup id="grpLightning" gap="10" visible="false">
<s:Label text="{Lang.FactureLN + ' :'}" fontWeight="bold"/>
<s:HGroup>
<s:TextArea id="txtLightning" width="310" height="240" editable="false"/>
<s:SpriteVisualElement id="spriteQrCode" width="250" height="250"/>
</s:HGroup>
</s:VGroup>
</s:VGroup>
</s:NavigatorContent>

Expand Down

0 comments on commit c2f2891

Please sign in to comment.