Skip to content

Commit

Permalink
prepare for release 0.13.0, updated agent and doc pdfs, removed old t…
Browse files Browse the repository at this point in the history
…ravis file
  • Loading branch information
s3inlc committed Nov 28, 2022
1 parent 86e7ef2 commit c703680
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 44 deletions.
40 changes: 0 additions & 40 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion doc/changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# v0.12.0 -> v0.x.x
# v0.12.0 -> v0.13.0

## Features

Expand Down
Binary file modified doc/protocol.pdf
Binary file not shown.
Binary file modified doc/user-api/user-api.pdf
Binary file not shown.
Binary file modified src/bin/hashtopolis.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion src/inc/info.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

$VERSION = "0.12.0";
$VERSION = "0.13.0";
$BUILD = "repository";
$HOST = @$_SERVER['HTTP_HOST'];
if (strpos($HOST, ":") !== false) {
Expand Down
4 changes: 2 additions & 2 deletions src/install/hashtopolis.sql
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ CREATE TABLE `AgentBinary` (
) ENGINE = InnoDB;

INSERT INTO `AgentBinary` (`agentBinaryId`, `type`, `version`, `operatingSystems`, `filename`, `updateTrack`, `updateAvailable`) VALUES
(1, 'python', '0.6.0.10', 'Windows, Linux, OS X', 'hashtopolis.zip', 'stable', '');
(1, 'python', '0.7.0', 'Windows, Linux, OS X', 'hashtopolis.zip', 'stable', '');

CREATE TABLE `AgentError` (
`agentErrorId` INT(11) NOT NULL,
Expand Down Expand Up @@ -195,7 +195,7 @@ CREATE TABLE `CrackerBinary` (
) ENGINE = InnoDB;

INSERT INTO `CrackerBinary` (`crackerBinaryId`, `crackerBinaryTypeId`, `version`, `downloadUrl`, `binaryName`) VALUES
(1, 1, '6.2.5', 'https://hashcat.net/files/hashcat-6.2.5.7z', 'hashcat');
(1, 1, '6.2.6', 'https://hashcat.net/files/hashcat-6.2.6.7z', 'hashcat');

CREATE TABLE `CrackerBinaryType` (
`crackerBinaryTypeId` INT(11) NOT NULL,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,11 @@
$EXECUTED["v0.12.x_agentBinaries"] = true;
}

if (!isset($PRESENT["v0.12.x_agentBinaries_1"])) {
Util::checkAgentVersion("python", "0.7.0", true);
$EXECUTED["v0.12.x_agentBinaries_1"] = true;
}

if (!isset($PRESENT["v0.12.x_agentBinariesUpdateTrack"])) {
$agentBinaries = Factory::getAgentBinaryFactory()->filter([]);
foreach ($agentBinaries as $agentBinary) {
Expand Down

0 comments on commit c703680

Please sign in to comment.