Releases: vidzy-social/vidzy
Releases Β· vidzy-social/vidzy
Vidzy v0.1.9
Update VIDZY_VERSION to "v0.1.9"
Vidzy v0.1.8
Vidzy v0.1.8
Vidzy v0.1.7
Vidzy v0.1.7
v0.1.6
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
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
v0.1.4 adds S3 as a storage provider for Vidzy!
To upgrade you must,
- Run this MySQL code:
ALTER TABLE `shorts` CHANGE COLUMN `url` `url` VARCHAR(100) NULL DEFAULT NULL ;
- 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
Vidzy is now 10x faster and way more secure!
v0.1.2 - The "Comments & More" Update
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"
- 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
remove unneeded "debug.sh" file