Skip to content

Releases: vidzy-social/vidzy

Vidzy v0.1.9

02 Nov 00:12
Compare
Choose a tag to compare
Update VIDZY_VERSION to  "v0.1.9"

Vidzy v0.1.8

27 Sep 16:38
Compare
Choose a tag to compare

Vidzy v0.1.8

Vidzy v0.1.7

08 Sep 13:31
Compare
Choose a tag to compare

Vidzy v0.1.7

v0.1.6

25 Aug 17:40
Compare
Choose a tag to compare

Vidzy v0.1.6

Instance owners: if you see this error "sqlalchemy.exc.OperationalError: BLOB/TEXT column 'path' used in key specification without a key length", just restart Vidzy and it will go away.

v0.1.5

23 Aug 14:45
Compare
Choose a tag to compare

To upgrade you need to run the following MySQL code:

ALTER TABLE `vidzy`.`shorts` 
ADD COLUMN `tags` VARCHAR(100) NULL AFTER `description`;

v0.1.4

21 Aug 12:33
Compare
Choose a tag to compare

v0.1.4 adds S3 as a storage provider for Vidzy!

To upgrade you must,

  1. Run this MySQL code:
ALTER TABLE `shorts` CHANGE COLUMN `url` `url` VARCHAR(100) NULL DEFAULT NULL ;
  1. Add these 5 lines to your .env:
S3_ENABLED=False
AWS_ACCESS_KEY_ID=AWS_ACCESS_KEY
AWS_SECRET_ACCESS_KEY=AWS_SECRET_KEY
AWS_ENDPOINT_URL=https://s3.us-east-1.amazonaws.com
S3_BUCKET_NAME=vidzy

v0.1.3

20 Aug 20:09
Compare
Choose a tag to compare

Vidzy is now 10x faster and way more secure!

v0.1.2 - The "Comments & More" Update

19 Aug 18:29
Compare
Choose a tag to compare

When updating to v0.1.2, please run ALL this mysql code,

ALTER TABLE `shorts` 
ADD COLUMN `date_uploaded` DATE NULL AFTER `user_id`;
CREATE TABLE `comments` (
  `id` int NOT NULL AUTO_INCREMENT,
  `short_id` int DEFAULT NULL,
  `user_id` int DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
ALTER TABLE `comments` 
ADD COLUMN `comment_text` VARCHAR(145) NULL AFTER `user_id`;
ALTER TABLE `shorts` 
ADD COLUMN `description` VARCHAR(400) NULL AFTER `date_uploaded`;

v0.1.1 "Admin Update"

18 Aug 23:14
Compare
Choose a tag to compare
  • Added admin panel to allow admins to delete posts, promote other people to admin, see user and post information, ban users, see total number of users and total number of posts.
  • Allow users to see remote user with /users/user@instance.com
  • Lots of bug fixes.
  • & more

[VERY OLD RELEASE] [DO NOT USE] v0.1.0

18 Aug 23:37
Compare
Choose a tag to compare
Pre-release
remove unneeded "debug.sh" file