Commit Graph

4781 Commits

Author SHA1 Message Date
曉之車
cdff0c081a chinese translate upadate
ffdec_11.3.0 version
2021-01-01 01:07:48 +01:00
曉之車
b0dab3a1fc Add files via upload 2021-01-01 01:07:48 +01:00
曉之車
4abdeaa39e Add files via upload 2021-01-01 01:07:48 +01:00
Jindra Petřík
0a0bfedb2e fix after_success.sh 2021-01-01 01:07:47 +01:00
Jindra Petřík
1a44c0b891 java 9 in travis 2021-01-01 01:07:47 +01:00
Jindra Petřík
5a68dc63b6 fixed tests, removed jacoco 2021-01-01 01:07:47 +01:00
Jindra Petřík
6f1d4ebb7a changelog 2021-01-01 01:07:47 +01:00
Jindra Petřík
204fe8f7c2 java 9 compliance
- NSIS installer - remove JRE support
2021-01-01 01:07:47 +01:00
Jindra Petřík
572307f362 java 9 compliance
- launch4j
2021-01-01 01:07:46 +01:00
Jindra Petřík
03e537921f java 9 compliance
- changelog, UI updates, commandline updates
2021-01-01 01:07:43 +01:00
Jindra Petřík
ca21337d9f java 9 compliance
- base64, bytearrtohex, installed fonts, xml sax parser
2021-01-01 01:07:43 +01:00
Jindra Petřík
8e7b8ef98e Merge branch 'master' of https://github.com/jindrapetrik/jpexs-decompiler 2021-01-01 01:07:12 +01:00
shllshckd
40ce905171 Update FAQ.md
changed is'nt to isn't
2020-12-31 21:00:07 +01:00
Jindra Petřík
e80eaebe16 special instructions update [ci skip] 2020-12-31 17:19:26 +01:00
Jindra Petřík
8eb2b721ee Link to FAQ [ci skip] 2020-12-29 21:14:19 +01:00
Jindra Petřík
1262b2674d FAQ [ci skip] 2020-12-29 21:10:20 +01:00
Jindra Petřík
bda6c17037 Update TRANSLATIONS to not mention issue tracker [ci skip] 2020-12-29 19:57:31 +01:00
Jindra Petřík
168936c616 Updating contact information [ci skip] 2020-12-29 19:51:15 +01:00
Jindra Petřík
3ca0d9f4ae remove newline version11.3.0 2020-04-25 17:33:58 +02:00
Jindra Petřík
1a56191e6e add newline 2020-04-25 17:33:45 +02:00
Jindra Petřík
d30bb964fb remove newline 2020-04-25 17:30:41 +02:00
Jindra Petřík
a119eec3bd temporary newline 2020-04-25 17:30:27 +02:00
Jindra Petřík
570a1180d2 [skip ci] 2020-04-25 17:11:07 +02:00
Jindra Petřík
e04312eb0a travis - try trusty dist with oraclejdk8 2020-04-25 17:11:07 +02:00
Jindra Petřík
f47620457e travis - print what to do in script.sh 2020-04-25 17:11:07 +02:00
Jindra Petřík
9ee1203091 travis - install ant addon (for travis xenial) 2020-04-25 17:11:07 +02:00
Jindra Petřík
0804486879 travis - removed php installation - assuming installed 2020-04-25 17:11:07 +02:00
Jindra Petřík
8d54869849 travis php5->php7.2 2020-04-25 17:11:07 +02:00
Jindra Petřík
286c0780cc travis - JDK9 2020-04-25 17:11:07 +02:00
Jindra Petřík
ca0c093c21 #1529 commandline selection of tag ids now applies to sprites and buttons 2020-04-25 17:11:07 +02:00
Jindra Petřík
317308a640 #1378 Transparent background on PNG/GIF sprite export,
SWF background on shape BMP export
2020-04-25 17:11:07 +02:00
rebane2001
7f9041c6f8 A fix to make exported sprites transparent 2020-04-25 17:11:07 +02:00
Jindra Petřík
a26885c08d Update CHANGELOG.md 2020-04-25 17:11:07 +02:00
nename0
76724b9375 Fix access to protected members with super (#75)
* fix access to protected members with super

* prevent overridden function to be found before the overriding
2020-04-25 17:11:07 +02:00
Jindra Petřík
259fc3201b Update CHANGELOG.md 2020-04-25 17:11:07 +02:00
nename0
d69d81ea3f the p-code generation of lookupswitch now correctly does -1 from the count of cases (#74) 2020-04-25 17:11:07 +02:00
Jindra Petřík
89bff8b687 Update CHANGELOG.md 2020-04-25 17:11:07 +02:00
florent.fauchille
419fd9590e NPE on runtime when installedFontsByFamily is null (#73)
* NPE on runtime when installedFontsByFamily is `null`

When running the command `java -jar dist/ffdec.jar -export fla <out> <file.swf>`, it crashes with stacktrace:
```
java.lang.NullPointerException                                                                                                                                                                                                                                           
        at com.jpexs.decompiler.flash.tags.base.FontTag.isFontFamilyInstalled(FontTag.java:310)                                                                                                                                                                          
        at com.jpexs.decompiler.flash.xfl.XFLConverter.convertFonts(XFLConverter.java:2366)                                                                                                                                                                              
        at com.jpexs.decompiler.flash.xfl.XFLConverter.convertSWF(XFLConverter.java:3363)
        at com.jpexs.decompiler.flash.SWF.exportXfl(SWF.java:2506)
        at com.jpexs.decompiler.flash.console.CommandLineArgumentParser.exportFla(CommandLineArgumentParser.java:2410)
        at com.jpexs.decompiler.flash.console.CommandLineArgumentParser.parseExport(CommandLineArgumentParser.java:2349)
        at com.jpexs.decompiler.flash.console.CommandLineArgumentParser.parseArguments(CommandLineArgumentParser.java:891)
        at com.jpexs.decompiler.flash.gui.Main.main(Main.java:1976)

```

Null checking `installedFontsByFamily` fixes the issue and the SWF to FLA is successful.

* Add ensureLoaded()  for isFontFamilyInstalled

With ensureLoaded() instead of null check
2020-04-25 17:11:07 +02:00
Jindra Petřík
5733cd9051 #1449 Updated Turkish translation 2020-04-25 17:11:07 +02:00
Gauthier Billot
fb24291c79 Fix typo 2020-04-25 17:11:07 +02:00
honfika
f978f08536 #1500 Update changelog 2020-04-25 17:11:07 +02:00
honfika
c13341abd9 SWF max version increased 2020-04-25 17:11:07 +02:00
Jindra Petřík
9a55acb816 Update CHANGELOG.md
[skip ci]
2020-04-25 17:11:07 +02:00
Jindra Petřík
172ca77aa4 Update CHANGELOG.md 2020-04-25 17:11:07 +02:00
Stefano Vettorazzi
6e39374a16 It's possible to open a file using open
Example:
`open -a ffdec --args "~/file.swf"`

However, this is not going to work:
`open -a ffdec file.swf`
but that's because of how shell scripts on OS X work.
2020-04-25 17:11:07 +02:00
Jindra Petřík
e881aac7af #1457 pushing on stack before exit item(return/throw) 2020-04-25 17:11:07 +02:00
Jindra Petřík
fe9f862a83 #1449 updated turkish translation 2020-04-25 17:11:07 +02:00
Jindra Petřík
2c3b9354aa #1457 AS3 switch without lookupswitch ins detection 2020-04-25 17:11:07 +02:00
Jindra Petřík
2562d7d9f4 create dev branch 2020-04-25 17:11:07 +02:00
Jindra Petřík
90f2ec2159 Update CHANGELOG.md version11.2.0 2018-09-08 15:32:29 +02:00