Console: Set form target for wizard
Some checks failed
Sync Primary Repository to GitHub Mirror / sync (push) Has been cancelled
Daily Workflow / daily-job (push) Has been cancelled
Daily Workflow / javadoc-latest (push) Has been cancelled
Daily Workflow / build-java7 (push) Has been cancelled
Java CI / build (push) Has been cancelled
Java CI / javadoc-latest (push) Has been cancelled
Java CI / build-java7 (push) Has been cancelled
Dockerhub / docker (push) Has been cancelled
Java with IzPack Snapshot Setup / setup (push) Has been cancelled

so link into middle of wizard from /config doesn't get stuck there
due to the URL param, as reported by RN
This commit is contained in:
zzz
2025-06-17 08:10:22 -04:00
parent baf47d60bd
commit a3e69ca9c7
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2025-06-17 zzz
* Router: Store ident and hash at startup, remove lock (PR 507)
* Transports: Remove unused ElG DH builder (PR 508)
2025-06-15 zzz
* I2CP: Add support for service records (Proposal 167) (PR 501)
* SSU2: Remove old active throttle code (PR 505)

View File

@ -20,7 +20,7 @@ public class RouterVersion {
public final static String VERSION = CoreVersion.VERSION;
/** for example: "beta", "alpha", "rc" */
public final static String QUALIFIER = "";
public final static long BUILD = 1;
public final static long BUILD = 2;
/** for example "-test" */
public final static String EXTRA = "";
public final static String FULL_VERSION = VERSION + "-" + BUILD + QUALIFIER + EXTRA;