reliak / moonpdf

Contains a WPF control for displaying PDF files and a sample PDF viewer, that uses this control
GNU General Public License v3.0
189 stars 90 forks source link

Source different from binaries to github #10

Closed chuckdee68 closed 8 years ago

chuckdee68 commented 8 years ago

The source contained in this repository is different from the source where the code requests that we download the binaries from, i.e. on sourceforge at https://sourceforge.net/projects/moonpdf/files/. Which should be considered the latest source? Specifically for one example, the PdfLoaded event is FileLoaded at sourceforge. I'm not sure if there are other changes.

From sourceforge source for MoonPdfPanel.xaml.cs

            if (this.FileLoaded != null)
                this.FileLoaded(this, EventArgs.Empty);

From github

            if (this.PdfLoaded != null)
                this.PdfLoaded(this, EventArgs.Empty);
reliak commented 8 years ago

Hi,

sorry for the confusion. The latest source is here on Github: https://github.com/reliak/moonpdf/archive/master.zip

After adding the feature to also load PDFs from memory and not only from file, I renamed the event from FileLoaded to PdfLoaded.