Skip to content

Commit

Permalink
simple stuff: updating copyright notices from 2016 to 2019 and bumpin…
Browse files Browse the repository at this point in the history
…g the version from 80 to 81. **Note**: The changelog in ClientVersion.xml runs ahead of what you will observe in these commits: I did the work first, then did these commits to lock it in as only now I am confident that my attempt at jimmejardine#14 actually delivers a working exe that's equal or better than last commercial release v79 (for me at least; caveat emptor!)
  • Loading branch information
GerHobbelt committed Aug 2, 2019
1 parent b359039 commit 277c392
Show file tree
Hide file tree
Showing 10 changed files with 48 additions and 24 deletions.
9 changes: 8 additions & 1 deletion Qiqqa.Build/ClientVersion.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<ClientVersionInformation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<LatestVersion>!!!This will be filled in by the nant build!!!</LatestVersion>
<CompliantFromVersion>80</CompliantFromVersion>
<CompliantFromVersion>81</CompliantFromVersion>
<ObsoleteToVersion xsi:nil="true" />
<DownloadLocations>
<!-- @WEB_BASE@ will be populated with "http://download.qiqqa.com/Content/Client/setup.exe" -->
Expand All @@ -12,6 +12,13 @@
-------------------------------------------------------------------------------------------------------------------
Version 81:
- Qiqqa now copes better with damaged PDFs which are part of the librarie(s):
+ search index does not "disappear" any more
+ Qiqqa does not continue running in the background for eternity due to locked-up PDF re-indexing task
-------------------------------------------------------------------------------------------------------------------
Version 80:
- Qiqqa goes Open Source!!!
- Enabled ALL Premium and Premium+ features for everyone.
Expand Down
4 changes: 2 additions & 2 deletions Qiqqa.Build/Packaging/Content/license.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
-----------------------------------------------------------------------------------------
--- Qiqqa Terms and Conditions
-----------------------------------------------------------------------------------------
--- Copyright � Quantisle 2010-2016. All rights reserved.
--- Copyright � Quantisle 2010-2019. All rights reserved.
--- Updated 5 February 2015
-----------------------------------------------------------------------------------------

By using Qiqqa, you are agreeing to be bound by these Terms and Conditions.

Qiqqa is Copyright � Quantisle 2010-2016. All rights reserved.
Qiqqa is Copyright � Quantisle 2010-2019. All rights reserved.

Qiqqa, Qiqqa Premium and the Qiqqa Web Library (from now on �Qiqqa�) are offered as
Services to you by Quantisle Ltd.
Expand Down
4 changes: 1 addition & 3 deletions Qiqqa/Main/MainEntry.cs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ private static void DoPreamble()
Thread.CurrentThread.CurrentUICulture = Thread.CurrentThread.CurrentCulture;

string on_your_conscience =
"Qiqqa is Copyright © Quantisle 2010-2016. All rights reserved." +
"Qiqqa is Copyright © Quantisle 2010-2019. All rights reserved." +
"If you are reading this in a disassembler, you know you are doing evil and will probably always have to look over your shoulder..."
;
on_your_conscience = "Main";
Expand All @@ -100,8 +100,6 @@ private static void DoPreamble()
Logging.Error(ex, "Error trying to suppress global process failure.");
}
}



if (true)
{
Expand Down
4 changes: 2 additions & 2 deletions Qiqqa/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
using System.Windows;


[assembly: AssemblyVersion("80.0.0")]
[assembly: AssemblyVersion("81.0.0")]
[assembly: AssemblyCompany("Quantisle")]
[assembly: AssemblyCopyright("Copyright © Quantisle 2010-2016. All rights reserved.")]
[assembly: AssemblyCopyright("Copyright © Quantisle 2010-2019. All rights reserved.")]

[assembly: AssemblyTitle("Qiqqa")]
[assembly: AssemblyProduct("Qiqqa")]
Expand Down
19 changes: 9 additions & 10 deletions QiqqaOCR/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ static int Main(string[] args)
try
{
string on_your_conscience =
"Qiqqa is Copyright © Quantisle 2010-2016. All rights reserved." +
"Qiqqa is Copyright © Quantisle 2010-2019. All rights reserved." +
"If you are reading this in a dissasembler, you know you are doing evil and will probably always have to look over your shoulder..."
;
on_your_conscience = "Main";
Expand All @@ -40,21 +40,20 @@ static int Main(string[] args)
}

string mode_switch = args[0];
if (false) { }
else if ("GROUP" == mode_switch)
switch (mode_switch)
{
case "GROUP":
TextExtractEngine.MainEntry(args, no_kill);
}
else if ("SINGLE" == mode_switch)
{
break;

case "SINGLE":
OCREngine.MainEntry(args, no_kill);
}
else
{
break;

default:
throw new Exception("Unknown mode switch " + mode_switch);
}
}

catch (Exception ex)
{
StringBuilder sb = new StringBuilder();
Expand Down
2 changes: 1 addition & 1 deletion QiqqaOCR/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Quantisle")]
[assembly: AssemblyProduct("QiqqaOCR")]
[assembly: AssemblyCopyright("Copyright © Quantisle 2010-2016. All rights reserved.")]
[assembly: AssemblyCopyright("Copyright © Quantisle 2010-2019. All rights reserved.")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand Down
24 changes: 22 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,33 @@

The open-sourced version of the award-winning Qiqqa research management tool for Windows

This version includes EVERY feature available in Qiqqa, including Premium and Premium+
This version includes EVERY feature available in Qiqqa, including Premium and Premium+.

Unfortunately we have had to remove the web cloud sync ability as that is the one area that involves storage costs. Users are encouraged to migrate their Web Libraries into Intranet libraries, and use Google Drive or Dropbox as the 'sync point' for those libraries.

You'll need to be a little technically experienced in the .NET world to get a build up and running.


## Visual Studio 2017 (Original build environment)

You will need to download Visual Studio 2017 Community Edition and Syncfusion Essential Studio 14.1.0.41 (you can get a free evaluation key from syncfusion.com - works for single developers for private/free projects).

Then simply go to Qiqqa.Build and run go.bat to build the latest version into the Qiqqa.Build/Packages directory.
Then simply go to `./Qiqqa.Build/` and run `go.bat` to build the latest version into the `Qiqqa.Build/Packages` directory.

Would anyone who is interested in contributing towards this repository please contact @jimmejardine...


## Visual Studio 2019 (updated *EXPERIMENTAL* build environment)

As above, but instead you'll need to obtain and install Syncfusion Essential Studio 17 as this fixes at least **one very annoying bug** in Qiqqa's handling of (broken!) PDF files which are already part of your Qiqqa librarie(s).

See also Qiqqa bug reports:

- #9
- #10
- #11
- #12
- #13
- #14


2 changes: 1 addition & 1 deletion Utilities/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[assembly: AssemblyVersion("1.0.0")]
[assembly: AssemblyCompany("Quantisle")]
[assembly: AssemblyCopyright("Copyright © Quantisle 2010-2016. All rights reserved.")]
[assembly: AssemblyCopyright("Copyright © Quantisle 2010-2019. All rights reserved.")]

[assembly: AssemblyTitle("Utilities")]
[assembly: AssemblyProduct("Utilities")]
2 changes: 1 addition & 1 deletion icons/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Quantisle")]
[assembly: AssemblyProduct("")]
[assembly: AssemblyCopyright("Copyright © Quantisle 2010-2016. All rights reserved.")]
[assembly: AssemblyCopyright("Copyright © Quantisle 2010-2019. All rights reserved.")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand Down
2 changes: 1 addition & 1 deletion icons/~COPYRIGHT.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
All files in and below this assembly directory tree are Copyright © Quantisle 2010-2016. All rights reserved.
All files in and below this assembly directory tree are Copyright © Quantisle 2010-2019. All rights reserved.

0 comments on commit 277c392

Please sign in to comment.